/* Vasari — Athletes landing page
   Builds on colors_and_type.css and the marketing site patterns. */
@import url("./colors_and_type.css");

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ===== Surfaces ===== */
.surf--paper     { background: var(--paper);     color: var(--ink); }
.surf--cream     { background: var(--cream);     color: var(--ink); }
.surf--limestone { background: var(--limestone); color: var(--ink); }
.surf--sage      { background: var(--sage);      color: var(--cream); }
.surf--forest    { background: var(--green-secondary); color: var(--cream); }
.surf--deep      { background: var(--deep);      color: var(--cream); }

.wrap        { max-width: var(--max-w); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.wrap--prose { max-width: var(--max-w-prose); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section     { padding-top: clamp(72px, 10vw, 128px); padding-bottom: clamp(72px, 10vw, 128px); position: relative; }
.section--sm { padding-top: clamp(48px, 7vw, 88px); padding-bottom: clamp(48px, 7vw, 88px); }

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
  padding: 20px var(--pad-x);
  color: var(--limestone);
  transition: background 220ms, color 220ms, padding 220ms, border-color 220ms;
  border-bottom: 1px solid transparent;
}
.header.is-solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  border-bottom-color: var(--rule-soft);
  padding-top: 14px; padding-bottom: 14px;
}
.header-brand { display: inline-flex; align-items: center; gap: 14px; color: inherit; }
.header-brand .vmark { width: 24px; height: 26px; flex: none; display: block; }
.header-brand .vmark img { width: 100%; height: 100%; object-fit: contain; display: block; transition: filter 220ms; }
/* On the solid (white) header the cream v-mark needs to flip dark */
.header.is-solid .header-brand .vmark img { filter: invert(1); }
.header-brand .word {
  font-family: var(--display); font-weight: 500; font-size: 20px; line-height: 1;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.header-tag {
  justify-self: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.7;
}
.header-utils { display: flex; align-items: center; gap: 16px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid currentColor; padding: 13px 22px;
  font-family: var(--body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; color: inherit;
  transition: background 200ms, color 200ms, border-color 200ms;
  border-radius: 0;
  cursor: pointer;
}
.btn:hover { background: currentColor; color: var(--limestone); }
.surf--paper .btn:hover, .surf--limestone .btn:hover, .surf--cream .btn:hover,
.header.is-solid .btn:hover { color: var(--paper); }
.btn--solid {
  background: var(--green-secondary); color: var(--limestone);
  border-color: var(--green-secondary);
}
.btn--solid:hover { background: var(--ink); color: var(--limestone); border-color: var(--ink); }
.btn--lg { padding: 16px 28px; font-size: 12px; }
.btn .arrow { font-family: var(--body); font-weight: 400; opacity: 0.7; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh; overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--cream); background: var(--deep);
}
.hero-slides { position: absolute; inset: 0; z-index: 0; background: var(--deep); }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1400ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.hero-slide.is-active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20, 22, 14, 0.32) 0%, rgba(20, 22, 14, 0.06) 40%, rgba(20, 22, 14, 0.82) 100%);
  pointer-events: none;
}
.hero-eyebrow {
  position: absolute; top: 96px; left: var(--pad-x); right: var(--pad-x);
  z-index: 3;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.9;
}
.hero-eyebrow .lhs { display: inline-flex; align-items: center; gap: 12px; }
.hero-eyebrow .dot { width: 6px; height: 6px; background: currentColor; display: inline-block; }
.hero-inner {
  position: relative; z-index: 2; margin-top: auto;
  padding: 0 var(--pad-x) clamp(36px, 5vw, 64px);
  width: 100%;
  max-width: var(--max-w); margin-left: auto; margin-right: auto;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 244, 237, 0.28);
}
.hero-bottom__left { display: flex; flex-direction: column; gap: 14px; max-width: 60ch; }
.hero-bottom .hero-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; opacity: 0.78;
  transition: opacity 400ms;
}
.hero-bottom .caption {
  font-family: var(--display); font-style: italic;
  font-size: clamp(22px, 2.4vw, 34px); line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0; color: var(--cream);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.hero-bottom .facts {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.82;
}
.hero-bottom .facts .sep { opacity: 0.45; }
.hero-bottom .cta-col {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.hero-bottom .cta-col .note {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.65; text-align: right;
}

/* ===== Slideshow dots (thin line indicators) ===== */
.slides-dots {
  display: flex; align-items: center; gap: 10px;
  margin-top: 6px;
}
.slides-dot {
  width: 36px; height: 1px;
  background: rgba(246, 244, 237, 0.32);
  border: 0; padding: 0; margin: 0;
  cursor: pointer;
  transition: background 280ms, height 280ms;
  position: relative;
}
.slides-dot::before {
  /* invisible larger hit area for touch */
  content: ""; position: absolute; inset: -16px -4px;
}
.slides-dot:hover { background: rgba(246, 244, 237, 0.6); }
.slides-dot.is-active { background: var(--cream); height: 2px; }
.slides-count {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.55;
  margin-left: 8px;
  font-variant-numeric: tabular-nums;
}

/* ===== Section heads ===== */
.sec-head {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px); align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.sec-head__num { margin-bottom: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .65; }
.sec-head__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 5vw, 72px); line-height: 1.02;
  letter-spacing: -0.015em; margin: 0;
}
.sec-head__title em { font-style: italic; }
.sec-head__body {
  font-size: clamp(15px, 1.1vw, 17px); line-height: 1.6;
  max-width: 52ch; opacity: 0.84; margin: 0;
}

