/* ═══════════════════════════════════════════════════════════════════════════
   ŻYCZYMY — Complete Redesign
   Design: Ultra-refined romantic minimalism
   Fonts: Cormorant Garamond (display) + Figtree (body)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. CUSTOM PROPERTIES ─────────────────────────────────────────────────── */
:root {
  /* Palette */
  --cream:        #FAF8F5;
  --cream-warm:   #F3EBE0;
  --surface:      #EDE0D0;
  --gold:         #C4956A;
  --gold-light:   #E8D4BC;
  --gold-xlight:  #F5EAD9;
  --gold-dark:    #9A6B43;
  --sage:         #7A9E8A;
  --sage-light:   #C5DDD1;
  --charcoal:     #1C1814;
  --charcoal-2:   #2A2320;
  --warm-mid:     #7A6E68;
  --warm-light:   #B0A49D;
  --border:       #E2D6C8;
  --white:        #FFFFFF;
  --error:        #C0392B;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Figtree', system-ui, -apple-system, sans-serif;

  /* Spacing (8px grid) */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-8:  64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-16: 128px;
  --sp-20: 160px;

  /* Layout */
  --max-w: 1200px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(28,24,20,.06), 0 1px 2px rgba(28,24,20,.04);
  --shadow-md:  0 4px 16px rgba(28,24,20,.08), 0 2px 6px rgba(28,24,20,.05);
  --shadow-lg:  0 12px 40px rgba(28,24,20,.10), 0 4px 12px rgba(28,24,20,.06);
  --shadow-xl:  0 24px 64px rgba(28,24,20,.14), 0 8px 24px rgba(28,24,20,.08);
  --shadow-gold: 0 8px 32px rgba(196,149,106,.30);

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-med:  0.30s ease;
  --t-slow: 0.50s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
blockquote { font-style: normal; }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 3. TYPOGRAPHY ────────────────────────────────────────────────────────── */
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.section-h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--warm-mid);
  max-width: 520px;
  line-height: 1.7;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.eyebrow-light { color: var(--gold-light); }

/* ── 4. LAYOUT ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}
@media (min-width: 768px) { .container { padding: 0 var(--sp-5); } }

.section-pad { padding: var(--sp-12) 0; }
@media (min-width: 1024px) { .section-pad { padding: var(--sp-20) 0; } }

.section-header { margin-bottom: var(--sp-8); }
@media (min-width: 1024px) { .section-header { margin-bottom: var(--sp-12); } }

.text-center { text-align: center; }
.text-center .section-sub { margin: var(--sp-3) auto 0; }

.w-full { width: 100%; }

/* ── 5. BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--r-md);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-align: center;
  justify-content: center;
}
.btn:active { transform: translateY(1px); }

.btn-lg {
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--r-md);
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--charcoal-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: transparent;
}
.btn-ghost:hover {
  background: rgba(28,24,20,.06);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196,149,106,.4);
}

.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.20);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-2px);
}

/* ── 6. SCROLL REVEAL ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.70s cubic-bezier(0.22,1,0.36,1),
              transform 0.70s cubic-bezier(0.22,1,0.36,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ── 7. NAVIGATION ────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding var(--t-med), background var(--t-med), box-shadow var(--t-med), backdrop-filter var(--t-med);
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(250,248,245,.90);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: none;
  gap: var(--sp-1);
  margin: 0 auto;
}
@media (min-width: 992px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--warm-mid);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover { color: var(--charcoal); background: rgba(28,24,20,.05); }

.nav-actions {
  display: none;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}
@media (min-width: 992px) { .nav-actions { display: flex; } }

/* Mobile right group: CTA + hamburger (visible only below 992px) */
.nav-mobile-right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}
@media (min-width: 992px) { .nav-mobile-right { display: none; } }

.nav-mobile-cta {
  font-size: 0.8125rem;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.nav-hamburger:hover { background: rgba(28,24,20,.06); }
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-med);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 992px) { .nav-hamburger { display: none; } }

