/* ═══════════════════════════════════════════════
   BUOGA — Premium Cat Wall Shelves
   v=20260609
═══════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --bg:            #F4EFE6;
  --bg-2:          #EDE5D8;
  --bg-3:          #E4DDD1;
  --paper:         #FAFAF8;
  --ink:           #1A1714;
  --ink-soft:      #2E2A26;
  --ink-mute:      #7A7066;
  --gold:          #C49A5B;
  --gold-2:        #A67C3D;
  --gold-light:    #E8C98A;
  --gold-pale:     #F5EADA;
  --dark:          #18130E;
  --dark-card:     #211B14;
  --dark-2:        #2A2018;
  --cream-dk:      #F2EBD8;
  --line:          rgba(26,23,20,0.10);
  --line-gold:     rgba(196,154,91,0.25);
  --radius:        14px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --nav-h:         72px;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:       cubic-bezier(0.7, 0, 0.84, 0);
  --shadow-sm:     0 2px 12px rgba(26,23,20,0.07);
  --shadow-md:     0 8px 32px rgba(26,23,20,0.10);
  --shadow-lg:     0 20px 60px rgba(26,23,20,0.14);
  --shadow-dark:   0 20px 60px rgba(0,0,0,0.35);
}

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

html {
  font-size: 16px;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.02em;
}
em { font-style: italic; }
p  { line-height: 1.68; }

/* ─── LAYOUT ─── */
.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

/* ─── REVEAL SYSTEM ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Defensive: elements with data-split are never hidden */
.reveal[data-split] { opacity: 1 !important; transform: none !important; }

/* Stagger delays */
.stagger-1 { transition-delay: 0.08s !important; }
.stagger-2 { transition-delay: 0.16s !important; }
.stagger-3 { transition-delay: 0.24s !important; }
.stagger-4 { transition-delay: 0.32s !important; }
.stagger-5 { transition-delay: 0.40s !important; }

/* ─── SECTION SHARED ─── */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-kicker::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--ink-mute);
  max-width: 46ch;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-kicker { justify-content: center; }
.section-header .section-sub { margin: 0 auto; }

/* ─── GOLD DIVIDER ─── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-gold);
}
.gold-divider-icon {
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.9rem;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: transform 0.25s var(--ease),
              box-shadow 0.25s var(--ease),
              background 0.25s,
              border-color 0.25s,
              color 0.25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--ink);
  color: #F4EFE6;
  box-shadow: 0 2px 16px rgba(26,23,20,0.22);
}
.btn-primary:hover {
  background: #2E2A26;
  box-shadow: 0 10px 28px rgba(26,23,20,0.28);
}

.btn-ghost {
  background: transparent;
  color: #FAFAF8;
  border: 1.5px solid rgba(250,250,248,0.45);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: rgba(250,250,248,0.9);
  background: rgba(250,250,248,0.08);
}

.btn-gold {
  background: var(--gold);
  color: #FAFAF8;
  box-shadow: 0 4px 20px rgba(196,154,91,0.4);
}
.btn-gold:hover {
  background: var(--gold-2);
  box-shadow: 0 10px 30px rgba(196,154,91,0.5);
}

.btn-dark {
  background: var(--dark);
  color: var(--cream-dk);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-dark:hover {
  background: var(--dark-2);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}

.btn-cream {
  background: var(--cream-dk);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  font-weight: 600;
}
.btn-cream:hover {
  background: #fff;
  box-shadow: 0 12px 36px rgba(0,0,0,0.38);
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.cursor.is-ready { opacity: 1; }

.cursor-dot {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.08s;
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(26,23,20,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
.cursor.is-hovering .cursor-ring {
  width: 60px; height: 60px;
  border-color: var(--gold);
  border-width: 1px;
}
@media (hover: none) { .cursor { display: none !important; } }

/* ════════════════════════════════════
   NAV
════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.45s, backdrop-filter 0.45s, box-shadow 0.45s;
}
.nav.is-solid {
  background: rgba(244,239,230,0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  gap: 1.5rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 46px; width: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  opacity: 1;
  transition: opacity 0.3s;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6);
}
.nav.is-hero .nav-logo img {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.85);
}
.nav-logo:hover img { opacity: 0.88; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav.is-hero .nav-link { color: rgba(250,250,248,0.82); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.32s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav.is-hero .nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

/* CTA */
.nav-cta {
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.nav.is-hero .nav-cta {
  background: rgba(250,250,248,0.14);
  color: var(--paper);
  border: 1px solid rgba(250,250,248,0.35);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.nav.is-hero .nav-cta:hover {
  background: rgba(250,250,248,0.24);
  border-color: rgba(250,250,248,0.65);
  box-shadow: none;
  transform: translateY(-2px);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: 8px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s, width 0.3s;
}
.nav.is-hero .nav-burger span { background: var(--paper); }
.nav-burger.is-open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1.5rem 2rem 2.5rem;
  background: rgba(244,239,230,0.97);
  backdrop-filter: blur(24px);
  gap: 0;
  border-top: 1px solid var(--line);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--gold); }
