/* ============================================================
   Vintage Dwell — hand-restored vintage furniture
   Design system: warm heritage palette (cream paper, espresso
   ink, terracotta, brass) with editorial serif display type.
   ============================================================ */

:root {
  --paper: #F5EFE2;
  --paper-2: #EFE7D6;
  --surface: #FFFDF7;
  --cream: #FAF4E8;
  --ink: #2B211A;
  --ink-soft: #4A3C2E;
  --muted: #7C6B59;
  --line: #E2D5BD;
  --line-soft: #EDE3CF;
  --rust: #B4552D;
  --rust-dark: #93421F;
  --rust-soft: #F3E2D5;
  --pine: #43563F;
  --pine-dark: #33422F;
  --gold: #B98A3C;
  --gold-soft: #F1E7CE;
  --espresso: #241B14;
  --espresso-2: #2E241B;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(43, 33, 26, 0.06), 0 2px 8px rgba(43, 33, 26, 0.05);
  --shadow-md: 0 4px 14px rgba(43, 33, 26, 0.08), 0 12px 32px rgba(43, 33, 26, 0.1);
  --shadow-lg: 0 10px 30px rgba(43, 33, 26, 0.16), 0 24px 60px rgba(43, 33, 26, 0.14);
  --radius: 12px;
  --radius-lg: 18px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 15% 8%, rgba(185, 138, 60, 0.05), transparent 32%),
    radial-gradient(circle at 85% 30%, rgba(180, 85, 45, 0.04), transparent 36%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

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

a {
  color: var(--rust);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--rust-dark); }

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

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

input, select, textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
}

s { opacity: 0.55; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: var(--white); }

/* ---------- Section chrome ---------- */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head h2 em { font-style: italic; color: var(--rust); }
.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.icon-btn:hover { background: var(--gold-soft); color: var(--ink); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rust);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(180, 85, 45, 0.28);
}
.btn-primary:hover {
  background: var(--rust-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(180, 85, 45, 0.32);
}

.btn-ghost {
  background: rgba(255, 253, 247, 0.14);
  color: var(--white);
  border-color: rgba(255, 253, 247, 0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 253, 247, 0.26); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--rust);
  color: var(--rust);
  background: var(--surface);
}

/* ---------- Scroll reveal ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Promo bar ---------- */

.promo-bar {
  background: var(--espresso);
  color: var(--paper);
  text-align: center;
  padding: 10px 18px;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}
.promo-bar p { margin: 0; }
.promo-bar strong { color: var(--gold); font-weight: 700; }
.promo-bar a { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }
.promo-bar a:hover { color: var(--gold); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(245, 239, 226, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.scrolled {
  background: rgba(245, 239, 226, 0.97);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}
.logo:hover { color: var(--ink); }

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.logo-text em { font-style: italic; font-weight: 600; color: var(--rust); }

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--espresso);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 247, 0.12);
  flex-shrink: 0;
}

.nav-links { display: flex; align-items: center; gap: 6px; }

.nav-links a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--rust); background: var(--gold-soft); }
.nav-links a.active { color: var(--rust); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 3px;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--rust);
}

.nav-actions { display: flex; align-items: center; gap: 4px; }

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--rust);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
#cartOpen { position: relative; }
.cart-count.show { opacity: 1; transform: scale(1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 10px;
}
.menu-toggle:hover { background: var(--gold-soft); }
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle span + span { width: 70%; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { padding: 10px 20px 18px; }
.mobile-menu a {
  display: block;
  padding: 12px 8px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--ink-soft);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--rust); background: var(--gold-soft); }

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.83rem;
  color: var(--ink-soft);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 26px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.trust-bar span { display: inline-flex; align-items: center; gap: 7px; }
.trust-bar svg { color: var(--gold); flex-shrink: 0; }
.trust-bar b { color: var(--ink); font-weight: 600; }

/* ---------- Search overlay ---------- */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(36, 27, 20, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 20px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.search-overlay.open { opacity: 1; visibility: visible; }

.search-inner {
  width: 100%;
  max-width: 640px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.search-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
}
.search-top input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1.05rem;
  color: var(--ink);
}
.search-top input::placeholder { color: var(--muted); }

.search-results { max-height: 50vh; overflow-y: auto; padding: 8px; }

