/* ============================================================
   Hope Adoptions & Consulting
   Design system — palette, typography, layout primitives
   ============================================================ */

/* -------- Tokens -------- */
:root {
  /* Ink (text) */
  --ink: #242a36;
  --ink-soft: #4c5361;
  --muted: #7a8291;

  /* Navy — trust, steadiness */
  --navy: #1f2a44;
  --navy-deep: #141c30;
  --navy-soft: #3a486a;

  /* Sage — Wyoming landscape, growth, hope */
  --sage: #8ba394;
  --sage-deep: #617a6d;
  --sage-mist: #e6ece7;

  /* Honey — warmth, attention (used sparingly) */
  --honey: #c5904f;
  --honey-deep: #a4733a;
  --honey-soft: #efd9b1;

  /* Neutrals */
  --cream: #faf6ef;
  --cream-deep: #f1e9d9;
  --white: #ffffff;
  --line: #e4dfd4;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-script: "Parisienne", cursive;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Space & layout */
  --container: 1120px;
  --container-narrow: 720px;
  --section-y: clamp(3.5rem, 8vw, 6.5rem);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(20, 28, 48, 0.06);
  --shadow-md: 0 10px 30px -15px rgba(20, 28, 48, 0.22);
  --radius: 6px;
  --radius-lg: 10px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 0.75rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 0.75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; }

/* -------- Containers & sections -------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--sage { background: var(--sage-mist); }
.section--navy { background: var(--navy); color: #e4e9f1; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-deep); color: #fff; }

.btn--honey { background: var(--honey); color: var(--navy-deep); }
.btn--honey:hover { background: var(--honey-deep); color: #fff; }

.btn--ghost { background: transparent; color: var(--navy); border-color: currentColor; }
.btn--ghost:hover { background: var(--navy); color: #fff; }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--honey);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease, gap 0.2s ease;
}
.link-arrow::after { content: "→"; transition: transform 0.2s ease; }
.link-arrow:hover { color: var(--honey-deep); gap: 0.65rem; }

/* -------- Header -------- */
.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header__brand {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.site-header__brand-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--honey-soft);
  white-space: nowrap;
}
.site-header__brand-sub {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.site-header__nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: color 0.15s ease;
}
.site-header__nav a:hover { color: var(--honey-soft); }
.site-header__nav-cta {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius);
}
.site-header__nav-cta:hover {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--navy-deep) !important;
}

/* Hamburger button — hidden by default, shown on narrow screens */
.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  padding: 0.6rem 0.7rem;
  cursor: pointer;
}
.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}
.site-header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Collapse to hamburger earlier so the brand never has to fight the nav for space */
@media (max-width: 900px) {
  .site-header__inner { padding-block: 0.85rem; position: relative; }
  .site-header__toggle { display: flex; }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }
  .site-header__nav--open { display: flex; }
  .site-header__nav a {
    padding: 0.85rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1.05rem;
  }
  .site-header__nav-cta {
    margin-top: 0.85rem;
    padding: 0.85rem 1rem !important;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.35) !important;
    border-radius: var(--radius);
  }
}

/* Shrink the brand a touch on very narrow phones so it fits beside the toggle on one line */
@media (max-width: 420px) {
  .site-header__brand { gap: 0.4rem; }
  .site-header__brand-mark { font-size: 1.3rem; }
  .site-header__brand-sub { font-size: 0.65rem; letter-spacing: 0.08em; }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/images/hero2.jpg");
  background-size: cover;
  background-position: center 55%; /* bias downward so family sits in frame and sky fills the top */
  background-repeat: no-repeat;
}
/* Dark gradient so white hero text stays legible on the photo.
   Heavier on the left (where the copy sits) and a touch at the top
   so the sticky nav doesn't feel weightless over the sky. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20,28,48,0.85) 0%, rgba(20,28,48,0.6) 35%, rgba(20,28,48,0.15) 60%, rgba(20,28,48,0) 80%),
    linear-gradient(180deg, rgba(20,28,48,0.4) 0%, rgba(20,28,48,0) 30%, rgba(20,28,48,0) 75%, rgba(20,28,48,0.35) 100%);
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) 1.5rem;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey-soft);
  margin: 0 0 1.25rem;
}
.hero__title {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero__lede {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: rgba(255,255,255,0.92);
  max-width: 34ch;
  margin: 0 0 2rem;
  line-height: 1.4;
}
.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* -------- Page hero (secondary pages — framed photo, no edge-to-edge) -------- */
.page-hero {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 1.5rem clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.page-hero__content h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 1rem;
}
.page-hero__content .lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 48ch;
}
.page-hero__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background:
    radial-gradient(ellipse at 40% 30%, rgba(239, 217, 177, 0.45), transparent 60%),
    linear-gradient(160deg, var(--sage-mist), var(--cream-deep));
  /* When you drop an image in, swap the above background for:
     background: url('/assets/images/FILENAME.jpg') center/cover no-repeat; */
}
.page-hero__frame--wide { aspect-ratio: 5 / 4; }
.page-hero__frame::after {
  content: "Photo placeholder";
  position: absolute;
  inset: auto 0 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
  opacity: 0.55;
}
.page-hero__frame.has-image::after { display: none; }
@media (max-width: 780px) {
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__frame { max-width: 420px; margin: 0 auto; width: 100%; }
}

/* -------- Info duo (two-up description cards) -------- */
.info-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.info-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--honey-deep);
}
.info-card p:last-child { margin-bottom: 0; }