.nav-mobile-cta {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4.5rem, 10vh, 8rem);
  overflow: hidden;
  background: var(--dark); /* fallback if image fails */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  transition: transform 9s ease-out;
}
.hero-img.is-loaded { transform: scale(1); }

/* Multi-layer overlay for depth and legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,    rgba(16,11,8,0.88) 0%, rgba(16,11,8,0.3) 50%, rgba(16,11,8,0.08) 100%),
    linear-gradient(to right,  rgba(16,11,8,0.45) 0%, transparent 65%);
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Decorative corner accent */
.hero-accent {
  position: absolute;
  top: var(--nav-h);
  right: 2.5rem;
  padding-top: 2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 0.8s 1.4s var(--ease) forwards;
}
.hero-accent-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(196,154,91,0.6));
}
.hero-accent-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

@keyframes fadeIn { to { opacity: 1; } }

/* Content */
.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--nav-h) clamp(1.5rem, 6vw, 7rem) 0;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.7s 0.5s var(--ease) forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold-light);
}
.hero-title {
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  color: #FAFAF8;
  text-shadow: 0 4px 48px rgba(0,0,0,0.45);
  margin-bottom: 1.5rem;
  max-width: 13ch;
  line-height: 1.0;
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.85s 0.65s var(--ease) forwards;
}
.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}
.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(250,250,248,0.75);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s 0.82s var(--ease) forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s 1s var(--ease) forwards;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 0.8s 2s var(--ease) forwards;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(250,250,248,0.6), transparent);
  animation: scrollPulse 2.2s 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(0.5); opacity: 0.2; }
}
.hero-scroll-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.55);
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: none; }
}

/* ════════════════════════════════════
   MARQUEE
════════════════════════════════════ */
.marquee-strip {
  background: var(--ink);
  overflow: hidden;
  padding: 1rem 0;
  user-select: none;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,235,216,0.7);
  flex-shrink: 0;
}
.marquee-track .marquee-dot {
  color: var(--gold);
  font-size: 0.5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════
   ABOUT
════════════════════════════════════ */
.about {
  padding: clamp(5rem, 11vh, 10rem) 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
/* Subtle decorative shape */
.about::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,91,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-text { max-width: 560px; }
.about-text .section-title { font-size: clamp(2rem, 3.5vw, 3.2rem); }

.about-lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin-top: 1.75rem;
  line-height: 1.75;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.about-body {
  font-size: 0.95rem;
  color: var(--ink-mute);
  margin-top: 1.25rem;
  max-width: 48ch;
}

/* Stats row */
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  justify-content: center;
}
.about-stat { text-align: center; }
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-stat-num span {
  color: var(--gold);
  font-size: 1.4rem;
}
.about-stat-check {
  color: var(--gold);
  font-size: 2rem;
}
.about-stat-label {
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* Visual — full width below text */
.about-visual {
  position: relative;
  width: 100%;
}
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.about-img {
  width: 100%; height: 110%;
  object-fit: cover;
  margin-top: -10%;
  object-position: center bottom;
  transition: transform 0.8s var(--ease);
}
.about-img-wrap:hover .about-img { transform: scale(1.03); }

/* Floating tag */
.about-tag {
  position: absolute;
  bottom: 2rem; left: -2rem;
  background: var(--ink);
  color: var(--cream-dk);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-dark);
  min-width: 160px;
}
.about-tag-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-tag-label {
  font-size: 0.75rem;
  color: rgba(242,235,216,0.6);
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}

/* Mascot */
.about-mascot {
  position: absolute;
  top: -2rem; right: -2rem;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.about-mascot img {
  width: 100%; height: 100%;
  object-fit: contain;
}

@media (max-width: 800px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .about-tag { left: 1rem; bottom: 1rem; }
  .about-mascot { top: 0.5rem; right: 0.5rem; width: 90px; height: 90px; }
}

/* ════════════════════════════════════
   PRODUCTS
════════════════════════════════════ */
.products {
  padding: clamp(5rem, 11vh, 10rem) 0;
  background: var(--bg);
  position: relative;
}

/* Subtle texture */
.products::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 15% 80%, rgba(196,154,91,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(196,154,91,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
}

.product-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card--dark {
  background: var(--dark-card);
  border-color: rgba(255,255,255,0.05);
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}
.product-card--dark:hover {
  box-shadow: var(--shadow-dark);
}

/* Product image */
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--bg-2);
}
.product-card--dark .product-img-wrap { background: var(--dark-2); }

.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.06); }