.search-result-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}
.search-result-card:hover { background: var(--cream); }
.search-result-card img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.search-info { flex: 1; min-width: 0; }
.search-info h4 { margin: 0 0 3px; font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600; }
.search-price { font-size: 0.85rem; color: var(--muted); }
.search-price s { margin-left: 8px; }
.search-add {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.search-add:hover { border-color: var(--rust); color: var(--rust); }
.search-empty { padding: 26px 14px; text-align: center; color: var(--muted); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  height: min(88vh, 820px);
  min-height: 560px;
  overflow: hidden;
  background: var(--espresso);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 6.5s ease-out;
}
.hero-slide.active img { transform: scale(1); }

@keyframes kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(36, 27, 20, 0.34) 0%, rgba(36, 27, 20, 0.52) 55%, rgba(36, 27, 20, 0.82) 100%),
    linear-gradient(90deg, rgba(36, 27, 20, 0.55), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-inner { max-width: 680px; color: var(--paper); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  color: rgba(245, 239, 226, 0.92);
  max-width: 540px;
  margin: 0 0 32px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 239, 226, 0.45);
  transition: all 0.25s ease;
}
.hero-dots button.active {
  background: var(--gold);
  width: 26px;
}

.hero-scroll {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 239, 226, 0.7);
}

/* ---------- Benefits ---------- */

.benefits { padding: 84px 0 30px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.benefit:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--rust-soft);
  color: var(--rust);
  margin-bottom: 18px;
}

.benefit h3 { font-size: 1.15rem; margin-bottom: 8px; }
.benefit p { margin: 0; color: var(--muted); font-size: 0.93rem; }

/* ---------- Products ---------- */

.products { padding: 54px 0 90px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-media img { transform: scale(1.05); }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.badge--refurbished { background: var(--espresso); color: var(--gold); }
.badge--eco { background: var(--pine); color: var(--white); }

.product-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-title { font-size: 1.2rem; margin: 0; }

.price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-original { color: var(--muted); font-size: 0.9rem; }
.price-sale { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--rust); }
.price-save {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pine);
  background: var(--gold-soft);
  padding: 3px 9px;
  border-radius: 999px;
}

.add-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.22s ease;
}
.add-btn:hover { border-color: var(--rust); background: var(--rust); color: var(--white); }
.add-btn:active { transform: scale(0.98); }
.add-btn.added { border-color: var(--pine); background: var(--pine); color: var(--white); }

/* ---------- Education ---------- */

.education { background: var(--espresso); color: var(--paper); padding: 90px 0; position: relative; }
.education::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(185, 138, 60, 0.14), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(180, 85, 45, 0.1), transparent 40%);
  pointer-events: none;
}
.education .container { position: relative; }
.education .section-head h2 { color: var(--paper); }
.education .section-head h2 em { color: var(--gold); }
.education .section-head p { color: rgba(245, 239, 226, 0.72); }

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

.edu-card {
  background: rgba(255, 253, 247, 0.05);
  border: 1px solid rgba(255, 253, 247, 0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.edu-card:hover {
  background: rgba(255, 253, 247, 0.09);
  border-color: rgba(185, 138, 60, 0.5);
  transform: translateY(-4px);
}

.edu-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}
.edu-card h3 { color: var(--paper); font-size: 1.15rem; }
.edu-card p { margin: 0; color: rgba(245, 239, 226, 0.7); font-size: 0.9rem; }

.edu-list { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 6px; }
.edu-list li {
  display: flex;
  gap: 9px;
  font-size: 0.86rem;
  color: rgba(245, 239, 226, 0.85);
}
.edu-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.edu-link {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(185, 138, 60, 0.4);
}
.edu-link:hover { color: var(--paper); }

/* ---------- Responsibility ---------- */

.responsibility { padding: 90px 0; }

.resp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.resp-item:hover { border-color: var(--gold-soft); transform: translateY(-3px); }
.resp-item svg { color: var(--rust); flex-shrink: 0; margin-top: 3px; }
.resp-item h3 { font-size: 1.02rem; margin-bottom: 4px; }
.resp-item p { margin: 0; color: var(--muted); font-size: 0.89rem; }

/* ---------- Eco / sustainability ---------- */

.eco {
  background: var(--pine);
  color: var(--paper);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.eco::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.06);
}

