:root {
  --ink: #12181f;
  --ink-soft: #4a5866;
  --mist: #eef2f4;
  --paper: #f7f8f9;
  --sky: #3d6f86;
  --sky-deep: #1f4558;
  --line: rgba(18, 24, 31, 0.1);
  --line-strong: rgba(18, 24, 31, 0.16);
  --glow: rgba(61, 111, 134, 0.16);
  --shadow: 0 28px 70px rgba(18, 24, 31, 0.16);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 1.5rem;
  --nav-h: 4.25rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 0% 0%, #d9e6ec 0%, transparent 55%),
    radial-gradient(700px 420px at 100% 8%, #e4ebe6 0%, transparent 50%),
    var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover { color: var(--sky-deep); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h3 { font-size: 1.28rem; letter-spacing: -0.02em; }

p { margin: 0 0 1rem; color: var(--ink-soft); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(700px, calc(100% - 2.5rem));
}

.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 0.9rem;
}

.section-lede {
  max-width: 34rem;
  font-size: 1.08rem;
  margin: 0 0 2.25rem;
}

.section-head { margin-bottom: 0.5rem; }

section[id] { scroll-margin-top: calc(var(--nav-h) + env(safe-area-inset-top) + 0.75rem); }

/* Topbar */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: env(safe-area-inset-top) max(1rem, env(safe-area-inset-right)) 0 max(1rem, env(safe-area-inset-left));
  height: calc(var(--nav-h) + env(safe-area-inset-top));
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.topbar.is-scrolled {
  background: rgba(247, 248, 249, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.topbar.is-hero {
  color: #fff;
}

.topbar.is-hero .menu-btn {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.topbar.is-hero .menu-btn span { background: #fff; }

.topbar__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.topbar__nav {
  display: none;
  gap: 0.15rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.topbar__nav a {
  text-decoration: none;
  opacity: 0.72;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: opacity 0.2s var(--ease), background 0.2s var(--ease);
}

.topbar__nav a:hover,
.topbar__nav a.is-active {
  opacity: 1;
}

.topbar.is-scrolled:not(.is-hero) .topbar__nav a.is-active {
  background: rgba(61, 111, 134, 0.1);
  color: var(--sky-deep);
}

.menu-btn {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 15px;
  height: 2px;
  background: var(--ink);
}

.drawer {
  position: fixed;
  top: calc(var(--nav-h) + env(safe-area-inset-top) + 0.5rem);
  left: max(0.75rem, env(safe-area-inset-left));
  right: max(0.75rem, env(safe-area-inset-right));
  z-index: 39;
  max-height: min(70svh, calc(100svh - var(--nav-h) - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 1.5rem));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 0.85rem;
  box-shadow: var(--shadow);
}

.drawer[hidden] { display: none; }

.drawer nav {
  display: grid;
  gap: 0.2rem;
}

.drawer a {
  text-decoration: none;
  font-weight: 600;
  padding: 0.85rem 0.85rem;
  border-radius: 0.85rem;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
}

.drawer a:hover { background: var(--mist); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: center;
  color: #fff;
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; }

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero__img--scenic {
  object-position: center 55%;
  filter: brightness(0.7);
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 20, 0.35) 0%, rgba(8, 14, 20, 0.28) 40%, rgba(8, 14, 20, 0.72) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--nav-h) + env(safe-area-inset-top) + 2.5rem) 0 4rem;
  text-align: center;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 800;
  line-height: 0.92;
  margin: 0 0 0.85rem;
  color: #fff;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  animation: riseIn 1s var(--ease) both;
}

.hero h1 {
  max-width: none;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: riseIn 1s var(--ease) 0.1s both;
}

.hero__lede {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  margin-bottom: 1.7rem;
  animation: riseIn 1s var(--ease) 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  animation: riseIn 1s var(--ease) 0.3s both;
}

.hero__scroll {
  position: absolute;
  left: 1.5rem;
  bottom: 1.4rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
}

.hero__scroll span {
  width: 1px;
  height: 2.2rem;
  background: rgba(255, 255, 255, 0.7);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--dark:hover {
  background: var(--sky-deep);
  color: #fff;
}

/* Why */
.why {
  padding: 6.5rem 0 5.5rem;
}

.why__layout {
  display: grid;
  gap: 1.5rem;
}

.why__index {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.85;
  color: rgba(61, 111, 134, 0.14);
  margin: 0;
}

.why h2 { margin-bottom: 1.5rem; }

.why__copy p { font-size: 1.08rem; }

.why__copy p:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  color: var(--ink);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* About */
.about {
  padding: 2rem 0 6rem;
}

.about__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about__copy p { font-size: 1.05rem; }

.about__photo { margin: 0; }

.about__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius) + 0.15rem);
  box-shadow: var(--shadow);
}

.about__photo figcaption {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Journey / Timeline */
.journey {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, transparent, rgba(217, 230, 236, 0.45), transparent);
}

.timeline {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: 5.5rem 1.2rem 1fr;
  column-gap: 1rem;
  align-items: start;
  padding: 0 0 2.1rem;
}

.timeline__item:last-child { padding-bottom: 0.2rem; }

.timeline__year {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sky-deep);
  text-align: right;
  padding-top: 0.18rem;
  line-height: 1.3;
}

.timeline__marker {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.25rem;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--sky);
  box-shadow: 0 0 0 5px var(--glow);
  z-index: 1;
}

