/* ============================================================
   THE URBAN AT COLLEGE STATION — Design System
   Palette: warm charcoal ink / off-white / oxblood maroon
   Type: Archivo variable (width + weight contrast)
   ============================================================ */

:root {
  --bg: oklch(0.975 0.004 80);
  --surface: oklch(0.945 0.006 80);
  --ink: oklch(0.22 0.012 50);
  --ink-soft: oklch(0.40 0.012 50);
  --dark: oklch(0.215 0.014 40);
  --dark-2: oklch(0.255 0.016 40);
  --maroon: oklch(0.40 0.135 25);
  --maroon-deep: oklch(0.325 0.115 25);
  --maroon-bright: oklch(0.50 0.16 25);
  --sand: oklch(0.84 0.055 75);
  --sand-soft: oklch(0.76 0.045 75);
  --on-dark: oklch(0.94 0.008 80);
  --on-dark-soft: oklch(0.78 0.012 80);
  --line: oklch(0.86 0.008 70);
  --line-dark: oklch(0.34 0.014 40);

  --font: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.92rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.6rem, 1.4rem + 1vw, 2.2rem);
  --step-3: clamp(2.1rem, 1.7rem + 2vw, 3.2rem);
  --step-4: clamp(2.7rem, 2rem + 3.5vw, 4.6rem);
  --step-5: clamp(2.6rem, 1.4rem + 6vw, 5.8rem);

  --space-s: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  --space-m: clamp(2rem, 1.6rem + 2vw, 3.5rem);
  --space-l: clamp(4rem, 3rem + 5vw, 8rem);
  --space-xl: clamp(6rem, 4rem + 8vw, 11rem);

  --wrap: 1200px;
  --wrap-wide: 1440px;
  --wrap-text: 46rem;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --z-sticky: 100;
  --z-menu: 200;
  --z-lightbox: 300;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-stretch: 118%;
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1em; max-width: 70ch; text-wrap: pretty; }

a { color: var(--maroon); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--maroon-deep); }

::selection { background: var(--maroon); color: var(--on-dark); }

:focus-visible { outline: 3px solid var(--maroon-bright); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.wrap-wide { max-width: var(--wrap-wide); margin-inline: auto; padding-inline: clamp(1rem, 3vw, 2rem); }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-sticky);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.site-header.scrolled,
.site-header.solid {
  background: color-mix(in oklch, var(--dark) 92%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  color: var(--on-dark);
  text-decoration: none;
  font-weight: 550;
  font-size: var(--step--1);
  letter-spacing: 0.01em;
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.nav-links a:hover, .nav-links a[aria-current="page"] { border-bottom-color: var(--sand); color: var(--on-dark); }

.btn {
  display: inline-block;
  background: var(--maroon);
  color: var(--on-dark);
  font-weight: 650;
  font-stretch: 108%;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.85em 1.7em;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.btn:hover { background: var(--maroon-deep); color: var(--on-dark); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  box-shadow: inset 0 0 0 1.5px oklch(1 0 0 / 0.55);
}
.btn-ghost:hover { background: oklch(1 0 0 / 0.1); }

.btn-lg { font-size: var(--step-0); padding: 1em 2.1em; }

.on-light .btn-ghost { color: var(--ink); box-shadow: inset 0 0 0 1.5px oklch(0 0 0 / 0.4); }
.on-light .btn-ghost:hover { background: oklch(0 0 0 / 0.05); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  z-index: calc(var(--z-menu) + 1);
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--on-dark);
  margin: 6px 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: var(--z-menu);
    flex-direction: column;
    justify-content: center;
    background: var(--dark);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out), visibility 0.3s;
  }
  body.menu-open .nav-links { visibility: visible; transition: opacity 0.3s var(--ease-out); }
  .nav-links a { font-size: var(--step-2); font-stretch: 112%; font-weight: 700; }
  body.menu-open .nav-links { opacity: 1; pointer-events: auto; }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-cta { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  color: var(--on-dark);
  isolation: isolate;
  overflow: hidden;
}

.hero-media, .hero-media img, .hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, oklch(0.15 0.02 30 / 0.92) 0%, oklch(0.15 0.02 30 / 0.35) 45%, oklch(0.15 0.02 30 / 0.25) 100%);
}