.eco-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.eco .section-eyebrow { color: var(--gold); }
.eco h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.4rem); }
.eco h2 em { font-style: italic; color: var(--gold); }
.eco-copy p { color: rgba(245, 239, 226, 0.85); margin-bottom: 28px; }

.eco-stats { display: flex; flex-direction: column; gap: 16px; }

.stat {
  background: rgba(255, 253, 247, 0.07);
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat b { font-family: var(--font-serif); font-size: 1.7rem; color: var(--gold); line-height: 1.2; }
.stat span { font-size: 0.9rem; color: rgba(245, 239, 226, 0.8); }

/* ---------- Reviews ---------- */

.reviews { padding: 90px 0 40px; }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.stars { color: var(--gold); letter-spacing: 2px; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-head { display: flex; align-items: center; gap: 14px; }
.review-head h3 { margin: 0; font-size: 1.02rem; font-family: var(--font-sans); font-weight: 700; }
.review-head .stars { font-size: 0.85rem; }

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.review-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.review-item {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

/* ---------- FAQ ---------- */

.faq { padding: 80px 0 30px; }

.faq-list { max-width: 820px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--rust); }

.faq-chevron {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
}
.faq-chevron::before { width: 9px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-chevron::after { width: 1.5px; height: 9px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-chevron { transform: rotate(45deg); border-color: var(--rust); color: var(--rust); }

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 70ch;
}

/* ---------- Terms snapshot ---------- */

.terms-snapshot { background: var(--cream); padding: 90px 0; }

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.snapshot-item {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.snapshot-item b {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.snapshot-item b::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.snapshot-item p { margin: 0; color: var(--muted); font-size: 0.9rem; flex: 1; }
.snapshot-item a { font-size: 0.88rem; font-weight: 600; }

.snapshot-note { margin: 26px 0 0; color: var(--muted); font-size: 0.92rem; }

/* ---------- Compliance ---------- */

.compliance { padding: 90px 0; }

.compliance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: border-color 0.25s ease;
}
.compliance-item:hover { border-color: var(--gold-soft); }
.compliance-item svg { color: var(--rust); flex-shrink: 0; margin-top: 2px; }
.compliance-item h3 { font-size: 0.98rem; margin-bottom: 4px; }
.compliance-item p { margin: 0; color: var(--muted); font-size: 0.85rem; }

/* ---------- Soft CTA ---------- */

.soft-cta {
  background: var(--espresso);
  color: var(--paper);
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.soft-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(185, 138, 60, 0.2), transparent 55%);
}
.soft-cta .container { position: relative; }
.soft-cta .section-eyebrow { color: var(--gold); justify-content: center; }
.soft-cta .section-eyebrow::before { display: none; }
.soft-cta h2 { color: var(--white); font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.soft-cta p { color: rgba(245, 239, 226, 0.78); max-width: 640px; margin: 0 auto 30px; }

.soft-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.soft-cta .btn-outline { color: var(--paper); border-color: rgba(245, 239, 226, 0.4); }
.soft-cta .btn-outline:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--espresso);
  color: rgba(245, 239, 226, 0.8);
  padding: 76px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr 1.4fr;
  gap: 36px;
  padding-bottom: 54px;
}

.footer-brand .logo { color: var(--paper); }
.footer-brand .logo:hover { color: var(--paper); }
.footer-brand .logo em { color: var(--gold); }
.footer-brand .logo-mark { background: var(--espresso-2); color: var(--gold); box-shadow: inset 0 0 0 1px rgba(185, 138, 60, 0.4); }
.footer-brand p { font-size: 0.9rem; max-width: 300px; margin: 14px 0 0; color: rgba(245, 239, 226, 0.65); }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.9rem; line-height: 1.6; }
.footer-col a { color: rgba(245, 239, 226, 0.78); }
.footer-col a:hover { color: var(--gold); }
.footer-col .footer-link { color: var(--gold); }
.footer-col .footer-link:hover { text-decoration: underline; }

.footer-contact li { color: rgba(245, 239, 226, 0.85); }

.newsletter p { font-size: 0.88rem; color: rgba(245, 239, 226, 0.65); }

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  background: var(--espresso-2);
  border: 1px solid rgba(245, 239, 226, 0.16);
  border-radius: 999px;
  padding: 6px;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--paper);
  padding: 8px 14px;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(245, 239, 226, 0.45); }