/* -------- Prose (long-form body content) -------- */
.prose {
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.prose h2 { margin-top: 2.5rem; }
.prose h3 {
  margin-top: 2.75rem;
  margin-bottom: 0.6rem;
  font-size: clamp(1.4rem, 2.2vw, 1.6rem);
  color: var(--navy-deep);
  position: relative;
  padding-left: 1rem;
}
.prose h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 3px;
  background: var(--honey);
  border-radius: 2px;
}
.prose h3:first-child, .prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: 0.5rem; }
.prose__note {
  margin-top: 2.5rem;
  padding: 1rem 1.25rem;
  background: var(--sage-mist);
  border-left: 3px solid var(--sage-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.prose__note strong { color: var(--navy-deep); }

/* -------- FAQ (accessible, uses <details>/<summary>) -------- */
.faq {
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.faq__item {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-deep);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.15s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--honey-deep);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item summary:hover { color: var(--honey-deep); }
.faq__answer {
  margin-top: 0.75rem;
  color: var(--ink-soft);
}
.faq__answer p:last-child { margin-bottom: 0; }

/* -------- Poem (framed epigraph) -------- */
.poem {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  border-bottom: 1px solid var(--line);
}
.poem__card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.poem__mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  font-weight: 500;
  color: var(--honey);
  line-height: 0;
  margin: 0 0 1rem;
}
.poem__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  line-height: 1.75;
  color: var(--navy-deep);
  margin: 0;
}
.poem__final {
  display: block;
  margin-top: 0.85rem;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 2.8vw, 2.1rem);
  color: var(--honey-deep);
  letter-spacing: 0.005em;
}
.poem__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.poem__caption::before,
.poem__caption::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--line);
}

/* -------- Services -------- */
.services__intro {
  max-width: var(--container-narrow);
  margin: 0 auto 3rem;
  text-align: center;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 { margin-bottom: 0.25rem; }
.service-card p { color: var(--ink-soft); flex: 1; }
.service-card .link-arrow { align-self: flex-start; }

/* -------- About Amber -------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.about__photo {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(239, 217, 177, 0.5), transparent 60%),
    linear-gradient(160deg, var(--sage-mist), var(--cream-deep));
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-md);
  /* Replace with: background-image: url('/assets/images/amber.jpg'); background-size: cover; */
}
.about__photo::after {
  content: "Amber";
  position: absolute;
  bottom: 1rem; left: 1.25rem;
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--navy-soft);
  opacity: 0.55;
}
.about__text .pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy-deep);
  border-left: 3px solid var(--honey);
  padding-left: 1rem;
  margin: 1.75rem 0 1rem;
  line-height: 1.4;
}
.about__signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy-soft);
  margin: 0 0 1.25rem;
}
@media (max-width: 780px) {
  .about { grid-template-columns: 1fr; }
  .about__photo { max-width: 360px; width: 100%; margin: 0 auto; }
}

/* -------- CTA -------- */
.cta-block {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  border-radius: var(--radius-lg);
  max-width: var(--container);
  margin: 0 auto;
  background-image:
    radial-gradient(ellipse at 20% 100%, rgba(197, 144, 79, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 0%, rgba(139, 163, 148, 0.2), transparent 50%);
}
.cta-block h2 { color: #fff; }
.cta-block p { color: rgba(255,255,255,0.82); max-width: 50ch; margin-inline: auto; }
.cta-block__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* -------- Footer -------- */
.site-footer {
  background: var(--navy-deep);
  color: #c2c9d6;
  padding: 3.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
}
@media (max-width: 720px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* Column 1 — brand echoes the site header */
.site-footer__brand {
  margin: 0 0 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.site-footer__brand-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--honey-soft);
  line-height: 1;
}
.site-footer__brand-sub {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.site-footer__tag {
  color: #9fa7b8;
  margin: 0 0 1rem;
  max-width: 32ch;
  line-height: 1.55;
}
.site-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.site-footer__contact a {
  color: #9fa7b8;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-footer__contact a:hover { color: var(--honey-soft); border-color: var(--honey-soft); }

/* Columns 2 & 3 — headings + link stacks */
.site-footer__heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey-soft);
  margin: 0 0 1rem;
}
.site-footer__col nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.site-footer__col nav a {
  color: #9fa7b8;
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-footer__col nav a:hover { color: var(--honey-soft); }
.site-footer__placeholder {
  color: #7a8291;
  font-style: italic;
}

.site-footer__legal {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #8892a3;
  font-size: 0.85rem;
  text-align: center;
}

/* ============================================================
   Mobile overrides (<= 640px)
============================================================ */
@media (max-width: 640px) {
  /* Hero: anchor content to the bottom; solid navy base beneath text instead of busy image */
  .hero { align-items: end; }
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(20,28,48,0) 0%,
      rgba(20,28,48,0) 45%,
      rgba(20,28,48,0.55) 75%,
      rgba(20,28,48,0.85) 100%
    );
  }
  .hero__inner {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }
  .hero__actions { display: none; }
  .hero__title {
    font-size: 10vw;
    white-space: nowrap;
    line-height: 1.1;
  }
  .hero__lede { font-size: 1.05rem; margin-bottom: 0; }

  /* Poem: drop the hard line break so the text flows naturally on small screens */
  .poem__text br { display: none; }

  /* CTA block: square off the corners when it kisses the viewport edges */
  .cta-block { border-radius: 0; }
}
