:root {
  --paper: #f3ede4;
  --paper-strong: #fbf7f1;
  --ink: #141813;
  --muted: #596057;
  --olive: #1b2418;
  --olive-2: #273124;
  --gold: #b99758;
  --gold-soft: rgba(185, 151, 88, 0.12);
  --cream: #f6f1e8;
  --line: rgba(20, 24, 19, 0.12);
  --line-strong: rgba(20, 24, 19, 0.2);
  --shadow: 0 20px 48px rgba(20, 24, 19, 0.08);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  --max: 1180px;
  --section: clamp(4.5rem, 7vw, 7rem);
  --radius: 26px;
  --radius-sm: 18px;
  --ease: 220ms cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 1.5rem, var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: 840px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 241, 0.9);
  border-bottom: 1px solid rgba(20, 24, 19, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header--hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background var(--ease), border-color var(--ease), backdrop-filter var(--ease);
}

.site-header--hero.is-scrolled {
  background: rgba(251, 247, 241, 0.9);
  border-bottom-color: rgba(20, 24, 19, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand__name {
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand__sub {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-header--hero .brand {
  color: #fff;
}

.site-header--hero .brand__sub {
  color: rgba(255, 255, 255, 0.72);
}

.site-header--hero.is-scrolled .brand {
  color: var(--ink);
}

.site-header--hero.is-scrolled .brand__sub {
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1.1rem;
  color: var(--muted);
}

.site-header--hero .nav {
  color: rgba(255, 255, 255, 0.82);
}

.site-header--hero.is-scrolled .nav {
  color: var(--muted);
}

.nav a {
  font-size: 0.77rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color var(--ease);
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.site-header--hero .nav a:hover,
.site-header--hero .nav a:focus-visible,
.site-header--hero .nav a[aria-current="page"] {
  color: #fff;
}

.site-header--hero.is-scrolled .nav a:hover,
.site-header--hero.is-scrolled .nav a:focus-visible,
.site-header--hero.is-scrolled .nav a[aria-current="page"] {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--olive);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: var(--olive-2);
}

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

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.58);
}

.btn--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.btn--light:hover,
.btn--light:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  background: #10140f;
  overflow: hidden;
}

.home-hero__media,
.home-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__media img {
  object-fit: cover;
  object-position: 55% center;
  filter: grayscale(100%) contrast(1.02) brightness(0.88);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 14, 10, 0.88) 0%, rgba(11, 14, 10, 0.6) 34%, rgba(11, 14, 10, 0.26) 58%, rgba(11, 14, 10, 0.3) 100%),
    linear-gradient(180deg, rgba(11, 14, 10, 0.18) 0%, rgba(11, 14, 10, 0.28) 74%, rgba(11, 14, 10, 0.66) 100%);
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: 8.5rem 0 3rem;
}

.home-hero__content {
  max-width: 43rem;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}

.eyebrow {
  margin-bottom: 1.3rem;
}

.home-hero h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  max-width: 10ch;
}

.home-hero h1 .accent {
  color: #dbc08a;
  font-style: italic;
}