/* ── 8. MOBILE MENU ───────────────────────────────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,24,20,.5);
  z-index: 199;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--t-med);
}
.mobile-overlay.visible {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--white);
  z-index: 200;
  padding: var(--sp-6) var(--sp-4) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  transform: translateX(100%);
  transition: transform var(--t-slow) cubic-bezier(0.22,1,0.36,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--warm-mid);
  font-size: 1.25rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-close:hover { background: var(--cream); color: var(--charcoal); }

.mobile-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  display: block;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 12px var(--sp-2);
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.mobile-link:hover { background: var(--cream); }

.mobile-actions { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: auto; }

/* ── 9. HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(120px + var(--promo-banner-h, 44px)) 0 80px;
  overflow: hidden;
}

/* Background */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(196,149,106,.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(122,158,138,.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(250,248,245,1) 0%, transparent 50%);
  background-color: var(--cream);
}

/* SVG grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

/* Decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196,149,106,.15);
  pointer-events: none;
}
.hero-ring.r1 { width: 480px; height: 480px; top: -120px; right: -80px; }
.hero-ring.r2 { width: 320px; height: 320px; top: -40px; right: 80px; border-color: rgba(196,149,106,.08); }
.hero-ring.r3 { width: 640px; height: 640px; bottom: -200px; left: -120px; border-color: rgba(122,158,138,.08); }

.hero .container { position: relative; z-index: 1; }

.hero-visual { order: -1; }
@media (min-width: 1024px) { .hero-visual { order: 0; } }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

/* Text side */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-xlight);
  border: 1px solid var(--gold-light);
  border-radius: var(--r-full);
  padding: 6px 14px;
  margin-bottom: var(--sp-4);
  animation: fadeSlideUp 0.8s 0.1s both;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: var(--sp-4);
  animation: fadeSlideUp 0.8s 0.2s both;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-dark);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--warm-mid);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: var(--sp-5);
  animation: fadeSlideUp 0.8s 0.3s both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  animation: fadeSlideUp 0.8s 0.4s both;
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: 0.8125rem;
  color: var(--warm-light);
  animation: fadeSlideUp 0.8s 0.5s both;
}
.hero-microcopy span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-microcopy .ph-check-circle { color: var(--sage); }

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

/* Visual side — phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeSlideLeft 0.9s 0.3s both;
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.phone-wrap {
  position: relative;
  width: 280px;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .phone-wrap { width: 300px; } }

.hero-phone-img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  display: block;
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Floating accents */
.float-qr {
  position: absolute;
  left: -64px;
  top: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--warm-mid);
  white-space: nowrap;
  animation: phoneFloat 5s ease-in-out 1s infinite;
}
.float-qr .ph-qr-code {
  font-size: 1.5rem;
  color: var(--charcoal);
}

.float-stat {
  position: absolute;
  right: -48px;
  bottom: 80px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  animation: phoneFloat 4s ease-in-out 0.5s infinite;
}
.float-n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.float-l { font-size: 0.6875rem; color: rgba(255,255,255,.6); margin-top: 2px; }

.float-heart {
  position: absolute;
  right: -20px;
  top: 40px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #E8A2A2, #C97070);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  animation: heartBeat 3s ease-in-out 2s infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.15); }
  50% { transform: scale(1); }
  75% { transform: scale(1.1); }
}

/* On mobile, hide side floats to prevent overflow */
@media (max-width: 1023px) {
  .float-qr  { left: -20px; }
  .float-stat { right: -16px; }
}
@media (max-width: 480px) {
  .float-qr, .float-stat, .float-heart { display: none; }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollFade 2s ease-in-out infinite;
}
@keyframes scrollFade {
  0%, 100% { opacity: 0; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── 10. TRUST BAR ────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--charcoal);
  padding: var(--sp-8) 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
@media (min-width: 768px) {
  .trust-inner {
    flex-wrap: nowrap;
    gap: 0;
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
  padding: 0 var(--sp-4);
}
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-lbl {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.45);
  margin-top: 6px;
  font-weight: 400;
}
.trust-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.10);
  flex-shrink: 0;
  display: none;
}
@media (min-width: 768px) { .trust-sep { display: block; } }

