/* BeanCraft — Design System */
:root {
  --espresso: #2C1810;
  --espresso-light: #F5F1EB;
  --teal: #2A7B7E;
  --teal-dark: #1F5C5E;
  --oat: #F5F1EB;
  --oat-dark: #DDD6CB;
  --moss: #6B7F5E;
  --moss-dark: #556648;
  --white: #FFFFFF;
  --text-dark: #2C1810;
  --text-muted: #5A4A42;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
  --radius-pill: 999px;
  --radius-sm: 4px;
  --shadow: 0 4px 24px rgba(44, 24, 16, 0.12);
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--oat);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; }

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

/* Surfaces */
.surface-dark {
  background: var(--espresso);
  color: var(--oat);
}
.surface-dark h1,
.surface-dark h2,
.surface-dark h3,
.surface-dark h4,
.surface-dark p,
.surface-dark li,
.surface-dark address,
.surface-dark label,
.surface-dark .breadcrumb {
  color: var(--oat);
}
.surface-dark .eyebrow,
.surface-dark .gear-price,
.surface-dark .counter-value,
.surface-dark .hero-serial {
  color: var(--oat);
}
.surface-dark .counter-label,
.surface-dark .hero-trust,
.surface-dark .lead,
.surface-dark .breadcrumb {
  color: rgba(245, 241, 235, 0.88);
}
.surface-dark a:not(.btn) {
  color: var(--oat);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.surface-dark a:not(.btn):hover { color: var(--white); }

.surface-light {
  background: var(--oat);
  color: var(--text-dark);
}

.surface-accent {
  background: var(--teal);
  color: var(--oat);
}
.surface-accent a { color: var(--oat); text-decoration: underline; }

.surface-moss {
  background: var(--moss);
  color: var(--oat);
}
.surface-moss h1,
.surface-moss h2,
.surface-moss h3,
.surface-moss h4,
.surface-moss p,
.surface-moss li,
.surface-moss label {
  color: var(--oat);
}
.surface-moss .eyebrow,
.surface-moss .gear-price {
  color: var(--oat);
}
.surface-moss a:not(.btn) {
  color: var(--oat);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.surface-moss a:not(.btn):hover { color: var(--white); }

.diagonal-top {
  position: relative;
  margin-top: -3rem;
  padding-top: 5rem;
  clip-path: polygon(0 3rem, 100% 0, 100% 100%, 0 100%);
}

.diagonal-bottom {
  position: relative;
  padding-bottom: 5rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3rem), 0 100%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--espresso);
  border-bottom: 1px solid rgba(245, 241, 235, 0.1);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--oat);
  letter-spacing: 0.02em;
}
.logo span { color: var(--teal); }

.nav-main { display: flex; gap: 1.75rem; align-items: center; }
.nav-main a {
  color: var(--oat);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-main a:hover, .nav-main a.active { color: var(--teal); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--oat);
  margin: 5px 0;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn-outline {
  background: transparent;
  color: var(--oat);
  border-color: var(--oat);
}
.btn-outline:hover {
  background: var(--oat);
  color: var(--espresso);
}

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

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }

/* Hero Pattern C — Asymmetric Magazine */
.hero-magazine {
  display: grid;
  grid-template-columns: 60px 1fr 1.2fr;
  grid-template-areas: "label content photo";
  min-height: 85vh;
  background: var(--espresso);
  overflow: hidden;
  position: relative;
}

.hero-brand-label {
  grid-area: label;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  border-right: 1px solid rgba(42, 123, 126, 0.3);
  padding: 2rem 0;
}

.hero-content {
  grid-area: content;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem 3rem 5rem;
  margin-left: 80px;
}

.hero-content h1 {
  color: var(--oat);
  margin-bottom: 1.5rem;
}

.hero-content .lead {
  font-size: 1.125rem;
  color: var(--oat-dark);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-photo {
  grid-area: photo;
  position: relative;
  display: flex;
  align-items: stretch;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.hero-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(44, 24, 16, 0.85);
  padding: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--oat);
}