.hero-inner { padding-block: var(--space-l) var(--space-m); width: 100%; }

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--step--1);
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.2rem;
}
.hero-status::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--sand);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }

.hero h1 { max-width: 13ch; margin-bottom: 0.35em; }

.hero-sub { font-size: var(--step-1); color: var(--on-dark-soft); max-width: 44ch; font-weight: 420; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.4rem;
  margin-top: var(--space-m);
  padding-top: 1.4rem;
  border-top: 1px solid oklch(1 0 0 / 0.22);
  font-size: var(--step--1);
  font-weight: 550;
  color: var(--on-dark-soft);
}
.hero-strip strong { color: var(--on-dark); font-stretch: 112%; }

/* staged hero entrance */
.hero-inner > * { animation: rise 0.9s var(--ease-out) backwards; }
.hero-inner > *:nth-child(2) { animation-delay: 0.12s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.24s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.36s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.48s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } }

/* ---------- Sections ---------- */

.section { padding-block: var(--space-l); }
.section-xl { padding-block: var(--space-xl); }

.section-dark {
  background: var(--dark);
  color: var(--on-dark);
}
.section-dark p { color: var(--on-dark-soft); }
.section-dark h2, .section-dark h3 { color: var(--on-dark); }
.section-dark a:not(.btn) { color: var(--sand); }

.section-maroon {
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  color: var(--on-dark);
}
.section-maroon p { color: oklch(0.9 0.03 40); }

.kicker-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.kicker-rule::before { content: ""; width: 3.5rem; height: 3px; background: var(--maroon); }
.section-dark .kicker-rule::before, .section-maroon .kicker-rule::before { background: var(--sand); }
.kicker-rule span { font-weight: 650; font-stretch: 110%; font-size: var(--step--1); letter-spacing: 0.04em; }

.lede { font-size: var(--step-1); font-weight: 430; line-height: 1.45; max-width: 56ch; }

/* ---------- Split layouts ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}

.split-media { position: relative; }
.split-media img { width: 100%; border-radius: 4px; box-shadow: 0 30px 60px -20px oklch(0.15 0.02 30 / 0.4); }

.offset-frame::before {
  content: "";
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 2px solid var(--maroon);
  border-radius: 4px;
  z-index: -1;
}
@media (max-width: 640px) { .offset-frame::before { display: none; } }

/* ---------- Feature checklist ---------- */

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.check-list li { display: flex; gap: 0.8rem; align-items: baseline; max-width: 62ch; }
.check-list li::before {
  content: "✓";
  flex: none;
  font-weight: 800;
  color: var(--maroon);
  font-size: 1.05em;
}
.section-dark .check-list li::before { color: var(--sand); }
.check-list strong { font-stretch: 108%; }

/* ---------- Stats band ---------- */

.stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  text-align: left;
}
.stat { border-top: 3px solid var(--sand); padding-top: 1rem; }
.stat-num {
  font-size: var(--step-4);
  font-weight: 800;
  font-stretch: 122%;
  letter-spacing: -0.025em;
  line-height: 1;
  display: block;
}
.stat-label { font-size: var(--step--1); font-weight: 550; color: var(--on-dark-soft); margin-top: 0.4rem; display: block; max-width: 22ch; }

/* ---------- Gallery ---------- */