/* Badge */
.product-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--gold);
  color: #FAFAF8;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(196,154,91,0.5);
}
.product-badge--new {
  background: var(--ink);
  color: var(--cream-dk);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Product info */
.product-info {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-finish-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-finish-tag::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--gold);
}
.product-card--dark .product-finish-tag { color: var(--gold-light); }
.product-card--dark .product-finish-tag::before { background: var(--gold-light); }

.product-name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.product-card--dark .product-name { color: var(--cream-dk); }

.product-subtitle {
  font-size: 0.8rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.product-card--dark .product-subtitle { color: rgba(242,235,216,0.4); }

/* Specs */
.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex: 1;
  padding: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.product-card--dark .product-specs {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}

.product-specs li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.product-card--dark .product-specs li { color: rgba(242,235,216,0.72); }

.spec-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-2);
  font-size: 0.55rem;
}
.product-card--dark .spec-icon {
  background: rgba(196,154,91,0.15);
  color: var(--gold-light);
}

.product-cta {
  width: 100%;
  margin-bottom: 0.85rem;
}
.product-prime {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--ink-mute);
  justify-content: center;
  padding-top: 0.5rem;
}
.product-card--dark .product-prime { color: rgba(242,235,216,0.38); }
.product-prime svg { flex-shrink: 0; }

@media (max-width: 680px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════
   FEATURES
════════════════════════════════════ */
.features {
  padding: clamp(5rem, 11vh, 10rem) 0;
  background: var(--bg-2);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-gold), transparent);
}
.features::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-gold), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-card {
  background: var(--paper);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  border-radius: 2px;
}
.feature-card:hover { background: var(--bg); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  color: var(--gold-2);
  transition: background 0.3s, transform 0.3s var(--ease);
}
.feature-card:hover .feature-icon {
  background: var(--gold);
  color: #FAFAF8;
  transform: scale(1.08) rotate(-3deg);
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--ink);
  transition: color 0.25s;
}
.feature-card:hover .feature-title { color: var(--gold-2); }

.feature-desc {
  font-size: 0.875rem;
  color: var(--ink-mute);
  line-height: 1.65;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════
   TRUST
════════════════════════════════════ */
.trust {
  padding: clamp(4.5rem, 9vh, 8rem) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
/* Warm glow */
.trust::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(196,154,91,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.trust-mascot-row {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.trust-mascot-img {
  height: 110px;
  width: auto;
  opacity: 0.18;
  filter: brightness(0) invert(1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.trust-item {
  padding: 3rem 2.5rem;
  position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 2rem; bottom: 2rem;
  width: 1px;
  background: rgba(242,235,216,0.1);
}

/* FSC badge inside trust item 04 */
.fsc-badge {
  position: absolute;
  top: 3rem;
  right: 2.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.22);
  transition: transform 0.25s, box-shadow 0.25s;
}
.fsc-badge:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.32);
}
.fsc-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  font-style: italic;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.trust-title {
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--cream-dk);
  margin-bottom: 0.85rem;
}
.trust-desc {
  font-size: 0.875rem;
  color: rgba(242,235,216,0.5);
  line-height: 1.7;
  max-width: 30ch;
}

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item::before { top: 0; bottom: auto; left: 2.5rem; right: 2.5rem; width: auto; height: 1px; }
  .trust-item { padding: 2.5rem; }
}

/* ════════════════════════════════════
   REVIEWS
════════════════════════════════════ */
.reviews {
  padding: clamp(5rem, 11vh, 10rem) 0;
  background: var(--paper);
  position: relative;
}
.reviews::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* Reviews ticker slider */
.reviews-slider {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.reviews-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  animation: reviewsScroll 320s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  flex: 0 0 340px;
  width: 340px;
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid var(--line);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-gold);
}

