/*
  Alden Reach marketing site
  No external fonts or frameworks; designed for a static nginx deployment.
*/

:root {
  --ink: #173b32;
  --ink-deep: #0d2a24;
  --ink-soft: #2f5a4d;
  --moss: #4f7259;
  --sage: #8ca887;
  --sage-light: #c9d8bd;
  --fern: #678a67;
  --cream: #f7f1df;
  --paper: #fffaf0;
  --paper-warm: #f3e8cf;
  --sun: #efb45f;
  --sun-light: #f9d899;
  --clay: #b95f48;
  --clay-dark: #864232;
  --river: #75aeb1;
  --river-light: #b7d9d5;
  --night: #142a2b;
  --white: #fffef9;
  --line: rgba(23, 59, 50, 0.16);
  --line-light: rgba(255, 254, 249, 0.18);
  --shadow: 0 24px 80px rgba(33, 55, 42, 0.15);
  --shadow-small: 0 12px 36px rgba(33, 55, 42, 0.13);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--ink-deep);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--white);
  background: var(--clay);
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 84px;
  color: var(--ink);
  transition: background-color .3s ease, box-shadow .3s ease, height .3s ease, backdrop-filter .3s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(247, 241, 223, .9);
  box-shadow: 0 1px 0 rgba(23, 59, 50, .1);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: -.025em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 32px);
  font-size: .89rem;
  font-weight: 650;
}

.primary-nav > a:not(.button) {
  position: relative;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--clay);
  transition: right .3s var(--ease);
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  right: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle-label {
  font-size: .84rem;
  font-weight: 700;
}

.nav-toggle-lines {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}

.nav-toggle-lines i {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}

.nav-toggle-lines i:first-child { top: 4px; }
.nav-toggle-lines i:last-child { top: 12px; }

.nav-open .nav-toggle-lines i:first-child { top: 8px; transform: rotate(45deg); }
.nav-open .nav-toggle-lines i:last-child { top: 8px; transform: rotate(-45deg); }

/* Buttons and links */
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: .84rem;
}

.button-primary {
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 10px 25px rgba(134, 66, 50, .22);
}

.button-primary:hover {
  background: var(--clay-dark);
  box-shadow: 0 14px 32px rgba(134, 66, 50, .28);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--ink-deep);
  box-shadow: 0 12px 28px rgba(13, 42, 36, .22);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-ghost:hover {
  background: rgba(23, 59, 50, .06);
  border-color: rgba(23, 59, 50, .3);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 2px;
  border-bottom: 1px solid rgba(23, 59, 50, .45);
  font-size: .91rem;
  font-weight: 750;
  line-height: 1.2;
  transition: gap .25s var(--ease), border-color .25s ease;
}

.text-link:hover {
  gap: 12px;
  border-color: var(--clay);
}

.text-link-light {
  color: var(--white);
  border-color: rgba(255, 254, 249, .45);
}

/* Shared typography */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--clay-dark);
  font-size: .74rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 5px rgba(185, 95, 72, .13);
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.45rem);
  font-weight: 650;
}

h3 {
  font-size: 1.55rem;
  font-weight: 650;
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 148px) 0;
}

.section-heading {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
}

