

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --cream:        #f2ece0;
  --cream-light:  #f8f4ec;
  --cream-mid:    #ede6d8;
  --cream-dark:   #e0d8c8;
  --ink:          #1c1710;
  --ink-mid:      #4a4438;
  --ink-light:    #8a8070;
  --ink-faint:    #b8b0a0;

  /* Earthy card tones */
  --rose:         #7a4a50;
  --rose-bg:      #6a3a40;
  --sage:         #3a5040;
  --sage-bg:      #2a4030;
  --taupe:        #6a5848;
  --taupe-bg:     #5a4838;
  --teal:         #2a4848;
  --teal-bg:      #1e3838;
  --amber:        #c87840;

  /* Typography */
  --serif:        'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:         'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-gap:  7rem;
  --container:    1160px;
  --radius-card:  16px;
  --radius-pill:  100px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── CONTAINER ───────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* ── TYPOGRAPHY UTILITIES ────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1rem;
  display: block;
}
.eyebrow-light { color: rgba(248,244,236,0.5); }
.eyebrow-cream { color: var(--ink-faint); }

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-headline em { font-style: italic; font-weight: 400; color: var(--ink-mid); }
.section-headline-light { color: var(--cream-light); }
.section-headline-light em { color: rgba(248,244,236,0.6); }

.body-text {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-mid);
}
.body-text-light { color: rgba(248,244,236,0.7); }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-dark  { background: var(--ink); color: var(--cream-light); }
.btn-dark:hover  { background: var(--ink-mid); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--cream-light); border: 1.5px solid rgba(248,244,236,0.3); }
.btn-ghost:hover { border-color: rgba(248,244,236,0.65); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--cream-dark); }
.btn-outline:hover { border-color: var(--ink-light); transform: translateY(-1px); }
.btn-arrow { font-size: 0.9rem; transition: transform 0.2s ease; }
.btn-pill:hover .btn-arrow { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════
   NAVIGATION — single bar, full width
═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(242,236,224,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(28,23,16,0.08);
}
.site-header.header-dark { background: transparent; }
.site-header.header-dark.scrolled {
  background: rgba(28,23,16,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Single-row wrapper — full viewport width, generous padding */
.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Unused two-row elements — hidden */
.nav-top  { display: contents; }
.nav-bottom { display: contents; }

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
/* Default (light pages): show dark logo */
.nav-logo-img.logo-dark  { display: block; }
.nav-logo-img.logo-white { display: none; }
/* Dark hero pages: show white logo */
.header-dark .nav-logo-img.logo-dark  { display: none; }
.header-dark .nav-logo-img.logo-white { display: block; }
/* Once scrolled on dark pages, header bg turns dark — keep white logo */
.header-dark.scrolled .nav-logo-img.logo-dark  { display: none; }
.header-dark.scrolled .nav-logo-img.logo-white { display: block; }

/* Links sit in the middle, naturally spaced */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink-mid);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
  padding-bottom: 2px;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--ink);
  font-weight: 500;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--ink);
  border-radius: 2px;
}
.header-dark .nav-links a { color: rgba(248,244,236,0.55); }
.header-dark .nav-links a:hover { color: var(--cream-light); }
.header-dark .nav-links a.active { color: var(--cream-light); font-weight: 500; }
.header-dark .nav-links a.active::after { background: rgba(248,244,236,0.7); }

.nav-actions { flex-shrink: 0; }

/* Burger (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.header-dark .nav-burger span { background: var(--cream-light); }

@media (max-width: 960px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
}

/* Placeholder images */
.placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer { background: var(--ink); color: var(--cream-light); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream-light);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(248,244,236,0.45);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.footer-location {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,244,236,0.25);
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,244,236,0.3);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(248,244,236,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream-light); }
.footer-bottom { border-top: 1px solid rgba(248,244,236,0.08); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(248,244,236,0.28);
}
.footer-motto { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.68rem; }

/* ═══════════════════════════════════════════════════════
   TRUST / MARQUEE BAR
═══════════════════════════════════════════════════════ */
.trust-bar {
  overflow: hidden;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1rem 0;
  background: var(--cream-light);
}
.trust-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  align-items: center;
}
.trust-track .sep { color: var(--ink-faint); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════
   SPLIT LAYOUT
═══════════════════════════════════════════════════════ */
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-img-placeholder {
  border-radius: var(--radius-card);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
/* Gradient variants removed — replaced by placeholder images */
.split-img-amber, .split-img-teal, .split-img-sage, .split-img-rose {
  background: #d8d3cb;
}

.img-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 2;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
}
.img-overlay-text .stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.img-overlay-text .stat-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

/* ═══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════ */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(200,120,64,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(42,72,72,0.3) 0%, transparent 55%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--cream-light);
  margin-bottom: 1.5rem;
  max-width: 760px;
}
.page-hero-headline em { font-style: italic; font-weight: 400; color: rgba(248,244,236,0.55); }
.page-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(248,244,236,0.65);
  max-width: 520px;
}

