/* ==========================================================================
   Curb & Gourd — Design System
   ========================================================================== */

:root {
  --cream: #f7f2e6;
  --cream-2: #efe6d1;
  --paper: #fffdf8;
  --ink: #1c1a15;
  --ink-2: #59564a;
  --ink-3: #8a8571;
  /* Primary accent — terracotta, sampled from the new logo mark */
  --olive: #c1702e;
  --olive-dark: #96501f;
  --olive-light: #dda06a;
  --olive-pale: #f3e2c9;
  /* Secondary accent — deeper rust, for price emphasis / dark contrast */
  --pumpkin: #8a4a1f;
  --pumpkin-dark: #6b3714;
  --pumpkin-pale: #ecd3ba;
  --line: #e3d7bd;
  --shadow-sm: 0 8px 24px -12px rgba(28, 26, 21, 0.2);
  --shadow-lg: 0 30px 60px -24px rgba(28, 26, 21, 0.32);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --container: 1264px;
  --announce-h: 36px;
  --header-h: 120px;
  --font-serif: "Archivo", ui-sans-serif, Arial, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.04;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-weight: 800; }

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

input, select, textarea {
  font-family: inherit;
  font-size: 15px;
}

.italic-accent {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 800;
  color: var(--olive);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.hidden { display: none !important; }

/* ---------- Eyebrow label ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 18px;
}
.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--olive-dark);
  opacity: 0.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex: none; }
.btn.is-disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }
.checkout-error { margin-top: 14px; font-size: 13.5px; color: #9a3c2c; }
.btn-primary {
  background: var(--olive);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--olive-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--olive); color: var(--olive-dark); transform: translateY(-1px); }
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--olive-dark); transform: translateY(-1px); }
.btn-full { width: 100%; }
.btn-lg { padding: 17px 30px; font-size: 15.5px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ==========================================================================
   Header / Nav
   Fixed so it can overlay the hero video, always opaque/solid.
   ========================================================================== */

.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--announce-h);
  z-index: 101;
  background: var(--olive);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.site-header {
  position: fixed;
  top: var(--announce-h); left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 242, 230, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(227, 215, 189, .8);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark-img {
  width: 40px; height: 40px;
  object-fit: contain;
  flex: none;
}
.brand small {
  display: block;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); border-color: var(--olive); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-size: 13.5px; font-weight: 600; color: var(--ink-2); display: flex; align-items: center; gap: 7px; }
.nav-phone svg { width: 15px; height: 15px; color: var(--olive-dark); }

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  color: var(--ink);
  flex: none;
  transition: border-color .2s ease, color .2s ease;
}
.cart-link:hover { border-color: var(--olive); color: var(--olive-dark); }
.cart-link svg { width: 18px; height: 18px; }
.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--olive);
  color: var(--paper);
  font-size: 10.5px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  line-height: 1;
  border: 2px solid var(--cream);
}
.cart-badge[hidden] { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  color: var(--ink);
}
.nav-toggle svg { width: 18px; height: 18px; }

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 32px 26px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-panel a {
  padding: 13px 4px;
  font-size: 15.5px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.mobile-panel .btn { margin-top: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: var(--cream-2);
  padding: 72px 0 28px;
  margin-top: 140px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(248, 243, 231, 0.14);
}
.footer-brand .brand { color: var(--cream); }
.footer-brand .brand small { color: rgba(248,243,231,.55); }
.footer-tagline {
  margin-top: 16px;
  font-size: 14.5px;
  color: rgba(248, 243, 231, 0.65);
  max-width: 280px;
  line-height: 1.6;
}
.footer-social { display: flex; gap: 10px; margin-top: 26px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(248,243,231,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.footer-social a:hover { background: var(--olive); border-color: var(--olive); }
.footer-social svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 243, 231, 0.5);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a, .footer-col li { font-size: 14.5px; color: rgba(248, 243, 231, 0.82); }
.footer-col a:hover { color: var(--pumpkin); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(248, 243, 231, 0.45);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(248, 243, 231, 0.45); }
.footer-bottom a:hover { color: var(--cream); }

/* ==========================================================================
   Shared section utilities
   ========================================================================== */

section { padding: 84px 0; }
section.tight { padding: 60px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 44px;
}
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); }
.section-head p { color: var(--ink-2); font-size: 16.5px; max-width: 420px; margin-top: 14px; }
.section-head .eyebrow { margin-bottom: 14px; }