/* ===== Athlete positioning split ===== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}
.split .copy {
  display: flex; flex-direction: column; justify-content: center;
  padding-right: clamp(0px, 2vw, 32px);
}
.split .copy .eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.6; margin-bottom: 20px;
}
.split .copy h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 4.8vw, 64px); line-height: 1;
  letter-spacing: -0.015em; margin: 0 0 28px;
}
.split .copy h2 em { font-style: italic; }
.split .copy p { font-size: 16px; line-height: 1.65; max-width: 44ch; margin: 0 0 16px; }
.split .copy .lede {
  font-family: var(--display); font-style: italic;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.4;
  max-width: 30ch; opacity: 0.85;
  padding-top: 28px; margin-top: 28px;
  border-top: 1px solid var(--rule);
}
.split .media {
  position: relative;
  min-height: 460px;
  background-color: var(--sage-deep);
  background-size: cover; background-position: center;
}
.split .media .caption {
  position: absolute; left: 24px; bottom: 24px;
  font-family: var(--display); font-style: italic;
  font-size: 18px; line-height: 1.3; color: var(--cream);
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
  max-width: 24ch;
}
.split .media .tag {
  position: absolute; right: 24px; top: 24px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cream); opacity: 0.85;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* ===== Pillars ===== */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule-dark); }
.pillar {
  padding: 36px 28px 36px;
  border-right: 1px solid var(--rule-dark);
  display: flex; flex-direction: column; gap: 16px; min-height: 280px;
}
.pillar:last-child { border-right: 0; }
.pillar .num { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.6; }
.pillar .icon-box {
  width: 44px; height: 44px;
  border: 1px solid currentColor; opacity: 0.85;
  display: grid; place-items: center; font-size: 22px; line-height: 1;
  margin-top: 4px;
}
.pillar h3 {
  font-family: var(--display); font-weight: 400; font-size: 24px;
  line-height: 1.18; margin: 0;
}
.pillar h3 em { font-style: italic; }
.pillar p { font-size: 13.5px; line-height: 1.65; opacity: 0.85; margin: 0; }
.pillar ul {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.62;
}

/* Light variant — pillars on cream/limestone surface */
.pillars--light {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: clamp(8px, 1vw, 16px);
}
.pillars--light .pillar {
  border-right: 1px solid var(--rule);
  min-height: 220px;
  padding: 32px 28px 32px;
}
.pillars--light .pillar:last-child { border-right: 0; }
.pillars--light .pillar .num { opacity: 0.55; }
.pillars--light .pillar h3 {
  font-size: 22px;
  line-height: 1.22;
  margin-top: 2px;
  max-width: 16ch;
}
.pillars--light .pillar ul { opacity: 0.7; }

/* ===== Facts strip ===== */
.facts-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.facts-strip > div {
  padding: 30px 24px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.facts-strip > div:last-child { border-right: 0; }
.facts-strip .v {
  font-family: var(--display); font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1; letter-spacing: -0.015em;
}
.facts-strip .k {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.62;
}

/* ===== Residence band (full-bleed editorial photo) ===== */
.residence-band {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--deep);
}
.residence-band__photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
}
.residence-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 22, 14, 0.10) 0%, rgba(20, 22, 14, 0.05) 50%, rgba(20, 22, 14, 0.65) 100%);
  pointer-events: none;
}
.residence-band__tag {
  position: absolute; top: clamp(28px, 4vw, 48px); right: var(--pad-x);
  z-index: 2;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cream); opacity: 0.85;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.residence-band__caption {
  position: absolute; left: var(--pad-x); bottom: clamp(28px, 4vw, 48px);
  z-index: 2;
  font-family: var(--display); font-style: italic;
  font-size: clamp(22px, 2.6vw, 36px); line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  margin: 0; max-width: 32ch;
}

