/* ============================================
   Sections styles — Maison Brindille
   ============================================ */

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(250, 245, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--kraft);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px;
  border: 1.5px solid var(--sepia);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 22px;
  color: var(--sepia);
  background: var(--paper);
}
.brand-mark-light { color: var(--cream); border-color: var(--cream); background: transparent; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
}
.brand-sub {
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--sepia-soft);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--sepia);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: currentColor;
}

.nav-actions { display: flex; gap: 8px; align-items: center; }
.icon-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--kraft);
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--sepia);
  position: relative;
  transition: all 0.2s;
}
.icon-btn:hover { background: var(--sepia); color: var(--cream); border-color: var(--sepia); }
.icon-btn-light { border-color: var(--cream); color: var(--cream); }
.icon-btn-light:hover { background: var(--cream); color: var(--sepia); }

.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 999px;
  padding: 2px 6px;
  font-size: 10px;
  font-family: "Courier New", monospace;
  font-weight: bold;
  min-width: 18px;
  text-align: center;
}

.hamburger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--kraft);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.hamburger span {
  width: 16px; height: 1px;
  background: var(--sepia);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(58, 46, 31, 0.5);
  z-index: 200;
  backdrop-filter: blur(4px);
}
.mobile-menu-inner {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100%;
  background: var(--paper);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
}
.mobile-close {
  align-self: flex-end;
  background: none; border: none;
  font-size: 32px;
  color: var(--sepia);
  cursor: pointer;
  font-family: var(--serif-display);
}
.mobile-links { display: flex; flex-direction: column; gap: 18px; margin-top: 40px; }
.mobile-links a {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 28px;
  color: var(--sepia);
  border-bottom: 1px solid var(--kraft);
  padding-bottom: 14px;
}
.mobile-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: var(--sepia-soft);
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 140px 0 60px;
  position: relative;
  z-index: 2;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 80vh;
}
.hero-text { display: flex; flex-direction: column; gap: 28px; }
.hero-text h1 em { font-style: italic; font-weight: 300; color: var(--terracotta); }
.hero-amp {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 200;
  color: var(--sage-deep);
  font-size: 0.85em;
}
.hero-lead {
  font-size: 19px;
  max-width: 520px;
  color: var(--sepia-soft);
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid var(--kraft);
}
.hero-meta-item { display: flex; flex-direction: column; line-height: 1.2; font-size: 14px; }
.hero-meta-item strong { font-family: var(--serif-display); font-style: italic; font-weight: 400; font-size: 17px; color: var(--ink); }
.hero-meta-item span { color: var(--sepia-soft); font-size: 13px; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--kraft-deep); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  justify-self: center;
  width: 100%;
  overflow: visible;
}

/* DRIED FLOWERS */
.floral-stem {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  transform-origin: 50% 100%;
}
@keyframes floralSway1 {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3.5deg); }
}
@keyframes floralSway2 {
  0%, 100% { transform: rotate(4deg); }
  50% { transform: rotate(-2.5deg); }
}
@keyframes floralSway3 {
  0%, 100% { transform: rotate(-4.5deg); }
  50% { transform: rotate(2deg); }
}
@keyframes floralSway4 {
  0%, 100% { transform: rotate(2.5deg); }
  50% { transform: rotate(-3deg); }
}
.hero-card {
  position: absolute;
  border-radius: 2px;
  box-shadow: 0 12px 30px -8px rgba(58, 46, 31, 0.25);
  display: grid;
  place-items: center;
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-card-back {
  width: 50%;
  aspect-ratio: 3/4;
  top: 0; left: 0;
  transform: rotate(-7deg);
  z-index: 1;
}
.hero-card-mid {
  width: 60%;
  aspect-ratio: 3/4;
  top: 12%; left: 20%;
  z-index: 3;
  background: var(--paper);
  border: 1px solid var(--kraft);
  display: grid;
  place-items: center;
  padding: 24px;
}
.hero-mid-content {
  font-family: var(--serif-display);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--sepia);
}
.hero-mid-divider {
  font-size: 14px;
  font-style: italic;
  color: var(--sage-deep);
  letter-spacing: 0.05em;
}
.hero-mid-year {
  font-size: 14px;
  font-style: italic;
  font-family: var(--serif-body);
  color: var(--sepia-soft);
}
.hero-mid-loc {
  font-size: 11px;
  font-family: "Courier New", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sepia-soft);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--kraft);
}
.hero-card-front {
  width: 45%;
  aspect-ratio: 3/4;
  bottom: 4%; right: 0;
  transform: rotate(6deg);
  z-index: 2;
}
.hero-stamp {
  position: absolute;
  bottom: 10%;
  left: 4%;
  z-index: 4;
  background: var(--paper);
}
.hero-tape {
  position: absolute;
  width: 80px;
  height: 22px;
  background: rgba(201, 168, 131, 0.45);
  z-index: 5;
}
.hero-tape-1 { top: 8%; left: 25%; transform: rotate(-30deg); }
.hero-tape-2 { bottom: 24%; right: 8%; transform: rotate(20deg); }

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sepia-soft);
}
.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: var(--kraft-deep);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* MARQUEE */
.marquee {
  background: var(--sepia);
  color: var(--cream);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 60s linear infinite;
  width: fit-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  white-space: nowrap;
}
.marquee-mark { color: var(--kraft); }
@keyframes marquee {
  to { transform: translateX(-33.333%); }
}