.page-hero.tight {
  padding: calc(var(--header-h) + 46px) 0 20px;
  text-align: left;
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(38px, 5vw, 60px); max-width: 780px; }
.page-hero .lede { margin-top: 20px; font-size: 18px; color: var(--ink-2); max-width: 600px; }

/* ==========================================================================
   Home — Hero
   Full-bleed static banner image with the fixed header overlaid on top.
   ========================================================================== */

.hero-banner {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.hero-banner-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-banner-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(195deg, rgba(18, 15, 11, 0.12) 30%, rgba(15, 13, 9, 0.78) 100%);
  pointer-events: none;
}

.hero-banner-content {
  position: absolute;
  left: 0; right: 0; bottom: 72px;
  z-index: 2;
}
.hero-banner-copy { max-width: 640px; }
.hero-banner-copy .eyebrow { color: rgba(255, 253, 248, 0.9); }
.hero-banner-copy .eyebrow::after { background: rgba(255, 253, 248, 0.6); }
.hero-banner-copy h1 { color: var(--paper); font-size: clamp(38px, 5vw, 62px); }
.hero-banner-copy .lede {
  margin-top: 20px;
  font-size: 17.5px;
  color: rgba(255, 253, 248, 0.86);
  max-width: 480px;
}
.hero-banner-copy .hero-actions { margin-top: 32px; }
.hero-banner-copy .btn-outline { border-color: rgba(255, 253, 248, 0.55); color: #fff; }
.hero-banner-copy .btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.1); }

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