.timeline__marker::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.15rem;
  bottom: calc(-2.1rem - 0.25rem);
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(61, 111, 134, 0.45), rgba(61, 111, 134, 0.1));
}

.timeline__item:last-child .timeline__marker::before { display: none; }

.timeline__item--now .timeline__marker {
  background: var(--sky);
  border-color: var(--sky-deep);
}

.timeline__body { min-width: 0; padding-top: 0.05rem; }
.timeline__body h3 { margin-bottom: 0.4rem; }
.timeline__item p { margin: 0; max-width: 38rem; }

.timeline__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--sky-deep);
  text-decoration: none;
}

.timeline__link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.timeline__link:hover::after { transform: translateX(4px); }

/* Chapters */
.chapter {
  padding: 5.5rem 0 6rem;
  border-top: 1px solid var(--line);
}

.chapter--alt {
  background: linear-gradient(180deg, rgba(217, 230, 236, 0.28), transparent 40%);
}

.chapter__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 0.75rem;
}

.chapter__head { margin-bottom: 0.5rem; }

.chapter__story {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.chapter__story p { font-size: 1.06rem; }

.chapter__story p:first-child {
  font-size: 1.18rem;
  color: var(--ink);
  font-weight: 600;
}

.chapter-split {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.chapter-split .chapter__story {
  margin-bottom: 0;
}

.chapter-split__photo {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.1rem);
}

.chapter-split__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center center;
  border-radius: calc(var(--radius) + 0.1rem);
  box-shadow: var(--shadow);
}

.chapter-split__photo--wide img {
  aspect-ratio: 4 / 3;
}

.chapter-split__photo figcaption {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
}

.chapter-split--photo-left .chapter-split__photo {
  order: -1;
}

/* Results — data strips, not heavy cards */
.results {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.result {
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-strong);
}

.result__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  align-items: baseline;
}

.result__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
}

.result__score {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.result__meta {
  margin: 0.35rem 0 1rem;
  font-size: 0.95rem;
}

.result__subjects {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.result__subjects > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.result__subjects dt {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 500;
}

.result__subjects dd {
  margin: 0;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

/* Documents */
.docs h3 { margin-bottom: 0.3rem; }
.docs > p { margin-bottom: 1rem; }

.docs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}

.docs__list li { border-bottom: 1px solid var(--line); }

.docs__list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.docs__list a span:last-child {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
}

.docs__list a:hover { color: var(--sky-deep); }

/* Life / carousel */
.life { padding: 5.5rem 0 2rem; }

.life-carousel {
  width: min(1200px, calc(100% - 1.25rem));
  margin: 0 auto;
}

.life-carousel__stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
}

.life-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  min-width: 0;
  width: 100%;
}