/* SECTION HEADS */
.section-head { margin-bottom: 56px; display: flex; gap: 40px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }
.section-head-flex { align-items: flex-end; }
.eyebrow-center::before { display: none; }
.eyebrow-center { padding: 0; }
.eyebrow-light { color: var(--cream); }
.eyebrow-light::before { background: var(--cream); }
.section-lead { max-width: 420px; color: var(--sepia-soft); }
.section-cream { background: var(--cream); }
.section-cream::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--paper), var(--cream));
  pointer-events: none;
}

.section-dark { background: var(--sepia); color: var(--cream); }
.section-dark .h-light { color: var(--cream); }
.section-dark h2 em { color: var(--kraft); }
.h-light { color: var(--cream); }

.section-kraft { background: var(--cream-warm); }

/* CATALOG */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--kraft);
}
.chip-count {
  font-family: "Courier New", monospace;
  font-size: 10px;
  background: var(--cream);
  color: var(--sepia);
  padding: 1px 6px;
  border-radius: 999px;
  margin-left: 4px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
.product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.product-card:hover { transform: translateY(-4px); }
body.cards-stamped .product-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--kraft); }

.product-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-img { position: absolute; inset: 0; transition: transform 0.5s ease; }
.product-card:hover .product-img { transform: scale(1.04); }

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--paper);
  border: 1px solid var(--sepia);
  color: var(--sepia);
  padding: 4px 10px;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 12px;
  border-radius: 999px;
  z-index: 2;
}

.product-quick {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--sepia);
  color: var(--sepia);
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 14px;
  cursor: pointer;
  transform: translateY(120%);
  transition: transform 0.35s ease;
  border-radius: 999px;
}
.product-quick.show { transform: translateY(0); }
.product-quick:hover { background: var(--sepia); color: var(--cream); }

.product-info { padding: 18px 4px 4px; }
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sepia-soft);
  margin-bottom: 6px;
}
.product-price {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
}
.product-unit {
  color: var(--sepia-soft);
  font-size: 12px;
  font-family: "Courier New", monospace;
  margin-left: 4px;
}
.product-name { margin-bottom: 4px; }
.product-desc { font-size: 14px; color: var(--sepia-soft); }
body.cards-bordered .product-card,
body.cards-shadow .product-card,
body.cards-stamped .product-card { padding: 14px; }
body.cards-bordered .product-info,
body.cards-shadow .product-info,
body.cards-stamped .product-info { padding: 14px 0 4px; }

.catalog-foot { text-align: center; margin-top: 56px; }

/* BUNDLE CARD */
.bundle-card .product-info { padding: 20px 6px 16px; }
.bundle-includes {
  list-style: none;
  margin: 12px 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bundle-includes li {
  font-size: 13px;
  color: var(--sepia-soft);
  font-style: italic;
  padding-left: 16px;
  position: relative;
}
.bundle-includes li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--kraft-deep);
  font-style: normal;
}
.bundle-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding: 12px 20px;
  font-size: 15px;
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  text-align: center;
  align-items: center;
}
.step-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 56px;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}
.step-mark {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-bottom: 8px;
}
.step-title { font-style: italic; }
.step-text { font-size: 15px; color: var(--sepia-soft); max-width: 260px; }
.step-thread {
  position: absolute;
  top: 92px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--kraft) 0, var(--kraft) 4px, transparent 4px, transparent 8px);
}