.hero-serial {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(44, 24, 16, 0.75);
  padding: 0.5rem 1rem;
}

.hero-trust {
  font-size: 0.8125rem;
  color: var(--oat-dark);
  letter-spacing: 0.05em;
}

/* Page hero */
.page-hero {
  padding: 4rem 0 3rem;
  background: var(--espresso);
  color: var(--oat);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .breadcrumb {
  font-size: 0.8125rem;
  color: var(--oat-dark);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--oat); }

/* About split catalogue hero */
.about-split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.about-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
}

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

/* Diagonal gear grid */
.gear-grid-diagonal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  transform: skewY(-3deg);
  margin: 2rem 0;
}

.gear-grid-diagonal > * {
  transform: skewY(3deg);
}

.gear-grid-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gear-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gear-grid-item:hover img {
  transform: scale(1.05);
}

.gear-grid-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(44, 24, 16, 0.8);
  font-size: 0.8125rem;
  color: var(--oat);
}

/* Sections */
.section { padding: 5rem 0; }
.section-header { max-width: 640px; margin-bottom: 3rem; }
.section-header .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.disclaimer-box {
  background: rgba(42, 123, 126, 0.08);
  border-left: 3px solid var(--teal);
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  font-size: 0.875rem;
}

.surface-dark .disclaimer-box {
  background: rgba(42, 123, 126, 0.15);
  border-left-color: var(--teal);
  color: var(--oat-dark);
}

/* Counter strip */
.counter-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 241, 235, 0.15);
  border-bottom: 1px solid rgba(245, 241, 235, 0.15);
}

.counter-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(245, 241, 235, 0.15);
}
.counter-item:last-child { border-right: none; }

.counter-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oat-dark);
}

/* Gear lanes with rating cards */
.gear-lanes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.rating-card {
  background: var(--teal);
  color: var(--oat);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.rating-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.rating-card .lane-index {
  font-family: var(--font-display);
  font-size: 2rem;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.rating-card h3 { color: var(--oat); margin-bottom: 0.75rem; }
.rating-card p { color: rgba(245, 241, 235, 0.9); margin-bottom: 1rem; }

.rating-score {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(44, 24, 16, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Reviewer spotlight */
.reviewer-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--moss);
  color: var(--oat);
}

.reviewer-content { padding: 3rem 2.5rem; }
.reviewer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.reviewer-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.reviewer-meta {
  font-size: 0.875rem;
  opacity: 0.85;
}

/* Accessory preview grid */
.accessory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.accessory-card {
  background: var(--white);
  border: 1px solid var(--oat-dark);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.accessory-card:hover { box-shadow: var(--shadow); }

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

.accessory-card-body { padding: 1.5rem; }
.accessory-card-body .price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--teal);
  margin-top: 0.5rem;
}

/* FAQ numbered list (NOT accordion) */
.faq-numbered {
  counter-reset: faq-counter;
  list-style: none;
  max-width: 800px;
}

.faq-numbered li {
  counter-increment: faq-counter;
  padding: 2rem 0 2rem 4rem;
  border-bottom: 1px solid var(--oat-dark);
  position: relative;
}

.faq-numbered li::before {
  content: counter(faq-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.faq-numbered h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.faq-numbered p:last-child { margin-bottom: 0; }

.surface-dark .faq-numbered li { border-bottom-color: rgba(245, 241, 235, 0.15); }
.surface-dark .faq-numbered li::before,
.surface-moss .faq-numbered li::before {
  color: var(--oat);
}
.surface-dark .faq-numbered h3,
.surface-moss .faq-numbered h3 {
  color: var(--oat);
}

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.content-image img {
  width: 100%;
  border-radius: var(--radius-sm);
}

/* CTA block */
.cta-block {
  text-align: center;
  padding: 4rem 2rem;
}
.cta-block h2 { margin-bottom: 1rem; }
.cta-block p { max-width: 560px; margin: 0 auto 2rem; }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--oat-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.form-check input { margin-top: 0.25rem; flex-shrink: 0; }
.form-check label { font-size: 0.875rem; font-weight: 400; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.form-alert-success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.form-alert-error { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; }

/* Legal */
.legal-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.5rem; }
.legal-content h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; font-size: 1.125rem; }
.legal-content ul, .legal-content ol { margin: 0 0 1rem 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; }

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--oat-dark);
}