.life-carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.life-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.life-carousel__slide img {
  width: 100%;
  height: min(72vh, 640px);
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #fff;
}

.life-carousel__caption {
  padding: 1.1rem 1.25rem 1.2rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

.life-carousel__caption h3 {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.life-carousel__caption p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 40rem;
  font-size: 0.98rem;
}

.life-carousel__btn {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.85rem;
  line-height: 1;
  padding: 0 0 0.15rem;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  -webkit-tap-highlight-color: transparent;
}

.life-carousel__btn:hover {
  background: var(--mist);
  border-color: var(--sky);
  color: var(--sky-deep);
}

.life-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1rem;
  max-width: 100%;
  padding: 0 0.25rem;
}

.life-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  margin: 0.35rem;
  background: rgba(18, 24, 31, 0.22);
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.life-carousel__dot.is-active {
  width: 1.35rem;
  background: var(--sky-deep);
}

/* Values */
.values { padding: 5.5rem 0; }

.values__grid {
  display: grid;
  gap: 2rem;
}

.values__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}

.values__list li {
  display: grid;
  gap: 0.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.values__list strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.values__list span { color: var(--ink-soft); }

/* Family */
.family {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(231, 238, 243, 0.75), transparent);
}

.family__grid {
  display: grid;
  gap: 0;
  margin: 2rem 0;
}

.family__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.family__person {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.family__role {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sky);
}

.family__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.family__meta,
.family__home { color: var(--ink-soft); }

.family__home { margin-top: 0.25rem; }

/* Looking */
.looking {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.looking__bg { position: absolute; inset: 0; }

.looking__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.looking__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 20, 0.3), rgba(8, 14, 20, 0.82));
}

.looking__content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
}