/* ===== Credit row (designers) ===== */
.credits {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  margin-top: clamp(40px, 5vw, 56px);
}
.credit {
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.credit:last-child { border-right: 0; padding-right: 0; }
.credit .role {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; opacity: 0.62;
}
.credit .name {
  font-family: var(--display); font-size: 24px; line-height: 1.15;
  letter-spacing: -0.005em;
}
.credit .name em { font-style: italic; }
.credit p { font-size: 13.5px; line-height: 1.6; opacity: 0.78; margin: 8px 0 0; max-width: 30ch; }

/* ===== Waitlist form ===== */
.waitlist {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.waitlist .copy h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 5vw, 72px); line-height: 1;
  letter-spacing: -0.018em; margin: 0 0 24px;
}
.waitlist .copy h2 em { font-style: italic; }
.waitlist .copy .lede {
  font-family: var(--display); font-style: italic;
  font-size: 22px; line-height: 1.4; opacity: 0.9;
  margin: 0 0 32px; max-width: 28ch;
}
.waitlist .copy ul {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule-dark);
}
.waitlist .copy ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-dark);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.85;
}
.waitlist .copy ul li .when {
  opacity: 0.6;
  font-feature-settings: "tnum";
  min-width: 10ch;
}
.waitlist .copy ul li .what { letter-spacing: 0.10em; opacity: 0.95; }

.form-card {
  background: var(--limestone);
  color: var(--ink);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--rule);
}
.form-card .form-eyebrow {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; opacity: 0.72;
  padding-bottom: 14px; margin-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.form-card h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px); line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.form-card h3 em { font-style: italic; }

.field-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.field-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.65;
}
.field label .opt { opacity: 0.55; margin-left: 6px; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 14px; padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--paper); color: var(--ink);
  border-radius: 2px; outline: none;
  transition: border-color 180ms, background 180ms;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
                    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-primary); }
.field input::placeholder { color: rgba(36,29,20,.4); }
.field input.has-error, .field select.has-error { border-color: #8a3a2f; background: #fbf3f0; }
.field .err {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.10em;
  text-transform: uppercase; color: #8a3a2f;
  margin-top: 2px;
}

/* Pets checkbox row — custom hairline check */
.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--paper);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 180ms, background 180ms;
}
.checkbox-row:hover { border-color: rgba(31, 35, 23, 0.32); }
.checkbox-row input[type="checkbox"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.checkbox-row .box {
  width: 20px; height: 20px;
  border: 1px solid var(--rule);
  background: transparent;
  display: grid; place-items: center;
  font-size: 14px; line-height: 1;
  color: transparent;
  transition: background 180ms, border-color 180ms, color 180ms;
}
/* Inline SVG check — inherits the box/check color (transparent until checked) */
.icon-check { width: 1em; height: 1em; display: block; color: inherit; }
.checkbox-row input:checked ~ .box {
  background: var(--green-secondary);
  border-color: var(--green-secondary);
  color: var(--cream);
}
.checkbox-row__copy {
  display: inline-flex; align-items: baseline; gap: 8px;
  flex-wrap: wrap;
  font-family: var(--body);
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-row__title {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.85;
}
.checkbox-row__sub {
  font-family: var(--display); font-style: italic;
  font-size: 15px; line-height: 1.3; opacity: 0.78;
  text-transform: none; letter-spacing: 0;
}

/* Unit type — segmented radio */
.unit-picker { display: flex; flex-direction: column; gap: 8px; }
.unit-picker .label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.65;
}
.unit-radio {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
  background: var(--paper);
}
.credit-link {
  color: inherit;
  border-bottom: 1px solid currentColor;
  transition: opacity 180ms;
}
.credit-link:hover { opacity: 0.72; }
.unit-radio label {
  position: relative;
  padding: 14px 8px;
  text-align: center;
  font-family: var(--body); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  transition: background 180ms, color 180ms;
  display: flex; flex-direction: column; gap: 4px;
  align-items: center; justify-content: center;
  min-height: 60px;
}
.unit-radio label:last-child { border-right: 0; }
.unit-radio label .sf {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  opacity: 0.55;
}
.unit-radio input { position: absolute; opacity: 0; pointer-events: none; }
.unit-radio label:hover { background: var(--sage-soft); }
.unit-radio label.is-active {
  background: var(--green-secondary);
  color: var(--limestone);
}
.unit-radio label.is-active .sf { opacity: 0.7; }

.form-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 28px;
  padding-top: 22px; border-top: 1px solid var(--rule);
}
.form-actions .legal {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.10em;
  text-transform: uppercase; opacity: 0.55; max-width: 28ch; line-height: 1.6;
}
button.btn { cursor: pointer; }

