/* ============================================================
   PROJECT FORGE — MAIN STYLESHEET
   Polaroid Nostalgia Design Concept
   CSS Naming: s- (sections), c- (components), u- (utilities), is- (states)
   ============================================================ */

/* ---- PACE PROGRESS BAR ---- */
.pace .pace-progress { background: #D4621A; }

/* ---- CUSTOM PROPERTIES ---- */
:root {
  /* Base Colors */
  --primary: #D4621A;
  --secondary: #3B2A1A;
  --accent: #F5A623;

  /* Derived via color-mix */
  --primary-light: color-mix(in oklch, var(--primary), white 45%);
  --primary-xlight: color-mix(in oklch, var(--primary), white 75%);
  --primary-dark: color-mix(in oklch, var(--primary), black 25%);
  --secondary-light: color-mix(in oklch, var(--secondary), white 50%);
  --secondary-xlight: color-mix(in oklch, var(--secondary), white 80%);
  --accent-light: color-mix(in oklch, var(--accent), white 50%);
  --accent-dark: color-mix(in oklch, var(--accent), black 20%);

  /* Backgrounds */
  --bg-cream: #FAF6F0;
  --bg-warm: #F5EDE0;
  --bg-card: #FFFDF9;
  --bg-dark: #1C1007;

  /* Text */
  --text-dark: #1E1208;
  --text-body: #3D2B1A;
  --text-muted: color-mix(in oklch, var(--text-body), white 40%);
  --text-light: #F7F0E8;

  /* Polaroid */
  --polaroid-bg: #FEFCF8;
  --polaroid-border: 14px;
  --polaroid-bottom: 36px;
  --polaroid-shadow: 
    0 2px 4px color-mix(in oklch, var(--secondary), transparent 80%),
    0 8px 24px color-mix(in oklch, var(--secondary), transparent 70%),
    0 20px 48px color-mix(in oklch, var(--secondary), transparent 85%);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--secondary), transparent 88%), 0 2px 8px color-mix(in oklch, var(--secondary), transparent 92%);
  --shadow-md: 0 2px 6px color-mix(in oklch, var(--secondary), transparent 82%), 0 8px 24px color-mix(in oklch, var(--secondary), transparent 88%);
  --shadow-lg: 0 4px 12px color-mix(in oklch, var(--secondary), transparent 78%), 0 16px 48px color-mix(in oklch, var(--secondary), transparent 84%);
  --shadow-hover: 0 8px 20px color-mix(in oklch, var(--primary), transparent 70%), 0 24px 64px color-mix(in oklch, var(--secondary), transparent 78%);

  /* Transitions */
  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 420ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav height */
  --nav-height: 72px;
}

/* ---- DARK MODE ---- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-cream: #1A1008;
    --bg-warm: #221508;
    --bg-card: #241708;
    --bg-dark: #0D0804;
    --text-dark: #F5EDE0;
    --text-body: #DDD0C0;
    --text-muted: color-mix(in oklch, #DDD0C0, black 30%);
    --text-light: #F7F0E8;
    --polaroid-bg: #2A1C0C;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.5);
    --shadow-md: 0 2px 6px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.6);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.6), 0 16px 48px rgba(0,0,0,0.7);
  }
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Bitter', serif;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

address { font-style: normal; }

/* ---- UTILITIES ---- */
.u-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.u-hidden { display: none !important; }
.u-text-center { text-align: center; }

.u-eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

/* Scroll reveal */
.u-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.u-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- POLAROID COMPONENT ---- */
.c-polaroid {
  background: var(--polaroid-bg);
  padding: var(--polaroid-border);
  padding-bottom: var(--polaroid-bottom);
  box-shadow: var(--polaroid-shadow);
  display: inline-block;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  position: relative;
}

.c-polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) sepia(0.15);
  transition: filter var(--transition-slow);
}