.looking .eyebrow { color: #d7e6ee; }

.looking h2,
.looking p { color: #fff; }

.looking p {
  font-size: 1.18rem;
  max-width: 34rem;
}

/* Essentials */
.essentials { padding: 5.5rem 0; }

.essentials .docs {
  margin-top: 2.5rem;
}

.essentials__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.facts > div {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.facts > div:last-child { border-bottom: 1px solid var(--line); }

.facts dt {
  font-weight: 700;
  color: var(--sky-deep);
  font-size: 0.92rem;
}

.facts dd {
  margin: 0;
  color: var(--ink-soft);
}

.facts a {
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}

/* Close */
.close {
  padding: 5rem 0 4rem;
  text-align: center;
}

.close h2 { margin-bottom: 1rem; }

.close__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  font-size: 1.12rem;
  font-weight: 700;
}

.close__contact a { text-decoration: none; }

/* Footer */
.footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer p { margin: 0; }

.footer__note {
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.65); opacity: 0.45; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

@media (max-width: 640px) {
  :root { --nav-h: 3.75rem; }

  .wrap,
  .wrap.narrow {
    width: min(1120px, calc(100% - 1.5rem));
  }

  h1 { font-size: clamp(2.15rem, 11vw, 3.25rem); }
  h2 { font-size: clamp(1.7rem, 8vw, 2.35rem); }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero__content {
    width: min(820px, calc(100% - 1.5rem));
    padding: calc(var(--nav-h) + env(safe-area-inset-top) + 1.75rem) 0 5.5rem;
  }

  .hero__brand {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero__lede {
    font-size: 1.02rem;
    margin-bottom: 1.35rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 3rem;
  }

  .hero__scroll {
    left: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .why,
  .journey,
  .chapter,
  .life,
  .values,
  .family,
  .essentials,
  .close {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .about { padding: 1.5rem 0 3.75rem; }

  .chapter { padding-bottom: 4rem; }

  .chapter__story { margin-bottom: 2rem; }

  .looking {
    min-height: 68svh;
    min-height: 68dvh;
  }

  .looking__content {
    padding: 3.5rem 0 max(2.5rem, env(safe-area-inset-bottom));
  }

  .looking p { font-size: 1.05rem; }

  .family__row {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .life-carousel {
    width: min(1200px, calc(100% - 0.75rem));
  }

  .life-carousel__stage {
    gap: 0.35rem;
  }

  .life-carousel__slide img {
    height: min(55vh, 360px);
  }

  .life-carousel__caption {
    padding: 0.95rem 1rem 1.05rem;
  }

  .life-carousel__caption h3 {
    font-size: 1.05rem;
  }

  .life-carousel__caption p {
    font-size: 0.92rem;
  }

  .life-carousel__btn {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    font-size: 1.65rem;
  }

  .essentials__head {
    flex-direction: column;
    align-items: stretch;
  }

  .essentials__head .btn {
    width: 100%;
    justify-content: center;
    min-height: 3rem;
  }

  .menu-btn {
    width: 2.85rem;
    height: 2.85rem;
  }

  .timeline__item {
    grid-template-columns: 1rem 1fr;
    column-gap: 0.9rem;
    padding-bottom: 1.85rem;
  }

  .timeline__year {
    grid-column: 2;
    text-align: left;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
    padding-top: 0;
  }

  .timeline__marker {
    grid-row: 1 / span 2;
    margin-top: 0.1rem;
  }

  .timeline__body { grid-column: 2; }

  .timeline__marker::before {
    bottom: calc(-1.85rem - 0.1rem);
  }

  .facts > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .docs__list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 1.05rem 0;
    min-height: 3rem;
  }

  .docs__list a span:last-child {
    white-space: normal;
  }

  .close__contact {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  .footer {
    padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
  }

  .footer__inner {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (min-width: 820px) {
  .topbar__nav { display: flex; }
  .menu-btn { display: none; }

  .hero__content {
    padding: calc(var(--nav-h) + env(safe-area-inset-top) + 3.5rem) 0 3rem;
  }

  .hero__img { object-position: center 42%; }
  .hero__img--scenic { object-position: center 52%; }

  .why__layout {
    grid-template-columns: 10rem 1fr;
    gap: 3rem;
    align-items: start;
  }

  .about__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
  }

  .chapter-split {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
  }

  .chapter-split--photo-left {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .chapter-split--photo-left .chapter-split__photo {
    order: 0;
  }

  .chapter-split__photo {
    position: sticky;
    top: calc(var(--nav-h) + 1.25rem);
  }

  .chapter-split__photo img {
    aspect-ratio: 4 / 5;
  }

  .chapter-split__photo--wide img {
    aspect-ratio: 4 / 3;
  }

  .timeline {
    max-width: 52rem;
  }

  .timeline__item {
    grid-template-columns: 7rem 1.3rem 1fr;
    column-gap: 1.35rem;
    padding-bottom: 2.4rem;
  }

  .timeline__marker {
    width: 1.3rem;
    height: 1.3rem;
  }

  .timeline__marker::before {
    top: 1.25rem;
    bottom: calc(-2.4rem - 0.25rem);
  }

  .results {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .result {
    padding-top: 0;
    border-top: none;
    border-left: 1px solid var(--line-strong);
    padding-left: 1.35rem;
  }

  .result:first-child {
    border-left: none;
    padding-left: 0;
  }

  .result__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .life-carousel__slide img {
    height: min(72vh, 640px);
  }

  .values__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: start;
  }

  .values__list {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }

  .facts {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__scroll span,
  .hero__brand,
  .hero h1,
  .hero__lede,
  .hero__actions { animation: none; }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .life-carousel__track { transition: none; }
}