.newsletter-form button {
  background: var(--rust);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 9px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--rust-dark); }

.newsletter-consent { font-size: 0.76rem !important; color: rgba(245, 239, 226, 0.5) !important; }
.newsletter-consent a { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  border-top: 1px solid rgba(245, 239, 226, 0.12);
  padding-top: 22px;
  padding-bottom: 26px;
  font-size: 0.8rem;
  color: rgba(245, 239, 226, 0.55);
}

.footer-policy { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-policy a { color: rgba(245, 239, 226, 0.65); }
.footer-policy a:hover { color: var(--gold); }

.payments { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(245, 239, 226, 0.75);
  background: rgba(245, 239, 226, 0.08);
  border: 1px solid rgba(245, 239, 226, 0.14);
  border-radius: 6px;
  padding: 4px 9px;
}

/* ---------- Cart ---------- */

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(36, 27, 20, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  width: min(430px, 100vw);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: none; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-soft);
}
.cart-header h2 { font-size: 1.35rem; margin: 0; }

.cart-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.cart-close:hover { border-color: var(--rust); color: var(--rust); background: var(--rust-soft); }

.cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 10px;
  gap: 10px;
}
.cart-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 6px;
}
.cart-empty-title { font-size: 1.2rem; }
.cart-empty-text { color: var(--muted); font-size: 0.92rem; margin: 0 0 8px; }

.cart-browse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rust);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}
.cart-browse:hover { background: var(--rust-dark); color: var(--white); }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-item img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-size: 0.98rem; font-family: var(--font-sans); font-weight: 600; margin: 0 0 4px; }
.cart-item-price { margin: 0 0 8px; color: var(--muted); font-size: 0.85rem; }

.qty-row { display: inline-flex; align-items: center; gap: 2px; }
.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.qty-btn:hover { border-color: var(--rust); color: var(--rust); }
.qty-val { min-width: 32px; text-align: center; font-size: 0.9rem; font-weight: 600; }

.cart-item-side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item-remove {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.cart-item-remove:hover { color: var(--rust); background: var(--rust-soft); }
.cart-item-total { font-family: var(--font-serif); font-weight: 700; font-size: 1.05rem; }

.cart-footer { padding: 20px 24px 24px; border-top: 1px solid var(--line-soft); }

.cart-subtotal,
.cart-shipping {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 5px 0;
}
.cart-subtotal span:last-child { font-family: var(--font-serif); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.cart-shipping b { color: var(--pine); }

.checkout-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  background: var(--rust);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(180, 85, 45, 0.3);
  transition: all 0.22s ease;
}
.checkout-btn:hover { background: var(--rust-dark); transform: translateY(-2px); }

/* ---------- Toast ---------- */

.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(420px, calc(100vw - 40px));
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--espresso);
  color: var(--paper);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  animation: toast-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.toast-icon { color: var(--gold); display: inline-flex; flex-shrink: 0; }
.toast.hiding { animation: toast-out 0.3s ease forwards; }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes toast-out {
  to { opacity: 0; transform: translateY(10px); }
}

/* ---------- Inner page hero ---------- */

.page-hero {
  background: linear-gradient(160deg, var(--espresso) 0%, var(--espresso-2) 60%, #3A2C20 100%);
  color: var(--paper);
  padding: 74px 0 66px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 138, 60, 0.18), transparent 65%);
}

.page-hero .container { position: relative; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: rgba(245, 239, 226, 0.6);
  margin-bottom: 26px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--paper); }
.breadcrumb .sep { color: rgba(245, 239, 226, 0.4); }

.page-hero h1 { color: var(--white); max-width: 760px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { color: rgba(245, 239, 226, 0.78); max-width: 680px; margin: 14px 0 0; }
.page-hero .section-eyebrow { color: var(--gold); }

/* ---------- Inner page sections ---------- */

.page-section { padding: 84px 0; }
.page-section--beige { background: var(--cream); }

.prose { max-width: 780px; }
.prose h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.prose p { margin: 0 0 16px; color: var(--ink-soft); }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 24px; list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; color: var(--ink-soft); }
.prose a { font-weight: 600; }
.prose strong { color: var(--ink); }

/* ---------- Story (about page) ---------- */

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}
.story-copy p { color: var(--muted); }
.story-copy h2 em { font-style: italic; color: var(--rust); }