.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}
.review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.925rem;
  color: var(--ink-soft);
  line-height: 1.75;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  border: 2px solid var(--line-gold);
}
.review-avatar--dark { background: var(--dark); color: var(--cream-dk); border-color: rgba(255,255,255,0.1); }
.review-avatar--gold { background: var(--gold); color: #FAFAF8; border-color: transparent; }

.review-name { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.review-meta { font-size: 0.72rem; color: var(--ink-mute); margin-top: 0.1rem; }


/* ════════════════════════════════════
   CTA BANNER
════════════════════════════════════ */
.cta-banner {
  position: relative;
  min-height: clamp(500px, 68vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.cta-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.cta-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.cta-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(16,11,8,0.5) 0%, rgba(16,11,8,0.82) 100%),
    linear-gradient(to right, rgba(16,11,8,0.3) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-logo {
  margin-bottom: 2.5rem;
}
.cta-logo img {
  height: 54px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}
.cta-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: var(--paper);
  text-shadow: 0 4px 48px rgba(0,0,0,0.55);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.cta-title em { color: var(--gold-light); }
.cta-sub {
  font-size: 1rem;
  color: rgba(250,250,248,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 38ch;
}

/* Gold line decoration */
.cta-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  width: 200px;
}
.cta-divider::before,
.cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(196,154,91,0.4);
}
.cta-divider-paw {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.7;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: #100D09;
  color: var(--cream-dk);
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(242,235,216,0.06);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,154,91,0.3), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  margin-bottom: 1.25rem;
  align-items: start;
}
.footer-brand { }
.footer-logo {
  height: 52px; width: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  opacity: 1;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(242,235,216,0.4);
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 22ch;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(242,235,216,0.12);
  color: rgba(242,235,216,0.4);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,154,91,0.08);
}

.footer-links {
  display: flex;
  gap: 3.5rem;
  justify-content: flex-end;
}
.footer-col { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col-title {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-link {
  font-size: 0.875rem;
  color: rgba(242,235,216,0.45);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-link:hover { color: var(--cream-dk); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(242,235,216,0.07);
}
.footer-copy {
  font-size: 0.775rem;
  color: rgba(242,235,216,0.25);
}
.footer-domain {
  font-size: 0.775rem;
  color: rgba(242,235,216,0.25);
  transition: color 0.2s;
}
.footer-domain:hover { color: var(--gold); }

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-links { justify-content: flex-start; gap: 2.5rem; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .footer-links { gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ─── MISC HELPERS ─── */

/* ════════════════════════════════════
   MOBILE RESPONSIVE IMPROVEMENTS
════════════════════════════════════ */

/* Nav: tighter padding on mobile */
@media (max-width: 860px) {
  .nav-inner { padding: 0 1.25rem; }
}

/* Hero: smaller title + stacked buttons on phones */
@media (max-width: 640px) {
  .hero-title  { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero-content { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 300px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section-header { margin-bottom: 2.5rem; }
}

/* About stats: wrap to 2×2 grid on small phones */
@media (max-width: 540px) {
  .about-stats { flex-wrap: wrap; gap: 1.75rem 1.25rem; }
  .about-stat  { flex: 0 0 calc(50% - 0.625rem); }
  .about-body  { max-width: 100%; }
  .product-info { padding: 1.25rem 1.25rem 1.5rem; }
}

/* Very small phones (320px) */
@media (max-width: 400px) {
  .container { width: min(1200px, 100% - 2rem); }
  .hero-title { font-size: 2.2rem; }
  .about-stats { gap: 1.5rem 1rem; }
  .trust-item { padding: 2rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img,
  .marquee-track,
  .hero-scroll-line {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  .nav, .cursor, .marquee-strip, .hero-scroll { display: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
