:root {
    --navy: #071a59;
    --navy-2: #0b2b86;
    --blue: #0969d9;
    --cyan: #28bde9;
    --lime: #9bff00;
    --green: #62dd00;
    --ink: #101b35;
    --muted: #5f6b82;
    --paper: #f7f8f4;
    --white: #ffffff;
    --line: rgba(11, 31, 80, .12);
    --shadow: 0 24px 70px rgba(8, 23, 67, .16);
    --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 1000; padding: 12px 18px; color: var(--navy); background: var(--lime); font-weight: 800; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
    position: absolute;
    z-index: 50;
    width: 100%;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,.16);
}
.header-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; line-height: .85; letter-spacing: -1px; }
.brand-kicker { margin: 0 0 7px 2px; font-size: .56rem; text-transform: uppercase; letter-spacing: .34em; font-weight: 700; }
.brand-name { display: flex; align-items: baseline; font-family: "Montserrat", sans-serif; font-size: 1.75rem; font-weight: 900; }
.brand-name b { color: var(--white); }
.brand-name strong { color: var(--lime); }
.main-nav { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: .9rem; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--lime); transition: .2s ease; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 11px 17px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; }
.nav-cta:hover { color: var(--navy); background: var(--lime); border-color: var(--lime); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid rgba(255,255,255,.3); background: transparent; border-radius: 12px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: white; }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 810px;
    color: var(--white);
    background:
        radial-gradient(circle at 76% 45%, rgba(36, 173, 243, .3), transparent 28%),
        linear-gradient(120deg, #061348 0%, #0a2c88 52%, #0879d5 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(25deg, transparent 49.5%, rgba(255,255,255,.3) 50%, transparent 50.5%); background-size: 44px 44px; mask-image: linear-gradient(to right, black, transparent 48%); }
.hero::after { content: ""; position: absolute; width: 540px; height: 540px; right: -120px; top: 80px; border: 110px solid rgba(155,255,0,.12); border-radius: 50%; }
.hero-lines { position: absolute; inset: 0; background: linear-gradient(100deg, transparent 58%, rgba(255,255,255,.09) 58.1%, transparent 58.3%), linear-gradient(164deg, transparent 70%, rgba(155,255,0,.4) 70.1%, transparent 70.4%); }
.hero-grid { position: relative; z-index: 2; min-height: 810px; display: grid; grid-template-columns: 1fr .94fr; align-items: end; gap: 36px; }
.hero-copy { align-self: center; padding-top: 90px; max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--lime); font-size: .75rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow i { width: 32px; height: 3px; background: currentColor; }
.eyebrow.dark { color: var(--blue); }
.hero h1, .section-heading h2, .family-copy h2, .social-cta h2 { margin: 18px 0 24px; font-family: "Montserrat", sans-serif; line-height: .98; letter-spacing: -.055em; }
.hero h1 { max-width: 680px; font-size: clamp(3.4rem, 6.1vw, 5.8rem); }
.hero h1 em { display: block; color: var(--lime); font-style: italic; font-weight: 900; }
.hero-copy > p { max-width: 540px; margin: 0; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy); background: var(--lime); box-shadow: 0 12px 30px rgba(155,255,0,.24); }
.button-ghost { border-color: rgba(255,255,255,.38); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.hero-number {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border: 1px solid rgba(155,255,0,.48);
    border-radius: 18px;
    background: rgba(155,255,0,.08);
    box-shadow: 0 14px 36px rgba(0,0,0,.14);
}
.hero-number span { width: 90px; font-size: .65rem; line-height: 1.2; text-transform: uppercase; letter-spacing: .14em; }
.hero-number strong { color: var(--lime); font: 900 clamp(3rem, 5.4vw, 4.55rem)/.8 "Montserrat", sans-serif; letter-spacing: -.07em; text-shadow: 0 0 24px rgba(155,255,0,.22); }
.hero-portrait { position: relative; justify-self: end; width: 100%; max-width: 550px; height: 690px; }
.portrait-frame { position: absolute; inset: 60px 0 0; overflow: hidden; border-radius: 270px 270px 0 0; background: rgba(255,255,255,.93); box-shadow: 0 0 0 12px rgba(255,255,255,.08); }
.portrait-frame::after { content: ""; position: absolute; inset: auto 0 0; height: 26%; background: linear-gradient(transparent, rgba(5,18,69,.38)); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.outline-word { position: absolute; right: -15px; top: 58px; z-index: -1; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.22); font: 900 8rem/1 "Montserrat", sans-serif; transform: rotate(90deg) translateX(100%); transform-origin: right top; }
.portrait-badge { position: absolute; left: -42px; bottom: 82px; padding: 13px 20px 14px; color: var(--navy); background: var(--lime); transform: rotate(-4deg); box-shadow: var(--shadow); }
.portrait-badge span { display: block; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.portrait-badge strong { font: 900 1.25rem/1 "Montserrat", sans-serif; }
.pattern-strip { position: absolute; z-index: 5; bottom: 0; left: 0; right: 0; height: 34px; display: flex; align-items: center; justify-content: space-around; overflow: hidden; color: var(--navy); background: var(--lime); font: 900 1rem "Montserrat", sans-serif; }
.pattern-strip i { width: 35px; height: 35px; border: 9px solid var(--blue); border-radius: 50%; }

.section-heading h2, .family-copy h2 { max-width: 720px; font-size: clamp(2.65rem, 5vw, 4.45rem); }
.section-heading h2 span, .family-copy h2 span { color: var(--blue); }
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: start; }
.about-copy { padding-top: 20px; }
.about-copy p { color: var(--muted); }
.about-copy .lead { margin-top: 0; color: var(--ink); font-size: 1.18rem; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); }
.about-facts div { padding: 0 22px; border-right: 1px solid var(--line); }
.about-facts div:first-child { padding-left: 0; }
.about-facts div:last-child { border-right: 0; }
.about-facts strong { display: block; color: var(--blue); font: 900 2rem/1 "Montserrat", sans-serif; }
.about-facts span { display: block; margin-top: 8px; color: var(--muted); font-size: .75rem; }

