/* =========================================================
   Kaizer Localize — Design tokens
   ========================================================= */
:root{
  --bg: #F7F6EE;
  --bg-alt: #EDEBDA;
  --surface: #FFFDF8;
  --line: #DCD0B4;

  --ink: #211F1F;
  --ink-soft: #4A4234;

  --forest: #37432A;
  --forest-dark: #232B1B;
  --forest-darker: #171D10;
  --forest-light: #5C6B45;

  --brass: #A9793C;
  --brass-dark: #8B6130;
  --brass-light: #C99B5F;

  --cream: #F7F6EE;

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(23,29,16,0.08);
  --shadow-md: 0 8px 24px rgba(23,29,16,0.10);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 var(--space-2); color: var(--forest-dark); }
p{ margin: 0 0 var(--space-2); }
button{ font-family: inherit; }

.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;
}

.skip-link{
  position: absolute; left: 1rem; top: -60px;
  background: var(--forest-dark); color: var(--cream);
  padding: 0.75rem 1.25rem; border-radius: var(--radius);
  z-index: 1000; transition: top 0.2s var(--ease);
}
.skip-link:focus{ top: 1rem; }

:focus-visible{
  outline: 3px solid var(--brass);
  outline-offset: 2px;
}

.container{
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-3);
}

/* =========================================================
   Type scale
   ========================================================= */
h1, .h1{ font-size: clamp(2.4rem, 5vw + 1rem, 4.5rem); }
h2, .h2{ font-size: clamp(1.9rem, 3vw + 1rem, 2.75rem); }
h3, .h3{ font-size: 1.3rem; }

.eyebrow{
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin: 0 0 var(--space-2);
}
.eyebrow-light{ color: var(--brass-light); }