.home-hero__lede {
  max-width: 35rem;
  margin: 1.45rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.home-hero__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem 1.2rem;
  margin-top: 2.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-hero__proof dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero__proof dd {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  line-height: 1.4;
}

.page-hero {
  padding: 7.5rem 0 2.6rem;
  background:
    radial-gradient(circle at top left, rgba(185, 151, 88, 0.14), transparent 28%),
    linear-gradient(135deg, var(--olive) 0%, var(--olive-2) 72%, #121711 100%);
  color: var(--cream);
}

.page-hero .section-kicker {
  color: #dbc08a;
  margin-bottom: 0.9rem;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  max-width: 10ch;
}

.page-hero p {
  max-width: 36rem;
  margin: 1.2rem 0 0;
  color: rgba(246, 241, 232, 0.76);
  font-size: 1.03rem;
}

.section {
  padding: var(--section) 0;
}

.section--paper {
  background: var(--paper-strong);
}

.section--dark {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-2) 72%, #121711 100%);
  color: var(--cream);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 1.4rem 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2.15rem, 4vw, 4.3rem);
  max-width: 10ch;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section--dark .section-head p {
  color: rgba(246, 241, 232, 0.72);
}

.cards-3,
.cards-2,
.pricing-grid,
.faq-grid,
.book-grid,
.offer-grid {
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-2,
.pricing-grid,
.offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.pricing-card,
.detail-card,
details,
.book-panel,
.form-panel,
.session-card,
.offer-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.card,
.pricing-card,
.detail-card,
.session-card,
.offer-panel {
  padding: 1.35rem;
}

.section--dark .pricing-card,
.section--dark .book-panel,
.section--dark .form-panel,
.section--dark .offer-panel {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.card h3,
.pricing-card h3,
.session-card h3,
.offer-panel h3,
.book-panel h3,
.form-panel h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  margin-top: 0.45rem;
}

.meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.42rem;
}

.meta::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.section--dark .meta {
  color: rgba(246, 241, 232, 0.72);
}

.lede,
.card p,
.pricing-card p,
.session-card p,
.offer-panel p,
.book-panel p,
.form-panel p,
details p {
  margin: 0;
  color: rgba(20, 24, 19, 0.8);
}

.section--dark .pricing-card p,
.section--dark .offer-panel p,
.section--dark .book-panel p,
.section--dark .form-panel p {
  color: rgba(246, 241, 232, 0.8);
}

.stack {
  display: grid;
  gap: 1rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem 3rem;
  align-items: start;
}

.quote {
  margin-top: 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.28;
}

.stats {
  display: grid;
  gap: 0.8rem;
}

.stats__row {
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.stats__row:first-child {
  border-top: 0;
  padding-top: 0;
}

.stats__row strong {
  display: block;
  font-family: var(--display);
  font-size: 1.95rem;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.24rem;
}

.stats__row span {
  color: var(--muted);
}

.list,
.pricing-list,
.detail-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.list li,
.pricing-list li,
.detail-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(20, 24, 19, 0.84);
}

.section--dark .pricing-list li {
  color: rgba(246, 241, 232, 0.84);
}

.list li::before,
.pricing-list li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.entry-card {
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.entry-card:hover,
.entry-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.76);
}