/* ── 11. PROBLEM → SOLUTION ───────────────────────────────────────────────── */
.ps-section { background: var(--white); }

.ps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  align-items: stretch;
}
@media (min-width: 768px) {
  .ps-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: var(--sp-3);
    align-items: stretch;
  }
}

.ps-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
}
.ps-old { border-color: rgba(200, 90, 80, .15); background: rgba(254,250,248,1); }
.ps-new {
  border-color: rgba(196,149,106,.25);
  background: var(--gold-xlight);
  position: relative;
  overflow: hidden;
}
.ps-new::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(196,149,106,.08), transparent 60%);
  pointer-events: none;
}

.ps-label {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--warm-mid);
  margin-bottom: var(--sp-4);
}
.ps-label--gold { color: var(--gold-dark); }
.ps-label .ph { font-size: 1.1rem; }

.ps-list { display: flex; flex-direction: column; gap: 12px; }
.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.ps-x  { color: #C45B50; font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.ps-chk { color: var(--sage); font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }

.ps-vs {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vs-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--warm-light);
  flex-shrink: 0;
}

/* ── 12. HOW IT WORKS ─────────────────────────────────────────────────────── */
.hiw-section { background: var(--cream-warm); }

.hiw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  align-items: center;
}
@media (min-width: 768px) {
  .hiw-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
    align-items: stretch;
  }
}

.hiw-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.hiw-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.03em;
}
.step-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-xlight);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.5rem;
  margin-bottom: var(--sp-3);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--sp-2);
}
.step-desc { font-size: 0.9375rem; color: var(--warm-mid); line-height: 1.65; }

.hiw-arrow {
  display: none;
  font-size: 1.5rem;
  color: var(--gold-light);
  padding-top: 48px;
}
@media (min-width: 768px) { .hiw-arrow { display: flex; } }

/* ── 13. BENTO FEATURES ───────────────────────────────────────────────────── */
.feat-section { background: var(--white); }

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 640px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
}

.bento-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.bento-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

@media (min-width: 1024px) {
  .bento-w2 { grid-column: span 2; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .bento-w2 { grid-column: span 2; }
}

.bento-pdf {}

.bento-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.625rem;
  margin-bottom: var(--sp-3);
  flex-shrink: 0;
}

.bento-h {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--sp-1);
  line-height: 1.3;
}
.bento-p { font-size: 0.9375rem; color: var(--warm-mid); line-height: 1.65; }

.bento-deco {
  position: absolute;
  right: -16px;
  bottom: -16px;
  pointer-events: none;
}
.bento-deco-ico {
  font-size: 7rem;
  color: var(--gold-light);
  opacity: 0.5;
}

/* ── 14. TESTIMONIALS ─────────────────────────────────────────────────────── */
.testi-section { background: var(--cream-warm); }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 640px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(4, 1fr); } }

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testi-q {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-light);
  position: absolute;
  top: 12px;
  right: 20px;
  pointer-events: none;
}

.testi-card blockquote p {
  font-size: 0.9375rem;
  color: var(--warm-mid);
  line-height: 1.7;
  font-style: italic;
  padding-right: 24px;
}