.legal-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--oat-dark);
  padding: 2rem;
}

.legal-card h3 { margin-bottom: 0.75rem; }

/* Footer */
.site-footer {
  background: var(--espresso);
  color: var(--oat-dark);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; display: inline-block; }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oat);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--oat-dark); font-size: 0.875rem; }
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 235, 0.1);
  font-size: 0.8125rem;
}

.footer-bottom p { margin-bottom: 0.5rem; }
.footer-disclaimer { font-size: 0.75rem; opacity: 0.85; margin-top: 1rem; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--espresso);
  color: var(--oat);
  padding: 1.5rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.cookie-text { flex: 1; min-width: 280px; font-size: 0.875rem; }
.cookie-text a { color: var(--teal); }

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

.cookie-customise {
  display: none;
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 241, 235, 0.15);
  margin-top: 0.5rem;
}

.cookie-customise.show { display: block; }

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

/* Scroll reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

.no-js .reveal { opacity: 1; transform: none; }

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.error-code {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 1rem;
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--oat-dark);
  overflow: hidden;
}

.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 1.75rem; }

/* Program tier detail */
.tier-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--oat-dark);
  align-items: center;
}

.tier-detail:nth-child(even) { direction: rtl; }
.tier-detail:nth-child(even) > * { direction: ltr; }

.gear-label {
  display: inline-block;
  background: var(--teal);
  color: var(--oat);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.gear-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal);
  margin: 1rem 0;
}

/* Contact info */
.contact-info-block {
  background: var(--moss);
  color: var(--oat);
  padding: 2.5rem;
}

.contact-info-block h3 { color: var(--oat); margin-bottom: 1.5rem; }
.contact-info-block p { margin-bottom: 0.75rem; font-size: 0.9375rem; }
.contact-info-block a { color: var(--oat); text-decoration: underline; }

/* Responsive */
@media (max-width: 960px) {
  .hero-magazine {
    grid-template-columns: 1fr;
    min-height: auto;
    grid-template-areas:
      "label"
      "content"
      "photo";
  }

  .hero-brand-label {
    grid-area: label;
    writing-mode: horizontal-tb;
    transform: none;
    border-right: none;
    border-bottom: 1px solid rgba(42, 123, 126, 0.3);
    padding: 1rem;
    font-size: 0.6875rem;
  }

  .hero-content {
    grid-area: content;
    margin-left: 0;
    padding: 2rem 1.5rem;
  }

  .hero-photo {
    grid-area: photo;
    min-height: 220px;
  }

  .hero-photo img {
    aspect-ratio: 16 / 10;
    min-height: 220px;
  }

  .hero-serial {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
  }

  .diagonal-top {
    margin-top: 0;
    padding-top: 4rem;
    clip-path: none;
  }

  .diagonal-bottom {
    padding-bottom: 4rem;
    clip-path: none;
  }

  .about-split-hero { grid-template-columns: 1fr; }
  .reviewer-panel { grid-template-columns: 1fr; }
  .gear-grid-diagonal { grid-template-columns: 1fr 1fr; transform: none; }
  .gear-grid-diagonal > * { transform: none; }

  .counter-strip { grid-template-columns: 1fr; }
  .counter-item { border-right: none; border-bottom: 1px solid rgba(245, 241, 235, 0.15); }

  .two-col, .tier-detail, .footer-grid { grid-template-columns: 1fr; }
  .tier-detail:nth-child(even) { direction: ltr; }

  .nav-main {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--espresso);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(245, 241, 235, 0.1);
  }

  .nav-main.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 600px) {
  .gear-grid-diagonal { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .faq-numbered li { padding-left: 3rem; }
}