.c-polaroid:hover img {
  filter: saturate(1.1) sepia(0.05);
}

.c-polaroid:hover {
  box-shadow: var(--shadow-hover);
}

.c-polaroid__caption {
  display: block;
  text-align: center;
  font-family: 'Bitter', serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: italic;
}

/* ---- NAVIGATION ---- */
.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background var(--transition-slow), backdrop-filter var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
  border-bottom: 1px solid transparent;
}

.c-nav.is-scrolled {
  background: color-mix(in oklch, var(--bg-cream), transparent 12%);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: color-mix(in oklch, var(--primary), transparent 80%);
  box-shadow: 0 2px 20px color-mix(in oklch, var(--secondary), transparent 90%);
}

.c-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.c-nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.c-nav__logo img { height: 36px; width: auto; }

.c-nav__links {
  display: none;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .c-nav__links {
    display: flex;
  }
}

.c-nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding-bottom: 2px;
}

.c-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
  border-radius: var(--radius-pill);
}

.c-nav__links a:hover::after,
.c-nav__links a.is-active::after { width: 100%; }
.c-nav__links a.is-active { color: var(--primary); }

.c-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Cart icon */
.c-cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-body);
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.c-cart-icon:hover { color: var(--primary); background: var(--primary-xlight); }

.c-cart-icon__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--primary);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  transition: transform var(--transition-fast);
}

.c-cart-icon__badge.is-bump {
  animation: badge-bump 0.3s ease;
}

@keyframes badge-bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Hamburger */
.c-nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.c-nav__hamburger:hover { background: var(--primary-xlight); }

.c-nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-body);
  border-radius: var(--radius-pill);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

@media (min-width: 900px) {
  .c-nav__hamburger { display: none; }
}

/* ---- MOBILE MENU OVERLAY ---- */
.c-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.c-mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.c-mobile-menu__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
}

.c-mobile-menu__close {
  width: 44px;
  height: 44px;
  background: color-mix(in oklch, white, transparent 85%);
  border: none;
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.c-mobile-menu__close:hover { background: color-mix(in oklch, white, transparent 75%); }

.c-mobile-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  padding: var(--space-xl) var(--space-md);
  width: 100%;
  max-width: 480px;
}

.c-mobile-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  background: color-mix(in oklch, white, transparent 90%);
  border-radius: var(--radius-lg);
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  min-height: 90px;
  transition: background var(--transition-fast), transform var(--transition-fast);
  border: 1px solid color-mix(in oklch, white, transparent 88%);
}

.c-mobile-menu__item i {
  font-size: 1.4rem;
  color: var(--accent);
}

.c-mobile-menu__item:hover,
.c-mobile-menu__item.is-active {
  background: color-mix(in oklch, var(--primary), transparent 70%);
  transform: translateY(-2px);
  color: white;
}

/* ---- BUTTONS ---- */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

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

.c-btn--primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 2px 8px color-mix(in oklch, var(--primary), transparent 60%);
}
.c-btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  box-shadow: 0 4px 16px color-mix(in oklch, var(--primary), transparent 50%);
}

.c-btn--ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: color-mix(in oklch, var(--text-dark), transparent 60%);
}
.c-btn--ghost:hover {
  background: var(--primary-xlight);
  border-color: var(--primary);
  color: var(--primary);
}

.c-btn--small {
  font-size: 0.8rem;
  padding: 8px 16px;
  min-height: 36px;
}

.c-btn--large {
  font-size: 1rem;
  padding: 16px 36px;
}

.c-btn--full { width: 100%; }

/* ---- HERO SECTION ---- */
.s-hero {
  min-height: 100vh;
  background: var(--bg-warm);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.s-hero__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 80% 30%, color-mix(in oklch, var(--accent), transparent 80%) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, color-mix(in oklch, var(--primary), transparent 85%) 0%, transparent 70%);
  pointer-events: none;
}

.s-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  width: 100%;
}