.testi-foot {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: auto;
}
.testi-av {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.testi-info { flex: 1; min-width: 0; }
.testi-name { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); }
.testi-date { font-size: 0.75rem; color: var(--warm-light); }
.testi-stars { color: #F4B942; font-size: 0.75rem; letter-spacing: 1px; }

/* ── 15. PRICING ──────────────────────────────────────────────────────────── */
.price-section { background: var(--white); }

.prices-error {
  display: none;
  padding: var(--sp-3);
  background: #FDF2F2;
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: 12px;
  color: var(--error);
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--sp-3);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  align-items: start;
}
@media (min-width: 768px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.price-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.price-featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
  z-index: 1;
  transform: scale(1.02);
}
@media (min-width: 768px) { .price-featured { transform: translateY(-12px) scale(1.02); } }
.price-featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: var(--shadow-xl);
}
@media (min-width: 768px) {
  .price-featured:hover { transform: translateY(-20px) scale(1.02); }
}

/* Fix reveal animation for featured card — keep scale + offset intact */
.price-featured.reveal {
  transform: translateY(22px) scale(1.02);
}
.price-featured.revealed {
  transform: scale(1.02);
}
@media (min-width: 768px) {
  .price-featured.reveal { transform: translateY(22px) scale(1.02); }
  .price-featured.revealed { transform: translateY(-12px) scale(1.02); }
  .price-featured.revealed:hover { transform: translateY(-20px) scale(1.02); }
}

.price-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.price-tier {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.price-featured .price-tier { color: var(--gold-light); }

.price-amount-block { display: flex; align-items: baseline; gap: 4px; }
.price-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-curr {
  font-size: 1.125rem;
  color: var(--warm-mid);
  font-weight: 500;
}
.price-featured .price-curr { color: rgba(255,255,255,.5); }

.price-guests {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--warm-mid);
  font-weight: 500;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.price-featured .price-guests { color: rgba(255,255,255,.5); border-bottom-color: rgba(255,255,255,.10); }

.price-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-feats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--charcoal);
}
.price-featured .price-feats li { color: rgba(255,255,255,.85); }
.price-feats .ph-check { color: var(--sage); font-size: 1rem; flex-shrink: 0; }
.price-featured .price-feats .ph-check { color: var(--gold-light); }
.price-feats .ph-minus { color: var(--warm-light); font-size: 1rem; flex-shrink: 0; }
.feat-dim { opacity: 0.5; }

.price-featured .btn-outline {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.25);
}
.price-featured .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
}

.price-note {
  font-size: 0.8125rem;
  color: var(--warm-light);
  text-align: center;
}
.price-featured .price-note { color: rgba(255,255,255,.35); }

/* ── 16. FAQ ──────────────────────────────────────────────────────────────── */
.faq-section { background: var(--cream-warm); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: start;
  }
}

.faq-left .section-h2 { margin-bottom: var(--sp-3); }
.faq-contact {
  font-size: 0.9375rem;
  color: var(--warm-mid);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--gold-dark); }
.faq-item.open .faq-q { color: var(--gold-dark); }

.faq-ico {
  font-size: 1.125rem;
  color: var(--warm-light);
  flex-shrink: 0;
  transition: transform var(--t-med), color var(--t-fast);
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-a {
  padding-bottom: var(--sp-3);
}
.faq-a p {
  font-size: 0.9375rem;
  color: var(--warm-mid);
  line-height: 1.7;
}

/* ── 17. FINAL CTA ────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--charcoal-2);
  overflow: hidden;
  padding: var(--sp-20) 0;
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(196,149,106,.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 70%, rgba(122,158,138,.10) 0%, transparent 50%);
}
.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196,149,106,.12);
}
.cta-ring.cr1 { width: 600px; height: 600px; right: -200px; top: -200px; }
.cta-ring.cr2 { width: 400px; height: 400px; left: -100px; bottom: -100px; border-color: rgba(122,158,138,.08); }

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.cta-h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-bottom: var(--sp-4);
}

.cta-micro {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.3);
}

/* ── 18. FOOTER ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.55);
  padding: var(--sp-12) 0 var(--sp-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  /* Invert if logo is dark */
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: var(--sp-3);
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.footer-social { display: flex; gap: var(--sp-2); }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 1.125rem;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.social-btn:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}