.split-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 500px;
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.centered-heading {
  max-width: 770px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p:last-child {
  max-width: 660px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 900px;
  padding: 145px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(249, 216, 153, .53), transparent 27%),
    linear-gradient(180deg, #f8f1db 0%, #f3e8cf 72%, #eadbbd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 90px;
  right: -180px;
  width: 630px;
  height: 630px;
  border: 1px solid rgba(185, 95, 72, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(185, 95, 72, .025), 0 0 0 110px rgba(185, 95, 72, .018);
}

.hero-sunwash {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(23, 59, 50, .09) .65px, transparent .65px);
  background-size: 8px 8px;
  opacity: .22;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 75%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 75%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(510px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}

.hero-copy {
  padding-bottom: 54px;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 7.6vw, 7rem);
  font-weight: 650;
  line-height: .91;
  letter-spacing: -.065em;
}

.hero h1 em {
  color: var(--clay);
  font-weight: inherit;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.23rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 48px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 640px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 17px 16px 0 0;
}

.hero-facts li + li {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-facts strong {
  font-size: .82rem;
  letter-spacing: -.01em;
}

.hero-facts span {
  color: var(--moss);
  font-size: .73rem;
}

.hero-visual {
  position: relative;
  align-self: end;
}

.hero-art-frame {
  position: relative;
  width: min(690px, 52vw);
  margin-left: auto;
  filter: drop-shadow(0 42px 50px rgba(58, 71, 48, .2));
}

.hero-art {
  width: 100%;
  height: auto;
}

.project-card {
  position: absolute;
  z-index: 3;
  display: flex;
  color: var(--ink);
  background: rgba(255, 250, 240, .91);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: var(--shadow-small);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.project-card-mill {
  top: 19%;
  right: -5%;
  width: 176px;
  flex-direction: column;
  gap: 2px;
  padding: 15px 16px;
  border-radius: 16px;
  animation: card-float 5s ease-in-out infinite;
}

.project-card-kicker {
  color: var(--clay-dark);
  font-size: .59rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-card-mill strong {
  font-family: var(--display);
  font-size: 1rem;
}

.mini-progress {
  height: 5px;
  margin: 7px 0 3px;
  overflow: hidden;
  background: rgba(23, 59, 50, .12);
  border-radius: 999px;
}

.mini-progress i {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--clay);
  border-radius: inherit;
}

.project-card-meta {
  color: var(--moss);
  font-size: .62rem;
  font-weight: 700;
}

.project-card-note {
  right: 7%;
  bottom: 10%;
  align-items: center;
  gap: 10px;
  width: 225px;
  padding: 12px 14px;
  border-radius: 18px;
  animation: card-float 5.7s .5s ease-in-out infinite reverse;
}

.portrait-chip {
  width: 39px;
  height: 39px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 750;
}

.project-card-note > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.project-card-note strong {
  font-size: .68rem;
  line-height: 1.2;
}

.project-card-note small {
  margin-top: 2px;
  overflow: hidden;
  font-family: var(--display);
  font-size: .73rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-bottom-rule {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 13px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 58px, transparent 58px 70px);
  opacity: .94;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0) rotate(-.2deg); }
  50% { transform: translateY(-9px) rotate(.4deg); }
}

/* Principle strip */
.principle-strip {
  color: var(--cream);
  background: var(--ink);
}

.principle-strip-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 24px;
}

.principle-strip p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: rgba(255, 254, 249, .84);
  font-family: var(--display);
  font-size: .97rem;
  letter-spacing: -.01em;
}

.principle-strip p + p {
  padding-left: 26px;
  border-left: 1px solid var(--line-light);
}

.principle-strip span {
  color: var(--sun);
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .1em;
}

/* World / ripple */
.section-world {
  background: var(--paper);
}

.ripple-grid {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  align-items: stretch;
  margin-bottom: clamp(70px, 8vw, 112px);
}

.ripple-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: #f4ecda;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.ripple-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(23, 59, 50, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(23, 59, 50, .025), 0 0 0 44px rgba(23, 59, 50, .018);
}

.ripple-card-accent {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.ripple-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--moss);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.ripple-card-accent .ripple-number {
  color: var(--sun-light);
}

.ripple-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: var(--clay-dark);
  background: rgba(255, 250, 240, .74);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(23, 59, 50, .1);
}

.ripple-card-accent .ripple-icon {
  color: var(--sun);
  background: rgba(255, 254, 249, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 254, 249, .18);
}