@media (min-width: 900px) {
  .s-hero__content {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-3xl) var(--space-md);
  }
}

.s-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  background: var(--primary-xlight);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.s-hero__heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.s-hero__heading em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}

.s-hero__subtext {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--space-lg);
}

.s-hero__cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Hero Polaroids */
.s-hero__polaroids {
  position: relative;
  height: 420px;
}

@media (max-width: 899px) {
  .s-hero__polaroids { display: none; }
}

.c-polaroid--1 {
  position: absolute;
  width: 220px;
  top: 0;
  left: 20px;
  transform: rotate(-4deg);
  z-index: 3;
}
.c-polaroid--1 img { width: 192px; height: 160px; }

.c-polaroid--2 {
  position: absolute;
  width: 240px;
  top: 80px;
  right: 0;
  transform: rotate(3deg);
  z-index: 2;
}
.c-polaroid--2 img { width: 212px; height: 180px; }

.c-polaroid--3 {
  position: absolute;
  width: 210px;
  bottom: 20px;
  left: 60px;
  transform: rotate(-2deg);
  z-index: 1;
}
.c-polaroid--3 img { width: 182px; height: 155px; }

.c-polaroid--1:hover { transform: rotate(-1deg) scale(1.04); z-index: 10; }
.c-polaroid--2:hover { transform: rotate(1deg) scale(1.04); z-index: 10; }
.c-polaroid--3:hover { transform: rotate(1deg) scale(1.04); z-index: 10; }

.s-hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ---- ABOUT STRIP ---- */
.s-about-strip {
  background: var(--bg-card);
  padding: var(--space-2xl) 0;
  border-top: 1px solid color-mix(in oklch, var(--primary), transparent 85%);
  border-bottom: 1px solid color-mix(in oklch, var(--primary), transparent 85%);
}

.s-about-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .s-about-strip__grid { grid-template-columns: repeat(4, 1fr); }
}

.s-about-strip__item {
  text-align: center;
  padding: var(--space-md);
}

.s-about-strip__item i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  display: block;
}

.s-about-strip__item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.s-about-strip__item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- MENU SECTION ---- */
.s-menu {
  padding: var(--space-3xl) 0;
  background: var(--bg-cream);
}

.s-menu__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.s-menu__header p {
  max-width: 560px;
  margin: var(--space-sm) auto 0;
  color: var(--text-muted);
}

.s-menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .s-menu__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .s-menu__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Menu Card */
.c-menu-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  position: relative;
}

.c-menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.c-polaroid--menu {
  margin: -16px -16px 0;
  width: calc(100% + 32px);
  transform: rotate(-1.5deg);
  transition: transform var(--transition-slow);
}

.c-menu-card:hover .c-polaroid--menu {
  transform: rotate(0deg);
}

.c-polaroid--menu img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.c-menu-card__body {
  padding: var(--space-md);
  padding-top: var(--space-lg);
}

.c-menu-card__cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-xlight);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: var(--space-xs);
}

.c-menu-card__body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.c-menu-card__body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.c-menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
  padding-top: var(--space-sm);
  border-top: 1px solid color-mix(in oklch, var(--primary), transparent 88%);
}

