/* Lumina — Warm e-commerce */

:root {
  --bg: #faf6f0;
  --bg-alt: #f3ece2;
  --bg-card: #fffcf8;
  --bg-warm: #ebe3d6;
  --bg-dark: #2c2419;
  --text: #2a2218;
  --text-muted: #6b5f52;
  --text-subtle: #9a8f82;
  --accent: #b8732a;
  --accent-hover: #9a6122;
  --accent-glow: rgba(255, 190, 110, 0.35);
  --accent-soft: rgba(184, 115, 42, 0.12);
  --border: rgba(107, 95, 82, 0.14);
  --border-dark: rgba(107, 95, 82, 0.22);
  --shadow-sm: 0 1px 3px rgba(60, 40, 20, 0.06);
  --shadow: 0 8px 32px rgba(60, 40, 20, 0.08);
  --shadow-warm: 0 12px 40px rgba(184, 115, 42, 0.1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --max-w: 1200px;
  --narrow: 720px;
  --header-h: 72px;
  --announce-h: 36px;
  --radius: 8px;
  --radius-lg: 12px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--announce-h) + 16px);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
  position: relative;
}

/* Subtle warm atmosphere */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-warmth {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(255, 200, 120, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 95% 20%, rgba(210, 170, 120, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(196, 122, 42, 0.06) 0%, transparent 55%);
}

.ambient-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, .announcement-bar, .header, .footer, .sticky-cta {
  position: relative;
  z-index: 1;
}

body.has-sticky-cta { padding-bottom: 72px; }

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

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

.container {
  width: min(var(--max-w), 100% - 40px);
  margin: 0 auto;
}

.container-narrow { width: min(var(--narrow), 100% - 40px); }

/* Announcement bar */
.announcement-bar {
  background: linear-gradient(90deg, #3d3228 0%, #2c2419 50%, #3d3228 100%);
  color: #f5efe6;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(250, 246, 240, 0.95) 0%,
    transparent 18%,
    transparent 82%,
    rgba(250, 246, 240, 0.95) 100%
  );
  z-index: 0;
}

.header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  opacity: 0.96;
  transition: opacity 0.2s;
}

.logo-lockup:hover { opacity: 1; }

.logo-icon {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text);
  line-height: 1;
}

.logo-icon-footer {
  width: 40px;
  height: 40px;
}

.logo-wordmark-footer {
  color: #f5efe6;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

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

.lang-toggle {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 12px;
  cursor: pointer;
  color: var(--text-muted);
}

.lang-toggle:hover { border-color: var(--border-dark); color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #3d3228 0%, #2c2419 100%);
  color: #f5efe6;
  box-shadow: var(--shadow-sm), 0 4px 16px rgba(44, 36, 25, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4a3d30 0%, #3d3228 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-warm);
}

.btn-outline {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border-dark);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: #fff;
  color: var(--accent-hover);
}

.btn-nav { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.link-arrow {
  font-weight: 600;
  color: var(--accent);
}

.link-arrow:hover { text-decoration: underline; }

/* Product hero — Shopify product page */
.product-hero {
  padding: clamp(32px, 5vw, 56px) 0 clamp(48px, 6vw, 72px);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.product-gallery-main {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.lamp-showcase {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #f0f0f0;
}

.lamp-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 65%, rgba(255, 180, 80, 0.35) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 1s var(--ease);
  pointer-events: none;
  z-index: 1;
}

.lamp-showcase.lit .lamp-glow { opacity: 1; }

.lamp-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s var(--ease);
}

.lamp-off {
  opacity: 1;
  z-index: 2;
  filter: brightness(1.7) contrast(0.75) saturate(0.15);
}

.lamp-on { opacity: 0; z-index: 2; }
.lamp-showcase.lit .lamp-off { opacity: 0; }
.lamp-showcase.lit .lamp-on { opacity: 1; filter: none; }

.lamp-toggle {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-family: var(--font);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.toggle-track {
  width: 36px;
  height: 20px;
  background: var(--border-dark);
  border-radius: 999px;
  position: relative;
  transition: background 0.3s;
}

.lamp-showcase.lit .toggle-track { background: var(--accent); }

.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.lamp-showcase.lit .toggle-thumb { transform: translateX(16px); }

.lamp-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.lamp-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-dark);
  transition: background 0.3s;
}

.lamp-showcase.lit ~ .lamp-status .lamp-status-dot,
.product-gallery-main:has(.lamp-showcase.lit) .lamp-status-dot {
  background: var(--accent);
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.gallery-thumb {
  flex: 1;
  max-width: 80px;
  aspect-ratio: 1;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--bg-alt);
  transition: border-color 0.2s;
}

.gallery-thumb.is-active { border-color: var(--text); }

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb img.thumb-deferred:not([src]) {
  background: var(--bg-card);
}

/* Product info / buy box */
.product-slogan {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 10px;
  text-transform: none;
}

.product-leadtime {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.product-title em {
  font-style: italic;
  color: var(--accent);
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-price-note {
  font-size: 14px;
  color: var(--text-subtle);
}

.product-description {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.product-option { margin-bottom: 24px; }

.option-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.variant-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.variant-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color 0.2s, background 0.2s;
}

.variant-btn:hover { border-color: var(--text); }

.variant-btn-active {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 240, 220, 0.5) 100%);
  box-shadow: inset 0 0 0 1px var(--accent), var(--shadow-warm);
}

.variant-name { font-size: 16px; font-weight: 700; }
.variant-price { font-size: 13px; color: var(--text-muted); }

.variant-badge {
  position: absolute;
  top: -8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
}

.btn-add-cart { margin-bottom: 24px; font-size: 15px; padding: 16px 28px; }

.product-trust-list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.product-trust-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0 6px 24px;
  position: relative;
}