.story-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-md); }
.story-media img { width: 100%; }

.process-list { display: flex; flex-direction: column; gap: 12px; }

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.process-step:hover { border-color: var(--gold-soft); transform: translateX(4px); }

.process-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}
.process-step b { font-family: var(--font-serif); font-size: 1.12rem; }
.process-step p { margin: 4px 0 0; color: var(--muted); font-size: 0.92rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.about-stat {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.about-stat b { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--rust); line-height: 1.1; }
.about-stat span { color: var(--muted); font-size: 0.88rem; }

/* ---------- Contact ---------- */

.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card svg { color: var(--rust); margin-bottom: 14px; }
.contact-card h3 { font-size: 1.05rem; }
.contact-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.contact-card a { font-weight: 600; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form h3 { margin: 0; }
.contact-form label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 7px; color: var(--ink-soft); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--rust);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(180, 85, 45, 0.12);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

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

.form-note { font-size: 0.8rem !important; color: var(--muted); margin: 0; }
.form-note a { font-weight: 600; }
.form-hint { font-size: 0.88rem; color: var(--muted); margin: 0; }

.form-success { display: none; text-align: center; padding: 60px 34px; }
.form-success.show { display: flex; }
.form-success svg { color: var(--pine); margin: 0 auto 14px; }
.form-success h3 { font-size: 1.4rem; }
.form-success p { color: var(--muted); }

.contact-alt { display: flex; flex-direction: column; gap: 30px; }
.contact-alt h3 { font-size: 1.08rem; }
.contact-alt ul { display: flex; flex-direction: column; gap: 12px; }
.contact-alt li { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { display: block; width: 100%; height: 220px; border: 0; }

/* ---------- Checkout ---------- */

.checkout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.checkout-summary {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.checkout-summary h3 { margin-top: 0; }

.checkout-items { display: flex; flex-direction: column; margin-bottom: 14px; }

.checkout-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.checkout-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 9px;
  flex-shrink: 0;
}
.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-info b { display: block; font-size: 0.94rem; }
.checkout-item-info span { font-size: 0.8rem; color: var(--muted); }
.checkout-item-price { font-family: var(--font-serif); font-weight: 700; }

.checkout-total {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.checkout-total b { font-family: var(--font-serif); font-size: 1.1rem; }
.checkout-total .free { color: var(--pine); font-family: var(--font-sans); font-weight: 700; }
.checkout-total.grand {
  border-top: 1.5px solid var(--line);
  margin-top: 10px;
  padding-top: 16px;
  font-weight: 700;
  color: var(--ink);
}
.checkout-total.grand b { font-size: 1.4rem; color: var(--rust); }

.checkout-note { font-size: 0.8rem !important; color: var(--muted); }

.checkout-empty {
  grid-column: 1 / -1;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  box-shadow: var(--shadow-sm);
}
.checkout-empty h3 { font-size: 1.5rem; }

/* ---------- Thank you ---------- */

.thank-you-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 48px 42px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 18px;
}
.thank-you-card h2 { font-size: 1.7rem; }
.thank-you-card p { color: var(--muted); }
.thank-you-order { font-weight: 700; color: var(--rust); font-family: var(--font-sans); }

.thank-you-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 22px; }

/* ---------- Modal (reserved) ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1600;
  background: rgba(36, 27, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-dialog {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-soft);
}
.modal-header h3 { margin: 0; }
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}
.modal-content { padding: 24px; }

/* ---------- Responsive ---------- */

@media (max-width: 1023px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .edu-grid { grid-template-columns: repeat(2, 1fr); }
  .resp-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .eco-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid, .checkout-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .benefits-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .resp-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .snapshot-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { height: 74vh; min-height: 520px; }
  .hero-scroll { display: none; }
  .trust-bar-inner { justify-content: center; text-align: center; }
  .page-hero { padding: 54px 0 50px; }
  .page-section { padding: 60px 0; }
  .reviews, .compliance, .terms-snapshot, .responsibility, .education, .eco, .soft-cta { padding-top: 60px; padding-bottom: 60px; }
}

@media (max-width: 479px) {
  .benefits-grid, .product-grid, .edu-grid { gap: 14px; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .contact-form, .thank-you-card { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
