/* ============================================================
   WearsCO. — Stylesheet
   Palette:
     --cream:    #F1DAC4  (Almond Cream)
     --lilac:    #A69CAC  (Lilac Ash)
     --grape:    #474973  (Dusty Grape)
     --prussian: #161B33  (Prussian Blue)
     --ink:      #0D0C1D  (Ink Black)

   Color flow (dark → medium → light → warm → medium → light → dark):
     Hero       → Ink Black      (#0D0C1D)
     Marquee    → Prussian Blue  (#161B33)
     About      → Dusty Grape    (#474973)
     Services   → Off-white      (#faf6f1)
     Process    → Almond Cream   (#F1DAC4)
     CTA band   → Dusty Grape    (#474973)
     Contact    → Off-white      (#faf6f1)
     Footer     → Prussian Blue  (#161B33)
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #F1DAC4;
  --lilac:    #A69CAC;
  --grape:    #474973;
  --prussian: #161B33;
  --ink:      #0D0C1D;

  --bg-light: #faf6f1;
  --bg-card:  #ffffff;

  /* Text on dark sections */
  --text-on-dark:   rgba(241,218,196,0.82);
  --text-dim-dark:  rgba(166,156,172,0.65);

  /* Text on light sections */
  --text-on-light:  #2e2848;
  --text-muted:     rgba(71,73,115,0.58);

  /* Radii */
  --r-pill:    100px;
  --r-card:    22px;
  --r-input:   12px;
  --r-section: 48px;

  /* Shadows */
  --shadow-sm: 0 2px 14px rgba(71,73,115,0.07);
  --shadow-md: 0 8px 30px rgba(71,73,115,0.12);
  --shadow-lg: 0 18px 52px rgba(71,73,115,0.18);

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--ink); /* shows in hero corners */
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--prussian); /* matches footer — no black gap on overscroll */
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Overflow clipped here — NOT on html/body, so position:fixed and
   IntersectionObserver work correctly on all browsers */
.site-wrap {
  overflow-x: hidden;
}

::selection { background: var(--grape); color: var(--cream); }

/* ── Typography ── */
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }
em { font-family: 'DM Serif Display', serif; font-style: italic; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Layout ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 120px 0; }

/* ── Stacked-card section transitions ── */
/* Every section after hero curves up over the previous one */
#about,
#services,
#process,
#faq,
#cta-band,
#contact,
#footer {
  position: relative;
  border-radius: var(--r-section) var(--r-section) 0 0;
  margin-top: calc(var(--r-section) * -1);
}

#about         { z-index: 1; }
#services      { z-index: 2; }
#process       { z-index: 3; }
#faq           { z-index: 4; }
#cta-band      { z-index: 5; }
#contact       { z-index: 6; }
#footer        { z-index: 7; }

/* ── Section Labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grape);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--grape);
  border-radius: 2px;
}
.section-label:empty { display: none; }

/* Dark-bg section overrides (about = grape bg) */
#about .section-label          { color: var(--lilac); }
#about .section-label::before  { background: var(--cream); }
#about .section-title          { color: var(--cream); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);   /* default: dark text for light sections */
}

.section-header { margin-bottom: 72px; }

/* ============================================================
   NAVIGATION  (unchanged)
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(13,12,29,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(241,218,196,0.06);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.logo .dot { color: var(--lilac); }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-dark);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  background: var(--grape) !important;
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: var(--r-pill) !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: #5a5f90 !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  gap: 4px;
  background: rgba(13,12,29,0.97);
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(241,218,196,0.07);
  transition: color var(--transition);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--cream); }

/* ============================================================
   HERO  (unchanged)
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 140px 0 100px;
  background: var(--ink);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(71,73,115,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71,73,115,0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 32px;
}

.dot-pulse {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero-title em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--lilac);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-on-dark);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
}

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

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim-dark);
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--grape), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

/* On dark hero */
.btn-primary {
  background: var(--cream);
  color: var(--ink);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(241,218,196,0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(241,218,196,0.3);
}
.btn-ghost:hover {
  border-color: rgba(241,218,196,0.65);
  background: rgba(241,218,196,0.07);
  transform: translateY(-2px);
}

/* On light sections (contact, cta etc.) */
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--prussian);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* On grape sections */
.btn-on-grape {
  background: var(--cream);
  color: var(--ink);
}
.btn-on-grape:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.btn-large { padding: 18px 38px; font-size: 1rem; }
.btn-full  { width: 100%; justify-content: center; }

