/* ===== Futonrama — design tokens (from pitch deck) ===== */
:root {
  --cream: #F6ECDC;
  --sand: #EDE1CD;
  --sand-2: #E1CFAE;
  --tan: #C9B79A;
  --muted: #8A7256;
  --ink: #2B1B12;
  --brown-950: #3B2A1F;
  --brown-800: #5A4632;
  --brown-700: #8C6F52;
  --terracotta: #A85C2E;
  --terracotta-light: #C08A55;
  --ok: #4C7A5A;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 12px 32px -16px rgba(43, 27, 18, 0.35);
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: var(--brown-950);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}
#cookie-consent-banner p {
  margin: 0;
  font-size: 0.92rem;
  max-width: 640px;
}
.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-consent-actions button {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
}
.cookie-consent-actions .btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}
.cookie-consent-actions .btn-primary:hover { background: var(--terracotta-light); }
.cookie-consent-actions .btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--brown-700);
}
.cookie-consent-actions .btn-ghost:hover { background: var(--brown-800); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; line-height: 1.15; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--terracotta-light); }

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--dark { background: var(--brown-950); color: var(--cream); }
.section--sand { background: var(--sand); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: inherit; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: 12px; }
.section--dark .section-head p { color: var(--tan); }

.disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}
.section--dark .disclaimer { color: var(--tan); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--terracotta); color: var(--cream); }
.btn-primary:hover { background: #954e26; box-shadow: var(--shadow-soft); }
.btn-primary:disabled { background: var(--tan); color: var(--brown-800); cursor: not-allowed; }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(246,236,220,0.4); }
.btn-ghost:hover { border-color: var(--cream); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--brown-800); }
.btn-outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(59, 42, 31, 0.96);
  backdrop-filter: blur(6px);
  color: var(--cream);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.logo svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--tan);
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
}
.cart-count {
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  padding: 8px;
}

@media (max-width: 820px) {
  .nav-links { position: fixed; top: 76px; left: 0; right: 0; background: var(--brown-950); flex-direction: column; align-items: flex-start; padding: 8px 24px 24px; gap: 4px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all 0.2s ease; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(246,236,220,0.08); }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: inline-flex; }
}

/* ===== Hero ===== */
.hero {
  background: var(--brown-950);
  color: var(--cream);
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 72px;
  min-height: 560px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  letter-spacing: 0.01em;
}
.hero .lede {
  font-size: 1.2rem;
  color: var(--tan);
  margin: 22px 0 34px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
  color: var(--tan);
  font-size: 0.85rem;
}
.trust-row li { display: flex; align-items: center; gap: 8px; }

/* ===== Stat / value comparison ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.compare-card {
  background: var(--cream);
  border: 1px solid var(--sand-2);
  border-radius: var(--radius);
  padding: 28px;
}
.compare-card.is-hero {
  background: var(--brown-950);
  color: var(--cream);
  border-color: transparent;
}
.compare-label { font-size: 0.85rem; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.compare-card.is-hero .compare-label { color: var(--tan); }
.compare-value { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.7rem); color: var(--ink); }
.compare-card.is-hero .compare-value { color: var(--terracotta-light); }

/* ===== Flow diagram ===== */
.flow {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 8px;
}
.flow-step {
  flex: 1 1 160px;
  background: var(--cream);
  border: 1px solid var(--sand-2);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.flow-step.is-hub { background: var(--brown-950); color: var(--cream); border-color: transparent; }
.flow-step strong { display: block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; color: var(--ink); }
.flow-step span { font-size: 0.82rem; color: var(--muted); }
.flow-step.is-hub strong { color: var(--cream); }
.flow-step.is-hub span { color: var(--tan); }
.flow-arrow {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  margin: 0 4px;
}

/* ===== Cards / grid ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card {
  background: var(--cream);
  border: 1px solid var(--sand-2);
  border-radius: var(--radius);
  padding: 28px;
}
.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--brown-950);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }

.card--photo { padding: 0; overflow: hidden; }
.card--photo .card-photo { aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.card--photo .card-photo img { width: 100%; height: 100%; object-fit: cover; }
.card--photo .card-body { padding: 22px 24px 26px; }

/* ===== Split media layout (photo + content) ===== */
.split-media { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: stretch; }
.split-media.is-reverse { grid-template-columns: 1.1fr 0.9fr; }
.split-media.is-reverse .split-media-figure { order: 2; }
.split-media-figure { border-radius: var(--radius); overflow: hidden; min-height: 280px; }
.split-media-figure img { width: 100%; height: 100%; object-fit: cover; }
.split-media-body { display: flex; flex-direction: column; gap: 16px; }

/* ===== Full-bleed photo banner ===== */
.photo-banner { border-radius: var(--radius); overflow: hidden; aspect-ratio: 21/9; margin-top: 8px; }
.photo-banner img { width: 100%; height: 100%; object-fit: cover; }

/* ===== CTA band with background photo ===== */
.cta-photo {
  position: relative;
  padding: 88px 0;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.cta-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(59,42,31,0.82), rgba(59,42,31,0.9));
  z-index: 1;
}
.cta-photo .wrap { position: relative; z-index: 2; }

