/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:        #0d1b2a;
    --navy-light:  #1b2d45;
    --gold:        #c9a22b;
    --gold-light:  #e2c05a;
    --gold-dim:    #a88624;
    --cream:       #f5f0e8;
    --cream-light: #faf7f2;
    --white:       #ffffff;
    --text:        #1a1a1a;
    --text-muted:  #5a5a5a;
    --text-light:  #8a8a8a;
    --font-serif:  'Playfair Display', Georgia, serif;
    --font-sans:   'Inter', system-ui, sans-serif;
    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────── */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 32px;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dim);
}

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 43, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn-ghost-light {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-ghost-light:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-full { width: 100%; }

/* ── Header ─────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.0);
    backdrop-filter: blur(0px);
    transition: all 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(201, 162, 43, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s var(--ease);
    letter-spacing: 0.02em;
}
.main-nav a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--gold-light) !important;
}

/* ── Mobile Nav Toggle ──────────────────────────── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    color: var(--white);
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    position: relative;
    transition: all 0.3s var(--ease);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s var(--ease);
}
.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--navy) 0%,
        #162d4a 30%,
        #1a3a5c 50%,
        #1e4468 70%,
        var(--navy-light) 100%
    );
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(201, 162, 43, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(201, 162, 43, 0.1) 0%, transparent 50%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a22b' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50%       { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── Services ───────────────────────────────────── */
.services {
    padding: 120px 0;
    background: var(--cream-light);
}

.services .container { max-width: 1200px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(13, 27, 42, 0.1);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px;
    height: 56px;
    color: var(--gold-dim);
    margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── About ──────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 560px;
}

.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(13, 27, 42, 0.15);
}
.about-img-main img { width: 100%; height: 560px; object-fit: cover; }

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(13, 27, 42, 0.2);
    border: 6px solid var(--white);
}
.about-img-accent img { width: 100%; height: 240px; object-fit: cover; }

.about-content .section-title { margin-bottom: 24px; }

.about-body {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
}
.stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* ── Why ────────────────────────────────────────── */
.why {
    padding: 120px 0;
    background: var(--cream);
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-list { display: flex; flex-direction: column; gap: 40px; margin-top: 48px; }

.why-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.why-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    min-width: 60px;
    opacity: 0.6;
}

.why-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.why-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.why-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(13, 27, 42, 0.15);
}
.why-image img { width: 100%; height: 600px; object-fit: cover; }

/* ── CTA Banner ─────────────────────────────────── */
.cta-banner {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #162d4a 50%, var(--navy-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 162, 43, 0.12) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }

.cta-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-body {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Contact ────────────────────────────────────── */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-body {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-detail { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}
.contact-detail-value {
    font-size: 1.0625rem;
    color: var(--navy);
    font-weight: 500;
}
.contact-detail a {
    transition: color 0.3s var(--ease);
}
.contact-detail a:hover { color: var(--gold-dim); }

/* ── Form ───────────────────────────────────────── */
.contact-form-wrap {
    background: var(--cream);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid rgba(0,0,0,0.06);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    padding: 14px 16px;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 43, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
    font-size: 0.8125rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 16px;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}
.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--gold);
}
.success-icon svg { width: 100%; height: 100%; }
.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.form-success p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    padding: 64px 0 32px;
    color: rgba(255,255,255,0.6);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-brand .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}
.footer-brand .logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}
.footer-tagline {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    margin-left: 46px;
    margin-top: -4px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s var(--ease);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

/* ── Scroll Animations ──────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid,
    .why-layout,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { min-height: 400px; }
    .about-img-main img { height: 400px; }
    .about-img-accent { right: 0; }
    .why-image img { height: 400px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(13, 27, 42, 0.98);
        backdrop-filter: blur(12px);
        padding: 24px;
        transform: translateY(-120%);
        transition: transform 0.4s var(--ease);
        border-bottom: 1px solid rgba(201, 162, 43, 0.2);
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav ul { flex-direction: column; gap: 16px; }
    .main-nav a { font-size: 1rem; }

    .hero { min-height: 100svh; padding: 100px 24px 60px; }
    .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }

    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 28px 24px; }

    .about, .why, .contact { padding: 80px 0; }
    .about-stats { flex-direction: column; gap: 24px; }
    .about-img-accent { position: relative; bottom: auto; right: auto; margin-top: 16px; border-width: 4px; }

    .why-list { gap: 32px; }
    .why-number { font-size: 2rem; min-width: 44px; }

    .cta-banner { padding: 80px 0; }

    .contact-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .footer-tagline { margin-left: 0; margin-top: 0; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
}
