/* ============================================================
   Dembek Construction & Project Consulting
   Design tokens
   ============================================================ */
:root {
  --green-950: #12271c;
  --green-900: #163523;
  --green-800: #1f4530;
  --green-700: #2c5b3f;
  --cream-050: #fbf8f0;
  --cream-100: #f4eee1;
  --cream-200: #ece3d0;
  --ink-900: #1c1912;
  --ink-700: #47433a;
  --gold-500: #a9823e;
  --gold-400: #c29c53;
  --brick-600: #8c4a33;
  --line: rgba(28, 25, 18, 0.14);
  --line-on-dark: rgba(244, 238, 225, 0.22);

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --container: 1180px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream-100);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* -------- eyebrow / mono labels -------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 1.4em;
  height: 1px;
  background: var(--gold-500);
}
.on-dark .eyebrow { color: var(--gold-400); }

/* -------- buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 1.5em;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--cream-050);
}
.btn-primary:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn-outline {
  border-color: var(--line-on-dark);
  color: var(--cream-100);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold-400); color: var(--gold-400); }
.btn-outline-dark {
  border-color: var(--line);
  color: var(--ink-900);
  background: transparent;
}
.btn-outline-dark:hover { border-color: var(--brick-600); color: var(--brick-600); }

/* ============================================================
   Corner-bracket frame — signature device
   Echoes survey / blueprint annotation marks
   ============================================================ */
.bracket-frame {
  position: relative;
  padding: 14px;
}
.bracket-frame::before,
.bracket-frame::after,
.bracket-frame .bf-tr,
.bracket-frame .bf-br {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold-500);
}
.bracket-frame::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.bracket-frame::after { bottom: 0; right: 0; border-left: none; border-top: none; }
.bracket-frame .bf-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.bracket-frame .bf-br { bottom: 0; left: 0; border-right: none; border-top: none; }
.bracket-frame img { width: 100%; height: 100%; object-fit: cover; }

.site-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-top: 0.9em;
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
.site-tag span:last-child { color: var(--gold-500); }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  background: var(--green-950);
  color: var(--cream-100);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line-on-dark);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7em;
  text-decoration: none;
  color: var(--cream-100);
}
.brand img { height: 42px; width: 42px; object-fit: contain; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.brand-word small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-top: 0.25em;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: clamp(1rem, 2vw, 2.1rem);
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  color: var(--cream-200);
  padding: 0.4em 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--gold-400); border-color: var(--gold-400); }
.header-cta { display: flex; align-items: center; gap: 1.3em; }
.header-phone {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--cream-100);
  display: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-on-dark);
  color: var(--cream-100);
  width: 42px;
  height: 42px;
  border-radius: 2px;
  font-size: 1.1rem;
  cursor: pointer;
}

@media (min-width: 860px) { .header-phone { display: inline; } }

@media (max-width: 859px) {
  .main-nav {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--green-950);
    padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 1.4rem; }
  .main-nav a { font-size: 1.3rem; font-family: var(--font-display); }
  .nav-toggle { display: block; }
  .header-cta .btn-primary { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--green-950);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 9vw, 7rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-on-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-on-dark) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.12;
  mask-image: radial-gradient(ellipse at top left, black, transparent 70%);
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}
.hero .lede {
  font-size: 1.08rem;
  color: var(--cream-200);
  max-width: 42ch;
  margin-bottom: 1.8em;
}
.hero-ctas { display: flex; gap: 1em; flex-wrap: wrap; align-items: center; }
.hero-phone {
  font-family: var(--font-mono);
  color: var(--cream-100);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line-on-dark);
  padding-bottom: 2px;
}
.hero-media { position: relative; }
.hero-media .site-tag { color: var(--cream-200); }
.hero-media .site-tag span:last-child { color: var(--gold-400); }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}

/* ============================================================
   Section rhythm
   ============================================================ */