.ripple-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.ripple-label {
  margin: 30px 0 6px;
  color: var(--clay-dark);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ripple-card-accent .ripple-label {
  color: var(--sun);
}

.ripple-card h3 {
  margin-bottom: 10px;
}

.ripple-card p:last-child {
  color: var(--ink-soft);
  font-size: .91rem;
}

.ripple-card-accent p:last-child {
  color: rgba(255, 254, 249, .74);
}

.ripple-arrow {
  display: grid;
  place-items: center;
  color: var(--clay);
  font-size: 1.35rem;
}

/* Restoration demo */
.restoration-demo {
  display: grid;
  grid-template-columns: minmax(310px, .72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  padding: clamp(28px, 4vw, 52px);
  color: var(--white);
  background: var(--ink-deep);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.restoration-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.restoration-copy > p:not(.eyebrow):not(.restoration-status) {
  color: rgba(255, 254, 249, .72);
}

.restoration-copy .eyebrow {
  color: var(--sun);
}

.restoration-copy label {
  display: block;
  margin-top: 34px;
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.range-row {
  display: grid;
  grid-template-columns: 1fr 54px;
  align-items: center;
  gap: 15px;
  margin-top: 13px;
}

.range-row input[type="range"] {
  width: 100%;
  height: 4px;
  margin: 0;
  color: var(--sun);
  background: transparent;
  cursor: ew-resize;
  accent-color: var(--sun);
}

.range-row input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  background: linear-gradient(90deg, var(--sun), var(--sun)) 0/var(--range-fill, 58%) 100% no-repeat, rgba(255, 255, 255, .16);
  border-radius: 999px;
}

.range-row input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  margin-top: -7.5px;
  border: 3px solid var(--ink-deep);
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 2px var(--sun);
  -webkit-appearance: none;
  appearance: none;
}

.range-row input[type="range"]::-moz-range-track {
  height: 5px;
  background: rgba(255, 255, 255, .16);
  border-radius: 999px;
}

.range-row input[type="range"]::-moz-range-progress {
  height: 5px;
  background: var(--sun);
  border-radius: 999px;
}

.range-row input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 3px solid var(--ink-deep);
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 2px var(--sun);
}

.range-row output {
  color: var(--sun-light);
  font-family: var(--display);
  font-size: 1.23rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.restoration-status {
  min-height: 42px;
  margin: 17px 0 0;
  color: rgba(255, 254, 249, .66);
  font-size: .78rem;
  line-height: 1.45;
}

.restoration-window {
  --restoration: 58%;
  --restoration-number: .58;
  position: relative;
  aspect-ratio: 1000 / 620;
  overflow: hidden;
  background: #9aa18c;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
  isolation: isolate;
}

.restoration-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.restoration-after-wrap {
  position: absolute;
  z-index: 2;
  inset: 0 calc(100% - var(--restoration)) 0 0;
  overflow: hidden;
}

.restoration-after {
  right: auto;
  left: 0;
  width: calc(100% / (var(--restoration-number, .58)));
  min-width: 100%;
  max-width: none;
}


.restoration-handle {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--restoration);
  width: 2px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 0 16px rgba(0, 0, 0, .25);
  transform: translateX(-1px);
  pointer-events: none;
}

.restoration-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink-deep);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
  font-size: .95rem;
  transform: translate(-50%, -50%);
}

.scene-label {
  position: absolute;
  z-index: 5;
  top: 14px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(13, 42, 36, .72);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.scene-label-before { left: 14px; }
.scene-label-after { right: 14px; }

/* Day rhythm */
.section-rhythm {
  overflow: hidden;
  background:
    linear-gradient(rgba(247, 241, 223, .94), rgba(247, 241, 223, .94)),
    radial-gradient(circle at 1px 1px, rgba(23, 59, 50, .22) 1px, transparent 0);
  background-size: auto, 20px 20px;
}

.day-path {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.day-path::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 178px;
  width: 1px;
  background: linear-gradient(var(--sun), var(--clay), var(--river), var(--ink));
}

.day-stop {
  position: relative;
  display: grid;
  grid-template-columns: 146px 64px 1fr;
  align-items: center;
  min-height: 150px;
}

.day-time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 24px;
  font-variant-numeric: tabular-nums;
}

.day-time span {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 700;
}

.day-time small {
  color: var(--moss);
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.day-dot {
  position: relative;
  z-index: 2;
  width: 17px;
  height: 17px;
  justify-self: center;
  border: 4px solid var(--cream);
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 1px var(--clay);
}

.day-stop:nth-child(1) .day-dot { background: var(--sun); box-shadow: 0 0 0 1px var(--sun); }
.day-stop:nth-child(3) .day-dot { background: var(--river); box-shadow: 0 0 0 1px var(--river); }
.day-stop:nth-child(4) .day-dot { background: var(--ink); box-shadow: 0 0 0 1px var(--ink); }

.day-content {
  position: relative;
  max-width: 700px;
  padding: 28px 84px 28px 30px;
  background: rgba(255, 250, 240, .7);
  border: 1px solid rgba(23, 59, 50, .1);
  border-radius: 20px;
  box-shadow: 0 9px 34px rgba(66, 77, 54, .06);
}

.day-icon {
  position: absolute;
  top: 23px;
  right: 28px;
  color: var(--clay);
  font-family: var(--display);
  font-size: 2rem;
}

.day-stop:nth-child(1) .day-icon { color: #d99c43; }
.day-stop:nth-child(3) .day-icon { color: var(--river); }
.day-stop:nth-child(4) .day-icon { color: var(--ink); }

.day-content h3 {
  margin-bottom: 7px;
  font-size: 1.35rem;
}

.day-content p {
  color: var(--ink-soft);
  font-size: .91rem;
}

.session-badges {
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 58px auto 0;
}

.session-badges div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 20px;
  background: rgba(23, 59, 50, .055);
  border: 1px solid rgba(23, 59, 50, .09);
  border-radius: 14px;
}

.session-badges strong {
  font-family: var(--display);
  font-size: 1rem;
}

.session-badges span {
  color: var(--moss);
  font-size: .72rem;
}

/* Pillars */
.section-pillars {
  color: var(--white);
  background: var(--ink-deep);
}

.section-pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 14%, rgba(239, 180, 95, .12), transparent 23%),
    radial-gradient(circle at 92% 78%, rgba(117, 174, 177, .12), transparent 23%);
}