.masonry {
  columns: 3 320px;
  gap: 1rem;
}
.masonry figure { margin: 0 0 1rem; break-inside: avoid; position: relative; overflow: hidden; border-radius: 3px; }
.masonry img { width: 100%; transition: transform 0.6s var(--ease-out); cursor: zoom-in; }
.masonry figure:hover img { transform: scale(1.04); }
.masonry figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1rem 0.8rem;
  background: linear-gradient(to top, oklch(0.15 0.02 30 / 0.85), transparent);
  color: var(--on-dark);
  font-size: var(--step--1);
  font-weight: 550;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.masonry figure:hover figcaption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: oklch(0.13 0.015 30 / 0.96);
  display: none;
  place-items: center;
  padding: 2rem;
}
.lightbox.open { display: grid; }
.lightbox img { max-height: 88vh; max-width: 92vw; width: auto; border-radius: 3px; }
.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none; border: 0;
  color: var(--on-dark);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: oklch(1 0 0 / 0.1);
  border: 0;
  color: var(--on-dark);
  font-size: 1.8rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox-nav:hover { background: oklch(1 0 0 / 0.22); }
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }

/* ---------- Asset placeholder slots ---------- */

.asset-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(260px, 45vw, 480px);
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, oklch(1 0 0 / 0.025) 14px 28px),
    var(--dark-2);
  border: 1.5px dashed var(--line-dark);
  border-radius: 4px;
  color: var(--on-dark-soft);
  text-align: center;
  padding: 2rem;
}
.asset-slot-tag {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--sand);
  color: var(--dark);
  padding: 0.3em 0.7em;
  border-radius: 2px;
}
.asset-slot h4 { color: var(--on-dark); margin-bottom: 0.3em; }
.asset-slot p { font-size: var(--step--1); max-width: 42ch; margin: 0; }

.pending-badge {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: oklch(0.15 0.02 30 / 0.75);
  color: var(--sand);
  padding: 0.35em 0.75em;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* ---------- Floor plans ---------- */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}
.plan-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.plan-card img { width: 100%; padding: 1.2rem; }
.plan-card-body { padding: 0 1.5rem 1.5rem; }
.plan-card h4 { margin-bottom: 0.2em; }
.plan-card p { font-size: var(--step--1); color: var(--ink-soft); margin: 0; }

/* ---------- Spec table ---------- */

.spec-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}
.spec-group h4 {
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--maroon);
  margin-bottom: 1rem;
}
.section-dark .spec-group h4 { border-color: var(--sand); }

/* ---------- Location rows ---------- */

.drive-times { list-style: none; margin: 0; padding: 0; }
.drive-times li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.section-dark .drive-times li { border-color: var(--line-dark); }
.drive-times .place { font-weight: 650; font-stretch: 106%; }
.drive-times .place small { display: block; font-weight: 420; color: var(--ink-soft); font-size: var(--step--1); font-stretch: 100%; }
.section-dark .drive-times .place small { color: var(--on-dark-soft); }
.drive-times .time {
  flex: none;
  font-weight: 800;
  font-stretch: 120%;
  font-size: var(--step-2);
  color: var(--maroon);
  letter-spacing: -0.02em;
}
.section-dark .drive-times .time { color: var(--sand); }

/* ---------- Blog ---------- */

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -18px oklch(0.15 0.02 30 / 0.3); color: var(--ink); }
.post-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; }
.post-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--maroon); }
.post-card h3 { font-size: var(--step-1); margin: 0; }
.post-card p { font-size: var(--step--1); color: var(--ink-soft); margin: 0; }
.post-card .read-more { margin-top: auto; padding-top: 0.8rem; font-weight: 650; font-size: var(--step--1); color: var(--maroon); }

.article-hero { padding: calc(var(--space-l) + 4rem) 0 var(--space-m); }
.article-hero h1 { font-size: var(--step-4); max-width: 22ch; }
.article-meta { display: flex; gap: 1.5rem; font-size: var(--step--1); color: var(--ink-soft); font-weight: 550; }