/* ═══════════════════════════════════════════════════════
   STAT ELEMENTS
═══════════════════════════════════════════════════════ */
.stat-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--cream-light);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(248,244,236,0.65);
  line-height: 1.4;
}
.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.stat-item { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num-sm {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-label-sm {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-light);
  line-height: 1.4;
  max-width: 140px;
}

/* ═══════════════════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════════════════ */
.process-step {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,23,16,0.08);
}
.step-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--ink-faint);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.step-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.step-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-mid);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonial {
  border-radius: var(--radius-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.t-rose    { background: var(--rose-bg);  color: var(--cream-light); }
.t-sage    { background: var(--sage-bg);  color: var(--cream-light); }
.t-taupe   { background: var(--taupe-bg); color: var(--cream-light); }
.t-dark    { background: var(--ink);      color: var(--cream-light); }
.featured-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  width: fit-content;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  flex: 1;
}
.testimonial footer { display: flex; flex-direction: column; gap: 0.2rem; }
.testimonial footer strong {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  font-style: normal;
}
.testimonial footer span { font-size: 0.75rem; font-weight: 300; opacity: 0.6; }

/* ═══════════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════════ */
.cta-section {
  padding: var(--section-gap) 0;
  background: var(--cream-light);
  border-top: 1px solid var(--cream-dark);
}
.cta-inner { text-align: center; max-width: 680px; }
.cta-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.cta-headline em { font-style: italic; font-weight: 400; color: var(--ink-mid); }
.cta-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.cta-location {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ═══════════════════════════════════════════════════════
   CARD GRID (services, sectors, etc.)
═══════════════════════════════════════════════════════ */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(28,23,16,0.07);
}
.card-dark {
  background: var(--ink);
  border-color: rgba(255,255,255,0.06);
  color: var(--cream-light);
}
.card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}
.card-dark .card-icon { background: rgba(255,255,255,0.08); }
.card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.card-dark .card-title { color: var(--cream-light); }
.card-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-mid);
}
.card-dark .card-text { color: rgba(248,244,236,0.6); }

/* ═══════════════════════════════════════════════════════
   BENEFIT LIST
═══════════════════════════════════════════════════════ */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--cream-dark);
}
.benefit-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}
.benefit-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-mid);
}

/* ═══════════════════════════════════════════════════════
   CHIPS
═══════════════════════════════════════════════════════ */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.chip {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--cream-dark);
  color: var(--ink-mid);
  border: 1px solid var(--cream-dark);
  letter-spacing: 0.02em;
}
.chip-light {
  background: rgba(248,244,236,0.1);
  color: rgba(248,244,236,0.75);
  border-color: rgba(248,244,236,0.15);
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --section-gap: 5rem; }
  .split-inner { grid-template-columns: 1fr; gap: 3rem; }
  .split-reverse { direction: ltr; }
  .split-img-placeholder { aspect-ratio: 16/9; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .stat-row { flex-direction: column; gap: 1.5rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}


/* ═══════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
═══════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 760px;
  background: var(--ink);
  color: var(--cream-light);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 40px rgba(0,0,0,0.28);
  z-index: 9999;
  padding: 1.5rem 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(1.5rem);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  overflow: visible;
}
.cookie-text {
  flex: 1;
  min-width: 200px;
}
.cookie-text p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(248,244,236,0.8);
  margin: 0;
}
.cookie-text p strong {
  color: var(--cream-light);
}
.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-text a:hover {
  color: var(--cream-light);
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
  align-items: center;
}
.cookie-btn {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cookie-accept {
  background: transparent;
  color: rgba(248,244,236,0.65);
  border-color: rgba(248,244,236,0.2);
}
.cookie-accept:hover {
  color: var(--cream-light);
  border-color: rgba(248,244,236,0.5);
}
.cookie-decline {
  background: transparent;
  color: rgba(248,244,236,0.65);
  border-color: rgba(248,244,236,0.2);
}
.cookie-decline:hover {
  color: var(--cream-light);
  border-color: rgba(248,244,236,0.5);
}
@media (max-width: 760px) {
  .cookie-banner {
    bottom: 1rem;
    padding: 1.25rem 1.25rem;
    width: calc(100% - 2rem);
  }
  .cookie-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 0.6rem;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
