:root {
  --ink: #1a1f36;
  --ink-soft: #3d4563;
  --paper: #f3fffb;
  --paper-2: #fff8f0;
  --coral: #ff4d6d;
  --coral-deep: #e63355;
  --teal: #00c2a8;
  --teal-deep: #009e8a;
  --sun: #ffd166;
  --sky: #5b8def;
  --lilac: #c084fc;
  --line: rgba(26, 31, 54, 0.12);
  --shadow: 0 18px 40px rgba(26, 31, 54, 0.12);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --max: 1120px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 209, 102, 0.35), transparent 32%),
    radial-gradient(circle at 88% 4%, rgba(0, 194, 168, 0.28), transparent 28%),
    radial-gradient(circle at 70% 40%, rgba(255, 77, 109, 0.12), transparent 35%),
    linear-gradient(160deg, var(--paper) 0%, var(--paper-2) 55%, #eef6ff 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--teal-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.65em;
}

p {
  margin: 0 0 1rem;
}

ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(243, 255, 251, 0.82);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--coral), var(--sun), var(--teal)) 1;
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  background:
    radial-gradient(circle at 30% 35%, var(--coral) 0 42%, transparent 43%),
    radial-gradient(circle at 70% 65%, var(--teal) 0 40%, transparent 41%),
    var(--ink);
  box-shadow: 0 6px 0 var(--sun);
  transform: rotate(-6deg);
}

.nav-toggle {
  display: none;
  border: 2px solid var(--ink);
  background: var(--sun);
  border-radius: 0.6rem;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--coral-deep);
}

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--coral);
}

.nav-cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--teal);
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  background: var(--ink);
  color: #e8eefc;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.35), transparent 65%);
  pointer-events: none;
}

.footer-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 3rem 0 1.5rem;
  position: relative;
}

.footer-brand {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--sun);
}

.footer-tag {
  color: rgba(232, 238, 252, 0.78);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-heading {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li + li {
  margin-top: 0.4rem;
}

.footer-col a {
  color: #e8eefc;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--sun);
}

.footer-contact p {
  font-size: 0.92rem;
  color: rgba(232, 238, 252, 0.85);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: rgba(232, 238, 252, 0.65);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 7px 7px 0 var(--ink);
}

.btn-secondary {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--teal);
}

.btn-secondary:hover {
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--teal);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(26, 31, 54, 0.15);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* Shapes & motion */
.shape-blob {
  position: absolute;
  border-radius: 40% 60% 55% 45% / 45% 35% 65% 55%;
  filter: blur(0.5px);
  animation: floaty 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: rise-in 0.7s ease both;
}

.reveal-delay-1 { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.24s; }
.reveal-delay-3 { animation-delay: 0.36s; }

/* Home hero — split collage composition */
.hero-stage {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 0.4rem;
  transform: rotate(-2deg);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 0.75rem;
}

.hero-title span {
  background: linear-gradient(120deg, var(--coral), var(--sun));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 34rem;
}

.hero-visual {
  position: relative;
  min-height: 380px;
}

.hero-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 1.5rem 2.5rem 1rem 2rem;
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--sun);
  transform: rotate(2deg);
}

.hero-chip {
  position: absolute;
  left: -0.5rem;
  bottom: 1.5rem;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  box-shadow: 6px 6px 0 var(--coral);
  max-width: 14rem;
  transform: rotate(-3deg);
  animation: floaty 6s ease-in-out infinite;
}

.hero-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

/* Sections */
.section {
  padding: 3.5rem 0;
  position: relative;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.eyebrow {
  font-weight: 700;
  color: var(--coral-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}

.panel {
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 8px 8px 0 rgba(26, 31, 54, 0.08);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.benefit {
  position: relative;
  overflow: hidden;
}

.benefit::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  right: -18px;
  top: -18px;
  border-radius: 50%;
  background: var(--sun);
  opacity: 0.45;
}

.benefit h3 {
  font-size: 1.2rem;
}

.benefit .icon-dot {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 0.85rem;
  border: 2px solid var(--ink);
}

.dot-coral { background: var(--coral); color: #fff; }
.dot-teal { background: var(--teal); color: #fff; }
.dot-sun { background: var(--sun); color: var(--ink); }

/* Course cards — interaction containers */
.course-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--teal);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--coral);
  color: inherit;
}

.course-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.course-card-body {
  padding: 1.1rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.course-meta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-deep);
}

/* Social proof strip */
.proof-band {
  background: var(--ink);
  color: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border: 3px solid var(--sun);
  box-shadow: 10px 10px 0 var(--coral);
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--sun);
}

.proof-item span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

/* Testimonials */
.quote-stack {
  display: grid;
  gap: 1rem;
}

.quote {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  position: relative;
}

.quote:nth-child(odd) {
  transform: rotate(-0.6deg);
  box-shadow: 7px 7px 0 var(--sun);
}

