:root {
  --bg: #0c0b09;
  --bg-elevated: #141210;
  --bg-soft: #1a1814;
  --surface: #1f1c17;
  --border: rgba(201, 169, 98, 0.18);
  --border-strong: rgba(201, 169, 98, 0.35);
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dim: #8a7340;
  --text: #f3efe6;
  --text-muted: #a89f8c;
  --text-dim: #7a7264;
  --danger: #d4786a;
  --success: #7aab7e;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --container: 1120px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 169, 98, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(201, 169, 98, 0.05), transparent 50%),
    linear-gradient(180deg, #100e0c 0%, var(--bg) 40%, #090807 100%);
  background-attachment: fixed;
}

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

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

p { margin: 0 0 1em; color: var(--text-muted); }

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 11, 9, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover { color: var(--gold-light); }

.brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background:
    linear-gradient(135deg, transparent 45%, var(--gold) 45%, var(--gold) 55%, transparent 55%),
    linear-gradient(45deg, rgba(201, 169, 98, 0.2), transparent);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-light);
}

.nav-cta {
  padding: 0.55rem 1rem;
  border: 1px solid var(--border-strong);
  color: var(--gold-light) !important;
  border-radius: 2px;
}

.nav-cta:hover {
  background: rgba(201, 169, 98, 0.1);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 44px;
  height: 36px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  position: relative;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(135deg, #d4b56e, var(--gold) 45%, #a8863f);
  color: #12100c;
  font-weight: 600;
}

.btn-gold:hover { color: #0c0b09; }

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--gold-light);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--text);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

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

.section-head p { font-size: 1.05rem; }

.divider-gold {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}

/* Hero — editorial brand-led composition */
.hero-editorial {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 4vw, 4rem);
  position: relative;
  z-index: 2;
}

.hero-brand-signal {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-light);
  margin: 0 0 1.5rem;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  max-width: 14ch;
  margin-bottom: 1rem;
}

.hero-lede {
  max-width: 34ch;
  font-size: 1.08rem;
  color: var(--text-muted);
}

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

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  animation: heroFade 1.4s var(--ease) both;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 35%),
    linear-gradient(0deg, rgba(12, 11, 9, 0.35), transparent 40%);
  pointer-events: none;
}

@keyframes heroFade {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

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

.reveal {
  animation: riseIn 0.9s var(--ease) both;
}

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

/* Trust strip */
.trust-strip {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 500;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* Course preview rows */
.course-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.course-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.course-row:hover {
  background: rgba(201, 169, 98, 0.04);
}

.course-row img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 2px;
}

.course-row h3 {
  margin-bottom: 0.35rem;
}

.course-row h3 a {
  color: var(--text);
}

.course-row h3 a:hover {
  color: var(--gold-light);
}

.course-meta {
  font-size: 0.8rem;
  color: var(--gold-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* Benefits */
.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-item {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-strong);
}

.benefit-item h3 {
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

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

.quote-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.quote-block blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.45;
  color: var(--text);
  font-weight: 400;
}

.quote-attr {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.quote-attr cite {
  font-style: normal;
  color: var(--gold);
}

/* CTA band */
.cta-band {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 11, 9, 0.92) 35%, rgba(12, 11, 9, 0.55)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80") center/cover;
  z-index: 0;
}

.cta-band .container {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.cta-band h2 { color: var(--text); }
.cta-band p { color: var(--text-muted); }

/* Page heroes (inner) */
.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.page-hero.with-image {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  border: 0;
  overflow: hidden;
}

.page-hero.with-image .page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero.with-image .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero.with-image .page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(12, 11, 9, 0.55) 55%, rgba(12, 11, 9, 0.3));
}

.page-hero.with-image .container {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
  padding-top: 6rem;
}

/* Cards for interaction only */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.tier:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.tier.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #242018, var(--surface));
}

.tier-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.tier-price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.tier-price span {
  font-size: 1rem;
  color: var(--text-dim);
}

.tier-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.tier ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}

.tier li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tier .btn { width: 100%; }

.price-disclaimer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 42rem;
}

/* Course grid */
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.course-tile {
  display: block;
  color: inherit;
}

.course-tile img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 1.25rem;
  transition: opacity 0.4s var(--ease);
}

.course-tile:hover img { opacity: 0.85; }

.course-tile h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

/* Modules */
.module-list {
  counter-reset: mod;
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-list li {
  counter-increment: mod;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.module-list li::before {
  content: counter(mod, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
}

/* Instructor */
.instructor {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
}

.instructor img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border);
}

/* FAQ */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

/* Forms */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.contact-form,
.form-panel {
  display: grid;
  gap: 1.15rem;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  border-radius: 2px;
  transition: border-color 0.25s var(--ease);
}

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

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

.field-error {
  display: none;
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.form-field.has-error .field-error { display: block; }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--danger);
}

.form-status {
  display: none;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.form-status.success {
  display: block;
  border-color: var(--success);
  color: var(--success);
  background: rgba(122, 171, 126, 0.08);
}

.form-status.error {
  display: block;
  border-color: var(--danger);
  color: var(--danger);
  background: rgba(212, 120, 106, 0.08);
}

.contact-details p {
  margin-bottom: 0.75rem;
}

.contact-details strong {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

/* Blog */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

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

.blog-item h2 {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.blog-item h2 a { color: var(--text); }
.blog-item h2 a:hover { color: var(--gold-light); }

.blog-meta {
  font-size: 0.8rem;
  color: var(--gold-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.article-body h2 {
  margin-top: 2.5rem;
  font-size: 1.75rem;
}

.article-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 2rem 0;
}

/* Reviews / case studies */
.case-study {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.case-study h3 {
  color: var(--gold-light);
}

.rating-line {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* Legal */
.legal-body {
  max-width: 720px;
  padding: 3rem 0 5rem;
}

.legal-body h2 {
  margin-top: 2.25rem;
  font-size: 1.5rem;
  color: var(--gold-light);
}

.legal-body ul {
  color: var(--text-muted);
  padding-left: 1.25rem;
}

.legal-body li { margin-bottom: 0.5rem; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

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

.cookie-table th {
  background: var(--surface);
  color: var(--gold-light);
  font-weight: 500;
}

.cookie-table td { color: var(--text-muted); }

/* 404 */
.error-page {
  min-height: calc(100vh - var(--header-h) - 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.error-page h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--gold);
  margin-bottom: 0.25rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: #090807;
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.95rem;
  max-width: 28ch;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
}

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

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.footer-bottom {
  width: min(100% - 2.5rem, var(--container));
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(20, 18, 16, 0.97);
  border-top: 1px solid var(--border-strong);
  padding: 1.25rem 1.5rem;
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
}

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

.cookie-banner-inner {
  width: min(100%, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.cookie-banner a {
  color: var(--gold-light);
  text-decoration: underline;
}

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

.inline-error {
  padding: 0.75rem 1rem;
  border: 1px solid var(--danger);
  color: var(--danger);
  background: rgba(212, 120, 106, 0.08);
  margin: 1rem 0;
  font-size: 0.9rem;
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-2 img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.prose-narrow {
  max-width: 40rem;
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
    display: none;
  }

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

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }

  .hero-editorial {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 320px;
    order: -1;
  }

  .hero-visual::after {
    background: linear-gradient(0deg, var(--bg), transparent 50%);
  }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .course-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .course-row img {
    width: 100%;
    height: 180px;
  }

  .benefit-list,
  .tier-grid,
  .course-grid,
  .form-layout,
  .split-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blog-item {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}