/* CONFIGURATOR */
.config {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.config-preview {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.config-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  display: grid;
  place-items: center;
  background:
    linear-gradient(var(--cream-warm), var(--cream-warm)),
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(58,46,31,0.04) 20px, rgba(58,46,31,0.04) 21px);
  border: 1px solid var(--kraft);
  padding: 8%;
  border-radius: 2px;
}
.config-card {
  width: 100%;
  height: 100%;
  border: 1px solid;
  display: grid;
  place-items: center;
  padding: 8%;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px -6px rgba(58,46,31,0.18);
  transition: all 0.4s ease;
}
.config-shape-arch { border-top-left-radius: 50% 30%; border-top-right-radius: 50% 30%; }
.config-shape-round { border-radius: 50%; }
.config-paper-kraft { background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0, rgba(0,0,0,0.02) 2px, transparent 2px, transparent 4px); }
.config-paper-coton { background-image: radial-gradient(circle at 20% 30%, rgba(0,0,0,0.02) 0, transparent 40%), radial-gradient(circle at 80% 70%, rgba(0,0,0,0.02) 0, transparent 40%); }

.config-card-inner {
  font-family: var(--serif-display);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.config-eyebrow {
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.config-names {
  font-size: clamp(28px, 4vw, 48px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.config-amp { font-size: 0.7em; opacity: 0.85; }
.config-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 14px;
  margin: 4px 0;
}
.config-divider span {
  flex: 1;
  border-top: 1px solid;
  opacity: 0.4;
}
.config-date { font-size: 16px; font-style: italic; }
.config-place {
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}
.config-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  font-style: italic;
  font-family: var(--serif-body);
}
.config-foot .hand { font-size: 18px; }

.config-shadow {
  position: absolute;
  bottom: 4%;
  left: 10%;
  right: 10%;
  height: 16px;
  background: radial-gradient(ellipse, rgba(58,46,31,0.18), transparent 70%);
  filter: blur(8px);
  z-index: 1;
}
.config-tabs {
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sepia-soft);
}
.config-tabs .hand { font-size: 22px; color: var(--terracotta); text-transform: none; letter-spacing: 0; }

.config-panel { display: flex; flex-direction: column; gap: 24px; }
.config-group { display: flex; flex-direction: column; gap: 10px; }
.config-label {
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sepia-soft);
}
.config-qty-val { color: var(--terracotta); font-family: var(--serif-display); font-style: italic; font-size: 14px; text-transform: none; letter-spacing: 0; }
.config-input {
  padding: 12px 16px;
  font-family: var(--serif-body);
  font-size: 16px;
  background: var(--paper);
  border: 1px solid var(--kraft);
  color: var(--sepia);
  border-radius: 0;
  font-style: italic;
  transition: border-color 0.2s;
}
.config-input:focus { outline: none; border-color: var(--sepia); }
.config-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.swatch-row { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  background: transparent;
  border: 1px solid var(--kraft);
  padding: 6px 12px 6px 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s;
}
.swatch:hover { border-color: var(--sepia); }
.swatch.active { border-color: var(--sepia); background: var(--sepia); color: var(--cream); }
.swatch-bg, .swatch-ink, .swatch-accent {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(58,46,31,0.2);
}
.swatch-label {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 14px;
  margin-left: 4px;
}

.config-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.config-pill {
  padding: 8px 14px;
  border: 1px solid var(--kraft);
  background: transparent;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 13px;
  color: var(--sepia);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s;
}
.config-pill:hover { border-color: var(--sepia); }
.config-pill.active { background: var(--sepia); color: var(--cream); border-color: var(--sepia); }

.config-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 1px;
  background: var(--kraft);
  outline: none;
}
.config-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  background: var(--terracotta);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--terracotta);
}
.config-range::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--terracotta);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--paper);
}
.config-range-marks {
  display: flex;
  justify-content: space-between;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: var(--sepia-soft);
  margin-top: 4px;
}

.config-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--kraft);
  border-bottom: 1px solid var(--kraft);
  margin-top: 12px;
  gap: 16px;
  flex-wrap: wrap;
}
.config-total { display: flex; flex-direction: column; }
.config-total-label { font-family: "Courier New", monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sepia-soft); }
.config-total-val { font-family: var(--serif-display); font-style: italic; font-size: 36px; color: var(--ink); }
.config-note {
  font-size: 14px;
  color: var(--sepia-soft);
  font-style: italic;
}
.config-note .hand { color: var(--terracotta); margin-right: 6px; }