.c-menu-card__price {
  font-family: 'Bitter', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

/* ---- TABS SECTION ---- */
.s-tabs {
  padding: var(--space-3xl) 0;
  background: var(--bg-warm);
}

.s-tabs__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.c-tabs__nav {
  display: flex;
  gap: 4px;
  background: color-mix(in oklch, var(--secondary), transparent 88%);
  padding: 6px;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.c-tabs__tab {
  flex: 1;
  min-width: 100px;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
  white-space: nowrap;
}

.c-tabs__tab.is-active {
  background: var(--bg-card);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.c-tabs__tab:hover:not(.is-active) {
  background: color-mix(in oklch, var(--bg-card), transparent 50%);
  color: var(--text-dark);
}

.c-tabs__panels { position: relative; }

.c-tabs__panel {
  display: none;
  animation: tab-fade 0.3s ease;
}

.c-tabs__panel.is-active { display: block; }

@keyframes tab-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.c-tabs__panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .c-tabs__panel-inner { grid-template-columns: 1fr 1fr; }
}

.c-tabs__panel-text h3 {
  margin-bottom: var(--space-sm);
}
.c-tabs__panel-text p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.c-tabs__panel-text .c-btn { margin-top: var(--space-sm); }

.c-tabs__panel-visual {
  display: flex;
  justify-content: center;
}

.c-polaroid--tab {
  transform: rotate(2deg);
  max-width: 320px;
  width: 100%;
}
.c-polaroid--tab img { width: 100%; height: 240px; object-fit: cover; }
.c-polaroid--tab:hover { transform: rotate(0deg); }

/* ---- TEAM SECTION ---- */
.s-team {
  padding: var(--space-3xl) 0;
  background: var(--bg-cream);
}

.s-team__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.s-team__header p {
  max-width: 600px;
  margin: var(--space-sm) auto 0;
  color: var(--text-muted);
}

.s-team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .s-team__grid { grid-template-columns: repeat(4, 1fr); }
}

.c-team-card {
  text-align: center;
  padding: var(--space-md);
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

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

.c-polaroid--team {
  margin: 0 auto var(--space-sm);
  width: 140px;
}

.c-polaroid--team img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 2px;
}

.c-team-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.c-team-card__role {
  display: block;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}

.c-team-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- CTA SECTION ---- */
.s-cta {
  padding: var(--space-3xl) 0;
  background: var(--bg-dark);
}

.s-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.s-cta__inner .u-eyebrow {
  color: var(--accent);
}

.s-cta__inner h2 {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

/* ---- PAGE HERO ---- */
.s-page-hero {
  background: var(--bg-warm);
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.s-page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, color-mix(in oklch, var(--accent), transparent 82%) 0%, transparent 70%);
  pointer-events: none;
}

.s-page-hero--short {
  padding: calc(var(--nav-height) + var(--space-lg)) 0 var(--space-lg);
}

.s-page-hero__inner {
  max-width: 700px;
  position: relative;
}

.s-page-hero__inner h1 { margin-bottom: var(--space-sm); }
.s-page-hero__inner p { color: var(--text-muted); font-size: 1.05rem; }

/* ---- STORY SECTION ---- */
.s-story {
  padding: var(--space-3xl) 0;
  background: var(--bg-cream);
}

.s-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .s-story__grid { grid-template-columns: 1fr 1fr; }
}

.s-story__text h2 { margin-bottom: var(--space-md); }
.s-story__text p { color: var(--text-muted); margin-bottom: var(--space-sm); }

.s-story__visual {
  display: flex;
  justify-content: center;
}

.c-polaroid--large {
  transform: rotate(-3deg);
  max-width: 380px;
  width: 100%;
}
.c-polaroid--large img { width: 100%; height: 280px; object-fit: cover; }
.c-polaroid--large:hover { transform: rotate(-1deg); }

/* ---- VALUES SECTION ---- */
.s-values {
  padding: var(--space-3xl) 0;
  background: var(--bg-warm);
}

.s-values__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.s-values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .s-values__grid { grid-template-columns: repeat(4, 1fr); }
}

.c-value-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

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

.c-value-card__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-xlight);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.c-value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.c-value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ---- TIMELINE SECTION ---- */
.s-timeline {
  padding: var(--space-3xl) 0;
  background: var(--bg-cream);
}

.s-timeline__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.s-timeline__track {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.s-timeline__track::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: color-mix(in oklch, var(--primary), transparent 70%);
}

@media (min-width: 600px) {
  .s-timeline__track::before { left: 24px; }
}

