/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: #1a1a2e;
    background: #fafafa;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Variables ────────────────────────────────────────────── */
:root {
    --navy: #1B2A4A;
    --navy-light: #243658;
    --navy-dark: #131f36;
    --gold: #C8A45E;
    --gold-light: #D4B76E;
    --gold-pale: #F5ECD7;
    --white: #ffffff;
    --off-white: #fafafa;
    --cream: #f7f4ef;
    --gray-100: #f4f3f0;
    --gray-200: #e8e6e1;
    --gray-300: #d1cfc9;
    --gray-500: #8a8780;
    --gray-700: #4a4843;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
}

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}
.section-desc {
    font-size: 16px;
    color: var(--gray-700);
    max-width: 520px;
    line-height: 1.75;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-primary {
    background: var(--navy);
    color: var(--white);
    border: 1.5px solid var(--navy);
}
.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(27,42,74,0.2);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    border: 1.5px solid var(--gold);
    font-weight: 500;
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200,164,94,0.3);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Header ───────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,250,250,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}
.header.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: -0.01em;
}
.logo-sub {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}
.nav ul {
    display: flex;
    gap: 32px;
}
.nav a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-700);
    transition: color 0.2s;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { width: 100%; }
.header-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    transition: color 0.2s;
    flex-shrink: 0;
}
.header-cta:hover { color: var(--gold); }
.header-cta svg { opacity: 0.7; }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: auto;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: all 0.3s ease;
    transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(27,42,74,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-overlay.active { opacity: 1; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(19,31,54,0.88) 0%,
        rgba(27,42,74,0.78) 50%,
        rgba(27,42,74,0.65) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    padding: 120px 24px 80px;
}
.hero-eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.hero-title {
    font-family: var(--serif);
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}
.hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 40px;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ── Divider Bar ──────────────────────────────────────────── */
.divider-bar {
    background: var(--navy);
    padding: 0;
    overflow: hidden;
}
.divider-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
}
.divider-item {
    display: flex;
    flex-direction: column;
    padding: 20px 28px;
    flex: 1;
    min-width: 180px;
}
.divider-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(200,164,94,0.6);
    margin-bottom: 4px;
}
.divider-value, .divider-link {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
}
.divider-link { transition: color 0.2s; }
.divider-link:hover { color: var(--gold); }
.divider-dot {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
    align-self: center;
}

/* ── Services ─────────────────────────────────────────────── */
.services {
    padding: 120px 0;
    background: var(--off-white);
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.service-card {
    background: var(--white);
    padding: 44px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27,42,74,0.08);
}
.service-number {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 300;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s;
}
.service-card:hover .service-number { color: var(--gold-pale); }
.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    transition: all 0.3s;
}
.service-card:hover .service-icon {
    border-color: var(--gold);
    background: var(--gold-pale);
}
.service-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}
.service-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.75;
}

/* ── About ────────────────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: var(--white);
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}
.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    z-index: -1;
}
.about-content { padding: 8px 0; }
.about-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}
.stat { flex: 1; }
.stat-number {
    display: block;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

/* ── Why ──────────────────────────────────────────────────── */
.why {
    padding: 120px 0;
    background: var(--cream);
}
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.why-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 36px;
}
.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}
.why-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    margin-top: 1px;
    color: var(--gold);
}
.why-image-stack {
    position: relative;
    height: 620px;
}
.why-img {
    position: absolute;
    overflow: hidden;
    border-radius: 2px;
}
.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-img-1 {
    width: 300px;
    height: 420px;
    top: 0;
    right: 0;
    z-index: 1;
}
.why-img-2 {
    width: 260px;
    height: 300px;
    bottom: 0;
    left: 20px;
    z-index: 2;
    box-shadow: 0 16px 48px rgba(27,42,74,0.15);
}
.why-img-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 3;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19,31,54,0.92) 0%, rgba(27,42,74,0.85) 100%);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-eyebrow { color: var(--gold); }
.cta-title {
    font-family: var(--serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}
.cta-title em {
    font-style: italic;
    color: var(--gold);
}
.cta-text {
    font-size: 16px;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 300;
}
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact {
    padding: 120px 0;
    background: var(--white);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 4px;
}
.contact-value {
    display: block;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.6;
}
.contact-link {
    font-size: 18px;
    font-weight: 400;
    color: var(--navy);
    transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
    background: var(--gray-100);
    padding: 44px;
    border-radius: 2px;
}
.form-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success p {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--navy);
    font-weight: 400;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
    background: var(--navy-dark);
    padding: 64px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo-footer .logo-text { color: var(--white); }
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-phone {
    display: block;
    font-family: var(--serif);
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 6px;
}
.footer-address {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}
.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ── Animations ───────────────────────────────────────────── */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-layout,
    .why-layout,
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .why-image-stack { height: 480px; order: -1; }
    .why-img-1 { width: 240px; height: 340px; }
    .why-img-2 { width: 200px; height: 240px; }
}

@media (max-width: 768px) {
    .nav, .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    .nav.mobile-open {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 1001;
        align-items: center;
        justify-content: center;
    }
    .nav.mobile-open ul {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    .nav.mobile-open a {
        font-size: 18px;
        color: var(--navy);
    }
    .hero-content { padding: 100px 20px 80px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .divider-inner { flex-direction: column; }
    .divider-item { width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .divider-dot { display: none; }
    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .about, .why, .contact { padding: 80px 0; }
    .about-image-accent { display: none; }
    .about-stats { flex-direction: column; gap: 20px; }
    .why-image-stack { height: 400px; }
    .why-img-1 { width: 200px; height: 280px; }
    .why-img-2 { width: 170px; height: 200px; left: 10px; bottom: 0; }
    .contact-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-links { flex-direction: row; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 36px; }
    .section-title { font-size: 28px; }
    .service-card { padding: 32px 24px; }
}