.fcol-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-3);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.55);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--white); }

.footer-link-btn {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.55);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color var(--t-fast);
  text-align: left;
}
.footer-link-btn:hover { color: var(--white); }

.footer-bottom {
  padding-top: var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 0.8125rem; }
.footer-legal { display: flex; gap: var(--sp-3); }
.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.35);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── 19. MODALS ───────────────────────────────────────────────────────────── */
/*
 * IMPORTANT: JS scripts set display via style.display = 'block'/'none'.
 * We cannot rely on flexbox for centering when display=block is forced.
 * Using the inline-block vertical centering trick instead.
 */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28,24,20,.62);
  z-index: 1000;
  padding: var(--sp-4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow-y: auto;
  /* Inline-block centering — works when display:block is set by JS */
  text-align: center;
  white-space: nowrap;
}
/* Full-height ghost element for vertical alignment */
.modal-backdrop::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  white-space: normal;
}

.modal-content {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  text-align: left;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: var(--shadow-xl);
  max-height: 90svh;
  overflow-y: auto;
  animation: modalIn 0.35s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-x {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-mid);
  font-size: 1rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.modal-x:hover { background: var(--cream); color: var(--charcoal); }

.modal-head {
  text-align: center;
  margin-bottom: var(--sp-5);
}
.modal-ico {
  width: 56px;
  height: 56px;
  background: var(--gold-xlight);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.75rem;
  margin: 0 auto var(--sp-3);
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--sp-1);
}
/* Inside modal-head (demo modal subtitle) */
.modal-head .modal-package-name,
.modal-package-name {
  font-size: 0.9375rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 2px;
}
/* When .modal-package-name is direct child of .modal-content (order modal) */
.modal-content > .modal-package-name {
  font-size: 0.875rem;
  color: var(--warm-mid);
  font-weight: 500;
  margin-bottom: var(--sp-1);
}
.modal-subtitle {
  font-size: 0.9375rem;
  color: var(--warm-mid);
  line-height: 1.6;
}

.modal-form { display: flex; flex-direction: column; gap: var(--sp-3); }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-lbl {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.form-opt {
  font-weight: 400;
  color: var(--warm-light);
  font-size: 0.8125rem;
}
.form-inp {
  font: inherit;
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-inp::placeholder { color: var(--warm-light); }
.form-inp--readonly {
  background: var(--cream-warm);
  color: var(--warm-mid);
  cursor: default;
  pointer-events: none;
}
.form-inp:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,149,106,.15);
}

.promo-msg {
  font-size: 0.8125rem;
  color: var(--sage);
  font-weight: 500;
  min-height: 18px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary, #b08d6a);
  cursor: pointer;
}
.form-consent label {
  font-size: 0.8125rem;
  color: var(--warm-light);
  line-height: 1.5;
  cursor: pointer;
}
.form-consent-error {
  font-size: 0.8125rem;
  color: #e05252;
  margin-top: -4px;
}
.demo-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--warm-bg, #f9f5f1);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}
.demo-note .ph-info {
  font-size: 1rem;
  color: var(--warm-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.demo-note p {
  font-size: 0.8rem;
  color: var(--warm-light);
  line-height: 1.55;
  margin: 0;
}

.modal-disc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--warm-light);
  text-align: center;
  justify-content: center;
}

/* ── 20. PROMO BANNER ─────────────────────────────────────────────────────── */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 44px;
}

.promo-banner-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-banner-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.promo-banner-text {
  color: rgba(255,255,255,.90);
  line-height: 1.4;
}

.promo-banner-text strong {
  color: var(--gold-light);
  font-weight: 700;
}

.promo-banner-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.promo-banner-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: color var(--t-fast);
  border-radius: 4px;
}
.promo-banner-close:hover { color: rgba(255,255,255,.85); }