/* ==========================================================================
   Feature grid (Why us)
   ========================================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: flex-start;
}
.feature-intro .eyebrow { margin-bottom: 18px; }
.feature-intro h2 { font-size: clamp(30px, 3.4vw, 42px); }
.feature-intro p { margin-top: 18px; color: var(--ink-2); font-size: 16px; max-width: 400px; }
.feature-intro .btn { margin-top: 30px; }

.eco-badge {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream-2);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  max-width: 320px;
}
.eco-badge .icon-circle { background: var(--olive-pale); }
.eco-badge strong { display: block; font-size: 14px; }
.eco-badge span { font-size: 12.5px; color: var(--ink-2); }

.icon-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.icon-circle svg { width: 20px; height: 20px; color: var(--olive-dark); }

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature-card .art {
  border-radius: var(--radius-md);
  aspect-ratio: 16/11;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}
.art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--ink-2); }


.art-1 { background: linear-gradient(150deg, #f0e3c8, #dfc39a); }
.art-2 { background: linear-gradient(150deg, #e7ceb2, #c98f52); }
.art-3 { background: linear-gradient(150deg, #e8cfa8, #b5703a); }
.art-4 { background: linear-gradient(150deg, #ecdcc0, #b4571f 130%); }

/* ==========================================================================
   Packages preview / grid
   ========================================================================== */

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pkg-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-card .art { aspect-ratio: 16/12; position: relative; }
.pkg-card .pkg-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,253,249,.92);
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--olive-dark);
}
.pkg-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pkg-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.pkg-head h3 { font-size: 21px; }
.pkg-price { font-family: var(--font-serif); font-size: 20px; color: var(--pumpkin-dark); white-space: nowrap; }
.pkg-price span { font-family: var(--font-sans); font-size: 12px; color: var(--ink-3); font-weight: 500; }
.pkg-desc { font-size: 14px; color: var(--ink-2); }
.pkg-footer { margin-top: auto; padding-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.pkg-link { font-size: 13.5px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.pkg-link svg { width: 13px; height: 13px; transition: transform .2s ease; }
.pkg-card:hover .pkg-link svg { transform: translateX(3px); }

/* Add-to-cart button: swaps to a confirmed state via a class toggle,
   never mutating textContent, so the button's icon markup survives. */
.btn-add-cart .label-default, .btn-add-cart .label-added {
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-add-cart .label-added { display: none; }
.btn-add-cart.added { background: var(--olive-dark); }
.btn-add-cart.added .label-default { display: none; }
.btn-add-cart.added .label-added { display: inline-flex; }



/* ==========================================================================
   Shop groups (Traditional Fall / Neutral Fall)
   ========================================================================== */

.shop-group { margin-bottom: 76px; }
.shop-group:last-child { margin-bottom: 0; }
.shop-group-head { margin-bottom: 36px; }
.shop-group-head h2 { font-size: clamp(26px, 3vw, 34px); }
.shop-group-head p { margin-top: 12px; color: var(--ink-2); font-size: 15px; max-width: 480px; }

/* ==========================================================================
   Product Detail Page
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: start;
}
.product-grid.no-media {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

.product-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3.3;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Neutral Edit palette gallery — a snap-scroll stack of the 3 palette
   photos inside the sticky media panel. Scrolling through it (mouse wheel,
   trackpad, or touch) drives the same selection as clicking a palette card. */
.palette-gallery { position: absolute; inset: 0; }
.palette-gallery-track {
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: thin;
}
.palette-gallery-slide {
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
}
.palette-gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.palette-gallery-label {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 2;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(15, 13, 9, 0.55);
  backdrop-filter: blur(6px);
  color: var(--paper);
  font-size: 12.5px;
  font-weight: 700;
}
.palette-gallery-dots {
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.palette-gallery-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.55);
  border: none;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.palette-gallery-dots .dot.active { background: var(--paper); transform: scale(1.3); }
.palette-gallery-hint {
  position: absolute;
  left: 50%; bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--paper);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
  transition: opacity .4s ease;
  pointer-events: none;
}
.palette-gallery-hint svg { width: 14px; height: 14px; animation: scrubBounce 1.6s ease-in-out infinite; }
.palette-gallery-hint.hide { opacity: 0; }
@keyframes scrubBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.product-info .eyebrow { margin-bottom: 16px; }
.product-info h1 { font-size: clamp(30px, 3.6vw, 42px); }
.product-price {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 26px;
  color: var(--pumpkin-dark);
  margin-top: 10px;
}
.product-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--olive-pale);
  color: var(--olive-dark);
  font-size: 12.5px;
  font-weight: 700;
}
.product-desc { margin-top: 18px; font-size: 15.5px; color: var(--ink-2); line-height: 1.6; }
.product-desc-secondary { margin-top: 10px; font-size: 14.5px; color: var(--ink-3); line-height: 1.6; }

.product-section { margin-top: 32px; }
.product-section h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--ink); margin-bottom: 16px; }

.included-list { display: flex; flex-direction: column; gap: 10px; }
.included-list li { font-size: 14.5px; color: var(--ink-2); display: flex; gap: 10px; align-items: flex-start; }
.included-list svg { width: 15px; height: 15px; color: var(--olive-dark); margin-top: 3px; flex: none; }

.service-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.service-tag {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--cream-2);
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.service-note { font-size: 13.5px; color: var(--ink-3); }