.entry-card__index {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.session-card {
  display: grid;
  gap: 1rem;
}

.session-card--feature {
  grid-template-columns: minmax(0, 1fr) 240px;
}

.price-box {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(20, 24, 19, 0.04);
  border: 1px solid rgba(20, 24, 19, 0.08);
  align-self: start;
}

.price-box__row,
.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.price-box__row {
  padding-bottom: 0.55rem;
  margin-bottom: 0.55rem;
  border-bottom: 1px solid rgba(20, 24, 19, 0.08);
}

.price-box__row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.price-box dt,
.price-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-box dd,
.price-value {
  margin: 0;
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.offer-strip {
  display: grid;
  gap: 0.85rem;
}

.offer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.offer-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.offer-row h4 {
  font-size: 1.22rem;
  margin-bottom: 0.2rem;
}

.offer-row__price {
  text-align: right;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.offer-row__note {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}

.pricing-card__rows {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.pricing-card__rows .pricing-row {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(20, 24, 19, 0.08);
}

.pricing-card__rows .pricing-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.section--dark .pricing-card__rows .pricing-row {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.section--dark .price-label {
  color: rgba(246, 241, 232, 0.68);
}

.section--dark .price-value {
  color: var(--cream);
}

.quiet-note {
  margin-top: 1rem;
  color: var(--muted);
}

.section--dark .quiet-note {
  color: rgba(246, 241, 232, 0.72);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

details {
  padding: 1rem 1.05rem;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  letter-spacing: -0.01em;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 0.8rem;
}

.section--dark details {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section--dark details p,
.section--dark summary {
  color: rgba(246, 241, 232, 0.84);
}

.book-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
}

.book-panel,
.form-panel {
  padding: 1.4rem;
}

.steps {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.step:first-child {
  border-top: 0;
  padding-top: 0;
}

.step strong {
  color: #dbc08a;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-top: 0.16rem;
}

.step h4 {
  font-size: 1.18rem;
  margin-bottom: 0.2rem;
}

.step p {
  margin: 0;
}

.embed-slot {
  display: grid;
  place-items: center;
  min-height: 250px;
  margin-top: 1.1rem;
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.embed-slot strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #dbc08a;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.embed-slot p {
  max-width: 22rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  color: rgba(246, 241, 232, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.92rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  color: var(--cream);
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}

input::placeholder,
textarea::placeholder {
  color: rgba(246, 241, 232, 0.45);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(219, 192, 138, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1rem;
}

.form-note {
  max-width: 21rem;
  color: rgba(246, 241, 232, 0.68);
  font-size: 0.88rem;
}

.footer {
  padding: 2rem 0 3rem;
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  align-items: end;
}

.footer p,
.footer a {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

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

  .site-header--hero,
  .btn,
  .entry-card {
    transition: none;
  }
}

@media (max-width: 1040px) {
  .section-head,
  .split,
  .session-card--feature,
  .book-grid {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .cards-2,
  .pricing-grid,
  .faq-grid,
  .offer-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 1rem, var(--max));
  }

  .site-header__inner {
    align-items: start;
    padding: 0.8rem 0;
  }

  .home-hero__inner {
    padding-top: 8rem;
  }

  .home-hero__proof,
  .cards-3,
  .cards-2,
  .pricing-grid,
  .faq-grid,
  .offer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .offer-row,
  .footer__inner,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .offer-row {
    display: grid;
  }

  .offer-row__price {
    text-align: left;
  }
}

/* ============================================================
   MOBILE REFINEMENTS
   Appended — overrides only, nothing above this line was changed.
   ============================================================ */

/* Hamburger button: hidden until the nav would otherwise wrap */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  border: 0;
  background: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 760px) {
  /* ---- Header: stop the wordmark and nav from wrapping ---- */
  .site-header__inner {
    align-items: center;
    min-height: 64px;
    padding: 0.5rem 0;
    gap: 0.5rem;
  }
  .brand { flex-direction: row; align-items: baseline; gap: 0.5rem; white-space: nowrap; }
  .brand__name { font-size: 0.82rem; letter-spacing: 0.16em; }
  .brand__sub  { font-size: 0.58rem; letter-spacing: 0.16em; }

  .nav-toggle { display: flex; }

  /* Nav becomes a full-screen drawer */
  .nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    background: var(--paper-strong);
    color: var(--ink) !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ease), visibility var(--ease);
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav { opacity: 1; visibility: visible; }
  .nav a,
  .site-header--hero .nav a,
  .site-header--hero.is-scrolled .nav a {
    color: var(--ink);
    font-size: 1.05rem;
    letter-spacing: 0.2em;
    padding: 0.85rem 1.5rem;   /* 44px+ tap target */
  }
  .nav a[aria-current="page"] { color: var(--gold); }
  /* keep the wordmark + burger above the open drawer so it can be closed */
  .site-header { z-index: 70; }
  .brand, .nav-toggle { position: relative; z-index: 80; }
  body.nav-open .brand,
  body.nav-open .nav-toggle { color: var(--ink); }
  body.nav-open .brand__sub { color: var(--muted); }
  .nav { padding-top: 3rem; }

  /* ---- Home hero: make the photograph readable ---- */
  .home-hero__media img {
    object-position: 62% center;
    filter: grayscale(100%) contrast(1.06) brightness(0.5);
  }
  /* the desktop scrim runs left-to-right; on a narrow screen the copy sits
     over the bright side of the frame, so switch it to a vertical scrim */
  .home-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(11, 14, 10, 0.82) 0%,
        rgba(11, 14, 10, 0.58) 24%,
        rgba(11, 14, 10, 0.72) 58%,
        rgba(11, 14, 10, 0.95) 100%
      );
  }
  .home-hero__inner { padding: 6.5rem 0 2.5rem; }
  /* insurance for the brightest patches of the photograph */
  .home-hero__content { text-shadow: 0 1px 22px rgba(11, 14, 10, 0.55); }
  .home-hero h1 { font-size: clamp(2.6rem, 12vw, 3.6rem); max-width: 14ch; }
  .home-hero__lede { font-size: 1rem; margin-top: 1.1rem; }
  .home-hero__actions { gap: 0.7rem; margin-top: 1.6rem; }
  .home-hero__actions .btn { flex: 1 1 100%; text-align: center; }
  .home-hero__proof { margin-top: 1.8rem; gap: 1rem; }
  .home-hero__proof dt { font-size: 0.72rem; }
  .home-hero__proof dd { font-size: 0.95rem; }

  /* ---- Legibility + tap targets everywhere ---- */
  .btn { min-height: 46px; padding-inline: 1.25rem; }
  .footer__inner a { display: inline-block; padding-block: 0.35rem; }
  input, select, textarea { font-size: 16px; }  /* stops iOS zooming on focus */
}

/* Respect the notch / home indicator */
@supports (padding: max(0px)) {
  @media (max-width: 760px) {
    .container {
      padding-left: max(0px, env(safe-area-inset-left));
      padding-right: max(0px, env(safe-area-inset-right));
    }
    .footer { padding-bottom: max(2rem, env(safe-area-inset-bottom)); }
  }
}