/* Pricing — old (crossed-out) prices */
.price-old-block {
  display: flex;
  align-items: baseline;
  gap: 2px;
  align-self: flex-end;
  padding-bottom: 6px;
}
.price-old {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--warm-light);
  text-decoration: line-through;
  text-decoration-color: var(--warm-light);
  line-height: 1;
}
.price-old-curr {
  font-size: 0.75rem;
  color: var(--warm-light);
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-color: var(--warm-light);
}
.price-featured .price-old { color: rgba(255,255,255,.35); text-decoration-color: rgba(255,255,255,.35); }
.price-featured .price-old-curr { color: rgba(255,255,255,.35); text-decoration-color: rgba(255,255,255,.35); }

.price-discount-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold-xlight);
  color: var(--gold-dark);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--r-full);
  align-self: flex-start;
  margin-bottom: -4px;
}
.price-featured .price-discount-tag {
  background: rgba(196,149,106,.25);
  color: var(--gold-light);
}

/* ── 21. COOKIE CONSENT BAR ───────────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + var(--sp-4)));
  z-index: 500;
  width: calc(100% - var(--sp-4) * 2);
  max-width: 640px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  opacity: 0;
}

.cookie-bar--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-bar--hidden {
  transform: translateX(-50%) translateY(calc(100% + var(--sp-4)));
  opacity: 0;
}

.cookie-bar-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 16px 20px;
  flex-wrap: wrap;
}

.cookie-bar-icon {
  font-size: 1.375rem;
  color: var(--gold);
  flex-shrink: 0;
}

.cookie-bar-text {
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  color: var(--warm-mid);
  line-height: 1.5;
}

.cookie-bar-link {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t-fast);
}
.cookie-bar-link:hover { color: var(--gold); }

.cookie-bar-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn-decline {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--warm-mid);
  padding: 7px 14px;
  border-radius: var(--r-full);
  border: none;
  background: transparent;
  transition: color var(--t-fast);
}
.cookie-btn-decline:hover { color: var(--charcoal); }

.cookie-btn-accept {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  background: var(--charcoal);
  padding: 7px 18px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  transition: background var(--t-fast), transform var(--t-fast);
}
.cookie-btn-accept:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .cookie-bar-inner { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
  .cookie-bar-actions { width: 100%; justify-content: flex-end; }
}

/* Order modal price banner (injected by order_script.js) */
#order-price-banner {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 10px 14px;
  border: 1px solid var(--border);
}

/* ── LANGUAGE SWITCHER ───────────────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 3px;
  margin-left: 8px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--r-full);
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  color: var(--warm-mid);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.lang-btn:hover {
  color: var(--charcoal);
  background: rgba(28,24,20,.05);
}

.lang-btn.active {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}

.lang-btn .lang-flag {
  font-size: 1rem;
  line-height: 1;
}

/* Desktop: show in nav-actions */
.nav-actions .lang-switcher { display: flex; }

/* Mobile: hide in desktop nav, show in mobile right bar */
.nav-mobile-right .lang-switcher { display: none; }

@media (max-width: 991px) {
  .nav-mobile-right .lang-switcher {
    display: flex;
    margin-right: 8px;
    margin-left: 8px;
  }
}

@media (max-width: 480px) {
  /* On very small screens, hide the text and just show the flag */
  .nav-mobile-right .lang-btn {
    padding: 6px 8px;
    gap: 0;
  }
  .nav-mobile-right .lang-btn span:last-child,
  .nav-mobile-right .lang-btn:not(:has(span)) {
     /* In HTML: <span class="lang-btn"><span class="lang-flag">🇵🇱</span> PL</span> */
     /* Actually, text node is a child, so we can't easily hide just the text with CSS unless we wrap the text. 
        Instead, we can just reduce padding and font size slightly. */
    font-size: 0; /* hides the text node */
  }
  .nav-mobile-right .lang-btn .lang-flag {
    font-size: 1.25rem; /* show only flag clearly */
  }
}