/* Palette selection (The Neutral Edit) */
.palette-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.palette-card {
  display: block;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.palette-card:hover { border-color: var(--olive-light); }
.palette-card input { position: absolute; opacity: 0; pointer-events: none; }
.palette-card .name { font-family: var(--font-serif); font-weight: 700; font-size: 16px; display: block; }
.palette-card .summary { display: block; font-size: 12px; color: var(--olive-dark); font-weight: 600; margin-top: 4px; }
.palette-card .desc { display: block; font-size: 12.5px; color: var(--ink-2); margin-top: 8px; line-height: 1.5; }
.palette-card.selected { border-color: var(--olive); background: var(--olive-pale); }
.palette-required-hint { font-size: 12.5px; color: var(--pumpkin-dark); margin-top: 10px; display: none; }
.palette-required-hint.show { display: block; }

/* Add to Your Collection */
.addon-box {
  margin-top: 36px;
  background: var(--cream-2);
  border-radius: var(--radius-xl);
  padding: 26px;
}
.addon-box h3 { font-size: 17px; margin-bottom: 6px; }
.addon-box > p { font-size: 13px; color: var(--ink-2); margin-bottom: 20px; }
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.addon-row:last-of-type { border-bottom: none; }
.addon-row[hidden] { display: none; }
.addon-row-label { flex: 1; min-width: 0; }
.addon-row-label strong { display: block; font-size: 14.5px; }
.addon-row-label span { font-size: 12.5px; color: var(--ink-2); }
.addon-thumb {
  flex: none;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}
.addon-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.addon-qty-select {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-pill);
  padding: 10px 34px 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  flex: none;
  min-width: 84px;
}

.order-total-box {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.order-total-lines { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.order-total-lines .row { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-2); }
.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
}
.order-total-row .amount { font-family: var(--font-serif); color: var(--pumpkin-dark); }

.substitution-notice {
  margin-top: 40px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: var(--cream-2);
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* ==========================================================================
   Process / steps
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--olive-dark);
  background: var(--olive-pale);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.step-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--ink-2); }

/* ==========================================================================
   CTA strip (dark / media)
   ========================================================================== */

.cta-strip {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--cream);
}
.cta-strip .bg {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, #241f16, #6b3a1a 55%, #c1702e);
}
.cta-strip .bg.cta-bg-fall {
  background-image: url('../assets/seattleskyline.jpg');
  background-size: cover;
  background-position: center;
}
.cta-strip .bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(24,22,15,.6) 10%, rgba(24,22,15,.15) 60%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
}
.cta-inner .eyebrow { color: var(--cream-2); }
.cta-inner .eyebrow::after { background: var(--cream-2); }
.cta-inner h2 { color: var(--paper); font-size: clamp(28px, 3.4vw, 42px); max-width: 480px; }
.cta-inner p { color: rgba(248,243,231,.8); margin-top: 14px; max-width: 420px; font-size: 15.5px; }
.cta-card {
  background: rgba(255,253,249,.96);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  min-width: 280px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.cta-card .row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.cta-card .row:last-of-type { border-bottom: none; }
.cta-card .row svg { width: 18px; height: 18px; color: var(--olive-dark); flex: none; }
.cta-card .row strong { display: block; font-size: 14.5px; }
.cta-card .row span { font-size: 12px; color: var(--ink-2); }
.cta-card .btn { margin-top: 16px; }

/* ==========================================================================
   Design page — AI Stylist
   ========================================================================== */

section.tight.stylist-section { padding-top: 30px; }

.stylist-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: stretch;
}
.stylist-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.stylist-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}
.stylist-progress .bar {
  height: 4px;
  flex: 1;
  border-radius: var(--radius-pill);
  background: var(--line);
  overflow: hidden;
}
.stylist-progress .bar span {
  display: block; height: 100%; width: 0%;
  background: var(--olive);
  transition: width .3s ease;
}
.stylist-step { display: none; }
.stylist-step.active { display: block; animation: fadeUp .35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }

.stylist-step h3 { font-size: 22px; margin-bottom: 6px; }
.stylist-step .hint { font-size: 14px; color: var(--ink-2); margin-bottom: 24px; }

.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  position: relative;
  overflow: hidden;
}
.upload-zone:hover, .upload-zone.drag { border-color: var(--olive); background: var(--olive-pale); }
.upload-zone svg { width: 34px; height: 34px; color: var(--olive-dark); margin-bottom: 14px; }
.upload-zone strong { display: block; font-size: 15px; margin-bottom: 4px; }
.upload-zone span { font-size: 12.5px; color: var(--ink-2); }
.upload-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-preview {
  margin-top: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: none;
  position: relative;
  aspect-ratio: 16/10;
}
.upload-preview img { width: 100%; height: 100%; object-fit: cover; }
.upload-preview .remove {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(24,22,15,.6); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: none;
}
.upload-preview .remove svg { width: 14px; height: 14px; }