section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-on-dark { background: var(--green-950); color: var(--cream-100); }
.section-on-mid { background: var(--green-900); color: var(--cream-100); }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-head p { color: var(--ink-700); font-size: 1.05rem; }
.on-dark .section-head p { color: var(--cream-200); }

/* -------- pillars (value props) -------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.pillar { border-top: 1px solid var(--line-on-dark); padding-top: 1.4em; }
.section-on-dark .pillar,
.section-on-mid .pillar { border-top-color: var(--line-on-dark); }
:not(.section-on-dark):not(.section-on-mid) .pillar { border-top-color: var(--line); }
.pillar .eyebrow { margin-bottom: 0.7em; }
.pillar h3 { font-size: 1.25rem; margin-bottom: 0.4em; }
.pillar p { font-size: 0.95rem; }
:not(.on-dark) .pillar p { color: var(--ink-700); }
.on-dark .pillar p { color: var(--cream-200); }

@media (max-width: 780px) {
  .pillars { grid-template-columns: 1fr; }
}

/* -------- services -------- */
.service-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-row {
  background: var(--cream-050);
  display: grid;
  grid-template-columns: 220px 1fr 1.1fr;
  gap: var(--gap);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}
.service-row .bracket-frame { aspect-ratio: 4/3; }
.service-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-500);
  letter-spacing: 0.08em;
}
.service-row h3 { font-size: 1.5rem; margin: 0.25em 0 0.4em; }
.service-row .items {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-700);
  display: flex;
  gap: 1.2em;
  flex-wrap: wrap;
}
.service-row .items span::before { content: "· "; color: var(--gold-500); }
.service-row p { color: var(--ink-700); font-size: 0.98rem; margin: 0; }

@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row .bracket-frame { max-width: 320px; }
}

/* -------- gallery -------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.gallery-grid .bracket-frame { aspect-ratio: 4/3; }
@media (max-width: 780px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* -------- testimonials -------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.testimonial {
  background: var(--cream-050);
  border: 1px solid var(--line);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial blockquote {
  margin: 0 0 1.4em;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.4;
  font-style: italic;
}
.testimonial blockquote::before { content: "\201C"; color: var(--gold-500); }
.testimonial cite {
  margin-top: auto;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-700);
  border-top: 1px solid var(--line);
  padding-top: 1em;
  display: block;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* -------- about -------- */
.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
.about-split .bracket-frame { aspect-ratio: 3/4; }
.stat-stamp {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--gold-500);
  color: var(--green-950);
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  font-family: var(--font-mono);
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 8px 24px rgba(18, 39, 28, 0.35);
}
.stat-stamp strong { font-size: 1.8rem; font-family: var(--font-display); font-weight: 600; }
.stat-stamp span { font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; }
.about-media { position: relative; }
.about-copy h3 { font-size: 1.15rem; margin-top: 1.4em; }
.about-copy p { color: var(--ink-700); }

@media (max-width: 860px) {
  .about-split { grid-template-columns: 1fr; }
}

/* -------- CTA band -------- */
.cta-band {
  background: var(--gold-500);
  color: var(--green-950);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0; max-width: 26ch; }
.cta-band .btn-outline-dark { border-color: rgba(18,39,28,0.4); color: var(--green-950); }
.cta-band .btn-outline-dark:hover { border-color: var(--green-950); background: var(--green-950); color: var(--cream-100); }

