:root {
  --ink: #102c32;
  --ink-deep: #0b2328;
  --sea: #5f9896;
  --sea-light: #a7ccc5;
  --sand: #d4aa75;
  --sand-light: #f1d8b5;
  --ivory: #f6f1e8;
  --paper: #fbf8f1;
  --white: #fffdf8;
  --line: rgba(16, 44, 50, .14);
  --line-light: rgba(255, 253, 248, .18);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius: 28px;
  --shell: min(100% - 36px, 1160px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

::selection { color: var(--ink); background: var(--sand-light); }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img, svg { display: block; max-width: 100%; }

.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;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 110;
  background: transparent;
}
.page-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.section { position: relative; padding: 96px 0; }
.section-shell { width: var(--shell); margin-inline: auto; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--sand-light);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: .72;
}
.eyebrow.dark { color: #987448; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.035em;
}
h1 em, h2 em { color: var(--sand); font-weight: 400; }
h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 13vw, 6.8rem);
  line-height: .91;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 18px;
  color: var(--white);
  transition: background .4s ease, box-shadow .4s ease, color .4s ease, height .4s ease;
}
.site-header.scrolled {
  height: 68px;
  color: var(--ink);
  background: rgba(251, 248, 241, .84);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 102;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
}
.brand-copy {
  font-size: .67rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.brand-copy small {
  font-size: .57rem;
  font-weight: 500;
  letter-spacing: .08em;
  opacity: .7;
}
.menu-button {
  position: relative;
  z-index: 102;
  width: 44px;
  height: 44px;
  margin-right: -7px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.menu-button span:not(.sr-only) {
  position: absolute;
  left: 9px;
  width: 27px;
  height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease), top .35s var(--ease);
}
.menu-button span:nth-child(2) { top: 18px; }
.menu-button span:nth-child(3) { top: 26px; }
.menu-button[aria-expanded="true"] span:nth-child(2) { top: 22px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
.site-nav {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  padding: 100px 24px 50px;
  color: var(--white);
  background: var(--ink-deep);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity .35s ease, transform .35s var(--ease), visibility .35s;
}
.site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav a {
  font-family: var(--display);
  font-size: clamp(2.5rem, 13vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  text-decoration: none;
}
.site-nav .nav-accent { color: var(--sand); }
body.menu-open { overflow: hidden; }

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 25%, rgba(204, 158, 100, .13), transparent 30%),
    linear-gradient(148deg, #12383f 0%, var(--ink) 58%, #0d262b 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(4, 19, 23, .32));
  pointer-events: none;
}
.hero-haze {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}
.hero-haze-one {
  width: 42vw;
  height: 42vw;
  min-width: 280px;
  min-height: 280px;
  top: -12%;
  left: -18%;
  background: rgba(100, 166, 159, .12);
}
.hero-haze-two {
  width: 280px;
  height: 280px;
  right: -170px;
  bottom: 8%;
  border: 1px solid rgba(241, 216, 181, .14);
  box-shadow: 0 0 0 52px rgba(241, 216, 181, .025), 0 0 0 104px rgba(241, 216, 181, .016);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: var(--shell);
  margin: 0 auto;
  padding: 132px 0 330px;
}
.hero h1 {
  max-width: 900px;
  margin: 0 0 26px;
  font-size: clamp(4.1rem, 19vw, 9rem);
  line-height: .79;
}
.hero h1 em { display: inline-block; color: var(--sand-light); }
.hero-lead {
  max-width: 540px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, .76);
  font-size: 1rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--sand-light); }