.chip-group { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.chip {
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--paper);
  transition: all .18s ease;
}
.chip input { display: none; }
.chip.selected, .chip:hover { border-color: var(--olive); color: var(--olive-dark); background: var(--olive-pale); }

.field-label { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 12px; display: block; }

.stylist-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 12px; }
.stylist-nav .link-back { font-size: 13.5px; font-weight: 600; color: var(--ink-2); }

.stylist-side {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 560px;
  background: linear-gradient(160deg, #4a3520, #1c1712);
}
.stylist-side .content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  color: var(--cream);
  text-align: center;
}
.stylist-idle svg { width: 64px; height: 64px; margin: 0 auto 20px; color: var(--pumpkin-pale); }
.stylist-idle h3 { color: var(--paper); font-size: 22px; margin-bottom: 10px; }
.stylist-idle p { color: rgba(248,243,231,.75); font-size: 14.5px; max-width: 320px; margin: 0 auto; }

.scan-anim { display: none; }
.scan-anim.active { display: block; }
.scan-ring {
  width: 96px; height: 96px;
  margin: 0 auto 26px;
  border-radius: 50%;
  border: 3px solid rgba(248,243,231,.25);
  border-top-color: var(--pumpkin-pale);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.scan-status { font-size: 14.5px; color: rgba(248,243,231,.9); min-height: 20px; }
.scan-log { margin-top: 22px; font-size: 12.5px; color: rgba(248,243,231,.55); display: flex; flex-direction: column; gap: 6px; }

.result-panel { display: none; }
.result-panel.active { display: block; }
.result-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.match-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--olive-pale); color: var(--olive-dark);
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; margin-bottom: 16px;
}
.result-card h3 { font-size: 24px; margin-bottom: 6px; }
.result-price { font-family: var(--font-serif); color: var(--pumpkin-dark); font-size: 19px; margin-bottom: 14px; }
.result-reasons { display: flex; flex-direction: column; gap: 8px; margin: 16px 0 22px; }
.result-reasons li { font-size: 13.5px; color: var(--ink-2); display: flex; gap: 8px; }
.result-reasons svg { width: 14px; height: 14px; color: var(--olive-dark); flex: none; margin-top: 2px; }
.result-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.result-alt { margin-top: 16px; font-size: 12.5px; color: rgba(248,243,231,.7); text-align: center; }
.result-alt a { color: var(--pumpkin-pale); font-weight: 600; text-decoration: underline; }

.stylist-steps-mini {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.stylist-steps-mini .step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 14px;
}
.stylist-steps-mini .step-num { margin: 0 0 10px; }
.stylist-steps-mini .step-card h3 { margin: 0; }

/* ==========================================================================
   Delivery page — zone map
   ========================================================================== */

.delivery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 44px;
  align-items: flex-start;
}
.map-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.delivery-map { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); background: #eef1e1; }
.map-attribution { margin-top: 8px; font-size: 11px; color: var(--ink-3); }
.map-attribution a { color: var(--ink-3); text-decoration: underline; }