/* Success state */
.form-success {
  background: var(--deep); color: var(--cream);
  padding: clamp(36px, 4vw, 56px);
  border: 1px solid var(--rule-dark);
  display: flex; flex-direction: column; gap: 22px;
  min-height: 480px;
  justify-content: center;
}
.form-success .check {
  width: 44px; height: 44px;
  border: 1px solid var(--cream);
  display: grid; place-items: center;
  font-size: 20px;
}
.form-success .eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; opacity: 0.7;
}
.form-success h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 2.6vw, 40px); line-height: 1.05;
  letter-spacing: -0.015em; margin: 0;
}
.form-success h3 em { font-style: italic; }
.form-success p { font-size: 15px; line-height: 1.6; opacity: 0.86; margin: 0; max-width: 42ch; }
.form-success .next {
  border-top: 1px solid var(--rule-dark);
  padding-top: 22px;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.78;
}
.form-success .next .label { opacity: 0.55; }

/* ===== Footer ===== */
.footer { padding: clamp(56px, 8vw, 88px) var(--pad-x) 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand .word {
  font-family: var(--display); font-weight: 500;
  font-size: 32px; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1;
}
.footer-brand .thesis {
  font-family: var(--display); font-style: italic;
  font-size: 17px; opacity: 0.85; margin-top: 16px; max-width: 28ch;
}
.footer h4 {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; margin: 0 0 16px; opacity: 0.6; font-weight: 400;
}
.footer .addr, .footer .contact {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em;
  line-height: 1.85; opacity: 0.82;
}
.footer .contact a { display: block; }
.footer-fine {
  padding-top: 24px; border-top: 1px solid var(--rule-dark);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.6;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .header { padding: 14px var(--pad-x); }
  .header-tag { display: none; }
  .header-brand .word { font-size: 18px; }
  .btn { padding: 11px 16px; font-size: 10px; letter-spacing: 0.14em; }
  .btn--lg { padding: 13px 18px; font-size: 11px; }

  .hero { min-height: 92vh; min-height: 92dvh; }
  .hero-eyebrow { top: 72px; font-size: 9px; letter-spacing: 0.14em; gap: 12px; }
  .hero-eyebrow .rhs { display: none; }
  .hero-bottom { grid-template-columns: 1fr; gap: 22px; padding-top: 20px; }
  .hero-bottom__left { gap: 12px; }
  .hero-bottom .caption { font-size: 22px; line-height: 1.3; }
  .hero-bottom .facts {
    flex-direction: column; gap: 4px; line-height: 1.6;
    font-size: 10px;
  }
  .hero-bottom .facts .sep { display: none; }
  .hero-bottom .cta-col { align-items: stretch; }
  .hero-bottom .cta-col .btn { justify-content: center; }
  .hero-bottom .cta-col .note { text-align: left; }
  .slides-dots { margin-top: 2px; }

  .sec-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .sec-head__title { font-size: clamp(32px, 8vw, 56px); line-height: 1.04; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split .media { min-height: 320px; }

  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { border-right: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); min-height: 220px; padding: 24px 20px; }
  .pillar:nth-child(2n) { border-right: 0; }
  .pillars--light .pillar { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); min-height: auto; padding: 22px 18px; }
  .pillars--light .pillar:nth-child(2n) { border-right: 0; }
  .pillars--light .pillar:nth-last-child(-n+2) { border-bottom: 0; }
  .pillars--light .pillar h3 { font-size: 19px; }
  .pillars--light .pillar ul { font-size: 9px; }

  .facts-strip { grid-template-columns: 1fr 1fr; }
  .facts-strip > div { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 24px 20px; }
  .facts-strip > div:nth-child(2n) { border-right: 0; }

  .credits { grid-template-columns: 1fr; }
  .credit { border-right: 0; border-bottom: 1px solid var(--rule); padding: 24px 0; }

  .residence-band { aspect-ratio: 4 / 5; }
  .residence-band__caption { font-size: 22px; }

  .waitlist { grid-template-columns: 1fr; gap: 36px; }
  .waitlist .copy h2 { font-size: clamp(36px, 9vw, 56px); }
  .form-card { padding: 24px 22px; }
  .form-card h3 { font-size: 24px; }
  .field-grid { grid-template-columns: 1fr; gap: 14px; }
  .unit-radio { grid-template-columns: repeat(2, 1fr); }
  .unit-radio label {
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    min-height: 56px;
    padding: 12px 8px;
  }
  .unit-radio label:nth-child(2n) { border-right: 0; }
  .unit-radio label:nth-last-child(-n+2) { border-bottom: 0; }
  .field input, .field select { font-size: 16px; /* prevent iOS zoom */ padding: 14px 14px; }
  .form-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .form-actions .btn { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-fine { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 540px) {
  .hero-headline, .hero-bottom .caption { font-size: 20px; }
  .hero-eyebrow { font-size: 9px; }
  .sec-head__title { font-size: 32px; }
  .waitlist .copy ul li { grid-template-columns: 1fr; gap: 2px; padding: 12px 0; }
  .waitlist .copy ul li .when { font-size: 9px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0 !important; }
  .pillar:last-child { border-bottom: 0 !important; }
}
