:root {
  --navy: #071b2e;
  --navy-2: #0c2c47;
  --ice: #eaf7ff;
  --sky: #62d9ff;
  --coral: #ff6572;
  --sand: #f2ede4;
  --white: #ffffff;
  --ink: #112133;
  --muted: #5e6c78;
  --line: rgba(7, 27, 46, 0.13);
  --shadow: 0 24px 70px rgba(7, 27, 46, 0.14);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfdff;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 4px; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 999;
  transform: translateY(-140%); background: var(--navy); color: white;
  padding: 10px 14px; border-radius: 10px; text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.eyebrow { margin: 0 0 10px; text-transform: uppercase; letter-spacing: .2em; font-weight: 800; font-size: .78rem; color: var(--coral); }
.kicker { color: var(--sky); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .75rem; }
.section { padding: 92px 0; }
.section-tight { padding: 60px 0; }
.section-dark { background: var(--navy); color: white; }
.section-sand { background: var(--sand); }
.section-title { font-size: clamp(2rem, 5vw, 4.3rem); line-height: 1.03; letter-spacing: -.045em; margin: 0 0 20px; }
.section-lead { max-width: 760px; color: var(--muted); font-size: 1.12rem; margin: 0; }
.section-dark .section-lead { color: rgba(255,255,255,.72); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,253,255,.9); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7,27,46,.08);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; width: min(330px, 48vw); }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { text-decoration: none; font-size: .92rem; font-weight: 750; color: var(--navy); position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--coral); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.nav-cta { border: 1px solid var(--navy); padding: 10px 16px; border-radius: 999px; }
.nav-cta::after { display: none; }
.nav-toggle { display: none; border: 0; background: var(--navy); color: white; width: 44px; height: 44px; border-radius: 50%; font-size: 1.3rem; }

.notice {
  background: #102e49; color: rgba(255,255,255,.86); font-size: .82rem; text-align: center; padding: 8px 20px;
}
.notice strong { color: white; }

.hero { position: relative; min-height: 760px; color: white; display: grid; align-items: end; overflow: hidden; background: var(--navy); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 35%; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,14,27,.92) 0%, rgba(3,14,27,.65) 40%, rgba(3,14,27,.15) 72%, rgba(3,14,27,.4) 100%), linear-gradient(0deg, rgba(3,14,27,.86), transparent 45%); }
.hero-content { position: relative; z-index: 1; padding: 170px 0 90px; max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; background: rgba(255,255,255,.08); font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.hero-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255,101,114,.2); }
.hero h1 { font-size: clamp(3.8rem, 9vw, 8.4rem); line-height: .86; letter-spacing: -.07em; margin: 24px 0; }
.hero h1 span { color: var(--sky); display: block; }
.hero p { font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 630px; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 800; border: 1px solid transparent; transition: transform .2s ease, background .2s ease, border .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: white; }
.btn-secondary { border-color: rgba(255,255,255,.48); color: white; background: rgba(255,255,255,.05); }
.btn-dark { background: var(--navy); color: white; }
.btn-outline { border-color: var(--line); background: white; color: var(--navy); }

.stat-strip { background: var(--ice); border-bottom: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 28px 34px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 1.65rem; color: var(--navy); line-height: 1.2; }
.stat span { color: var(--muted); font-size: .92rem; }

.profile-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.profile-photo { position: relative; }
.profile-photo img { width: 100%; min-height: 620px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.profile-photo::before { content: ""; position: absolute; width: 160px; height: 160px; border: 18px solid var(--sky); border-radius: 50%; right: -28px; top: -28px; z-index: -1; opacity: .42; }
.quote-card { position: absolute; left: -34px; bottom: 28px; width: min(360px, 88%); background: var(--navy); color: white; padding: 26px; border-radius: 20px; box-shadow: var(--shadow); }
.quote-card p { margin: 0; font-size: 1.08rem; }
.quote-card small { color: var(--sky); font-weight: 700; }
.profile-copy h2 { font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -.055em; line-height: .98; margin: 0 0 25px; }
.profile-copy p { color: var(--muted); font-size: 1.06rem; }
.fact-list { display: grid; gap: 14px; margin: 30px 0; }
.fact-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; padding: 16px 0; border-top: 1px solid var(--line); }
.fact-icon { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--ice); color: var(--navy); font-weight: 900; }
.fact-item strong { display: block; color: var(--navy); }
.fact-item span { color: var(--muted); font-size: .92rem; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.pillar { position: relative; min-height: 430px; overflow: hidden; border-radius: var(--radius); color: white; box-shadow: var(--shadow); }
.pillar img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .4s ease; }
.pillar:hover img { transform: scale(1.04); }
.pillar::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,15,28,.95), rgba(3,15,28,.03) 68%); }
.pillar-content { position: absolute; inset: auto 26px 24px; z-index: 1; }
.pillar h3 { margin: 5px 0 8px; font-size: 1.65rem; }
.pillar p { margin: 0; color: rgba(255,255,255,.76); }

.timeline { margin-top: 48px; display: grid; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 120px 36px 1fr; gap: 20px; min-height: 130px; }
.timeline-year { font-size: 1.5rem; font-weight: 900; color: var(--coral); padding-top: 4px; }
.timeline-line { display: flex; flex-direction: column; align-items: center; }
.timeline-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--sky); border: 5px solid var(--navy); box-shadow: 0 0 0 2px var(--sky); }
.timeline-line::after { content: ""; width: 2px; flex: 1; background: rgba(255,255,255,.2); }
.timeline-item:last-child .timeline-line::after { display: none; }
.timeline-copy h3 { margin: 0 0 8px; font-size: 1.35rem; }
.timeline-copy p { margin: 0; color: rgba(255,255,255,.7); max-width: 720px; }