.map-legend { display: flex; gap: 18px; margin-top: 22px; flex-wrap: wrap; }
.map-legend .item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-2); }
.map-legend .dot { width: 12px; height: 12px; border-radius: 4px; }
.map-legend .dot-outline { background: none; border: 2px dashed #5b6b3f; border-radius: 4px; }

.zip-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
}
.zip-card h3 { font-size: 19px; margin-bottom: 8px; }
.zip-card p { font-size: 13.5px; color: var(--ink-2); margin-bottom: 20px; }
.zip-form { display: flex; gap: 10px; }
.zip-form input {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 14.5px;
}
.zip-form input:focus { outline: none; border-color: var(--olive); }
.zip-result { margin-top: 18px; display: none; }
.zip-result.show { display: block; animation: fadeUp .3s ease; }
.zip-result-card {
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream-2);
  color: var(--ink-2);
}
.zip-result-card .icon-circle { background: rgba(255,255,255,.55); }
.zip-result-card strong { display: block; font-size: 15px; }
.zip-result-card span { font-size: 12.5px; }
.zip-result.zone1 .zip-result-card { background: var(--olive-pale); color: var(--olive-dark); }
.zip-result.zone2 .zip-result-card { background: var(--pumpkin-pale); color: var(--pumpkin-dark); }
.zip-result.zone3 .zip-result-card { background: #ece2ce; color: #7a5a2a; }
.zip-result.miss .zip-result-card { background: #f2e0d8; color: #9a3c2c; }

.zip-fee-table { margin-top: 26px; display: flex; flex-direction: column; gap: 0; }
.zip-fee-table .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13.5px;
}
.zip-fee-table .row:last-child { border-bottom: none; }
.zip-fee-table .swatch { width: 10px; height: 10px; border-radius: 3px; display: inline-block; margin-right: 10px; }
.zip-fee-table .fee { font-family: var(--font-serif); color: var(--pumpkin-dark); }

.delivery-info-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.info-card .icon-circle { background: var(--paper); margin-bottom: 18px; }
.info-card h3 { font-size: 17px; margin-bottom: 8px; }
.info-card p { font-size: 13.5px; color: var(--ink-2); }

/* ==========================================================================
   FAQ + Contact page
   ========================================================================== */

#faq, #contact { scroll-margin-top: 96px; }

.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ink);
}
.faq-q .plus {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--olive-pale);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  position: relative;
  transition: transform .25s ease, background .25s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--olive-dark);
  transition: transform .25s ease;
}
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; }
.faq-item.open .faq-q .plus { background: var(--olive); transform: rotate(45deg); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--paper); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner { padding: 0 26px 24px; font-size: 14.5px; color: var(--ink-2); max-width: 640px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 38px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-field label { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.form-field input, .form-field select, .form-field textarea {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 14.5px;
  color: var(--ink);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--olive); }
.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  background: var(--olive-pale);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-top: 18px;
}
.form-success.show { display: flex; animation: fadeUp .3s ease; }
.form-success svg { width: 22px; height: 22px; color: var(--olive-dark); flex: none; }
.form-success strong { display: block; font-size: 14px; }
.form-success span { font-size: 12.5px; color: var(--ink-2); }

.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: linear-gradient(150deg, #6b3a1a, #241f16);
}
.contact-media video, .contact-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(18, 15, 11, 0.05) 40%, rgba(15, 13, 9, 0.55) 100%);
  pointer-events: none;
}
.contact-info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-card .row { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-card .row strong { display: block; font-size: 14.5px; }
.contact-info-card .row span { font-size: 13px; color: var(--ink-2); }

/* ==========================================================================
   Cart & Checkout
   ========================================================================== */

.cart-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: flex-start; }

.cart-list { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info strong { display: block; font-size: 16px; }
.cart-item-info span { font-size: 12.5px; color: var(--ink-2); text-transform: uppercase; letter-spacing: .04em; }
.cart-item-included, .cart-item-addons { margin-top: 8px; display: flex; flex-direction: column; gap: 3px; }
.cart-item-included div, .cart-item-addons div { font-size: 12.5px; color: var(--ink-3); }
.cart-item-included .label, .cart-item-addons .label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink-2); margin-bottom: 2px;
}
.cart-item-price { font-family: var(--font-serif); font-weight: 700; color: var(--pumpkin-dark); font-size: 16px; white-space: nowrap; }