.section-pillars .shell {
  position: relative;
}

.section-pillars .eyebrow {
  color: var(--sun);
}

.section-pillars .split-heading > p {
  color: rgba(255, 254, 249, .66);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 254, 249, .055);
  border: 1px solid rgba(255, 254, 249, .12);
  border-radius: var(--radius-lg);
}

.pillar-card-wide {
  grid-column: span 2;
}

.pillar-card h3 {
  margin-top: auto;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.75rem;
}

.pillar-card p {
  max-width: 520px;
  color: rgba(255, 254, 249, .66);
  font-size: .91rem;
}

.pillar-index {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--sun-light);
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.pillar-symbol {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--sun);
  background: rgba(255, 254, 249, .065);
  border: 1px solid rgba(255, 254, 249, .11);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 2.2rem;
}

.pillar-art {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 54%;
  height: 150px;
}

.pillar-art-farm {
  perspective: 500px;
  transform: rotate(-3deg);
}

.field-row {
  position: absolute;
  left: 0;
  width: 100%;
  height: 28px;
  background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(239, 180, 95, .9) 18px 21px, transparent 21px 39px);
  border-bottom: 2px solid rgba(239, 180, 95, .55);
  transform: skewX(-18deg);
}

.row-one { top: 10px; width: 70%; }
.row-two { top: 53px; width: 88%; }
.row-three { top: 96px; }

.tiny-sprout {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 19px;
  border-left: 2px solid var(--sage-light);
}

.tiny-sprout::before,
.tiny-sprout::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 9px;
  height: 5px;
  background: var(--sage);
  border-radius: 100% 0 100% 0;
}

.tiny-sprout::before { left: 0; transform: rotate(-18deg); }
.tiny-sprout::after { right: 2px; transform: scaleX(-1) rotate(-18deg); }
.sprout-one { top: 42px; left: 23%; }
.sprout-two { top: 86px; left: 48%; }
.sprout-three { top: 126px; left: 73%; }

.pillar-card-night {
  background: linear-gradient(135deg, #183335, #234d47);
}

.pillar-stars i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sun-light);
  box-shadow: 0 0 10px rgba(249, 216, 153, .8);
}

.pillar-stars i:nth-child(1) { top: 48px; left: 14%; }
.pillar-stars i:nth-child(2) { top: 79px; left: 30%; width: 3px; height: 3px; }
.pillar-stars i:nth-child(3) { top: 42px; left: 53%; width: 6px; height: 6px; }
.pillar-stars i:nth-child(4) { top: 93px; left: 72%; }
.pillar-stars i:nth-child(5) { top: 54px; left: 86%; width: 3px; height: 3px; }

/* People */
.section-people {
  overflow: hidden;
  background: var(--paper-warm);
}

.section-people::after {
  content: "";
  position: absolute;
  top: -250px;
  right: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(23, 59, 50, .11);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(23, 59, 50, .025), 0 0 0 120px rgba(23, 59, 50, .018);
}

.people-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(55px, 9vw, 128px);
}

.people-copy h2 {
  max-width: 570px;
}

.people-copy > p:not(.eyebrow):not(.people-note) {
  max-width: 570px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.people-copy blockquote {
  position: relative;
  max-width: 540px;
  margin: 32px 0 24px;
  padding: 20px 0 20px 26px;
  border-left: 3px solid var(--clay);
  font-family: var(--display);
  font-size: 1.38rem;
  font-style: italic;
  line-height: 1.35;
}

.people-note {
  max-width: 540px;
  color: var(--moss);
  font-size: .79rem;
}

.dialogue-demo {
  position: relative;
  padding: 26px;
  background: rgba(255, 250, 240, .72);
  border: 1px solid rgba(23, 59, 50, .12);
  border-radius: var(--radius-xl);
  box-shadow: 22px 22px 0 var(--clay), var(--shadow);
}

.dialogue-demo::before {
  content: none;
}

.dialogue-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 27px;
  padding-bottom: 16px;
  color: var(--moss);
  border-bottom: 1px solid var(--line);
  font-size: .64rem;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.dialogue-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dialogue-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fern);
  box-shadow: 0 0 0 4px rgba(103, 138, 103, .13);
}