.c-timeline-item {
  display: flex;
  gap: var(--space-lg);
  padding-left: 60px;
  padding-bottom: var(--space-xl);
  position: relative;
}

.c-timeline-item:last-child { padding-bottom: 0; }

.c-timeline-item__marker {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--bg-cream);
  box-shadow: 0 0 0 2px var(--primary);
  flex-shrink: 0;
}

.c-timeline-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
  display: block;
}

.c-timeline-item__content h3 { margin-bottom: 6px; }
.c-timeline-item__content p { font-size: 0.9rem; color: var(--text-muted); }

/* ---- STEPS SECTION ---- */
.s-steps {
  padding: var(--space-3xl) 0;
  background: var(--bg-cream);
}

.s-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .s-steps__grid { grid-template-columns: repeat(3, 1fr); }
}

.c-step-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

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

.c-step-card__number {
  font-family: 'Bitter', serif;
  font-size: 4rem;
  font-weight: 700;
  color: color-mix(in oklch, var(--primary), transparent 80%);
  line-height: 1;
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
}

.c-step-card__icon {
  width: 56px;
  height: 56px;
  background: var(--primary-xlight);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.c-step-card h3 { margin-bottom: var(--space-sm); }
.c-step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ---- DELIVERY DETAILS ---- */
.s-delivery-details {
  padding: var(--space-3xl) 0;
  background: var(--bg-warm);
}

.s-delivery-details__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .s-delivery-details__grid { grid-template-columns: 1fr 1fr; }
}

.c-feature-list {
  list-style: none;
  padding: 0;
}

.c-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--primary), transparent 88%);
  font-size: 0.9rem;
  color: var(--text-body);
}

.c-feature-list li:last-child { border-bottom: none; }

.c-feature-list i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---- FOR VENDORS SECTION ---- */
.s-for-vendors {
  padding: var(--space-3xl) 0;
  background: var(--bg-cream);
}

.s-for-vendors__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.s-for-vendors__header p {
  max-width: 600px;
  margin: var(--space-sm) auto 0;
  color: var(--text-muted);
}

.s-for-vendors__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .s-for-vendors__grid { grid-template-columns: repeat(4, 1fr); }
}

.c-vendor-feature {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.c-vendor-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.c-vendor-feature i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  display: block;
}

.c-vendor-feature h3 { font-size: 1rem; margin-bottom: 8px; }
.c-vendor-feature p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ---- BEGINNER SECTION ---- */
.s-beginner {
  padding: var(--space-3xl) 0;
  background: var(--bg-cream);
}

.s-beginner__intro {
  max-width: 700px;
  margin-bottom: var(--space-2xl);
}

.s-beginner__intro h2 { margin-bottom: var(--space-md); }
.s-beginner__intro p { color: var(--text-muted); }

.s-beginner__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .s-beginner__cards { grid-template-columns: repeat(4, 1fr); }
}

.c-guide-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

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

.c-guide-card__num {
  font-family: 'Bitter', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-xlight);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.c-guide-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.c-guide-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ---- FAQ SECTION ---- */
.s-faq {
  padding: var(--space-3xl) 0;
  background: var(--bg-warm);
}

.s-faq__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.s-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.c-faq-item {
  border-bottom: 1px solid color-mix(in oklch, var(--primary), transparent 82%);
}

.c-faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Bitter', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.c-faq-item__q:hover { color: var(--primary); }

.c-faq-item__q i {
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--primary);
  font-size: 0.8rem;
}

.c-faq-item.is-open .c-faq-item__q i {
  transform: rotate(45deg);
}

.c-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition-base);
}

.c-faq-item.is-open .c-faq-item__a {
  max-height: 400px;
  padding-bottom: var(--space-md);
}

.c-faq-item__a p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- CONTACT PAGE ---- */
.s-contact-main {
  padding: var(--space-3xl) 0;
  background: var(--bg-cream);
}