.product-trust-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Value bar */
.value-bar {
  background: linear-gradient(90deg, var(--bg-warm) 0%, var(--bg-alt) 50%, var(--bg-warm) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.value-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.value-icon svg {
  width: 22px;
  height: 22px;
}

.value-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Sections */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-warm) 100%);
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
}

/* Split block */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.split-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.split-copy p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Material + story */
.material-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.material-note-icon {
  flex-shrink: 0;
  color: var(--text-muted);
}

.material-note-icon svg { width: 22px; height: 22px; }

.material-note strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.material-note p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.story-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.story-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}

.story-copy p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.story-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* Experience — compare slider */
.experience-section { text-align: center; }

.compare-slider {
  max-width: 520px;
  margin: 0 auto 48px;
}

.compare-slider-inner {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  user-select: none;
  cursor: col-resize;
}

.compare-slider-base,
.compare-slider-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compare-off-filter {
  filter: brightness(1.7) contrast(0.75) saturate(0.15);
}

.compare-slider-overlay {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid #fff;
}

.compare-slider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 520px;
  max-width: 100vw;
  height: 100%;
}

.compare-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  margin-left: -22px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.25);
}

.compare-slider-knob {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.compare-slider-label {
  position: absolute;
  bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  pointer-events: none;
  z-index: 4;
}

.compare-slider-label-left { left: 14px; }
.compare-slider-label-right { right: 14px; }

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.usecase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.usecase-card:hover { box-shadow: var(--shadow); }

.usecase-images {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.usecase-off,
.usecase-on {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s var(--ease);
}

.usecase-off {
  filter: brightness(1.7) contrast(0.75) saturate(0.15);
  opacity: 1;
}

.usecase-on { opacity: 0; }

.usecase-card:hover .usecase-off { opacity: 0; }
.usecase-card:hover .usecase-on { opacity: 1; }

.usecase-card h3 {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 16px 4px;
}

.usecase-card p {
  font-size: 13px;
  color: var(--text-muted);
  padding: 0 16px 16px;
}

/* Photo guide */
.photo-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.photo-tip {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.photo-tip-good { border-left: 3px solid var(--accent); }
.photo-tip-bad { border-left: 3px solid var(--border-dark); opacity: 0.85; }

.photo-tip-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 10px;
}

.photo-tip-good .photo-tip-icon {
  background: var(--accent-soft);
  color: var(--accent);
}

.photo-tip-bad .photo-tip-icon {
  background: var(--bg-alt);
  color: var(--text-subtle);
}

.photo-tip strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.photo-tip p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.price-card:hover {
  box-shadow: var(--shadow-warm);
  transform: translateY(-2px);
}

.price-card-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-warm);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 245, 230, 0.6) 100%);
}

.price-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.price-card-amount {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.price-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
}

.gallery-item-large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-cta { text-align: center; margin-top: 32px; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0 0 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.review-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.review-card .review-stars,
.review-card p,
.review-card footer {
  padding-left: 20px;
  padding-right: 20px;
}

.reviews-note {
  font-size: 14px;
  color: var(--text-subtle);
  margin-top: 8px;
}

.section-alt .review-card { background: var(--bg-card); }

.review-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}