.npc-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.npc-portrait {
  position: relative;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--river-light);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(23, 59, 50, .12);
}

.npc-face {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  width: 34px;
  height: 40px;
  background: #d9a879;
  border-radius: 46% 46% 43% 43%;
}

.npc-hair {
  position: absolute;
  z-index: 3;
  top: 11px;
  left: 15px;
  width: 44px;
  height: 30px;
  background: #5b3d31;
  border-radius: 52% 52% 35% 35%;
  transform: rotate(-5deg);
}

.npc-hair::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -18px;
  width: 15px;
  height: 31px;
  background: #5b3d31;
  border-radius: 0 0 10px 10px;
}

.npc-scarf {
  position: absolute;
  z-index: 4;
  right: 9px;
  bottom: 2px;
  left: 12px;
  height: 20px;
  background: var(--clay);
  border-radius: 50% 50% 20% 20%;
}

.npc-identity {
  display: flex;
  flex-direction: column;
}

.npc-identity strong {
  font-family: var(--display);
  font-size: 1.34rem;
}

.npc-identity span {
  color: var(--moss);
  font-size: .72rem;
  font-weight: 650;
}

.context-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 18px;
}

.context-chips span {
  padding: 6px 10px;
  color: var(--ink-soft);
  background: rgba(23, 59, 50, .055);
  border: 1px solid rgba(23, 59, 50, .08);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
}

.speech-card {
  position: relative;
  min-height: 170px;
  display: flex;
  align-items: center;
  padding: 36px 38px 32px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 20px;
}

.speech-card p {
  position: relative;
  z-index: 2;
  max-width: 460px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-style: italic;
  line-height: 1.4;
  transition: opacity .18s ease, transform .18s ease;
}

.speech-card p.is-changing {
  opacity: 0;
  transform: translateY(7px);
}

.speech-mark {
  position: absolute;
  right: 22px;
  bottom: -54px;
  color: rgba(255, 254, 249, .06);
  font-family: var(--display);
  font-size: 12rem;
  line-height: 1;
}

.dialogue-button {
  width: 100%;
  margin-top: 14px;
}

.demo-disclaimer {
  margin: 11px 0 0;
  color: var(--moss);
  font-size: .61rem;
  text-align: center;
}

/* Progression */
.section-progression {
  background: var(--paper);
}

.progression-track {
  display: grid;
  grid-template-columns: 1fr 54px 1fr 54px 1fr 54px 1fr;
  align-items: center;
  gap: 0;
}

.progression-track article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.progression-step {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  align-self: flex-start;
  color: var(--white);
  background: var(--clay);
  border-radius: 50%;
  font-size: .69rem;
  font-weight: 850;
}

.progression-illustration {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 36px auto 27px;
  color: var(--ink);
}

.illustration-can {
  width: 78px;
  height: 58px;
  margin-top: 58px;
  background: var(--river);
  border: 3px solid var(--ink);
  border-radius: 8px 8px 15px 15px;
  transform: rotate(-6deg);
}

.illustration-can::before {
  content: "";
  position: absolute;
  top: -21px;
  left: 9px;
  width: 48px;
  height: 38px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.illustration-can::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -38px;
  width: 48px;
  height: 12px;
  background: var(--river);
  border: 3px solid var(--ink);
  border-left: 0;
  border-radius: 0 10px 10px 0;
  transform: rotate(-21deg);
}

.illustration-can i {
  position: absolute;
  right: -47px;
  bottom: -23px;
  width: 5px;
  height: 9px;
  background: var(--river);
  border-radius: 50% 50% 60% 60%;
  box-shadow: 15px 8px 0 var(--river), 28px -2px 0 var(--river);
  transform: rotate(-14deg);
}

.illustration-sprinkler::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 44px;
  width: 12px;
  height: 62px;
  background: var(--moss);
  border: 3px solid var(--ink);
  border-radius: 5px;
}

.illustration-sprinkler::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 23px;
  width: 54px;
  height: 16px;
  background: var(--sun);
  border: 3px solid var(--ink);
  border-radius: 999px;
}

.illustration-sprinkler i,
.illustration-sprinkler b {
  position: absolute;
  top: 8px;
  width: 35px;
  height: 35px;
  border-top: 3px dashed var(--river);
  border-radius: 50%;
}

.illustration-sprinkler i { left: 0; transform: rotate(-25deg); }
.illustration-sprinkler b { right: 0; transform: rotate(25deg); }