.s-contact-main__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .s-contact-main__grid { grid-template-columns: 1fr 1.6fr; }
}

.s-contact-info h2 { margin-bottom: var(--space-lg); }

.c-contact-detail {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.c-contact-detail i {
  width: 44px;
  height: 44px;
  background: var(--primary-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.c-contact-detail strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.c-contact-detail p { font-size: 0.9rem; color: var(--text-body); }

/* ---- FORM ---- */
.c-form { display: flex; flex-direction: column; gap: var(--space-md); }

.c-form__group { display: flex; flex-direction: column; gap: 6px; }

.c-form__group--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.c-form__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.c-form__optional {
  font-weight: 400;
  color: var(--text-muted);
}

.c-form__input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1.5px solid color-mix(in oklch, var(--secondary), transparent 75%);
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  min-height: 44px;
}

.c-form__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 80%);
}

.c-form__input::placeholder { color: var(--text-muted); }

.c-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.c-form__group--checkbox { flex-direction: row; align-items: flex-start; }

.c-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

.c-form__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--primary);
  margin-top: 2px;
  cursor: pointer;
}

/* ---- MAP SECTION ---- */
.s-map {
  padding: var(--space-2xl) 0;
  background: var(--bg-warm);
}

.s-map__inner h2 { margin-bottom: var(--space-sm); }
.s-map__inner > p { color: var(--text-muted); margin-bottom: var(--space-lg); }

.s-map__frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--polaroid-bg);
}

/* ---- SERVICE AREA ---- */
.s-service-area {
  padding: var(--space-3xl) 0;
  background: var(--bg-cream);
}

.s-service-area__inner > h2 { margin-bottom: var(--space-sm); }
.s-service-area__inner > p { color: var(--text-muted); max-width: 680px; margin-bottom: var(--space-2xl); }

.s-service-area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .s-service-area__grid { grid-template-columns: repeat(4, 1fr); }
}

.c-area-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

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

.c-area-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  display: block;
}

.c-area-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.c-area-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ---- CART PAGE ---- */
.s-cart {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--bg-cream);
  min-height: 50vh;
}

.s-cart__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .s-cart__grid { grid-template-columns: 1fr 360px; }
}

.s-cart__empty {
  text-align: center;
  padding: var(--space-3xl) 0;
}

.s-cart__empty i {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  display: block;
}

.s-cart__empty h2 { margin-bottom: var(--space-sm); }
.s-cart__empty p { color: var(--text-muted); margin-bottom: var(--space-lg); }

/* Cart item */
.c-cart-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
}

.c-cart-item:hover { box-shadow: var(--shadow-md); }

.c-cart-item__name {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
}

.c-cart-item__price {
  font-family: 'Bitter', serif;
  font-weight: 700;
  color: var(--primary);
  min-width: 60px;
  text-align: right;
}

.c-cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-cart-item__qty button {
  width: 32px;
  height: 32px;
  background: var(--primary-xlight);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.c-cart-item__qty button:hover { background: var(--primary-light); color: white; }

.c-cart-item__qty span {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
}

.c-cart-item__remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.c-cart-item__remove:hover { color: #c0392b; }

/* Cart Summary */
.c-cart-summary {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-height) + 16px);
}

.c-cart-summary h3 { margin-bottom: var(--space-md); }

.c-cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--primary), transparent 88%);
  font-size: 0.9rem;
}

.c-cart-summary__row:last-of-type { border-bottom: none; }

.c-cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
  border-top: 2px solid var(--primary);
  font-family: 'Bitter', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

/* ---- CHECKOUT PAGE ---- */
.s-checkout {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--bg-cream);
}

.s-checkout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .s-checkout__grid { grid-template-columns: 1fr 380px; }
}

.s-checkout__form h2, .s-checkout__summary h2 {
  margin-bottom: var(--space-lg);
}

.s-checkout__summary {
  position: sticky;
  top: calc(var(--nav-height) + 16px);
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  align-self: flex-start;
}