.button-primary:hover { background: var(--white); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: #183f46; }
.text-link {
  position: relative;
  padding-bottom: 4px;
  color: rgba(255, 253, 248, .8);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-decoration: none;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.text-link:hover::after { transform: scaleX(.35); }
.text-link span { margin-left: 8px; color: var(--sand-light); }
.hero-art {
  position: absolute;
  z-index: 2;
  width: min(580px, 118vw);
  right: -24%;
  bottom: -58px;
  opacity: .9;
  pointer-events: none;
}
.hero-scene { overflow: visible; }
.boat { animation: boatFloat 5.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.birds { animation: birdsDrift 9s ease-in-out infinite alternate; }
@keyframes boatFloat { 0%, 100% { transform: translate(280px, 402px) rotate(-.6deg); } 50% { transform: translate(280px, 394px) rotate(.7deg); } }
@keyframes birdsDrift { to { transform: translateX(12px) translateY(-5px); } }
.hero-meta {
  position: absolute;
  z-index: 4;
  left: 18px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 253, 248, .68);
  font-size: .63rem;
  font-weight: 650;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--sand-light); }
.scroll-cue { display: none; }

.manifesto { padding-bottom: 58px; background: var(--paper); overflow: hidden; }
.manifesto-grid { display: grid; gap: 42px; }
.manifesto .section-intro h2 { font-size: clamp(3rem, 13vw, 6.2rem); }
.manifesto-copy {
  max-width: 560px;
  color: #4b5d60;
  font-size: 1.05rem;
  line-height: 1.85;
}
.signature-line { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.signature-line span { width: 42px; height: 1px; background: var(--sand); }
.signature-line p { margin: 0; color: #8a6d49; font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.marquee {
  width: 100%;
  margin-top: 72px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: marquee 24s linear infinite;
  color: rgba(16, 44, 50, .24);
  font-family: var(--display);
  font-size: 2.1rem;
  letter-spacing: .04em;
  white-space: nowrap;
}
.marquee-track i { color: var(--sand); font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.day { color: var(--white); background: var(--ink); overflow: hidden; }
.day::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -280px;
  top: 12%;
  border: 1px solid rgba(241, 216, 181, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(241, 216, 181, .025), 0 0 0 140px rgba(241, 216, 181, .014);
}
.section-heading { display: grid; gap: 28px; margin-bottom: 66px; }
.section-heading > p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 253, 248, .63);
  line-height: 1.8;
}
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 30px 0 36px;
  border-top: 1px solid var(--line-light);
}
.timeline-item:last-child { border-bottom: 1px solid var(--line-light); }
.timeline-number { color: var(--sand); font-size: .68rem; font-weight: 700; letter-spacing: .12em; }
.timeline-time { margin-bottom: 10px; color: var(--sea-light); font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.timeline-card h3 { margin-bottom: 16px; font-size: 2.3rem; line-height: 1; }
.timeline-card > p:not(.timeline-time) { margin-bottom: 21px; color: rgba(255, 253, 248, .62); font-size: .93rem; }
.timeline-detail { color: rgba(255, 253, 248, .78); font-family: var(--display); font-size: 1.03rem; font-style: italic; }
.timeline-icon {
  grid-column: 2;
  width: 88px;
  margin-top: 22px;
  fill: none;
  stroke: var(--sand-light);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .58;
}

.experience { background: var(--ivory); }
.experience-title { margin-bottom: 56px; }
.experience-title h2 { font-size: clamp(2.95rem, 12vw, 5.8rem); }
.experience-grid { display: grid; gap: 14px; }
.experience-card {
  position: relative;
  min-height: 310px;
  padding: 27px;
  border: 1px solid rgba(16, 44, 50, .09);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .62);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.experience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 44, 50, .17);
  box-shadow: 0 22px 50px rgba(16, 44, 50, .07);
}
.card-index { position: absolute; top: 26px; right: 26px; color: #b89a72; font-size: .65rem; font-weight: 700; letter-spacing: .12em; }
.card-kicker { margin-bottom: 47px; color: #9a7548; font-size: .64rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.experience-card h3 { max-width: 390px; margin-bottom: 16px; font-size: 2.2rem; line-height: 1.02; }
.experience-card p:not(.card-kicker) { max-width: 450px; margin-bottom: 0; color: #647174; font-size: .92rem; }
.plate-graphic {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 44px auto 0;
  border: 1px solid rgba(16, 44, 50, .14);
  border-radius: 50%;
  box-shadow: inset 0 0 0 15px var(--ivory), inset 0 0 0 16px rgba(16, 44, 50, .08);
}
.plate-graphic span, .plate-graphic i, .plate-graphic b { position: absolute; display: block; border-radius: 50%; }
.plate-graphic span { width: 39px; height: 39px; left: 54px; top: 37px; border: 1px solid var(--sand); }
.plate-graphic i { width: 19px; height: 44px; left: 91px; top: 72px; border: 1px solid var(--sea); transform: rotate(35deg); border-radius: 50% 50% 45% 45%; }
.plate-graphic b { width: 8px; height: 8px; left: 55px; top: 92px; background: var(--sand); opacity: .65; }
.mini-line-art { position: absolute; right: 20px; bottom: 18px; width: 150px; fill: none; stroke: var(--sea); stroke-width: 1.2; opacity: .38; }
.mini-line-art.flower { width: 130px; stroke: var(--sand); }
.route-graphic { position: relative; width: 100%; height: 130px; margin-top: 35px; }
.route-graphic svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: var(--sea); stroke-width: 1.2; stroke-dasharray: 4 5; opacity: .55; }
.route-point { position: absolute; z-index: 1; width: 9px; height: 9px; border: 2px solid var(--white); border-radius: 50%; background: var(--sand); box-shadow: 0 0 0 1px var(--sand); }
.point-one { left: 4%; top: 69%; }
.point-two { left: 61%; top: 37%; }
.point-three { right: 4%; top: 13%; }

.budget {
  min-height: 720px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(99, 159, 154, .2), transparent 33%),
    var(--ink-deep);
  overflow: hidden;
}
.budget::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}
.budget-orbit { position: absolute; border: 1px solid rgba(241, 216, 181, .13); border-radius: 50%; }
.orbit-one { width: 630px; height: 630px; }
.orbit-two { width: 430px; height: 430px; border-style: dashed; animation: rotate 45s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.budget-shell { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.budget-shell .eyebrow { margin-bottom: 24px; }
.budget-shell h2 { font-size: clamp(3.6rem, 16vw, 7rem); }
.budget-amount {
  margin: 24px 0 18px;
  color: var(--sand-light);
  font-family: var(--display);
  font-size: clamp(5.4rem, 22vw, 11rem);
  line-height: .85;
  letter-spacing: -.07em;
}
.budget-amount span { margin-right: .08em; font-size: .38em; vertical-align: top; line-height: 1.25; }
.budget-note { max-width: 600px; margin: 0 auto 34px; color: rgba(255, 253, 248, .62); font-size: .93rem; }
.budget-includes { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px 10px; color: rgba(255, 253, 248, .78); font-family: var(--display); font-size: 1.02rem; font-style: italic; }
.budget-includes i { color: var(--sand); font-style: normal; }

.closing { padding-bottom: 70px; background: var(--paper); }
.closing-shell { display: grid; gap: 55px; }
.closing-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
  border-radius: var(--radius);
  background: #e8dfcf;
  overflow: hidden;
}
.closing-art::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  top: 66px;
  border-radius: 50%;
  background: linear-gradient(#ddb683, #e9d8be);
  opacity: .72;
}
.closing-art svg { position: relative; z-index: 2; width: min(88%, 400px); fill: none; stroke: var(--ink); stroke-width: 1.1; opacity: .62; }
.closing-copy { align-self: center; }
.closing-copy h2 { margin-bottom: 26px; font-size: clamp(3.5rem, 15vw, 6.7rem); }
.closing-copy > p:not(.eyebrow) { max-width: 510px; margin-bottom: 32px; color: #627174; font-size: 1rem; }

.site-footer { color: rgba(255, 253, 248, .65); background: var(--ink-deep); }
.footer-shell { display: flex; flex-direction: column; gap: 5px; padding: 36px 0; }
.footer-shell p { margin: 0; font-size: .62rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.no-js .reveal { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--sand); outline-offset: 4px; }

@media (min-width: 640px) {
  :root { --shell: min(100% - 64px, 1160px); }
  .site-header { padding-inline: 32px; }
  .hero-content { padding-bottom: 210px; }
  .hero-actions { flex-direction: row; align-items: center; gap: 28px; }
  .hero-art { width: 640px; right: -12%; bottom: -85px; }
  .hero-meta { left: 32px; }
  .timeline-item { grid-template-columns: 52px 1fr 110px; gap: 26px; align-items: start; }
  .timeline-icon { grid-column: 3; grid-row: 1; width: 102px; margin: 0; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 30px; }
  .card-wide .card-kicker { margin-bottom: 30px; }
  .plate-graphic { margin: 0 auto; }
  .route-graphic { margin: 0; }
  .footer-shell { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 900px) {
  :root { --shell: min(100% - 96px, 1160px); }
  .section { padding: 140px 0; }
  .site-header { height: 92px; padding: 0 48px; }
  .site-header.scrolled { height: 72px; }
  .menu-button { display: none; }
  .site-nav {
    position: static;
    inset: auto;
    z-index: auto;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    padding: 0;
    color: inherit;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-nav a {
    position: relative;
    font-family: var(--sans);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
  }
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform .3s var(--ease);
  }
  .site-nav a:hover::after { transform: scaleX(1); }
  .site-nav .nav-accent { color: var(--sand-light); }
  .site-header.scrolled .nav-accent { color: #967043; }
  .hero { min-height: 820px; }
  .hero-content { padding: 120px 0 70px; }
  .hero h1 { margin-bottom: 35px; }
  .hero-lead { font-size: 1.08rem; }
  .hero-art { width: min(55vw, 720px); right: 2%; bottom: -80px; }
  .hero-meta { left: 48px; bottom: 38px; }
  .scroll-cue {
    position: absolute;
    right: 48px;
    bottom: 38px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 253, 248, .55);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .scroll-cue i { position: relative; display: block; width: 42px; height: 1px; background: currentColor; overflow: hidden; }
  .scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--sand-light); transform: translateX(-100%); animation: scrollLine 2.2s ease-in-out infinite; }
  @keyframes scrollLine { 50%, 100% { transform: translateX(100%); } }
  .manifesto-grid { grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; }
  .manifesto-copy { padding-bottom: 12px; }
  .marquee { margin-top: 110px; }
  .marquee-track { font-size: 3.2rem; }
  .section-heading { grid-template-columns: 1fr 360px; align-items: end; gap: 70px; margin-bottom: 94px; }
  .timeline-item {
    grid-template-columns: 70px minmax(0, 1fr) 160px;
    gap: 40px;
    min-height: 270px;
    padding: 46px 0;
  }
  .timeline-card {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
    grid-template-areas:
      "time copy"
      "title copy"
      "title detail";
    column-gap: clamp(28px, 4vw, 54px);
    row-gap: 10px;
    align-items: start;
  }
  .timeline-time {
    grid-area: time;
    margin: 0;
  }
  .timeline-card h3 {
    grid-area: title;
    margin: 0;
    font-size: clamp(2.65rem, 3.5vw, 3.25rem);
  }
  .timeline-card > p:not(.timeline-time) {
    grid-area: copy;
    margin: 0;
    padding-top: 1px;
    font-size: 1rem;
  }
  .timeline-detail {
    grid-area: detail;
    align-self: end;
    margin-top: 20px;
  }
  .timeline-icon { width: clamp(102px, 8vw, 126px); justify-self: end; }
  .experience-title { margin-bottom: 80px; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .experience-card { min-height: 380px; padding: 38px; }
  .card-wide { min-height: 325px; grid-column: 1 / -1; grid-template-columns: 1.25fr .75fr; }
  .experience-card h3 { font-size: 2.75rem; }
  .card-kicker { margin-bottom: 76px; }
  .budget { min-height: 900px; }
  .budget-note { font-size: 1rem; }
  .closing-shell { grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
  .closing-art { min-height: 620px; }
  .closing-art::after { width: 330px; height: 330px; top: 95px; }
}

@media (min-width: 1180px) {
  .hero-content { padding-left: 1%; }
  .hero-art { right: 4%; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
}

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