/* CAROUSEL */
.carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -32px;
  padding: 20px 0;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 32px;
}
.carousel-card {
  flex: 0 0 336px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.carousel-card.active { opacity: 1; transform: scale(1.02); }
.carousel-img {
  aspect-ratio: 3/4;
  width: 100%;
}
.carousel-info { color: var(--cream); padding: 4px; }
.carousel-info h3 { color: var(--cream); margin-bottom: 6px; }
.carousel-info p { font-size: 14px; opacity: 0.75; margin-bottom: 12px; }

.carousel-nav { display: flex; align-items: center; gap: 16px; }
.carousel-count {
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: var(--cream);
  letter-spacing: 0.1em;
}
.carousel-count strong { font-family: var(--serif-display); font-style: italic; font-size: 22px; font-weight: 400; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--cream);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.carousel-dot.active { background: var(--cream); }

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.testi-stars { color: var(--terracotta); letter-spacing: 4px; font-size: 14px; }
.testi-quote {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--sepia);
  margin: 0;
  position: relative;
}
.testi-mark {
  font-family: var(--serif-display);
  font-size: 60px;
  color: var(--kraft);
  line-height: 0.5;
  margin-right: 4px;
  vertical-align: -10px;
}
.testi-foot {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--kraft);
}
.testi-foot strong { font-family: var(--serif-display); font-style: italic; font-weight: 400; font-size: 17px; }
.testi-foot span { font-family: "Courier New", monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sepia-soft); }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--kraft);
}
.gallery-tile.tall { grid-row: span 2; }
.gallery-img { position: absolute; inset: 0; transition: transform 0.6s ease; }
.gallery-tile:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,46,31,0.6), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-tile:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  font-family: var(--serif-display);
  font-style: italic;
  color: var(--cream);
  font-size: 14px;
}
.gallery-arrow { color: var(--cream); }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.about-img-main {
  position: absolute;
  inset: 0;
  width: 80%;
  height: 80%;
}
.about-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 40%;
  border: 8px solid var(--cream-warm);
  z-index: 2;
}
.about-stamp {
  position: absolute;
  top: 12%;
  right: 8%;
  z-index: 3;
  background: var(--paper);
}
.about-text { display: flex; flex-direction: column; gap: 18px; }
.about-text h2 em { color: var(--terracotta); font-style: italic; }
.about-text p { font-size: 17px; color: var(--sepia); line-height: 1.65; }
.about-text p em { color: var(--terracotta); font-weight: 500; }
.about-sign { margin: 8px 0; }
.about-sign .hand { font-size: 32px; color: var(--terracotta); }
.about-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--kraft);
  margin-top: 8px;
}
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { font-family: var(--serif-display); font-style: italic; font-weight: 400; font-size: 28px; color: var(--ink); }
.about-stats span { font-family: "Courier New", monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sepia-soft); }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.faq-head { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.faq-head h2 em { color: var(--terracotta); }
.faq-lead { color: var(--sepia-soft); }
.link-under { border-bottom: 1px solid currentColor; }
.link-under:hover { color: var(--terracotta); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--kraft); }
.faq-item:first-child { border-top: 1px solid var(--kraft); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  color: var(--sepia);
}
.faq-num {
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  flex-shrink: 0;
}
.faq-q-text {
  flex: 1;
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
}
.faq-toggle {
  font-family: var(--serif-display);
  font-size: 24px;
  color: var(--sepia);
  width: 32px;
  text-align: center;
}
.faq-a {
  padding: 0 0 28px 50px;
  font-size: 16px;
  color: var(--sepia-soft);
  max-width: 600px;
  line-height: 1.6;
}

