/* --- Variables & Reset --- */
:root {
    --navy: #0f3b54;
    --navy-soft: #1c4b64;
    --navy-dark: #082433;
    --gold: #c6a15e;
    --gold-light: #e3caa5;
    --bg: #f6f3ee;
    --bg-soft: #ede9e1;
    --text: #1a2024;
    --muted: #5d6e7d;
    --line: rgba(15, 59, 84, 0.10);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    --shadow-heavy: 0 25px 50px rgba(0, 0, 0, 0.10);
    --radius: 24px;
    --container: min(1200px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: var(--container); margin-inline: auto; }

/* --- Utility & Skip Link --- */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; background: #fff; padding: 12px 16px; border-radius: 8px; z-index: 999; box-shadow: var(--shadow-heavy); }

.utility { background: var(--navy-dark); color: rgba(255, 255, 255, 0.85); font-size: 13px; padding: 8px 0; }
.utility .inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.utility-contact { display: flex; gap: 24px; flex-wrap: wrap; }
.utility-contact a { transition: color 0.2s; }
.utility-contact a:hover { color: var(--gold-light); }
.lang { display: flex; gap: 8px; align-items: center; font-weight: 700; }
.lang a { padding: 6px 12px; border-radius: 999px; color: rgba(255, 255, 255, 0.7); transition: all 0.2s; }
.lang a.active { background: rgba(255, 255, 255, 0.15); color: #fff; }
.lang a:hover:not(.active) { color: #fff; }

/* --- Header --- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(246, 243, 238, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.header .inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand, .footer-brand { display: inline-flex; align-items: center; }
.brand-logo { height: 44px; width: auto; display: block; }
.footer-logo { height: 36px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 32px; font-size: 15px; font-weight: 600; }
.nav a { position: relative; padding: 6px 0; color: var(--navy-dark); }
.nav a:not(.btn)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; color: var(--navy); cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 5px 0; transition: all 0.3s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 32px;
    border-radius: 999px; border: 1px solid var(--navy); background: var(--navy); color: #fff;
    font-weight: 700; transition: all 0.25s ease; cursor: pointer; text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(15, 59, 84, 0.15); background: var(--navy-soft); }
.btn.gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn.gold:hover { background: #b08e4e; border-color: #b08e4e; box-shadow: 0 10px 25px rgba(198, 161, 94, 0.25); }
.btn.light { background: #fff; border-color: #fff; color: var(--navy); }
.btn.light:hover { background: #f0f0f0; border-color: #f0f0f0; }
.btn.ghost { background: transparent; border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.btn.ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.btn.ghost.dark { border-color: rgba(15, 59, 84, 0.3); color: var(--navy); }
.btn.ghost.dark:hover { background: rgba(15, 59, 84, 0.05); }
.nav .btn { min-height: 44px; padding: 0 24px; font-size: 14px; }

/* --- Hero Sections --- */
.hero, .page-hero { background: linear-gradient(135deg, #faf8f4 0%, #f0ebe3 100%); padding: 60px 0 40px; border-bottom: 1px solid var(--line); }
.hero-grid, .page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-grid { min-height: 580px; }

.eyebrow, .kicker {
    display: inline-flex; align-items: center; gap: 12px; color: var(--gold); font-size: 13px; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.eyebrow::before, .kicker::before { content: ""; width: 32px; height: 1px; background: currentColor; }

.hero h1, .page-hero h1, .section h2, .copy h2, .cta h2, .legal h1 {
    font-family: 'Georgia', 'Times New Roman', serif; font-weight: 500; letter-spacing: -0.02em;
    line-height: 1.1; color: var(--navy-dark);
}
.hero h1, .page-hero h1 { font-size: clamp(42px, 5.5vw, 78px); margin: 20px 0 18px; }
.lead { font-size: 19px; color: var(--muted); margin: 0 0 28px; max-width: 600px; }
.hero-actions, .cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media img, .page-hero-media img, .media img {
    width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover;
    border-radius: var(--radius); box-shadow: var(--shadow-heavy); border: 1px solid rgba(198, 161, 94, 0.15);
}
.page-hero-media img { aspect-ratio: 16/9; }
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

/* --- Trust Strip --- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.trust-item { padding: 28px 24px; border-right: 1px solid var(--line); text-align: left; }
.trust-item:last-child { border-right: none; }
.trust-item strong { display: block; color: var(--navy); font-size: 18px; margin-bottom: 6px; }
.trust-item span { font-size: 14px; color: var(--muted); }

/* --- Sections --- */
.section { padding: 80px 0; }
.section.soft { background: var(--bg-soft); border-block: 1px solid rgba(198, 161, 94, 0.15); }
.section.dark { background: var(--navy-dark); color: #fff; }
.section-head { max-width: 780px; margin-bottom: 48px; }
.section h2, .copy h2, .cta h2 { font-size: clamp(34px, 4vw, 54px); margin: 12px 0 16px; }
.section-head p, .copy p, .path-card p, .stat p, .timeline-item p, .legal p, .legal li { color: var(--muted); }
.section.dark .section-head h2, .section.dark .section-head p { color: #fff; }
.section.dark .section-head p { opacity: 0.8; }

/* --- Split content sections --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .media { order: 2; }
.copy { min-width: 0; }
.media { min-width: 0; }

/* --- Cards & Content Blocks --- */
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.path-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); transition: transform 0.3s ease; }
.path-card:hover { transform: translateY(-4px); }
.path-card.darkcard { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); border-color: transparent; }
.path-card .num { position: absolute; right: 20px; top: 10px; font-family: Georgia, serif; font-size: 80px; line-height: 1; color: rgba(15, 59, 84, 0.04); }
.path-card.darkcard .num { color: rgba(255, 255, 255, 0.06); }
.path-card h3 { font-family: Georgia, serif; font-size: 32px; line-height: 1.2; margin: 40px 0 12px; color: var(--navy-dark); font-weight: 500; }
.path-card.darkcard h3 { color: #fff; }
.path-card.darkcard p, .path-card.darkcard li { color: rgba(255, 255, 255, 0.8); }
.path-list { list-style: none; padding: 0; margin: 20px 0 30px; }
.path-list li { position: relative; padding: 8px 0 8px 28px; }
.path-list li::before { content: ""; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }

.feature-list { display: grid; gap: 16px; margin: 24px 0 32px; }
.feature { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
.icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(198, 161, 94, 0.12); display: grid; place-items: center; color: var(--navy); font-weight: 900; }
.feature strong { display: block; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.feature span { color: var(--muted); font-size: 15px; }

/* --- Steps & Stats --- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.step { background: #fff; padding: 32px 24px; border-radius: 20px; min-height: 200px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); transition: transform 0.3s ease; }
.step:hover { transform: translateY(-2px); }
.step .step-no { display: block; margin-bottom: 16px; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.step h3 { margin: 0 0 8px; color: var(--navy); font-size: 19px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px; box-shadow: var(--shadow); }
.stat strong { display: block; font-size: 22px; color: var(--navy); margin-bottom: 10px; font-family: Georgia, serif; }

/* --- Quote & Person Card --- */
.quote-panel { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 60px; box-shadow: var(--shadow); text-align: center; }
.quote-panel blockquote { margin: 0 0 14px; max-width: 820px; margin-inline: auto; font-family: Georgia, serif; font-size: 30px; line-height: 1.4; color: var(--navy-dark); }
.quote-panel cite { font-style: normal; color: var(--gold); font-weight: 700; display: block; }

.person-card { display: grid; grid-template-columns: 140px 1fr; gap: 30px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.person-mark { width: 120px; height: 120px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; }
.person-mark img { width: 60px; }
.person-card h3 { margin: 0 0 4px; font-size: 26px; font-family: Georgia, serif; font-weight: 500; color: var(--navy-dark); }
.person-card .role { display: inline-block; margin-bottom: 8px; color: var(--gold); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

/* --- Timeline --- */
.timeline { display: grid; gap: 24px; }
.timeline-item { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: start; }
.timeline-no { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: #fff; font-weight: 800; font-size: 18px; }
.timeline-item h3 { margin: 0 0 6px; font-size: 20px; color: var(--navy); }

/* --- CTA --- */
.cta { padding: 80px 0; background: linear-gradient(135deg, var(--navy-soft), var(--navy-dark)); color: #fff; }
.cta .inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta h2 { margin: 0; color: #fff; max-width: 700px; }
.cta p { margin: 12px 0 0; max-width: 640px; color: rgba(255, 255, 255, 0.8); }

/* --- Footer --- */
.footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.8); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer h4 { margin: 0 0 16px; color: var(--gold-light); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.footer a { display: block; margin: 8px 0; transition: color 0.2s; }
.footer a:hover { color: #fff; }
.brand-copy { max-width: 340px; margin: 16px 0 0; font-size: 14px; color: rgba(255, 255, 255, 0.7); }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex; justify-content: space-between; gap: 16px; font-size: 13px; flex-wrap: wrap; }

/* --- Forms & Legal --- */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.contact-card { position: sticky; top: 120px; background: linear-gradient(135deg, var(--navy), var(--navy-soft)); color: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-heavy); }
.contact-card h2 { margin: 0 0 20px; color: #fff; font-size: 32px; }
.contact-card a, .contact-card span { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea {
    width: 100%; background: #fff; border: 1px solid rgba(15, 59, 84, 0.15); border-radius: 12px;
    padding: 14px 16px; color: var(--text); transition: border-color 0.2s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198, 161, 94, 0.1); }
.field textarea { min-height: 160px; resize: vertical; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.checkbox input { margin-top: 3px; accent-color: var(--gold); }
.honeypot { position: absolute; left: -10000px; }

.legal { max-width: 900px; }
.legal h1 { font-size: 48px; margin: 0 0 20px; }
.legal h2 { font-family: Georgia, serif; font-size: 28px; margin-top: 40px; color: var(--navy); }
.legal .notice { background: #fff; border: 1px solid rgba(198, 161, 94, 0.3); border-left: 4px solid var(--gold); padding: 20px 24px; border-radius: 12px; font-size: 15px; }
.pdf-box { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); flex-wrap: wrap; }

/* --- Reveal Animation --- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid, .page-hero-grid, .contact-grid, .split { grid-template-columns: 1fr; }
    .split.reverse .media { order: 0; }
    .hero-grid { min-height: auto; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .person-card { grid-template-columns: 1fr; text-align: center; }
    .person-mark { margin-inline: auto; }
}

@media (max-width: 768px) {
    .header .inner { min-height: 70px; }
    .nav {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px); padding: 90px 24px 24px; z-index: 99; display: flex; flex-direction: column;
        align-items: center; justify-content: flex-start; gap: 24px; font-size: 20px; font-weight: 600;
        transform: translateY(-100%); transition: transform 0.3s ease-in-out;
    }
    .nav.open { transform: translateY(0); }
    .nav .btn { min-height: 54px; width: 100%; max-width: 280px; }
    .menu-toggle { display: block; z-index: 100; }
    
    .trust-grid, .cards-2, .steps, .stat-grid, .form { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .hero h1, .page-hero h1 { font-size: 38px; }
    .contact-card { position: static; }
    .cta .inner { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
    .pdf-box { flex-direction: column; align-items: stretch; text-align: center; gap: 16px; }
}

@media (max-width: 480px) {
    .utility-contact { display: none; }
    .utility .inner { justify-content: flex-end; }
    .brand-logo { height: 34px; }
    .section h2, .copy h2, .cta h2 { font-size: 32px; }
    .hero-media img, .page-hero-media img { aspect-ratio: 16/10; }
}