.illustration-crates::before,
.illustration-crates::after,
.illustration-crates i {
  content: "";
  position: absolute;
  width: 58px;
  height: 42px;
  background: var(--sun-light);
  border: 3px solid var(--ink);
  border-radius: 5px;
  box-shadow: inset 0 0 0 5px rgba(185, 95, 72, .18);
}

.illustration-crates::before { top: 7px; left: 5px; transform: rotate(-5deg); }
.illustration-crates::after { top: 47px; right: 1px; transform: rotate(4deg); }
.illustration-crates i { top: 54px; left: -6px; width: 50px; height: 37px; transform: rotate(-3deg); }
.illustration-crates b {
  position: absolute;
  z-index: 3;
  top: 21px;
  left: 22px;
  width: 18px;
  height: 13px;
  background: var(--clay);
  border-radius: 50% 50% 44% 44%;
  box-shadow: 47px 43px 0 var(--fern), -12px 54px 0 var(--sun);
}

.illustration-town::before {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 8px;
  left: 5px;
  height: 58px;
  background: var(--clay);
  border: 3px solid var(--ink);
  border-radius: 5px;
}

.illustration-town::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 9px;
  width: 82px;
  height: 50px;
  background: var(--sun-light);
  border: 3px solid var(--ink);
  clip-path: polygon(50% 0, 100% 62%, 90% 62%, 90% 100%, 10% 100%, 10% 62%, 0 62%);
}

.illustration-town i {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 8px;
  width: 18px;
  height: 37px;
  background: var(--ink);
  border-radius: 9px 9px 0 0;
}

.illustration-town b {
  position: absolute;
  z-index: 3;
  top: 36px;
  right: 18px;
  width: 13px;
  height: 13px;
  background: var(--river-light);
  border: 2px solid var(--ink);
  box-shadow: -48px 0 0 var(--river-light), -50px -2px 0 0 var(--ink);
}

.progression-track h3 {
  margin-top: auto;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.progression-track p {
  color: var(--moss);
  font-size: .77rem;
}

.progression-connector {
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--clay) 0 5px, transparent 5px 10px);
}

/* Development */
.section-development {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(13, 42, 36, .97), rgba(23, 59, 50, .94)),
    url("/assets/images/topographic-lines.svg") center/cover;
}

.development-grid {
  display: grid;
  grid-template-columns: minmax(330px, .7fr) minmax(560px, 1.3fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.development-copy {
  position: sticky;
  top: 120px;
}

.development-copy .eyebrow {
  color: var(--sun);
}

.development-copy h2 {
  max-width: 520px;
}

.development-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 30px;
  color: rgba(255, 254, 249, .66);
}

.build-layers {
  counter-reset: layers;
}

.build-layers article {
  position: relative;
  min-height: 205px;
  padding: 30px 32px 30px 104px;
  border-top: 1px solid var(--line-light);
}

.build-layers article:last-child {
  border-bottom: 1px solid var(--line-light);
}

.build-layers article::before {
  counter-increment: layers;
  content: "0" counter(layers);
  position: absolute;
  top: 29px;
  left: 14px;
  color: var(--sun);
  font-family: var(--display);
  font-size: 2rem;
  font-style: italic;
}

.build-layers article > span {
  color: var(--sun-light);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.build-layers h3 {
  margin: 9px 0 10px;
  color: var(--white);
  font-size: 1.7rem;
}

.build-layers p {
  max-width: 580px;
  color: rgba(255, 254, 249, .62);
  font-size: .89rem;
}

/* Field notes */
.section-field-notes {
  padding-block: clamp(70px, 8vw, 110px);
  background: var(--paper-warm);
}

.field-notes-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(420px, .82fr);
  align-items: center;
  gap: clamp(45px, 7vw, 95px);
  padding: clamp(38px, 5vw, 66px);
  overflow: hidden;
  background: var(--sun-light);
  border: 1px solid rgba(23, 59, 50, .13);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-small);
}

.field-notes-card::before,
.field-notes-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23, 59, 50, .11);
  border-radius: 50%;
}

.field-notes-card::before {
  top: -130px;
  left: -100px;
  width: 310px;
  height: 310px;
}

.field-notes-card::after {
  right: -110px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  box-shadow: 0 0 0 35px rgba(23, 59, 50, .025);
}

.field-notes-copy,
.interest-form {
  position: relative;
  z-index: 2;
}

.field-notes-copy h2 {
  max-width: 650px;
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
}

.field-notes-copy > p:last-child {
  max-width: 610px;
  color: var(--ink-soft);
}