.editorial-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; margin-top: 45px; }
.story-card { background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.story-card.featured { grid-row: span 2; }
.story-card img { width: 100%; height: 250px; object-fit: cover; }
.story-card.featured img { height: 430px; }
.story-body { padding: 25px; }
.story-meta { display: flex; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 750; }
.story-card h3 { font-size: clamp(1.4rem, 3vw, 2.3rem); line-height: 1.12; margin: 12px 0; letter-spacing: -.03em; }
.story-card p { color: var(--muted); margin: 0 0 18px; }
.text-link { color: var(--navy); font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 150px; gap: 14px; margin-top: 40px; }
.gallery-item { border-radius: 18px; overflow: hidden; position: relative; background: var(--navy); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 3; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 7; grid-row: span 1; }
.gallery-caption { position: absolute; inset: auto 0 0; padding: 20px; color: white; background: linear-gradient(0deg, rgba(2,13,26,.8), transparent); font-weight: 700; }

.cta-panel { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 430px; border-radius: 30px; overflow: hidden; background: var(--navy); color: white; box-shadow: var(--shadow); }
.cta-copy { padding: 58px; display: flex; flex-direction: column; justify-content: center; }
.cta-copy h2 { font-size: clamp(2.3rem, 5vw, 4.5rem); line-height: .98; letter-spacing: -.05em; margin: 0 0 20px; }
.cta-copy p { color: rgba(255,255,255,.72); max-width: 600px; }
.cta-panel img { width: 100%; height: 100%; object-fit: cover; }

.page-hero { position: relative; min-height: 430px; display: grid; align-items: end; color: white; background: var(--navy); overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,15,28,.92), rgba(3,15,28,.18)); }
.page-hero .container { position: relative; z-index: 1; padding-bottom: 58px; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: .9; letter-spacing: -.06em; margin: 12px 0; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.75); font-size: 1.12rem; }

.article-layout { display: grid; grid-template-columns: minmax(0, 780px) 280px; gap: 70px; align-items: start; }
.prose { font-size: 1.08rem; }
.prose h2, .prose h3 { color: var(--navy); letter-spacing: -.025em; line-height: 1.18; }
.prose h2 { font-size: 2rem; margin-top: 48px; }
.prose p { color: #354554; }
.prose blockquote { margin: 34px 0; border-left: 5px solid var(--coral); padding: 14px 24px; background: var(--ice); font-size: 1.25rem; font-weight: 650; }
.prose a { color: #0a5b8a; }
.sidebar-card { position: sticky; top: 110px; background: var(--ice); padding: 24px; border-radius: 20px; }
.sidebar-card h3 { margin-top: 0; }
.sidebar-card ul { padding-left: 20px; color: var(--muted); }

.profile-detail { display: grid; grid-template-columns: 320px 1fr; gap: 60px; }
.profile-aside { background: var(--navy); color: white; padding: 30px; border-radius: var(--radius); align-self: start; position: sticky; top: 110px; }
.profile-aside img { border-radius: 18px; aspect-ratio: 4/5; object-fit: cover; margin-bottom: 24px; }
.profile-aside dl { margin: 0; }
.profile-aside dt { font-size: .75rem; color: var(--sky); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.profile-aside dd { margin: 3px 0 18px; }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; align-items: start; }
.contact-info { background: var(--navy); color: white; padding: 38px; border-radius: var(--radius); }
.contact-info p { color: rgba(255,255,255,.72); }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 760; color: var(--navy); }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 14px 15px; background: white; color: var(--ink); }
.field textarea { min-height: 160px; resize: vertical; }
.form-note { grid-column: 1 / -1; font-size: .85rem; color: var(--muted); }
.form-status { grid-column: 1 / -1; padding: 12px 14px; border-radius: 12px; display: none; }
.form-status.show { display: block; background: var(--ice); color: var(--navy); }

.source-list { display: grid; gap: 18px; margin-top: 30px; }
.source-item { border: 1px solid var(--line); border-radius: 18px; padding: 22px; background: white; }
.source-item h3 { margin: 0 0 8px; }
.source-item p { margin: 0 0 10px; color: var(--muted); }
.source-item a { color: #0a5b8a; word-break: break-word; }

.site-footer { background: #04111f; color: white; padding: 65px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 48px; }
.footer-logo { width: min(330px, 100%); margin-bottom: 20px; }
.footer-copy { color: rgba(255,255,255,.64); max-width: 520px; }
.footer-heading { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--sky); margin: 0 0 15px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.52); font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-toggle { display: grid; place-items: center; }
  .main-nav { position: fixed; inset: 78px 0 auto; background: rgba(251,253,255,.98); padding: 26px 20px 32px; display: grid; gap: 18px; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .25s ease; }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { width: fit-content; }
  .hero { min-height: 690px; }
  .profile-grid, .profile-detail, .contact-grid, .article-layout, .cta-panel { grid-template-columns: 1fr; }
  .profile-photo img { min-height: 500px; }
  .quote-card { left: 18px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .editorial-grid { grid-template-columns: 1fr; }
  .story-card.featured { grid-row: auto; }
  .story-card.featured img { height: 330px; }
  .profile-aside, .sidebar-card { position: static; }
  .cta-panel img { min-height: 360px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand { width: 235px; }
  .section { padding: 70px 0; }
  .hero { min-height: 650px; }
  .hero-content { padding: 130px 0 65px; }
  .hero h1 { font-size: clamp(3.6rem, 17vw, 5.8rem); }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 14px; }
  .pillars { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 76px 28px 1fr; gap: 12px; }
  .timeline-year { font-size: 1.1rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .contact-form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-note, .form-status { grid-column: auto; }
  .cta-copy { padding: 38px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .page-hero { min-height: 360px; }
}

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