/* ==========================================================================
   The AI Monk-E — theaimonke.com
   Palette sampled directly from the channel logo (teal #104050 / gold #E4B75C)
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --teal-900: #06272F;
  --teal-800: #0A3543;
  --teal-700: #104050;
  --teal-600: #14586A;
  --teal-500: #1B6E80;
  --teal-300: #6FA3AD;
  --teal-100: #DDEAEC;

  --gold-600: #C79A3F;
  --gold-500: #E4B75C;
  --gold-400: #EFC978;
  --gold-200: #F7E6BC;
  --gold-050: #FDF6E6;

  --ink: #0E2A33;
  --muted: #4E6B74;
  --cream: #FBF8F1;
  --paper: #FFFFFF;
  --line: rgba(14, 42, 51, 0.12);
  --line-soft: rgba(14, 42, 51, 0.07);

  --shadow-sm: 0 1px 2px rgba(6, 39, 47, .06), 0 2px 8px rgba(6, 39, 47, .05);
  --shadow-md: 0 4px 12px rgba(6, 39, 47, .08), 0 12px 32px rgba(6, 39, 47, .07);
  --shadow-lg: 0 8px 24px rgba(6, 39, 47, .10), 0 24px 64px rgba(6, 39, 47, .12);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --wrap: 1160px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  --step-hero: clamp(2.35rem, 1.35rem + 4.4vw, 4.4rem);
  --step-h2: clamp(1.75rem, 1.15rem + 2.4vw, 2.75rem);
  --step-h3: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  --step-lead: clamp(1.03rem, 0.97rem + 0.35vw, 1.2rem);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-600); text-decoration: none; }
a:hover { color: var(--teal-500); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .55em; letter-spacing: -0.015em; }
h1 { font-size: var(--step-hero); }
h2 { font-size: var(--step-h2); }
h3 { font-size: var(--step-h3); }
p { margin: 0 0 1.05em; }
ul, ol { margin: 0 0 1.05em; padding-left: 1.25em; }
li { margin-bottom: .4em; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }

/* ---------- 3. Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--sand { background: linear-gradient(180deg, var(--gold-050) 0%, #FCF7EA 100%); }
.section--deep { background: var(--teal-800); color: #E9F2F4; }
.section--deep h2, .section--deep h3 { color: #FFF; }

.sec-head { max-width: 44rem; margin: 0 auto clamp(2rem, 4vw, 3.25rem); text-align: center; }
.sec-head p { color: var(--muted); font-size: var(--step-lead); margin-bottom: 0; }
.section--deep .sec-head p { color: #B6D0D6; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.sec-head .eyebrow { justify-content: center; }
.section--deep .eyebrow { color: var(--gold-400); }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 650; font-size: .96rem; line-height: 1;
  padding: .95rem 1.6rem; border-radius: var(--r-pill); border: 2px solid transparent;
  cursor: pointer; text-align: center; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--gold { background: var(--gold-500); color: var(--teal-900); box-shadow: 0 6px 18px rgba(196, 150, 55, .35); }
.btn--gold:hover { background: var(--gold-400); color: var(--teal-900); box-shadow: 0 10px 26px rgba(196, 150, 55, .45); }

.btn--teal { background: var(--teal-700); color: #fff; box-shadow: 0 6px 18px rgba(16, 64, 80, .28); }
.btn--teal:hover { background: var(--teal-600); color: #fff; }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; }

.btn--outline { background: transparent; color: var(--teal-700); border-color: rgba(16, 64, 80, .28); }
.btn--outline:hover { background: var(--teal-700); color: #fff; border-color: var(--teal-700); }

.btn--block { display: flex; width: 100%; }
.btn--sm { padding: .7rem 1.15rem; font-size: .87rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row--center { justify-content: center; }

/* ---------- 5. Announcement bar ---------- */
.topbar {
  background: var(--teal-900); color: var(--gold-200);
  font-size: .84rem; text-align: center; padding: .55rem var(--gutter);
}
.topbar a { color: var(--gold-400); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.topbar a:hover { color: #fff; }

/* ---------- 6. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251, 248, 241, .88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 1rem; min-height: 74px; }

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; flex: none; }
.brand img { width: 44px; height: 44px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.brand-txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--teal-800); letter-spacing: -.01em; }
.brand-sub { font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: .55rem .8rem; border-radius: var(--r-sm);
  font-size: .93rem; font-weight: 550; color: var(--ink);
}
.nav-links a:hover { background: rgba(16, 64, 80, .07); color: var(--teal-700); }
.nav-links a.is-active { color: var(--teal-700); font-weight: 700; }
.nav-links a.is-active::after { content: ""; display: block; height: 2px; margin-top: 3px; border-radius: 2px; background: var(--gold-500); }
.nav-cta { flex: none; }
/* The in-menu CTA belongs to the mobile drawer only */
.nav-links .m-cta { display: none; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: var(--paper); border-radius: var(--r-sm); cursor: pointer;
  align-items: center; justify-content: center; flex: none;
}
.nav-toggle span { display: block; width: 19px; height: 2px; background: var(--teal-800); border-radius: 2px; position: relative; transition: .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--teal-800); border-radius: 2px; transition: .2s; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: .8rem var(--gutter) 1.4rem;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .8rem .6rem; font-size: 1rem; border-bottom: 1px solid var(--line-soft); }
  .nav-links a.is-active::after { display: none; }
  .nav-links .m-cta { display: block; margin-top: .8rem; }
  .nav-links .m-cta a { border-bottom: 0; }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #EAF3F5;
  background:
    radial-gradient(900px 520px at 82% 8%, rgba(228, 183, 92, .16), transparent 62%),
    radial-gradient(760px 520px at 8% 92%, rgba(27, 110, 128, .45), transparent 60%),
    linear-gradient(160deg, #0A3543 0%, #104050 48%, #06272F 100%);
  padding-block: clamp(3.2rem, 7vw, 6rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg font-family='monospace' font-size='11' fill='%23E4B75C' fill-opacity='0.11'%3E%3Ctext x='6' y='18'%3E1001%3C/text%3E%3Ctext x='74' y='40'%3E0110%3C/text%3E%3Ctext x='22' y='66'%3E1%3C/text%3E%3Ctext x='96' y='84'%3E1010%3C/text%3E%3Ctext x='44' y='104'%3E0%3C/text%3E%3Ctext x='8' y='128'%3E0111%3C/text%3E%3C/g%3E%3C/svg%3E");
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.08fr .92fr; } }

.hero h1 { color: #fff; margin-bottom: .5em; }
.hero h1 .accent { color: var(--gold-400); font-style: italic; }
.hero-lead { font-size: var(--step-lead); color: #C3DAE0; max-width: 34rem; margin-bottom: 1.9rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(228, 183, 92, .14); border: 1px solid rgba(228, 183, 92, .35);
  color: var(--gold-200); padding: .42rem .95rem; border-radius: var(--r-pill);
  font-size: .8rem; font-weight: 600; margin-bottom: 1.4rem;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(228, 183, 92, .2); }

.hero-stats { display: flex; flex-wrap: wrap; gap: 1.6rem 2.6rem; margin-top: 2.6rem; padding-top: 1.9rem; border-top: 1px solid rgba(255, 255, 255, .14); }
.hero-stats div strong { display: block; font-family: var(--font-display); font-size: 1.75rem; color: var(--gold-400); line-height: 1; margin-bottom: .3rem; }
.hero-stats div span { font-size: .82rem; color: #A9C6CD; letter-spacing: .02em; }

.hero-art { position: relative; display: grid; place-items: center; }
.hero-art img {
  width: min(100%, 400px); border-radius: var(--r-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .42), 0 0 0 1px rgba(228, 183, 92, .28);
}
.hero-art::after {
  content: ""; position: absolute; inset: -14% -8%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 183, 92, .22), transparent 66%);
}
.hero-chip {
  position: absolute; background: rgba(255, 255, 255, .96); color: var(--teal-800);
  border-radius: var(--r-pill); padding: .55rem 1rem; font-size: .82rem; font-weight: 650;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .45rem;
}
.hero-chip--tl { top: 6%; left: -2%; }
.hero-chip--br { bottom: 7%; right: -2%; }
.hero-chip b { color: var(--gold-600); }
@media (max-width: 640px) { .hero-chip { display: none; } }

/* ---------- 8. Marquee / trust strip ---------- */
.strip { background: var(--teal-900); color: #9FBEC6; padding: 1.05rem 0; font-size: .87rem; }
.strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2.2rem; text-align: center; }
.strip span { display: inline-flex; align-items: center; gap: .5rem; }
.strip span::before { content: "✦"; color: var(--gold-500); }

/* ---------- 9. Cards ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: clamp(1.4rem, 2.4vw, 1.9rem); box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(228, 183, 92, .5); }
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }
.card p + .card-link { margin-top: 1.1rem; }
.card-link { margin-top: auto; padding-top: 1.1rem; font-weight: 650; font-size: .92rem; color: var(--teal-600); display: inline-flex; align-items: center; gap: .4rem; }
.card-link::after { content: "→"; transition: transform .2s ease; }
.card:hover .card-link::after { transform: translateX(4px); }

.icon-badge {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--gold-200), var(--gold-050));
  border: 1px solid rgba(228, 183, 92, .45); margin-bottom: 1.1rem; flex: none;
}
.icon-badge svg { width: 25px; height: 25px; stroke: var(--gold-600); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-badge--teal { background: linear-gradient(140deg, var(--teal-100), #EFF6F7); border-color: rgba(16, 64, 80, .2); }
.icon-badge--teal svg { stroke: var(--teal-600); }

/* ---------- 10. Pricing ---------- */
.price-grid { display: grid; gap: clamp(1.1rem, 2vw, 1.7rem); grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); align-items: stretch; }
.price {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.price:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price--feature { border: 2px solid var(--gold-500); box-shadow: var(--shadow-md); background: linear-gradient(180deg, #FFFDF7, #FFF); }
.price-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold-500); color: var(--teal-900); font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: .38rem 1rem; border-radius: var(--r-pill);
  white-space: nowrap; box-shadow: 0 4px 12px rgba(196, 150, 55, .4);
}
.price h3 { margin-bottom: .3rem; font-size: 1.35rem; }
.price-note { font-size: .87rem; color: var(--muted); margin-bottom: 1.1rem; }
.price-amt { display: flex; align-items: baseline; gap: .45rem; margin-bottom: 1.3rem; }
.price-amt .num { font-family: var(--font-display); font-size: 2.7rem; font-weight: 700; color: var(--teal-800); line-height: 1; letter-spacing: -.02em; }
.price-amt .per { font-size: .87rem; color: var(--muted); }
.price-amt .was { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.price ul { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.price ul li { position: relative; padding-left: 1.75rem; font-size: .93rem; margin-bottom: .65rem; color: #2E4A53; }
.price ul li::before {
  content: ""; position: absolute; left: 0; top: .34em; width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold-200) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A97E28' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}
.price .btn { margin-top: auto; }
.price-foot { font-size: .78rem; color: var(--muted); text-align: center; margin: .85rem 0 0; }

/* ---------- 11. Playlist / resource tiles ---------- */
.tile {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 190px; border-radius: var(--r-md); padding: 1.3rem; overflow: hidden;
  color: #fff; background: var(--teal-700); box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: #fff; }
.tile::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(228, 183, 92, .28), transparent 55%), linear-gradient(0deg, rgba(6, 39, 47, .82), rgba(6, 39, 47, .25));
}
.tile > * { position: relative; z-index: 1; }
.tile-kicker { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-400); font-weight: 700; margin-bottom: .35rem; }
.tile h3 { color: #fff; font-size: 1.18rem; margin-bottom: .3rem; }
.tile p { font-size: .85rem; color: #BDD6DB; margin: 0; }
.tile .play {
  position: absolute; top: 1.1rem; right: 1.1rem; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .35);
  display: grid; place-items: center; backdrop-filter: blur(4px);
}
.tile .play svg { width: 15px; height: 15px; fill: #fff; }
.tile:nth-child(2n) { background: var(--teal-600); }
.tile:nth-child(3n) { background: var(--teal-800); }

/* ---------- 12. Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.step { position: relative; padding-top: 3.6rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  background: var(--gold-500); color: var(--teal-900); box-shadow: 0 5px 14px rgba(196, 150, 55, .35);
}
.step h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .93rem; margin-bottom: 0; }
.section--deep .step p { color: #B6D0D6; }
.section--deep .step::before { background: var(--gold-500); }

/* ---------- 13. Feature list (why us) ---------- */
.feat { display: flex; gap: 1.05rem; align-items: flex-start; }
.feat .icon-badge { margin-bottom: 0; width: 46px; height: 46px; border-radius: 12px; }
.feat h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.feat p { color: var(--muted); font-size: .93rem; margin: 0; }
.section--deep .feat p { color: #B6D0D6; }
.section--deep .feat .icon-badge { background: rgba(228, 183, 92, .16); border-color: rgba(228, 183, 92, .4); }
.section--deep .feat .icon-badge svg { stroke: var(--gold-400); }

/* ---------- 14. Testimonials ---------- */
.quote {
  background: var(--paper); border-radius: var(--r-md); padding: 1.6rem;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); break-inside: avoid; margin-bottom: 1.4rem;
}
.quote .stars { color: var(--gold-500); letter-spacing: .12em; font-size: .9rem; margin-bottom: .6rem; }
.quote p { font-size: .95rem; color: #2E4A53; margin-bottom: 1rem; }
.quote footer { display: flex; align-items: center; gap: .7rem; }
.quote .av {
  width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--teal-600), var(--teal-800)); color: var(--gold-400);
  font-weight: 700; font-size: .95rem; font-family: var(--font-display);
}
.quote .who strong { display: block; font-size: .9rem; color: var(--ink); }
.quote .who span { font-size: .78rem; color: var(--muted); }
.masonry { columns: 3 300px; column-gap: 1.4rem; }

/* ---------- 15. FAQ ---------- */
.faq { max-width: 48rem; margin-inline: auto; }
.faq details {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  margin-bottom: .8rem; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq details[open] { border-color: rgba(228, 183, 92, .55); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 3rem 1.15rem 1.35rem;
  font-weight: 650; font-size: 1rem; position: relative; color: var(--teal-800);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--gold-600); line-height: 1; transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq .faq-body { padding: 0 1.35rem 1.35rem; color: var(--muted); font-size: .95rem; }
.faq .faq-body :last-child { margin-bottom: 0; }

/* ---------- 16. CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--r-lg); color: #fff;
  padding: clamp(2.2rem, 5vw, 3.6rem); text-align: center;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(228, 183, 92, .22), transparent 60%),
    linear-gradient(140deg, #0A3543, #104050 55%, #06272F);
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #C3DAE0; max-width: 40rem; margin-inline: auto; font-size: var(--step-lead); }

/* ---------- 17. Contact / forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-size: .87rem; font-weight: 650; margin-bottom: .38rem; color: var(--teal-800); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  padding: .78rem .9rem; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #FCFDFD; transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(228, 183, 92, .22);
}
.field-row { display: grid; gap: 0 1.05rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.info-list li:last-child { border-bottom: 0; }
.info-list .icon-badge { width: 42px; height: 42px; border-radius: 11px; margin: 0; }
.info-list strong { display: block; font-size: .85rem; color: var(--muted); font-weight: 600; }
.info-list a, .info-list span.val { font-size: 1rem; font-weight: 650; color: var(--teal-700); }

/* ---------- 18. Prose (legal pages) ---------- */
.prose { max-width: 46rem; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin-top: 2.4rem; }
.prose h3 { font-size: 1.12rem; margin-top: 1.7rem; }
.prose p, .prose li { color: #2E4A53; font-size: .98rem; }
.prose .updated { font-size: .87rem; color: var(--muted); font-style: italic; }
.notice {
  background: var(--gold-050); border: 1px solid rgba(228, 183, 92, .5); border-left: 4px solid var(--gold-500);
  border-radius: var(--r-sm); padding: 1rem 1.2rem; font-size: .92rem; color: #4A3A16;
}
.notice :last-child { margin-bottom: 0; }

/* ---------- 19. Page header (inner pages) ---------- */
.page-head {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding-block: clamp(2.8rem, 6vw, 4.6rem);
  background: radial-gradient(700px 340px at 50% 0%, rgba(228, 183, 92, .17), transparent 62%), linear-gradient(150deg, #0A3543, #104050 60%, #06272F);
}
.page-head h1 { color: #fff; font-size: clamp(2rem, 1.3rem + 3vw, 3.2rem); margin-bottom: .4em; }
.page-head p { color: #C3DAE0; max-width: 40rem; margin: 0 auto; font-size: var(--step-lead); }
.crumb { font-size: .82rem; color: #9FBEC6; margin-bottom: .9rem; }
.crumb a { color: var(--gold-400); }

/* ---------- 20. Footer ---------- */
.site-footer { background: var(--teal-900); color: #A9C6CD; padding-block: clamp(2.8rem, 5vw, 4rem) 0; font-size: .92rem; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.footer-grid > div:first-child { grid-column: span 1; min-width: 240px; }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: #A9C6CD; }
.site-footer a:hover { color: var(--gold-400); }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-brand img { width: 46px; height: 46px; border-radius: 12px; }
.footer-brand .brand-name { color: #fff; }
.footer-about { font-size: .89rem; line-height: 1.6; margin-bottom: 1.2rem; }
.social { display: flex; gap: .6rem; }
.social a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .12); transition: .18s;
}
.social a:hover { background: var(--gold-500); border-color: var(--gold-500); transform: translateY(-2px); }
.social svg { width: 19px; height: 19px; fill: #D9E7EA; }
.social a:hover svg { fill: var(--teal-900); }
.footer-bottom {
  margin-top: 2.6rem; padding: 1.3rem 0; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .84rem; color: #7FA3AC;
}

/* ---------- 21. Utilities & motion ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.6rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .price:hover, .tile:hover { transform: none; }
}

/* ---------- 22. Print ----------
   Browsers don't print background colours by default, so every section that
   relies on a dark background is flipped to dark-on-white here. Without this,
   the hero, tiles and page headers print as white text on white paper. */
@media print {
  /* Interactive chrome that means nothing on paper */
  .topbar, .nav-links, .nav-toggle, .nav-cta, .social,
  .hero-chip, .tile .play, .strip { display: none !important; }

  body { background: #fff !important; color: #111 !important; font-size: 11pt; }
  .wrap { max-width: none; padding-inline: 0; }
  .section { padding-block: 1.4rem !important; }

  /* Flatten every themed background to plain white */
  .hero, .page-head, .section--deep, .section--cream, .section--paper,
  .section--sand, .cta-band, .site-footer, .tile, .card, .price, .quote,
  .faq details, .form-card, .notice {
    background: #fff !important;
    box-shadow: none !important;
    color: #111 !important;
  }
  .hero::before, .hero-art::after, .tile::before { display: none !important; }

  /* Blanket rule: nothing on paper may be light-on-white. This is deliberately
     brutal rather than an enumerated list of the elements that happen to be
     white today — a new white-on-dark component added later stays legible. */
  body, body * { color: #111 !important; }

  /* The few accents worth keeping, re-applied dark enough to read on white */
  .eyebrow, .brand-sub, .price-tag { color: #7A5A14 !important; }
  .eyebrow, .hero-badge { background: none !important; border-color: #BBB !important; }
  .price-tag { background: none !important; border: 1px solid #7A5A14 !important; box-shadow: none !important; }
  .muted, .price-note, .price-foot, .card p, .quote p { color: #444 !important; }

  /* Keep the brand mark, drop the sticky behaviour */
  .site-header { position: static !important; border-bottom: 1px solid #CCC; background: #fff !important; }
  .brand-name { color: #111 !important; }
  .brand-sub { color: #7A5A14 !important; }

  /* Give flattened blocks a visible edge again */
  .card, .price, .tile, .quote, .faq details, .form-card, .notice, .cta-band {
    border: 1px solid #CCC !important;
  }

  /* Buttons become plain labelled text rather than invisible pills
     (colour is already handled by the blanket rule above) */
  .btn {
    background: none !important;
    border: 1px solid #999 !important; box-shadow: none !important;
    padding: .3rem .6rem !important;
  }
  .btn svg { display: none; }

  /* Show link destinations, since a reader can't click paper */
  main a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8pt; color: #555 !important; word-break: break-all; }

  /* Sensible pagination */
  .card, .price, .quote, .step, .feat, .faq details { break-inside: avoid; page-break-inside: avoid; }
  h1, h2, h3 { break-after: avoid; page-break-after: avoid; }
  .faq .faq-body { display: block !important; }
  .faq summary::after { display: none; }
  img { max-width: 40mm !important; }
  .hero-art img { max-width: 55mm !important; }
}