/* ============================================================
   ABOUT  — Dusty Grape (medium dark, cream text)
   ============================================================ */
#about {
  background: var(--grape);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-on-dark);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.stat {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(241,218,196,0.18);
  border-radius: var(--r-card);
  padding: 26px 22px;
  backdrop-filter: blur(10px);
}

.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num em {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--lilac);
}
.stat-label {
  display: block;
  font-size: 0.73rem;
  color: var(--text-dim-dark);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   SERVICES  — Off-white (light, white cards)
   ============================================================ */
#services {
  background: var(--bg-light);
}

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

.service-card {
  background: var(--bg-card);
  border: 1.5px solid rgba(241,218,196,0.7);
  border-radius: var(--r-card);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--cream);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 48px; height: 48px;
  color: var(--grape);
  margin-bottom: 24px;
  transition: color var(--transition);
}
.service-card:hover .service-icon { color: var(--ink); }

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-on-light);
  line-height: 1.78;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--lilac);
}

/* ============================================================
   PROCESS  — Almond Cream (warm, white cards)
   ============================================================ */
#process {
  background: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.process-step {
  background: var(--bg-card);
  border-radius: var(--r-card);
  padding: 40px;
  border: 1.5px solid rgba(71,73,115,0.1);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grape);
  color: var(--cream);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.step-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-body p {
  font-size: 0.95rem;
  color: var(--text-on-light);
  line-height: 1.78;
}

/* ============================================================
   FAQ  — Prussian Blue (dark), card grid layout
   ============================================================ */
#faq {
  background: var(--prussian);
}

#faq .section-label          { color: var(--lilac); }
#faq .section-label::before  { background: var(--cream); }

/* 2-column staggered grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Every even card is pushed down to create the floating/scattered feel */
.faq-card:nth-child(even) {
  margin-top: 52px;
}

.faq-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(241,218,196,0.1);
  border-radius: 24px;
  padding: 36px 32px 28px;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.faq-card:hover {
  border-color: rgba(241,218,196,0.22);
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.3);
}
/* Highlight the open card */
.faq-card:has(.faq-q[aria-expanded="true"]) {
  border-color: rgba(241,218,196,0.25);
  box-shadow: 0 10px 36px rgba(0,0,0,0.22);
}

/* Large decorative number */
.faq-num {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(241,218,196,0.07);
  margin-bottom: 18px;
  user-select: none;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.5;
  transition: color var(--transition);
}
.faq-q:hover { color: #fff; }

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(241,218,196,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  position: relative;
  margin-top: 2px;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--grape);
  border-color: var(--grape);
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1);
}
.faq-a p {
  padding-top: 18px;
  padding-bottom: 4px;
  font-size: 1.05rem;
  color: var(--text-on-dark);
  line-height: 1.85;
}

/* ============================================================
   CTA BAND  — Dusty Grape
   ============================================================ */
#cta-band {
  background: var(--grape);
  padding: 100px 0;
}

.cta-inner { text-align: center; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 1.1rem;
  color: rgba(241,218,196,0.78);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.78;
}

/* ============================================================
   CONTACT  — Off-white (light, white form)
   ============================================================ */