.article-body { max-width: var(--wrap-text); }
.article-body h2 { font-size: var(--step-2); margin-top: 2em; }
.article-body h3 { font-size: var(--step-1); margin-top: 1.6em; }
.article-body img { border-radius: 4px; margin-block: 1.5rem; }
.article-body blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.6rem;
  background: var(--surface);
  border-radius: 4px;
  font-weight: 550;
  font-size: var(--step-1);
  line-height: 1.4;
}
.article-body table { width: 100%; border-collapse: collapse; margin-block: 1.5rem; font-size: var(--step--1); }
.article-body th, .article-body td { text-align: left; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--line); }
.article-body th { font-weight: 700; font-stretch: 108%; border-bottom: 2px solid var(--ink); }
.article-body .footnote { font-size: 0.85rem; color: var(--ink-soft); }

.cta-inline {
  margin: 2.5rem 0;
  padding: 1.8rem 2rem;
  background: var(--dark);
  color: var(--on-dark);
  border-radius: 4px;
}
.cta-inline p { color: var(--on-dark-soft); margin-bottom: 1rem; }
.cta-inline h4 { color: var(--on-dark); }

/* ---------- Forms ---------- */

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }

label { display: block; font-weight: 650; font-size: var(--step--1); margin-bottom: 0.35rem; }

input, select, textarea {
  width: 100%;
  font: inherit;
  font-size: var(--step-0);
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 3px;
  padding: 0.75em 0.9em;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--maroon); outline: none; }
textarea { min-height: 130px; resize: vertical; }

.form-note { font-size: var(--step--1); color: var(--ink-soft); }

/* ---------- Downloads ---------- */

.doc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.8rem; }
.doc-list a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition: border-color 0.2s, transform 0.2s var(--ease-out);
}
.doc-list a:hover { border-color: var(--maroon); transform: translateX(4px); }
.doc-list a::before { content: "⤓"; color: var(--maroon); font-size: 1.3rem; font-weight: 800; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--dark);
  color: var(--on-dark-soft);
  padding-block: var(--space-l) var(--space-m);
  font-size: var(--step--1);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: var(--space-m);
}
.site-footer h4 { color: var(--on-dark); font-size: var(--step-0); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: var(--on-dark-soft); text-decoration: none; }
.site-footer a:hover { color: var(--sand); }
.footer-legal {
  border-top: 1px solid var(--line-dark);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* ---------- Reveal on scroll ---------- */

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-d1 { transition-delay: 0.1s; }
.js .reveal-d2 { transition-delay: 0.2s; }
.js .reveal-d3 { transition-delay: 0.3s; }

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  padding: calc(var(--space-l) + 4.5rem) 0 var(--space-m);
  background: var(--dark);
  color: var(--on-dark);
  isolation: isolate;
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, oklch(0.17 0.02 30 / 0.9), oklch(0.17 0.02 30 / 0.3));
}
.page-hero h1 { font-size: var(--step-4); max-width: 18ch; }
.page-hero p { color: var(--on-dark-soft); }

/* ---------- Misc ---------- */

.price-tags { display: flex; flex-wrap: wrap; gap: 1rem; margin-block: 1.5rem; }
.price-tag {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.1rem 1.5rem;
}
.section-dark .price-tag, .section-maroon .price-tag {
  background: oklch(1 0 0 / 0.07);
  border-color: oklch(1 0 0 / 0.15);
}
.price-tag .amount { font-size: var(--step-3); font-weight: 800; font-stretch: 120%; letter-spacing: -0.02em; line-height: 1.1; display: block; }
.price-tag .label { font-size: var(--step--1); font-weight: 550; color: var(--ink-soft); }
.section-dark .price-tag .label, .section-maroon .price-tag .label { color: var(--on-dark-soft); }

.sold-out-strike { text-decoration: line-through; text-decoration-color: var(--maroon-bright); text-decoration-thickness: 3px; }

.notice-bar {
  background: var(--maroon);
  color: var(--on-dark);
  text-align: center;
  font-size: var(--step--1);
  font-weight: 650;
  padding: 0.55rem 1rem;
}
.notice-bar a { color: var(--on-dark); }

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