.section-lede{
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  min-height: 44px;
  transition: transform 0.15s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:active{ transform: scale(0.98); }

.btn-primary{
  background: var(--brass-dark);
  color: var(--cream);
  border-color: var(--brass-dark);
}
.btn-primary:hover{ background: var(--brass); border-color: var(--brass); }

.btn-outline{
  background: transparent;
  color: var(--forest-dark);
  border-color: var(--forest-dark);
}
.btn-outline:hover{ background: var(--forest-dark); color: var(--cream); }

.btn-outline-light{
  background: transparent;
  color: var(--cream);
  border-color: rgba(246,241,230,0.55);
}
.btn-outline-light:hover{ background: rgba(246,241,230,0.12); border-color: var(--cream); }

.btn-small{ padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* =========================================================
   Icons
   ========================================================= */
.icon{
  width: 22px; height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-lg{ width: 34px; height: 34px; color: var(--brass-dark); margin-bottom: var(--space-2); }

/* =========================================================
   Header
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,241,230,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: 0.9rem;
}

.wordmark{
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark-kaizer{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--forest-dark);
}
.wordmark-localize{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--forest-dark);
}

.main-nav ul{
  display: flex;
  gap: var(--space-4);
}
.main-nav a{
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.main-nav a:hover{ color: var(--forest-dark); border-color: var(--brass); }

.header-cta{ flex-shrink: 0; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-toggle-bar{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-dark);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
  margin-inline: auto;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Sections (shared)
   ========================================================= */
.section{ padding-block: var(--space-7); }
.section-alt{ background: var(--bg-alt); }
.section-dark{
  background: var(--forest-dark);
  color: var(--cream);
}
.section-dark h2{ color: var(--cream); }

.section-head{
  max-width: 720px;
  margin-bottom: var(--space-5);
}

/* =========================================================
   Hero
   ========================================================= */
.hero{
  position: relative;
  color: var(--cream);
  padding-block: calc(var(--space-7) + var(--space-3)) var(--space-7);
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  background-color: var(--forest-dark);
  background-image:
    radial-gradient(110% 100% at 88% 100%, rgba(23,29,16,0.96) 0%, rgba(23,29,16,0.65) 30%, transparent 55%),
    linear-gradient(180deg, rgba(55,67,42,0.5) 0%, rgba(35,43,27,0.58) 55%, rgba(23,29,16,0.72) 100%),
    url("../assets/img/hero-desk.png");
  background-size: cover, cover, 130%;
  background-position: center, center, center 32%;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-inner{
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo{
  width: 120px;
  height: auto;
  margin-bottom: var(--space-3);
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
}
.hero-heading{
  color: var(--cream);
  margin-bottom: var(--space-3);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-heading em{
  font-style: italic;
  color: var(--brass-light);
}
.hero-sub{
  font-size: 1.15rem;
  color: rgba(247,246,238,0.92);
  max-width: 56ch;
  margin-bottom: var(--space-4);
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

/* =========================================================
   About
   ========================================================= */
.about-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 860px){
  .about-grid{ grid-template-columns: 0.9fr 1.1fr; }
}
.about-media{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.about-media img{
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 30%;
  transform: scale(1.22);
}
.about-copy p{ color: var(--ink-soft); }
.about-highlights{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-3);
  margin-top: var(--space-4);
}
.about-highlights li{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--forest-dark);
}
.about-highlights .icon{ color: var(--brass-dark); width: 20px; height: 20px; }

/* =========================================================
   Cards / grids
   ========================================================= */
.card-grid{
  display: grid;
  gap: var(--space-3);
}
.card-grid-2{ grid-template-columns: 1fr; }
.card-grid-3{ grid-template-columns: 1fr; }
.card-grid-4{ grid-template-columns: 1fr; }

@media (min-width: 640px){
  .card-grid-2{ grid-template-columns: 1fr 1fr; }
  .card-grid-3{ grid-template-columns: 1fr 1fr; }
  .card-grid-4{ grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px){
  .card-grid-3{ grid-template-columns: repeat(3, 1fr); }
  .card-grid-4{ grid-template-columns: repeat(4, 1fr); }
}

.card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3{ margin-bottom: 0.5rem; font-size: 1.15rem; }
.card p{ color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0; }

.card-portfolio p{ margin-bottom: 0; }
.portfolio-note{
  margin-top: var(--space-4);
  color: var(--ink-soft);
}
.portfolio-note a{
  color: var(--brass-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   Trial / Calendly
   ========================================================= */
.trial-inner{
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.trial-sub{
  color: rgba(246,241,230,0.82);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: var(--space-4);
  font-size: 1.05rem;
}
.calendly-wrap{
  margin-top: var(--space-5);
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.calendly-fallback{
  margin: 0;
  padding: var(--space-5) var(--space-4);
  color: var(--ink-soft);
  text-align: center;
}
.calendly-inline-widget.is-hidden{ display: none; }

/* =========================================================
   Pricing
   ========================================================= */
.course-grid{ margin-bottom: var(--space-6); }
.course-card{ display: flex; flex-direction: column; }
.course-card > p:first-of-type{ color: var(--ink-soft); }
.course-facts{
  display: flex;
  gap: var(--space-4);
  margin: var(--space-2) 0 var(--space-3);
  padding: var(--space-2) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.course-facts dt{ font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brass-dark); font-weight: 600; margin-bottom: 0.2rem; }
.course-facts dd{ margin: 0; font-weight: 600; color: var(--forest-dark); }

.course-price{ display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; margin-bottom: var(--space-3); }
.price-was{ text-decoration: line-through; color: var(--ink-soft); font-size: 1rem; }
.price-now{ font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--forest-dark); }
.price-save{
  background: var(--forest);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.course-includes{ margin-bottom: var(--space-3); flex-grow: 1; }
.course-includes li{
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.course-includes li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
}
.course-card .btn{ align-self: flex-start; }

.pricing-tables{
  display: grid;
  gap: var(--space-5);
}
.pricing-table-wrap h3{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.table-tag{
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brass-dark);
  background: rgba(169,121,60,0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.table-scroll{ overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); }
table{
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  min-width: 560px;
}
th, td{
  text-align: left;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
td:last-child, th:last-child{ white-space: normal; min-width: 220px; }
thead th{
  background: var(--forest-dark);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
tbody th{ font-weight: 600; color: var(--forest-dark); }
tbody tr:last-child td, tbody tr:last-child th{ border-bottom: none; }
tbody tr:hover{ background: var(--bg-alt); }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-viewport{
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.testimonial-track{
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--space-3);
  padding-block: var(--space-2) var(--space-3);
  scrollbar-width: thin;
}
.testimonial-card{
  scroll-snap-align: start;
  flex: 0 0 min(340px, 85vw);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
}
.quote-mark{ width: 40px; height: 30px; color: var(--brass-light); margin-bottom: var(--space-2); }
.testimonial-card p:first-of-type{
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex-grow: 1;
}
.testimonial-attr{
  font-weight: 600;
  color: var(--forest-dark);
  font-size: 0.88rem;
  margin-bottom: 0;
}
.carousel-btn{
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--forest-dark);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.carousel-btn:hover{ background: var(--forest-dark); color: var(--cream); border-color: var(--forest-dark); }
@media (min-width: 780px){
  .carousel-btn{ display: inline-flex; }
}

/* =========================================================
   Contact
   ========================================================= */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 860px){
  .contact-grid{ grid-template-columns: 0.9fr 1.1fr; }
}
.contact-copy p{ color: var(--ink-soft); }
.contact-details{ margin-top: var(--space-3); display: flex; flex-direction: column; gap: var(--space-2); }
.contact-details li{ display: flex; align-items: center; gap: 0.7rem; }
.contact-details .icon{ color: var(--brass-dark); }
.contact-details a{ text-decoration: none; font-weight: 600; color: var(--forest-dark); }
.contact-details a:hover{ text-decoration: underline; }

.contact-form{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.hp-field{
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-row{ margin-bottom: var(--space-3); display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label{ font-weight: 600; font-size: 0.9rem; color: var(--forest-dark); }
.form-row input,
.form-row select,
.form-row textarea{
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  min-height: 44px;
}
.form-row textarea{ min-height: 110px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(169,121,60,0.18);
}
.form-row input[aria-invalid="true"],
.form-row textarea[aria-invalid="true"]{ border-color: #A6412E; }
.field-error{ color: #A6412E; font-size: 0.82rem; }

.form-row-checkbox{ gap: 0.3rem; }
.checkbox-label{
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
  padding-block: 0.4rem;
}
.checkbox-label input[type="checkbox"]{
  width: 20px;
  height: 20px;
  min-height: 0;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--brass-dark);
}
.checkbox-label a{ color: var(--brass-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.checkbox-label input[aria-invalid="true"]{ outline: 2px solid #A6412E; outline-offset: 2px; }

.form-submit{ width: 100%; }
.form-status{ margin-top: var(--space-2); margin-bottom: 0; font-weight: 600; font-size: 0.9rem; }
.form-status.success{ color: var(--forest); }
.form-status.error{ color: #A6412E; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  background: var(--forest-darker);
  color: rgba(246,241,230,0.75);
  padding-block: var(--space-5);
}
.footer-inner{
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}
.wordmark-footer .wordmark-kaizer,
.wordmark-footer .wordmark-localize{ color: var(--cream); }
.footer-nav{
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}
.footer-nav a{ text-decoration: none; font-size: 0.9rem; color: rgba(246,241,230,0.75); }
.footer-nav a:hover{ color: var(--cream); }
.footer-copy{ font-size: 0.82rem; margin: 0; color: rgba(246,241,230,0.55); }

.footer-bottom{
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  text-align: center;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(246,241,230,0.14);
}
.footer-legal-nav{
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}
.footer-legal-nav a{ font-size: 0.82rem; color: rgba(246,241,230,0.55); text-decoration: none; }
.footer-legal-nav a:hover{ color: var(--cream); text-decoration: underline; }

@media (min-width: 780px){
  .footer-inner{ flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-bottom{ flex-direction: row; justify-content: space-between; text-align: left; }
}

/* =========================================================
   Legal pages
   ========================================================= */
.legal-header-inner{ justify-content: space-between; }
.back-link{
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.back-link:hover{ color: var(--forest-dark); }

.legal-page{ padding-block: var(--space-6); }
.legal-container{ max-width: 740px; }
.legal-container h1{ margin-bottom: var(--space-1); }
.legal-updated{
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: var(--space-4);
}
.legal-container h2{
  font-size: 1.3rem;
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}
.legal-container h3{
  font-size: 1.05rem;
  margin-top: var(--space-3);
  margin-bottom: var(--space-2);
}
.legal-container p{ color: var(--ink-soft); }
.legal-container ul{
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0 0 var(--space-2);
  color: var(--ink-soft);
}
.legal-container li{ margin-bottom: 0.4rem; }
.legal-container a{ color: var(--brass-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal-container dl{ margin: 0 0 var(--space-3); }
.legal-container dl div{ display: flex; gap: 0.5rem; margin-bottom: 0.3rem; }
.legal-container dt{ font-weight: 600; color: var(--forest-dark); min-width: 9rem; }
.legal-container dd{ margin: 0; color: var(--ink-soft); }

/* =========================================================
   Reveal-on-scroll (subtle, respects reduced motion)
   ========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; }
}

/* =========================================================
   Responsive: nav collapse
   ========================================================= */
@media (max-width: 900px){
  .header-cta{ display: none; }
  .nav-toggle{ display: flex; }
  .main-nav{
    position: fixed;
    top: 68px;
    right: 0;
    left: 30%;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
    z-index: 90;
    background: var(--cream);
    border-left: 1px solid var(--line);
    padding: var(--space-4);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav ul{
    flex-direction: column;
    gap: var(--space-3);
  }
  .main-nav a{ font-size: 1.1rem; display: block; }
}
@media (min-width: 901px){
  .main-nav{ display: block !important; transform: none !important; position: static; }
}

@media (max-width: 640px){
  .about-highlights{ grid-template-columns: 1fr; }
  .hero{ padding-block: var(--space-6) var(--space-6); }
}

/* =========================================================
   Cookie consent banner
   ========================================================= */
.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--forest-darker);
  color: rgba(246,241,230,0.88);
  border-top: 1px solid rgba(246,241,230,0.14);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
}
.cookie-banner-inner{
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--space-3) var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  text-align: center;
}
.cookie-banner-inner p{ margin: 0; font-size: 0.9rem; max-width: 62ch; }
.cookie-banner-inner a{ color: var(--brass-light); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions{
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
  flex-shrink: 0;
}
.cookie-banner .btn-outline{
  color: var(--cream);
  border-color: rgba(246,241,230,0.55);
}
.cookie-banner .btn-outline:hover{ background: rgba(246,241,230,0.12); border-color: var(--cream); }

@media (min-width: 780px){
  .cookie-banner-inner{ flex-direction: row; justify-content: space-between; text-align: left; }
}

/* =========================================================
   Landing page additions (/learn-spanish)
   Same tokens as the rest of the system — sized for a
   single, focused above-the-fold hero on small screens.
   ========================================================= */
.hero.hero-compact{
  padding-block: calc(var(--space-6) + var(--space-2)) var(--space-6);
}
@media (max-width: 640px){
  .hero.hero-compact{ padding-block: var(--space-5) var(--space-4); }
}
.hero-heading.tight{
  font-size: clamp(1.85rem, 5.5vw + 0.5rem, 3.4rem);
}

.steps-grid{ counter-reset: step; }
.step-card{ position: relative; }
.step-number{
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--brass-dark);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.pricing-callout{
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.pricing-callout strong{ color: var(--forest-dark); }

.section-head-center{ margin-inline: auto; text-align: center; }
.section-head-center .section-lede{ margin-inline: auto; }

.landing-cta{ text-align: center; }
.landing-cta.spaced{ margin-top: var(--space-5); }