.journey { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.journey::before { content: ""; position: absolute; inset: 0; opacity: .12; background: repeating-radial-gradient(circle at 90% 15%, transparent 0 24px, var(--lime) 25px 27px); }
.section-heading.centered { position: relative; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered h2 { margin-inline: auto; }
.section-heading.light > p { color: rgba(255,255,255,.65); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 64px; }
.timeline::before { content: ""; position: absolute; left: 6%; right: 6%; top: -22px; height: 2px; background: linear-gradient(to right, var(--lime), var(--cyan)); }
.timeline-card { position: relative; min-height: 270px; padding: 30px 26px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.055); backdrop-filter: blur(6px); }
.timeline-card::before { content: ""; position: absolute; top: -28px; left: 24px; width: 11px; height: 11px; background: var(--lime); border: 4px solid var(--navy); border-radius: 50%; box-shadow: 0 0 0 2px var(--lime); }
.timeline-card.featured { color: var(--navy); background: var(--lime); border-color: var(--lime); transform: translateY(-10px); box-shadow: 0 25px 45px rgba(0,0,0,.2); }
.timeline-card.featured::before { background: var(--white); }
.year { color: var(--lime); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.featured .year { color: var(--blue); }
.timeline-card h3 { margin: 16px 0 10px; font: 800 1.22rem/1.2 "Montserrat", sans-serif; }
.timeline-card p { margin: 0; color: rgba(255,255,255,.65); font-size: .9rem; }
.timeline-card.featured p { color: rgba(7,26,89,.7); }

.section-heading.split { display: flex; justify-content: space-between; align-items: end; gap: 70px; margin-bottom: 54px; }
.section-heading.split h2 { margin-bottom: 0; }
.section-heading.split > p { max-width: 420px; color: var(--muted); }
.achievement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.achievement-card { position: relative; min-height: 310px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.achievement-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.achievement-card.large { grid-row: span 2; min-height: 638px; display: flex; flex-direction: column; justify-content: flex-end; }
.achievement-card.blue { color: var(--white); background: linear-gradient(155deg, var(--blue), var(--navy)); }
.achievement-card.green { color: var(--navy); background: var(--lime); }
.achievement-card.dark-card { color: var(--white); background: var(--navy); }
.card-index { position: absolute; top: 24px; right: 26px; color: currentColor; opacity: .35; font-weight: 900; }
.card-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 35px; color: var(--blue); background: #edf5ff; border-radius: 16px; font-size: 1.7rem; font-weight: 900; }
.blue .card-icon, .dark-card .card-icon { color: var(--navy); background: var(--lime); }
.green .card-icon { color: var(--white); background: var(--navy); }
.achievement-card h3 { max-width: 310px; margin: 0 0 14px; font: 800 1.55rem/1.15 "Montserrat", sans-serif; }
.achievement-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.blue p, .dark-card p { color: rgba(255,255,255,.7); }

.family { background: var(--white); }
.family-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.family-photo { position: relative; height: 650px; margin: 0; }
.family-photo::before { content: ""; position: absolute; inset: -18px 32px 18px -18px; background: var(--lime); border-radius: 180px 28px 28px 28px; transform: rotate(-2deg); }
.family-photo img { position: relative; width: 100%; height: 100%; object-fit: cover; object-position: center 50%; border-radius: 180px 28px 28px 28px; box-shadow: var(--shadow); }
.photo-tag { position: absolute; right: -35px; bottom: 35px; max-width: 190px; padding: 16px 22px; color: var(--white); background: var(--blue); border-radius: 14px; font: 800 1rem/1.25 "Montserrat", sans-serif; transform: rotate(3deg); }
.family-copy p { max-width: 600px; color: var(--muted); font-size: 1.02rem; }
.family-copy .family-callout { margin: 30px 0; padding: 20px 0 20px 24px; color: var(--navy); border-left: 4px solid var(--lime); font-size: 1.1rem; font-weight: 700; }
.text-link { display: inline-flex; gap: 10px; padding-bottom: 5px; color: var(--blue); border-bottom: 2px solid var(--blue); font-weight: 800; }

.social-cta { position: relative; overflow: hidden; padding: 82px 0; color: var(--white); background: linear-gradient(110deg, #0873d9, #072474); }
.social-cta::after { content: "10800"; position: absolute; right: -25px; bottom: -68px; color: rgba(255,255,255,.07); font: 900 12rem "Montserrat", sans-serif; letter-spacing: -.08em; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.social-cta h2 { margin: 12px 0 8px; max-width: 700px; font-size: clamp(2.25rem, 4vw, 3.7rem); }
.social-cta p { margin: 0; color: rgba(255,255,255,.7); }
.button-light { flex: 0 0 auto; color: var(--navy); background: var(--white); }
.instagram-mark { font-size: 1.4rem; }

.site-footer { padding: 55px 0 22px; color: var(--white); background: #040d2a; }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 38px; }
.footer-number { display: flex; align-items: center; gap: 15px; }
.footer-number span { max-width: 80px; color: rgba(255,255,255,.55); font-size: .62rem; line-height: 1.2; letter-spacing: .12em; text-transform: uppercase; }
.footer-number strong { color: var(--lime); font: 900 2.6rem/.8 "Montserrat", sans-serif; }
.legal { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: .67rem; text-align: center; text-transform: uppercase; letter-spacing: .07em; }
.legal p { margin: 5px 0; overflow-wrap: anywhere; }

@media (max-width: 980px) {
    .main-nav { position: absolute; top: 94px; left: 20px; right: 20px; display: none; padding: 24px; flex-direction: column; align-items: stretch; gap: 18px; color: var(--navy); background: var(--white); border-radius: 18px; box-shadow: var(--shadow); }
    .main-nav.is-open { display: flex; }
    .nav-cta { text-align: center; color: var(--white); background: var(--blue); }
    .menu-toggle { display: block; }
    .hero-grid { grid-template-columns: 1fr .78fr; }
    .hero-portrait { height: 600px; }
    .portrait-badge { left: -20px; }
    .about-grid, .family-grid { gap: 48px; }
    .timeline { grid-template-columns: repeat(2, 1fr); }
    .timeline::before, .timeline-card::before { display: none; }
    .timeline-card.featured { transform: none; }
    .achievement-grid { grid-template-columns: repeat(2, 1fr); }
    .achievement-card.large { grid-row: auto; min-height: 310px; }
    .family-photo { height: 560px; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 28px, 620px); }
    .section { padding: 80px 0; }
    .header-inner { min-height: 78px; }
    .main-nav { top: 78px; }
    .hero { min-height: auto; padding-top: 78px; }
    .hero-grid { display: flex; min-height: auto; flex-direction: column; gap: 10px; }
    .hero-copy { padding-top: 66px; }
    .hero h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-number { margin-top: 30px; }
    .hero-portrait { width: min(100%, 490px); height: 540px; align-self: center; }
    .portrait-frame { inset: 40px 0 0; }
    .portrait-badge { left: 0; bottom: 40px; }
    .about-grid, .family-grid { grid-template-columns: 1fr; }
    .about-grid { gap: 20px; }
    .about-facts strong { font-size: 1.55rem; }
    .about-facts div { padding-inline: 10px; }
    .timeline { grid-template-columns: 1fr; margin-top: 44px; }
    .timeline-card { min-height: 0; }
    .section-heading.split { align-items: start; flex-direction: column; gap: 15px; }
    .achievement-grid { grid-template-columns: 1fr; }
    .achievement-card, .achievement-card.large { min-height: 300px; }
    .family-grid { gap: 65px; }
    .family-photo { height: 620px; }
    .photo-tag { right: 10px; }
    .cta-inner { align-items: flex-start; flex-direction: column; }
    .social-cta::after { font-size: 7rem; }
    .footer-top { align-items: flex-start; gap: 30px; }
}

@media (max-width: 470px) {
    .brand-name { font-size: 1.45rem; }
    .hero-copy { padding-top: 48px; }
    .hero-number { width: 100%; justify-content: space-between; padding-inline: 16px; }
    .hero-number strong { font-size: 3.15rem; }
    .hero-portrait { height: 450px; }
    .hero h1 { font-size: 2.75rem; }
    .section-heading h2, .family-copy h2 { font-size: 2.45rem; }
    .about-facts { gap: 16px; grid-template-columns: 1fr; }
    .about-facts div { padding: 0 0 16px; border-right: 0; border-bottom: 1px solid var(--line); }
    .family-photo { height: 510px; }
    .family-photo::before { inset: -10px 12px 12px -10px; }
    .footer-top { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