.c-checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--primary), transparent 88%);
  font-size: 0.88rem;
}

.s-checkout__totals { margin-top: var(--space-sm); }

.c-payment-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--primary-xlight);
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary);
}

.c-payment-option i:first-child {
  font-size: 1.3rem;
  color: var(--primary);
}

.c-payment-option div {
  flex: 1;
}

.c-payment-option strong {
  display: block;
  font-size: 0.9rem;
}

.c-payment-option span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.c-payment-option__check {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ---- THANKS PAGE ---- */
.s-thanks {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-3xl);
  background: var(--bg-cream);
  min-height: 80vh;
}

.s-thanks__inner {
  max-width: 560px;
  margin: 0 auto;
}

.s-thanks__top {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.s-thanks__icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}

.s-thanks__top h1 { margin-bottom: var(--space-sm); }

.s-thanks__sub {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

/* Thanks Timeline */
.s-thanks__timeline {
  position: relative;
}

.c-timeline-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
  position: relative;
}

.c-timeline-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: var(--secondary-xlight);
  color: var(--text-muted);
  border: 2px solid color-mix(in oklch, var(--secondary), transparent 70%);
}

.c-timeline-step.is-done .c-timeline-step__icon {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.c-timeline-step.is-current .c-timeline-step__icon {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--primary), transparent 70%);
}

.c-timeline-step.is-upcoming .c-timeline-step__icon {
  background: var(--bg-warm);
  color: var(--text-muted);
  border-style: dashed;
}

.c-timeline-step__line {
  position: absolute;
  left: 21px;
  top: 44px;
  width: 2px;
  height: calc(100% + var(--space-lg) - 44px);
  background: color-mix(in oklch, var(--primary), transparent 70%);
}

.c-timeline-step__line--last { display: none; }

.c-timeline-step__label strong { display: block; font-weight: 600; }
.c-timeline-step__label span { font-size: 0.85rem; color: var(--text-muted); }

/* ---- LEGAL PAGES ---- */
.s-legal {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--bg-cream);
}

.s-legal__intro {
  max-width: 760px;
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
}

.s-legal__intro p { color: var(--text-muted); font-size: 0.9rem; }

/* Accordion */
.c-accordion {
  max-width: 860px;
}

.c-accordion__item {
  border-bottom: 1px solid color-mix(in oklch, var(--primary), transparent 82%);
}

.c-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Bitter', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.c-accordion__trigger:hover { color: var(--primary); }

.c-accordion__trigger i {
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--primary);
  font-size: 0.85rem;
}

.c-accordion__item.is-open .c-accordion__trigger i {
  transform: rotate(180deg);
}

.c-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding var(--transition-base);
}

.c-accordion__item.is-open .c-accordion__body {
  max-height: 2000px;
  padding-bottom: var(--space-lg);
}

.c-accordion__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.c-accordion__body a {
  color: var(--primary);
  text-decoration: underline;
}

/* ---- FOOTER ---- */
.c-footer {
  background: var(--secondary);
  color: var(--text-light);
  padding: var(--space-3xl) 0 0;
  margin-top: auto;
}

.c-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .c-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.c-footer__brand p {
  font-size: 0.85rem;
  color: color-mix(in oklch, var(--text-light), transparent 30%);
  margin: var(--space-sm) 0;
  line-height: 1.6;
}

.c-footer__brand address {
  font-size: 0.82rem;
  color: color-mix(in oklch, var(--text-light), transparent 35%);
  line-height: 1.8;
}

.c-footer__brand address a {
  color: color-mix(in oklch, var(--text-light), transparent 25%);
}
.c-footer__brand address a:hover { color: var(--accent); }

.c-footer__links h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.c-footer__links ul { display: flex; flex-direction: column; gap: 8px; }