/* -------- contact -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 4rem);
}
.info-block { margin-bottom: 2.2em; }
.info-block h3 { font-size: 0.95rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-400); margin-bottom: 0.7em; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table td { padding: 0.5em 0; border-bottom: 1px solid var(--line-on-dark); }
.hours-table td:last-child { text-align: right; font-family: var(--font-mono); color: var(--cream-200); }
.contact-link { font-size: 1.3rem; font-family: var(--font-display); text-decoration: none; color: var(--cream-050); display: block; margin-bottom: 0.3em; }
.contact-link:hover { color: var(--gold-400); }

.quote-form { background: var(--cream-050); padding: clamp(1.75rem, 4vw, 2.5rem); border: 1px solid var(--line); }
.quote-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 0.5em;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream-100);
  padding: 0.8em 0.9em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-900);
  border-radius: 2px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold-500);
  outline-offset: 1px;
}
.field textarea { resize: vertical; min-height: 110px; }
@media (max-width: 560px) { .quote-form .row { grid-template-columns: 1fr; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--green-950);
  color: var(--cream-200);
  border-top: 1px solid var(--line-on-dark);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1em;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.6em; }
.footer-grid a { text-decoration: none; color: var(--cream-200); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1em;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--cream-200);
  opacity: 0.7;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Before / after slider
   ============================================================ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
@media (max-width: 780px) { .ba-grid { grid-template-columns: 1fr; } }

.ba-slider { --pos: 50%; }
.ba-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line-on-dark);
}
.ba-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.ba-media .ba-img-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: var(--gold-400);
  transform: translateX(-1px);
  pointer-events: none;
}
.ba-handle-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 2px solid var(--cream-050);
  transform: translate(-50%, -50%);
}
.ba-tag {
  position: absolute;
  top: 10px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-050);
  background: rgba(18, 39, 28, 0.72);
  padding: 0.35em 0.7em;
  border-radius: 2px;
}
.ba-tag-before { left: 10px; }
.ba-tag-after { right: 10px; }

.ba-range, .stage-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  margin: 0.9em 0 0;
  background: var(--line);
  border-radius: 2px;
  cursor: ew-resize;
}
.on-dark .ba-range, .on-dark .stage-range { background: var(--line-on-dark); }
.ba-range::-webkit-slider-thumb, .stage-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 2px solid var(--cream-050);
  cursor: ew-resize;
  box-shadow: 0 1px 4px rgba(18, 39, 28, 0.4);
}
.ba-range::-moz-range-thumb, .stage-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 2px solid var(--cream-050);
  cursor: ew-resize;
  box-shadow: 0 1px 4px rgba(18, 39, 28, 0.4);
}
.ba-range::-moz-range-track, .stage-range::-moz-range-track { height: 4px; background: var(--line); border-radius: 2px; }
.ba-range::-webkit-slider-runnable-track, .stage-range::-webkit-slider-runnable-track { height: 4px; background: transparent; border-radius: 2px; }

.ba-caption {
  margin-top: 0.7em;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: var(--ink-700);
}
.on-dark .ba-caption { color: var(--cream-200); }

/* ============================================================
   Team
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--gap);
}
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 380px) { .team-grid { grid-template-columns: 1fr; } }

.team-card { text-align: center; }
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--gold-500);
}
.team-avatar.is-monogram {
  background: var(--green-900);
}
.team-avatar.is-monogram span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-400);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.2em; }
.team-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.7em;
}
.on-dark .team-role { color: var(--gold-400); }
.team-card p:not(.team-role) { font-size: 0.92rem; color: var(--ink-700); }
.on-dark .team-card p:not(.team-role) { color: var(--cream-200); }

/* ============================================================
   Multi-stage slider (drag through build stages)
   ============================================================ */
.stage-slider .stage-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line-on-dark);
}
.stage-slider .stage-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stage-slider .stage-tag-current {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-050);
  background: rgba(18, 39, 28, 0.72);
  padding: 0.35em 0.7em;
  border-radius: 2px;
}
.stage-slider .stage-count {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--cream-050);
  background: rgba(18, 39, 28, 0.72);
  padding: 0.35em 0.7em;
  border-radius: 2px;
}
.stage-ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--ink-700);
  margin-top: 0.4em;
}
.on-dark .stage-ticks { color: var(--cream-200); }

/* -------- reduced motion -------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* -------- focus visibility -------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

/* -------- page hero (interior pages) -------- */
.page-hero {
  background: var(--green-950);
  color: var(--cream-100);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 1px solid var(--line-on-dark);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); max-width: 20ch; }
.page-hero p { color: var(--cream-200); max-width: 50ch; font-size: 1.02rem; }