/* ===== Table ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--sand-2); }
table.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--cream); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--sand-2); }
.compare-table thead th { background: var(--brown-950); color: var(--cream); font-weight: 600; }
.compare-table thead th.is-brand { background: var(--terracotta); }
.compare-table tbody th { font-weight: 600; color: var(--muted); width: 220px; }
.compare-table td.is-brand { background: var(--sand-2); color: var(--terracotta); font-weight: 700; }
.compare-table tr:last-child td, .compare-table tr:last-child th { border-bottom: none; }

/* ===== Footer ===== */
.site-footer { background: var(--brown-950); color: var(--tan); padding: 56px 0 28px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { max-width: 320px; color: var(--tan); font-size: 0.9rem; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; font-size: 0.9rem; color: var(--tan); margin-bottom: 10px; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(246,236,220,0.12); padding-top: 22px; font-size: 0.8rem; color: var(--brown-700); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ===== Page hero (interior pages) ===== */
.page-hero { background: var(--brown-950); color: var(--cream); padding: 64px 0 56px; }
.page-hero h1 { font-size: clamp(2.1rem, 4vw, 3rem); }
.page-hero .lede { color: var(--tan); font-size: 1.05rem; margin-top: 14px; max-width: 560px; }
.breadcrumb { font-size: 0.82rem; color: var(--tan); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--cream); }

/* ===== Product page ===== */
.product-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand-2);
  background: var(--sand);
  aspect-ratio: 4/3;
}
.gallery-main img, .gallery-main .art { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.gallery-thumb {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  overflow: hidden;
  background: var(--sand);
  cursor: pointer;
}
.gallery-thumb.active { border-color: var(--terracotta); }
.gallery-thumb img, .gallery-thumb .art { width: 100%; height: 100%; object-fit: cover; }

.art { display: flex; align-items: center; justify-content: center; background: linear-gradient(155deg, var(--sand) 0%, var(--sand-2) 100%); }
.art svg { width: 42%; height: 42%; color: var(--terracotta); opacity: 0.85; }
.gallery-thumb .art svg { width: 46%; height: 46%; }

.price-row { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 6px; }
.price-now { font-family: var(--font-display); font-size: 2.1rem; color: var(--terracotta); }
.price-was { font-size: 1rem; color: var(--muted); text-decoration: line-through; }

.option-group { margin: 26px 0; }
.option-label { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--brown-800); margin-bottom: 10px; }
.option-label .sel { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--muted); }

.size-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.size-opt {
  border: 1.5px solid var(--sand-2);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
  background: var(--cream);
  transition: border-color .15s ease, background .15s ease;
}
.size-opt strong { display: block; font-size: 0.92rem; }
.size-opt span { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.size-opt.selected { border-color: var(--terracotta); background: var(--sand-2); }

.color-options { display: flex; gap: 12px; }
.color-opt {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  border: none; background: none; padding: 4px;
}
.swatch { width: 34px; height: 34px; border-radius: 999px; border: 2px solid transparent; box-shadow: inset 0 0 0 1px rgba(43,27,18,0.15); transition: border-color .15s ease; }
.color-opt.selected .swatch { border-color: var(--terracotta); }
.color-opt small { font-size: 0.76rem; color: var(--muted); }

.qty-row { display: flex; align-items: center; gap: 14px; margin: 24px 0; }
.qty-control { display: inline-flex; align-items: center; border: 1.5px solid var(--sand-2); border-radius: 999px; overflow: hidden; }
.qty-control button { width: 38px; height: 38px; background: var(--sand); border: none; font-size: 1.1rem; color: var(--ink); }
.qty-control input { width: 44px; text-align: center; border: none; background: transparent; font-size: 1rem; font-family: inherit; }

.included-list { margin: 8px 0 0; }
.included-list li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: 0.93rem; color: var(--ink); }
.included-list svg { flex-shrink: 0; color: var(--ok); margin-top: 2px; }