.qty-stepper { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px 12px; flex: none; }
.qty-stepper button {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: none;
  background: var(--cream-2);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.qty-stepper button:hover { background: var(--olive-pale); color: var(--olive-dark); }
.qty-stepper button svg { width: 12px; height: 12px; }
.qty-stepper .qty-value { min-width: 16px; text-align: center; font-weight: 700; font-size: 14px; }

.cart-item-remove {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: none;
  color: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.cart-item-remove:hover { color: #9a3c2c; background: #f2e0d8; }
.cart-item-remove svg { width: 15px; height: 15px; }

.cart-summary, .order-summary {
  background: var(--cream-2);
  border-radius: var(--radius-xl);
  padding: 30px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.cart-summary h3, .order-summary h3 { font-size: 19px; margin-bottom: 18px; }
.cart-summary-row {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
}
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-summary-row.total {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  padding-top: 16px;
  border-bottom: none;
}
.cart-summary-row.total .amount { font-family: var(--font-serif); color: var(--pumpkin-dark); }
.cart-summary-note { font-size: 12px; color: var(--ink-3); margin-top: 14px; line-height: 1.5; }
.cart-summary .btn { margin-top: 18px; }

.cart-empty { text-align: center; padding: 90px 20px; }
.cart-empty svg { width: 56px; height: 56px; color: var(--olive-light); margin-bottom: 22px; }
.cart-empty h3 { font-size: 24px; margin-bottom: 10px; }
.cart-empty p { color: var(--ink-2); margin-bottom: 28px; }

.checkout-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: flex-start; }

.order-line { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.order-line:last-of-type { border-bottom: none; }
.order-line .name { color: var(--ink); font-weight: 600; }
.order-line .qty { color: var(--ink-3); font-weight: 500; }
.order-line .amount { font-family: var(--font-serif); color: var(--pumpkin-dark); white-space: nowrap; }
.order-summary .order-total {
  display: flex; justify-content: space-between;
  padding-top: 16px;
  font-size: 17px;
  font-weight: 700;
}
.order-summary .order-total .amount { font-family: var(--font-serif); color: var(--pumpkin-dark); }

.order-confirm { text-align: center; padding: 70px 20px; max-width: 560px; margin: 0 auto; }
.order-confirm .icon-circle { width: 64px; height: 64px; margin: 0 auto 22px; background: var(--olive-pale); }
.order-confirm .icon-circle svg { width: 30px; height: 30px; }
.order-confirm h2 { font-size: 28px; margin-bottom: 12px; }
.order-confirm p { color: var(--ink-2); }
.order-confirm .order-number {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--pumpkin-dark);
  font-size: 20px;
  margin: 18px 0;
}
.order-confirm .hero-actions { justify-content: center; margin-top: 28px; }

/* ==========================================================================
   Legal pages (Privacy Policy / Terms of Service)
   ========================================================================== */

.legal-content { max-width: 760px; }
.legal-updated { font-size: 13px; color: var(--ink-3); margin-bottom: 40px; }
.legal-content h2 {
  font-size: 21px;
  margin-top: 44px;
  margin-bottom: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p { font-size: 15px; color: var(--ink-2); line-height: 1.7; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px; padding-left: 22px; list-style: disc; }
.legal-content li { font-size: 15px; color: var(--ink-2); line-height: 1.7; margin-bottom: 6px; }
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--olive-dark); text-decoration: underline; }


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .feature-grid, .delivery-grid, .stylist-wrap, .contact-grid, .cart-layout, .checkout-grid, .product-grid { grid-template-columns: 1fr; }
  .cart-summary, .order-summary { position: static; }
  .product-media { position: static; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .delivery-info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-right > .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .mobile-panel.open { display: flex; }
  section { padding: 60px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .feature-cards { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-card { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .delivery-info-grid { grid-template-columns: 1fr; }
  .palette-grid { grid-template-columns: 1fr 1fr; }
  .hero-banner-content { bottom: 56px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav { padding: 16px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 36px 26px; }
  .hero-banner-content { bottom: 40px; left: 20px; right: 20px; }
  .cart-item { flex-wrap: wrap; }
  .cart-item-info { flex-basis: 100%; }
  .palette-grid { grid-template-columns: 1fr; }
  .addon-row { flex-wrap: wrap; }
  .addon-qty-select { width: 100%; }
}