/* NEWSLETTER */
.section-newsletter {
  background: var(--sepia);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section-newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.95 0 0 0 0 0.85 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
}
.newsletter {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.newsletter h2 { color: var(--cream); }
.newsletter h2 em { color: var(--kraft); }
.newsletter-stamp {
  background: transparent;
  color: var(--kraft);
  border-color: var(--kraft);
  margin-bottom: 8px;
}
.newsletter-lead { color: rgba(244, 237, 224, 0.7); max-width: 480px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 480px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.newsletter-input {
  flex: 1;
  min-width: 200px;
  background: transparent;
  border: 1px solid var(--kraft);
  color: var(--cream);
  padding: 12px 16px;
  font-family: var(--serif-body);
  font-size: 16px;
  font-style: italic;
  border-radius: 999px;
}
.newsletter-input:focus { outline: none; border-color: var(--cream); }
.newsletter-input.error { border-color: var(--terracotta); }
.newsletter-input::placeholder { color: rgba(244, 237, 224, 0.4); }
.newsletter-form .btn { background: var(--cream); color: var(--sepia); border-color: var(--cream); }
.newsletter-form .btn:hover { background: var(--kraft); border-color: var(--kraft); }
.newsletter-fine { font-size: 12px; color: rgba(244, 237, 224, 0.5); margin-top: 4px; }
.newsletter-success {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 16px 24px;
  border: 1px dashed var(--kraft);
  border-radius: 4px;
}
.newsletter-success .hand { color: var(--kraft); }
.newsletter-err { color: var(--kraft); font-size: 14px; font-style: italic; }

/* FOOTER */
.footer { background: var(--ink); color: var(--cream); padding-top: 80px; position: relative; z-index: 2; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand .brand-name { color: var(--cream); }
.footer-blurb {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(244, 237, 224, 0.6);
  line-height: 1.6;
  max-width: 320px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kraft);
  margin-bottom: 8px;
  font-weight: normal;
}
.footer-col a {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: rgba(244, 237, 224, 0.75);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-addr {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 15px;
  color: rgba(244, 237, 224, 0.75);
  line-height: 1.6;
}
.footer-addr .hand { color: var(--kraft); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(244, 237, 224, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
}
.footer-social a:hover { background: var(--kraft); border-color: var(--kraft); color: var(--ink); }

.footer-bottom {
  border-top: 1px solid rgba(244, 237, 224, 0.15);
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(244, 237, 224, 0.5);
  font-family: "Courier New", monospace;
  letter-spacing: 0.05em;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a:hover { color: var(--cream); }

/* CART DRAWER */
.drawer-bg {
  position: fixed;
  inset: 0;
  background: rgba(58, 46, 31, 0.4);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.drawer-bg.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background: var(--paper);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.drawer.show { transform: translateX(0); }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--kraft);
}
.drawer-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}
.drawer-items { flex: 1; overflow-y: auto; padding: 12px 28px; }
.drawer-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--kraft);
}
.drawer-thumb { width: 80px; height: 100px; flex-shrink: 0; }
.drawer-item-info { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.drawer-item-info h5 { font-family: var(--serif-display); font-style: italic; font-size: 17px; }
.drawer-item-price {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 16px;
  color: var(--terracotta);
}
.drawer-qty { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.drawer-qty button {
  width: 26px; height: 26px;
  background: transparent;
  border: 1px solid var(--kraft);
  border-radius: 50%;
  cursor: pointer;
  color: var(--sepia);
}
.drawer-qty span {
  font-family: "Courier New", monospace;
  font-size: 13px;
  min-width: 24px;
  text-align: center;
}
.drawer-remove {
  margin-left: auto;
  background: transparent;
  border: none;
  font-family: var(--serif-display);
  font-style: italic;
  color: var(--sepia-soft);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  width: auto !important;
  border-radius: 0 !important;
}
.drawer-remove:hover { color: var(--terracotta); }

.drawer-foot {
  padding: 20px 28px;
  border-top: 1px solid var(--kraft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.drawer-total span { font-family: "Courier New", monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sepia-soft); }
.drawer-total strong { font-family: var(--serif-display); font-style: italic; font-size: 28px; font-weight: 400; color: var(--ink); }
.drawer-fine { font-size: 12px; color: var(--sepia-soft); }
.drawer-checkout { width: 100%; justify-content: center; padding: 16px; }

/* TOAST */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sepia);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 400;
  box-shadow: 0 8px 24px rgba(58, 46, 31, 0.3);
  animation: toastIn 0.3s ease forwards;
}
.toast-mark {
  width: 22px; height: 22px;
  background: var(--kraft);
  color: var(--sepia);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: bold;
}
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 900px) {
  .hero-inner, .config, .about-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .config-preview, .faq-head { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-thread { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero { padding-top: 110px; }
  .hero-meta { gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