.accordion { border-top: 1px solid var(--sand-2); }
.accordion-item { border-bottom: 1px solid var(--sand-2); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ink);
  text-align: left;
}
.accordion-trigger .chev { transition: transform .2s ease; color: var(--terracotta); flex-shrink: 0; margin-left: 12px; }
.accordion-item.open .accordion-trigger .chev { transform: rotate(180deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.accordion-item.open .accordion-panel { max-height: 400px; }
.accordion-panel-inner { padding: 0 2px 20px; color: var(--muted); font-size: 0.93rem; }

.shipping-note { display: flex; gap: 10px; align-items: center; background: var(--sand); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 0.85rem; color: var(--brown-800); margin-top: 22px; }
.shipping-note svg { flex-shrink: 0; color: var(--terracotta); }

/* ===== Forms ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--brown-800); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sand-2);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--terracotta); }
.field textarea { resize: vertical; min-height: 120px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter-form { max-width: 520px; margin: 0 auto; }
.newsletter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-row input[type="email"] {
  flex: 1 1 240px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sand-2);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}
.newsletter-row input[type="email"]:focus { outline: none; border-color: var(--terracotta); }
.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
}
.newsletter-consent input { margin-top: 3px; flex-shrink: 0; }
.newsletter-status {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: var(--terracotta);
  min-height: 1.2em;
}

/* ===== Cart ===== */
.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--sand-2);
}
.cart-item .thumb { width: 84px; height: 84px; border-radius: var(--radius-sm); overflow: hidden; background: var(--sand); }
.cart-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item .thumb .art svg { width: 50%; height: 50%; }
.cart-item .meta strong { display: block; font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 4px; }
.cart-item .meta span { display: block; font-size: 0.82rem; color: var(--muted); }
.cart-item .line-price { font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; white-space: nowrap; }
.cart-item .remove-btn { background: none; border: none; color: var(--muted); font-size: 0.8rem; text-decoration: underline; margin-top: 6px; }

.summary-card { background: var(--sand); border-radius: var(--radius); padding: 26px; position: sticky; top: 96px; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.94rem; padding: 8px 0; color: var(--brown-800); }
.summary-row.total { font-weight: 700; font-size: 1.15rem; color: var(--ink); border-top: 1px solid var(--sand-2); margin-top: 10px; padding-top: 16px; }

.empty-state { text-align: center; padding: 80px 20px; }
.empty-state svg { width: 64px; height: 64px; color: var(--tan); margin: 0 auto 20px; }
.empty-state h2 { margin-bottom: 10px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

/* ===== Checkout ===== */
.checkout-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.checkout-steps { display: flex; gap: 10px; margin-bottom: 34px; font-size: 0.82rem; color: var(--muted); }
.checkout-steps span.on { color: var(--terracotta); font-weight: 700; }

.payment-placeholder {
  border: 1.5px dashed var(--terracotta);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(168,92,46,0.06);
  margin-top: 20px;
}
.payment-placeholder .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.payment-placeholder p { color: var(--brown-800); font-size: 0.9rem; margin-bottom: 0; }
.payment-methods { display: flex; gap: 10px; margin: 16px 0; }
.payment-methods .pm { flex: 1; border: 1.5px solid var(--sand-2); border-radius: var(--radius-sm); padding: 12px; text-align: center; font-size: 0.82rem; font-weight: 600; color: var(--muted); background: var(--cream); }
.payment-methods .pm.selected { border-color: var(--terracotta); color: var(--terracotta); background: var(--sand); }

.order-confirm { text-align: center; padding: 60px 20px; }
.order-confirm .check-badge {
  width: 78px; height: 78px; border-radius: 999px; background: var(--ok);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.order-confirm .check-badge svg { width: 38px; height: 38px; color: var(--cream); }
.order-confirm h1 { margin-bottom: 12px; }
.order-confirm p { color: var(--muted); max-width: 480px; margin: 0 auto 8px; }
.order-id { display: inline-block; background: var(--sand); padding: 8px 16px; border-radius: 999px; font-family: var(--font-display); margin: 18px 0 30px; }

/* ===== Founder / About ===== */
.founder-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--brown-950);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
}
.founder-card img { border-radius: var(--radius-sm); width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.founder-card .role { color: var(--terracotta-light); font-weight: 600; font-size: 0.9rem; margin: 4px 0 16px; }
.founder-card p { color: var(--tan); font-size: 0.95rem; }

.timeline { border-left: 2px solid var(--sand-2); padding-left: 28px; margin-left: 6px; }
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -34px; top: 4px; width: 12px; height: 12px; border-radius: 999px; background: var(--terracotta); border: 3px solid var(--cream); }
.timeline-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.timeline-item p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--brown-950);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 100;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { color: var(--ok); flex-shrink: 0; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-figure { order: -1; }
  .product-layout, .checkout-layout, .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .split-media, .split-media.is-reverse { grid-template-columns: 1fr; }
  .split-media-figure { order: -1; min-height: 220px; }
  .photo-banner { aspect-ratio: 4/3; }
  .gallery-thumbs { grid-template-columns: repeat(5, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-card img { max-width: 180px; margin: 0 auto; }
  .footer-top { flex-direction: column; }
  .flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
  .form-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 64px 1fr; grid-template-areas: "thumb meta" "thumb price"; }
  .cart-item .thumb { grid-area: thumb; width: 64px; height: 64px; }
  .cart-item .meta { grid-area: meta; }
  .cart-item .line-price { grid-area: price; }
  .summary-card { position: static; }
}
@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .size-options { grid-template-columns: 1fr; }
}