.interest-form label {
  display: block;
  margin-bottom: 9px;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.interest-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  padding: 7px;
  background: var(--white);
  border: 1px solid rgba(23, 59, 50, .14);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(98, 78, 47, .08);
}

.interest-row input {
  min-width: 0;
  padding: 0 17px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.interest-row input::placeholder {
  color: #7b8c80;
}

.interest-row input:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: -3px;
  border-radius: 999px;
}

.form-status {
  min-height: 20px;
  margin: 11px 9px 0;
  color: var(--moss);
  font-size: .67rem;
}

.form-status.is-error {
  color: #873529;
}

.form-status.is-success {
  color: #2f6d43;
  font-weight: 700;
}

/* FAQ */
.section-faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(320px, .7fr) minmax(520px, 1.3fr);
  gap: clamp(55px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 27px 48px 27px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 650;
  line-height: 1.3;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 17px;
  height: 2px;
  background: var(--clay);
  transition: transform .25s var(--ease);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 48px 28px 0;
  color: var(--ink-soft);
  font-size: .94rem;
}

/* Footer */
.site-footer {
  padding: 78px 0 26px;
  color: var(--white);
  background: var(--ink-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  padding-bottom: 66px;
}

.brand-light {
  color: var(--white);
}

.footer-brand p {
  margin-top: 22px;
  color: rgba(255, 254, 249, .58);
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--sun);
  font-size: .64rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 254, 249, .67);
  font-size: .8rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  color: rgba(255, 254, 249, .42);
  border-top: 1px solid var(--line-light);
  font-size: .66rem;
}

.footer-bottom p {
  margin: 0;
}

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

.js [data-reveal][data-reveal-delay="1"] { transition-delay: .1s; }
.js [data-reveal][data-reveal-delay="2"] { transition-delay: .2s; }

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Privacy and error pages */
.simple-page {
  min-height: 100vh;
  padding: 140px 0 100px;
  background: var(--paper);
}

.simple-page .simple-card {
  max-width: 820px;
  margin: 0 auto;
}