.review-card cite {
  font-size: 13px;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 500;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Checkout */
.checkout-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.steps-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  margin-bottom: 40px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.steps-bar li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.steps-bar li span:first-child {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.checkout-block { margin-bottom: 28px; }

.checkout-hint {
  font-size: 13px;
  margin-bottom: 10px;
}

.checkout-hint a {
  color: var(--accent);
  font-weight: 500;
}

.checkout-hint a:hover { text-decoration: underline; }

.gift-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.4;
}

.gift-check input { position: absolute; opacity: 0; pointer-events: none; }

.gift-check-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  background: var(--bg-card);
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.gift-check input:checked + .gift-check-box {
  background: var(--accent);
  border-color: var(--accent);
}

.gift-check input:checked + .gift-check-box::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#gift-message {
  width: 100%;
  margin-top: 12px;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 15px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  resize: vertical;
  min-height: 88px;
}

#gift-message:focus {
  outline: none;
  border-color: var(--accent);
}

.checkout-block-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

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

.pick-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color 0.2s;
}

.pick-card:hover { border-color: var(--text); }

.pick-card-active {
  border-color: var(--accent) !important;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 240, 220, 0.5) 100%);
  box-shadow: inset 0 0 0 1px var(--accent), var(--shadow-warm);
}

.pick-badge { font-size: 18px; font-weight: 700; }
.pick-name { font-size: 12px; color: var(--text-muted); }
.pick-price { font-size: 15px; font-weight: 600; }

.pick-popular {
  position: absolute;
  top: -8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
}

.pill-group { display: flex; gap: 10px; }

.pill {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 14px;
  background: var(--bg);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s;
}

.pill:hover { border-color: var(--text); }

.pill-active {
  border-color: var(--accent) !important;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 240, 220, 0.5) 100%);
  font-weight: 600;
  color: var(--accent-hover);
}

.dropzone {
  border: 2px dashed var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.dropzone:hover,
.dropzone.dragover { border-color: var(--text); }

.dropzone-icon svg {
  width: 28px;
  height: 28px;
  color: var(--text-subtle);
  margin: 0 auto 12px;
}

.dropzone-text { font-size: 15px; margin-bottom: 4px; }
.dropzone-hint { font-size: 13px; color: var(--text-muted); }

.photo-previews {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.photo-preview {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.photo-preview img { width: 100%; height: 100%; object-fit: cover; }

.photo-preview button {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: rgba(0,0,0,0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  cursor: pointer;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.checkout-contact input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 16px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.2s;
}

.checkout-contact input:focus {
  outline: none;
  border-color: var(--text);
}

.checkout-contact input::placeholder { color: var(--text-subtle); }

.summary-card {
  position: sticky;
  top: calc(var(--header-h) + var(--announce-h) + 20px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-warm);
}

.summary-preview {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
  background: var(--bg-alt);
}

.summary-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.summary-price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.summary-lines {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.summary-lines li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
}

.summary-lines strong { color: var(--text); font-weight: 600; }

.summary-trust {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.form-error {
  color: #d32f2f;
  font-size: 13px;
  margin-bottom: 12px;
  text-align: center;
}

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.form-note a { color: var(--accent); font-weight: 500; }

/* Footer */
.footer {
  background: linear-gradient(180deg, #3d3228 0%, var(--bg-dark) 100%);
  color: #f5efe6;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer .logo-text { color: #fff; }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 252, 248, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}

.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.sticky-cta-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.sticky-cta-price {
  font-size: 18px;
  font-weight: 700;
}

.sticky-cta .btn { padding: 12px 24px; flex-shrink: 0; }

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Email capture modal */
.email-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.email-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.email-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 25, 0.45);
  backdrop-filter: blur(4px);
}

.email-modal-panel {
  position: relative;
  width: min(420px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.email-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}

.email-modal-panel h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.email-modal-panel p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.email-modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-modal-form input {
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 16px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
}

.email-modal-note {
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: 12px;
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .product-hero-grid,
  .split-block,
  .story-block,
  .usecase-grid,
  .photo-guide-grid,
  .pricing-grid,
  .reviews-grid,
  .checkout-layout,
  .value-bar-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-block { padding: 28px 24px; }
  .story-media { order: -1; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-large {
    grid-row: span 1;
    grid-column: span 2;
  }

  .summary-card { position: static; }

  .nav-links {
    position: fixed;
    top: calc(var(--header-h) + var(--announce-h));
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    z-index: 99;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; color: var(--text); }

  .nav-toggle { display: flex; }
  .btn-nav { display: none; }

  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  .steps-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .ambient-grain { display: none; }

  .variant-picker,
  .pick-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large { grid-column: span 1; }

  .contact-fields { grid-template-columns: 1fr; }
  .pill-group { flex-direction: column; }

  .compare-grid { grid-template-columns: 1fr; max-width: 280px; }

  .sticky-cta { display: block; }
}

@media (min-width: 601px) {
  .sticky-cta { display: none; }
}