#contact {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-sub {
  font-size: 1rem;
  color: var(--text-on-light);
  line-height: 1.78;
  margin-bottom: 40px;
  margin-top: 20px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-on-light);
}
.contact-item svg {
  width: 20px; height: 20px;
  color: var(--grape);
  flex-shrink: 0;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grape);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1.5px solid rgba(241,218,196,0.9);
  border-radius: var(--r-input);
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(71,73,115,0.38); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--grape);
  box-shadow: 0 0 0 4px rgba(71,73,115,0.09);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23474973' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-group select option { background: #fff; color: var(--ink); }

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

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-card);
  border: 1.5px solid rgba(241,218,196,0.9);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  gap: 16px;
}
.form-success.show { display: flex; }
.success-icon { width: 56px; height: 56px; color: #3d9e6e; }
.form-success h3 { font-size: 1.4rem; color: var(--ink); }
.form-success p  { color: var(--text-on-light); font-size: 1rem; }

/* ============================================================
   FOOTER  — Prussian Blue (dark)
   ============================================================ */
#footer {
  background: var(--prussian);
  padding: 52px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand .logo { margin-bottom: 6px; color: var(--cream); }
.footer-brand p { font-size: 0.82rem; color: var(--lilac); opacity: 0.75; }

.footer-nav { display: flex; gap: 28px; }
.footer-nav a {
  font-size: 0.875rem;
  color: var(--lilac);
  opacity: 0.75;
  transition: color var(--transition), opacity var(--transition);
}
.footer-nav a:hover { color: var(--cream); opacity: 1; }

.footer-legal { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.footer-copy  { font-size: 0.8rem; color: var(--lilac); opacity: 0.45; }
.footer-gdpr  {
  font-size: 0.78rem;
  color: var(--lilac);
  opacity: 0.5;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(166,156,172,0.35);
  transition: opacity var(--transition), color var(--transition);
}
.footer-gdpr:hover { opacity: 0.9; color: var(--cream); }

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

/* Stagger delays */
.service-card[data-index="1"] { transition-delay: 0.08s; }
.service-card[data-index="2"] { transition-delay: 0.16s; }
.service-card[data-index="3"] { transition-delay: 0.24s; }
.process-step:nth-child(2)    { transition-delay: 0.08s; }
.process-step:nth-child(3)    { transition-delay: 0.16s; }
.process-step:nth-child(4)    { transition-delay: 0.24s; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: min(760px, calc(100vw - 40px));
  background: var(--prussian);
  border: 1px solid rgba(241,218,196,0.15);
  border-radius: var(--r-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  padding: 24px 28px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
              opacity   0.35s ease;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.hiding {
  transform: translateX(-50%) translateY(140px);
  opacity: 0;
  pointer-events: none;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 200px; }

.cookie-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.cookie-desc {
  font-size: 0.82rem;
  color: var(--text-on-dark);
  line-height: 1.6;
}
.cookie-desc strong { color: var(--cream); font-weight: 600; }

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

.cookie-btn-decline {
  background: transparent;
  color: var(--lilac);
  border: 1.5px solid rgba(166,156,172,0.35);
  padding: 10px 22px;
  font-size: 0.85rem;
}
.cookie-btn-decline:hover {
  border-color: var(--lilac);
  color: var(--cream);
  transform: none;
  box-shadow: none;
}

.cookie-btn-accept {
  background: var(--cream);
  color: var(--ink);
  padding: 10px 22px;
  font-size: 0.85rem;
}
.cookie-btn-accept:hover {
  background: #fff;
  transform: none;
  box-shadow: none;
}

@media (max-width: 540px) {
  .cookie-inner   { flex-direction: column; align-items: flex-start; gap: 18px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links  { display: none; }
  .burger     { display: flex; }

  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner  { flex-direction: column; text-align: center; }
  .footer-nav    { justify-content: center; }
  .footer-legal  { align-items: center; }
}

@media (max-width: 640px) {
  .container  { padding: 0 20px; }
  section     { padding: 80px 0; }

  #about, #services, #process,
  #faq, #cta-band, #contact, #footer {
    border-radius: 28px 28px 0 0;
    margin-top: -28px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-card:nth-child(even) {
    margin-top: 0;
  }
  .faq-card { padding: 28px 24px 22px; }
  .faq-num  { font-size: 2.4rem; margin-bottom: 14px; }

  .hero-title { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; }
  .btn        { width: 100%; justify-content: center; }

  .about-stats { flex-direction: column; gap: 14px; }

  .form-row   { grid-template-columns: 1fr; }
  .process-step { padding: 28px; }
  #cta-band   { padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 4px;
}

.lang-flag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--cream);
  cursor: pointer;
  user-select: none;
  opacity: 0.55;
  transition: opacity 0.25s;
}
.lang-flag:hover  { opacity: 0.85; }
.lang-flag.active { opacity: 1;    }

.lang-toggle {
  width: 42px;
  height: 22px;
  border-radius: 11px;
  background: rgba(241,218,196,0.12);
  border: 1.5px solid rgba(241,218,196,0.22);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.lang-toggle:hover {
  background: rgba(241,218,196,0.2);
  border-color: rgba(241,218,196,0.38);
}
.lang-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cream);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.lang-toggle.sk .lang-thumb {
  transform: translateX(20px);
}

@media (max-width: 768px) {
  .lang-switcher { gap: 5px; margin-right: 2px; }
  .lang-flag     { font-size: 1rem; }
  .lang-toggle   { width: 36px; height: 20px; }
  .lang-thumb    { width: 12px; height: 12px; top: 3px; left: 3px; }
  .lang-toggle.sk .lang-thumb { transform: translateX(16px); }
}
