/* =====================
   RESET & BASE
===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --clr-bg: #FDF8F2;
  --clr-surface: #FFFFFF;
  --clr-burgundy: #7B1D1D;
  --clr-burgundy-light: #9B2C2C;
  --clr-amber: #C97B2A;
  --clr-amber-light: #E8993A;
  --clr-text: #1A1208;
  --clr-text-muted: #6B5C44;
  --clr-border: #E8DDD0;
  --clr-cream: #F5EDE0;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(123,29,29,0.08);
  --shadow-md: 0 4px 32px rgba(123,29,29,0.12);
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--clr-burgundy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--clr-amber);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--clr-text);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--clr-burgundy);
  color: #fff;
  padding: 14px 32px;
  box-shadow: 0 2px 8px rgba(123,29,29,0.25);
}

.btn-primary:hover {
  background: var(--clr-burgundy-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(123,29,29,0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--clr-burgundy);
  border: 2px solid var(--clr-burgundy);
  padding: 12px 28px;
}

.btn-outline:hover {
  background: var(--clr-burgundy);
  color: #fff;
}

.btn-lg {
  font-size: 1.1rem;
  padding: 18px 40px;
}

/* =====================
   NAVIGATION
===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,248,242,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--clr-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--clr-burgundy);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo span {
  color: var(--clr-amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--clr-burgundy);
}

.nav-cta {
  padding: 9px 20px;
  font-size: 0.9rem;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =====================
   HERO
===================== */
.hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,123,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-amber);
  background: rgba(201,123,42,0.1);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  color: var(--clr-text);
}

.hero-title em {
  font-style: italic;
  color: var(--clr-burgundy);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.hero-note strong {
  color: var(--clr-amber);
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(253,248,242,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge-icon {
  font-size: 1.4rem;
}

.hero-badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.3;
}

.hero-badge-text span {
  display: block;
  font-weight: 400;
  color: var(--clr-text-muted);
  font-size: 0.75rem;
}

/* =====================
   PAIN POINTS
===================== */
.pain {
  padding: 80px 0;
  background: var(--clr-cream);
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--clr-border);
  position: relative;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--clr-amber);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.pain-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.pain-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--clr-text);
}

.pain-card p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* =====================
   COURSE FORMAT / HOW IT WORKS
===================== */
.how {
  padding: 96px 0;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.how-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.how-step {
  display: flex;
  gap: 20px;
}

.how-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-burgundy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.how-step-body p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* =====================
   OUTCOMES / BENEFITS
===================== */
.outcomes {
  padding: 80px 0;
  background: var(--clr-cream);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.outcome-item {
  background: var(--clr-surface);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--transition);
}

.outcome-item:hover {
  box-shadow: var(--shadow);
}

.outcome-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(123,29,29,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--clr-burgundy);
}

.outcome-item h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.outcome-item p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* =====================
   FORMAT / COURSE MODULES
===================== */
.format {
  padding: 96px 0;
}

.format-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.format-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.format-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.modules {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module-item {
  background: var(--clr-cream);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.module-item:hover {
  border-color: var(--clr-burgundy);
  background: var(--clr-surface);
}

.module-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-amber);
  min-width: 28px;
}

.module-name {
  font-size: 0.92rem;
  font-weight: 600;
  flex: 1;
}

.module-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--clr-text-muted);
  background: var(--clr-border);
  padding: 3px 10px;
  border-radius: 100px;
}

/* =====================
   INSTRUCTOR / TRUST
===================== */
.instructor {
  padding: 80px 0;
  background: var(--clr-cream);
}

.instructor-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.instructor-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--clr-surface);
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 8px;
}

.instructor-name {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.instructor-bio {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.instructor-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-burgundy);
  background: rgba(123,29,29,0.06);
  padding: 5px 14px;
  border-radius: 100px;
}

/* =====================
   FAQ
===================== */
.faq {
  padding: 96px 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--clr-cream);
}

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  transition: transform var(--transition);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--clr-burgundy);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--clr-border);
}

.faq-item.open .faq-answer {
  display: block;
}

/* =====================
   LEAD FORM
===================== */
.lead {
  padding: 96px 0;
  background: var(--clr-burgundy);
  position: relative;
  overflow: hidden;
}

.lead::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.lead::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead-copy .section-label {
  color: rgba(255,255,255,0.6);
}

.lead-copy .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.lead-copy .section-desc {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

.lead-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}

.lead-perks li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  color: #fff;
  font-weight: 700;
}

.lead-form-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.2);
}

.lead-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--clr-text);
}

.lead-form-card p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--clr-burgundy);
  background: var(--clr-surface);
}

.form-input::placeholder {
  color: #B0A090;
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 20px 0;
}

.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clr-burgundy);
  width: 16px;
  height: 16px;
}

.form-consent label {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.form-consent a {
  color: var(--clr-burgundy);
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-top: 12px;
}

/* =====================
   COOKIE BANNER
===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(26,18,8,0.97);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}

.cookie-banner a {
  color: var(--clr-amber-light);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  background: var(--clr-amber);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 10px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-btn-accept:hover {
  background: var(--clr-amber-light);
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-btn-decline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* =====================
   FOOTER
===================== */
.footer {
  background: var(--clr-text);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand .nav-logo span {
  color: var(--clr-amber);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 260px;
}

.footer-company {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--clr-amber-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* =====================
   SUCCESS PAGE
===================== */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(123,29,29,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
}

.success-page h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--clr-text);
}

.success-page p {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* =====================
   LEGAL PAGES
===================== */
.legal-page {
  padding: 60px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 32px 0 10px;
  color: var(--clr-text);
}

.legal-page p, .legal-page li {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 8px;
}

.legal-back {
  margin-bottom: 40px;
}

/* =====================
   SCROLL ANIMATIONS
===================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .hero-grid,
  .how-grid,
  .lead-inner,
  .format-header,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: 280px;
  }

  .how-image img {
    height: 280px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .instructor-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .instructor-photo {
    margin: 0 auto;
  }

  .instructor-tags {
    justify-content: center;
  }

  .lead-form-card {
    padding: 28px 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-burger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 48px 0 40px;
  }

  .lead {
    padding: 64px 0;
  }

  .format-header {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