.c-footer__links a {
  font-size: 0.85rem;
  color: color-mix(in oklch, var(--text-light), transparent 30%);
  transition: color var(--transition-fast);
}

.c-footer__links a:hover { color: var(--text-light); }

.c-footer__bottom {
  border-top: 1px solid color-mix(in oklch, white, transparent 88%);
  padding: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

@media (min-width: 600px) {
  .c-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.c-footer__bottom p {
  font-size: 0.78rem;
  color: color-mix(in oklch, var(--text-light), transparent 45%);
  margin: 0;
}

.c-footer__bottom a {
  color: color-mix(in oklch, var(--text-light), transparent 35%);
}
.c-footer__bottom a:hover { color: var(--accent); }

/* ---- COOKIE CONSENT ---- */
.c-cookie-pill {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--secondary);
  color: var(--text-light);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-lg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: calc(100vw - 32px);
}

.c-cookie-pill.is-expanded {
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  flex-direction: column;
  align-items: flex-start;
  white-space: normal;
  max-width: 480px;
  width: calc(100vw - 32px);
}

.c-cookie-pill__text {
  font-size: 0.82rem;
  flex: 1;
}

.c-cookie-pill__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-direction: column;
}

.c-cookie-pill.is-expanded .c-cookie-pill__actions {
  width: 100%;
  flex-wrap: wrap;
}

.c-cookie-pill__btn {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  min-height: 34px;
}

.c-cookie-pill__btn:hover { transform: translateY(-1px); }

.c-cookie-pill__btn--accept {
  background: var(--primary);
  color: white;
}
.c-cookie-pill__btn--accept:hover { background: var(--primary-dark); }

.c-cookie-pill__btn--necessary {
  background: color-mix(in oklch, white, transparent 80%);
  color: var(--text-light);
}
.c-cookie-pill__btn--necessary:hover { background: color-mix(in oklch, white, transparent 70%); }

.c-cookie-pill__btn--customize {
  background: none;
  color: var(--accent);
  text-decoration: underline;
  padding: 7px 8px;
}

.c-cookie-pill__categories {
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: var(--space-sm) 0;
}

.c-cookie-pill.is-expanded .c-cookie-pill__categories {
  display: flex;
}

.c-cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.82rem;
}

.c-cookie-category__toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.c-cookie-category__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.c-cookie-category__slider {
  position: absolute;
  inset: 0;
  background: color-mix(in oklch, white, transparent 70%);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.c-cookie-category__slider::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-fast);
}

.c-cookie-category__toggle input:checked + .c-cookie-category__slider {
  background: var(--primary);
}

.c-cookie-category__toggle input:checked + .c-cookie-category__slider::after {
  transform: translateX(18px);
}

.c-cookie-category__toggle input:disabled + .c-cookie-category__slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.c-cookie-pill.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

/* ---- MISC ---- */
.s-menu__heading { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }

/* Stagger delays for grid items */
.u-reveal:nth-child(2) { transition-delay: 0.1s; }
.u-reveal:nth-child(3) { transition-delay: 0.2s; }
.u-reveal:nth-child(4) { transition-delay: 0.3s; }
.u-reveal:nth-child(5) { transition-delay: 0.15s; }
.u-reveal:nth-child(6) { transition-delay: 0.25s; }
.u-reveal:nth-child(7) { transition-delay: 0.35s; }
.u-reveal:nth-child(8) { transition-delay: 0.2s; }

/* ---- RESPONSIVE TWEAKS ---- */
@media (max-width: 599px) {
  .s-beginner__cards,
  .s-values__grid,
  .s-for-vendors__grid,
  .s-service-area__grid,
  .s-team__grid {
    grid-template-columns: 1fr;
  }

  .c-form__group--row {
    grid-template-columns: 1fr;
  }

  .s-hero__cta {
    flex-direction: column;
  }

  .c-tabs__nav {
    flex-direction: column;
  }

  .c-cart-item {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .c-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}