.simple-page h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.simple-page h2 {
  margin-top: 48px;
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.simple-page p,
.simple-page li {
  color: var(--ink-soft);
}

.simple-page a:not(.button):not(.brand) {
  color: var(--clay-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.error-code {
  margin-bottom: 8px;
  color: var(--clay);
  font-family: var(--display);
  font-size: clamp(6rem, 20vw, 13rem);
  font-weight: 700;
  line-height: .7;
  letter-spacing: -.08em;
}

/* Responsive */
@media (max-width: 1120px) {
  .hero {
    min-height: auto;
    padding-bottom: 90px;
  }

  .hero-grid {
    grid-template-columns: minmax(420px, .96fr) minmax(430px, 1.04fr);
    gap: 24px;
  }

  .hero-art-frame {
    width: min(610px, 52vw);
  }

  .project-card-mill { right: -1%; }
  .project-card-note { right: 3%; }

  .restoration-demo {
    grid-template-columns: 1fr;
  }

  .restoration-copy {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    column-gap: 40px;
  }

  .restoration-copy .eyebrow,
  .restoration-copy h3,
  .restoration-copy > p:not(.restoration-status) {
    grid-column: 1;
  }

  .restoration-copy label,
  .restoration-copy .range-row,
  .restoration-copy .restoration-status {
    grid-column: 2;
  }

  .restoration-copy label {
    grid-row: 1;
    margin-top: 0;
    align-self: end;
  }

  .restoration-copy .range-row { grid-row: 2; align-self: center; }
  .restoration-copy .restoration-status { grid-row: 3 / 5; }

  .people-grid {
    grid-template-columns: .88fr 1.12fr;
    gap: 58px;
  }

  .progression-track {
    grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  }

  .development-grid {
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
  }
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 36px, 780px);
  }

  html { scroll-padding-top: 78px; }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .brand img { width: 38px; height: 38px; }
  .brand-name { font-size: 1.25rem; }

  .nav-toggle { display: flex; position: relative; z-index: 104; }

  .primary-nav {
    position: fixed;
    z-index: 103;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 92px 28px 42px;
    color: var(--white);
    background: var(--ink-deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .3s var(--ease);
  }

  .primary-nav a:not(.button) {
    font-family: var(--display);
    font-size: clamp(2.25rem, 9vw, 4rem);
    font-weight: 650;
    line-height: 1;
  }

  .primary-nav > a:not(.button)::after { display: none; }

  .primary-nav .nav-cta {
    margin-top: 16px;
    color: var(--ink-deep);
    background: var(--sun-light);
  }

  .nav-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-open .nav-toggle { color: var(--white); }
  .nav-open .brand { position: relative; z-index: 104; color: var(--white); }
  .nav-open .brand img { content: url("/assets/images/logo-mark-light.svg"); }

  .nav-open .site-header,
  .nav-open .site-header.is-scrolled {
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .primary-nav {
    min-height: 100vh;
    height: 100dvh;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 730px;
    font-size: clamp(4rem, 13vw, 7rem);
  }

  .hero-lede {
    max-width: 680px;
  }

  .hero-visual {
    width: 100%;
    margin-top: 22px;
  }

  .hero-art-frame {
    width: min(720px, 96%);
    margin: 0 auto;
  }

  .principle-strip-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 18px;
  }

  .principle-strip p {
    min-height: 40px;
  }

  .principle-strip p + p {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ripple-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ripple-card {
    min-height: 280px;
  }

  .ripple-arrow {
    height: 34px;
    transform: rotate(90deg);
  }

  .restoration-copy {
    display: block;
  }

  .restoration-copy label {
    margin-top: 30px;
  }

  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pillar-card-wide {
    grid-column: span 2;
  }

  .people-grid {
    grid-template-columns: 1fr;
  }

  .people-copy {
    max-width: 720px;
  }

  .dialogue-demo {
    max-width: 680px;
    margin: 0 auto;
  }

  .progression-track {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .progression-connector {
    display: none;
  }

  .development-grid {
    grid-template-columns: 1fr;
  }

  .development-copy,
  .faq-heading {
    position: static;
  }

  .build-layers article {
    padding-right: 0;
  }

  .field-notes-card {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-xl: 24px;
    --radius-lg: 19px;
  }

  body { font-size: 15px; }

  .section {
    padding-block: 82px;
  }

  .hero {
    padding-top: 108px;
    padding-bottom: 68px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.35rem, 16vw, 5.4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 35px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts li {
    padding: 12px 0;
  }

  .hero-facts li + li {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-art-frame {
    width: 115%;
    margin-left: -8%;
  }

  .project-card-mill {
    top: 20%;
    right: 4%;
    width: 148px;
    padding: 12px;
  }

  .project-card-note {
    right: 7%;
    bottom: 9%;
    width: 190px;
    padding: 10px;
  }

  .project-card-note small { max-width: 122px; }

  .restoration-demo {
    padding: 24px;
  }

  .restoration-window {
    margin-inline: -8px;
    border-radius: 16px;
  }

  .scene-label { top: 8px; }
  .scene-label-before { left: 8px; }
  .scene-label-after { right: 8px; }

  .day-path::before {
    left: 13px;
  }

  .day-stop {
    grid-template-columns: 26px 1fr;
    min-height: 0;
    padding-bottom: 18px;
  }

  .day-time {
    grid-column: 2;
    align-items: flex-start;
    padding: 0 0 8px 16px;
  }

  .day-time span { font-size: 1rem; }

  .day-dot {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 15px;
    height: 15px;
  }

  .day-content {
    grid-column: 2;
    padding: 24px 58px 24px 22px;
  }

  .day-icon {
    top: 18px;
    right: 20px;
  }

  .session-badges {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .pillar-card-wide {
    grid-column: auto;
    min-height: 310px;
  }

  .pillar-art { width: 74%; }

  .dialogue-demo {
    padding: 20px;
  }

  .dialogue-demo {
    box-shadow: 10px 12px 0 var(--clay), var(--shadow);
  }

  .dialogue-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .speech-card {
    min-height: 155px;
    padding: 30px 25px;
  }

  .progression-track {
    grid-template-columns: 1fr;
  }

  .progression-track article {
    min-height: 300px;
  }

  .build-layers article {
    padding: 27px 8px 27px 68px;
  }

  .build-layers article::before {
    left: 2px;
    font-size: 1.6rem;
  }

  .field-notes-card {
    padding: 30px 24px;
  }

  .interest-row {
    grid-template-columns: 1fr;
    padding: 7px;
    border-radius: 18px;
  }

  .interest-row input {
    min-height: 48px;
  }

  .interest-row .button {
    width: 100%;
  }

  .faq-list summary {
    padding-right: 38px;
    font-size: 1.15rem;
  }

  .footer-main {
    padding-bottom: 48px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links > div:last-child {
    grid-column: span 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .hero-art-frame {
    width: 124%;
    margin-left: -12%;
  }

  .project-card-note {
    right: 2%;
  }

  .project-card-mill {
    right: 0;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-links > div:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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