.quote:nth-child(even) {
  transform: rotate(0.6deg);
  box-shadow: 7px 7px 0 var(--teal);
}

.quote p {
  margin-bottom: 0.75rem;
}

.quote footer {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.stars {
  color: var(--coral);
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--coral), #ff7a59 45%, var(--sun));
  border: 3px solid var(--ink);
  border-radius: 1.75rem;
  padding: 2.25rem;
  color: #fff;
  box-shadow: 12px 12px 0 var(--ink);
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: #fff;
  max-width: 20ch;
}

.cta-band p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.92);
}

/* Page heroes */
.page-hero {
  padding: 3rem 0 1.5rem;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 18ch;
}

.page-hero .lede {
  max-width: 40rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.page-hero-media {
  margin-top: 1.5rem;
}

.page-hero-media img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--teal);
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-tier {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.price-tier.featured {
  background: linear-gradient(180deg, #fff 0%, #e8fff8 100%);
  box-shadow: 10px 10px 0 var(--coral);
  transform: translateY(-8px);
}

.price-tier h2 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin: 0.5rem 0;
}

.price-amount small {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--ink-soft);
}

.price-tier ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.1rem;
  flex: 1;
}

.price-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
}

/* Forms */
.form-panel {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 8px 8px 0 var(--sun);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #fff;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 3px solid rgba(0, 194, 168, 0.35);
  border-color: var(--teal);
}

.field-error {
  color: var(--coral-deep);
  font-size: 0.88rem;
  margin-top: 0.3rem;
  display: none;
}

.form-group.has-error .field-error {
  display: block;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--coral);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
  font-weight: 600;
}

.form-status.success {
  display: block;
  background: rgba(0, 194, 168, 0.15);
  border: 2px solid var(--teal);
  color: var(--teal-deep);
}

.form-status.error {
  display: block;
  background: rgba(255, 77, 109, 0.12);
  border: 2px solid var(--coral);
  color: var(--coral-deep);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.address-block {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 8px 8px 0 var(--coral);
}

.address-block h2 {
  color: var(--sun);
}

.address-block a {
  color: var(--teal);
}

/* Blog */
.blog-list {
  display: grid;
  gap: 1.25rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 6px 6px 0 var(--sun);
  transition: transform 0.18s ease;
}

.blog-item:hover {
  transform: translate(-2px, -2px);
  color: inherit;
}

.blog-item img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.blog-item-body {
  padding: 1.1rem 1.1rem 1.1rem 0;
}

.blog-item-body .date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral-deep);
}

.article {
  max-width: 720px;
  margin: 0 auto;
}

.article-hero img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 1.25rem;
  border: 3px solid var(--ink);
  margin: 1.25rem 0 1.75rem;
  box-shadow: 8px 8px 0 var(--teal);
}

.article h2 {
  margin-top: 1.75rem;
}

/* Legal */
.legal {
  max-width: 760px;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.92rem;
  background: #fff;
}

.cookie-table th,
.cookie-table td {
  border: 2px solid var(--ink);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  background: var(--sun);
  font-family: var(--font-display);
}

/* Modules / FAQ */
.module-list {
  display: grid;
  gap: 0.85rem;
}

.module {
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  background: #fff;
}

.module h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.faq details {
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  background: #fff;
  margin-bottom: 0.65rem;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-display);
}

.instructor {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: center;
}

.instructor img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50% 40% 55% 45%;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--coral);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 520px;
  margin-inline: auto;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 1.25rem;
  padding: 1.15rem 1.25rem;
  box-shadow: 10px 10px 0 var(--coral);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: rise-in 0.35s ease;
}

.cookie-banner p {
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-actions .btn {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.inline-error {
  background: rgba(255, 77, 109, 0.12);
  border: 2px solid var(--coral);
  color: var(--coral-deep);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}

/* 404 */
.error-page {
  text-align: center;
  padding: 4rem 0 5rem;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--coral), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Journey custom page */
.journey-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.journey-step {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.1rem;
  position: relative;
}

.journey-step .n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.case-study {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 8px 8px 0 var(--sky);
}

.case-study + .case-study {
  margin-top: 1.25rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .contact-layout,
  .instructor,
  .blog-item {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .price-grid,
  .proof-band,
  .footer-cols,
  .journey-map {
    grid-template-columns: 1fr 1fr;
  }

  .price-tier.featured {
    transform: none;
  }

  .blog-item-body {
    padding: 0 1.1rem 1.1rem;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    background: rgba(243, 255, 251, 0.97);
    border-bottom: 2px solid var(--ink);
    display: none;
    padding: 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-cta {
    text-align: center;
  }

  .header-inner {
    position: relative;
  }
}

@media (max-width: 600px) {
  .grid-3,
  .price-grid,
  .proof-band,
  .footer-cols,
  .journey-map,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-visual img {
    height: 260px;
  }
}
