/* =============================================
   DECIYA LIVING — Main Stylesheet
   Premium Home Organization Brand
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* =============================================
   CSS Custom Properties
   ============================================= */
:root {
  --cream: #F8F5F1;
  --beige: #EDE8DF;
  --walnut: #3B1F0F;
  --black: #111111;
  --gold: #C8A45D;
  --gold-light: #D4B878;
  --muted: #6F675F;
  --white: #FFFFFF;
  --success: #3D7A4E;
  --border: rgba(59, 31, 15, 0.10);
  --border-med: rgba(59, 31, 15, 0.18);

  --shadow-xs: 0 1px 4px rgba(59, 31, 15, 0.06);
  --shadow-sm: 0 2px 10px rgba(59, 31, 15, 0.08);
  --shadow-md: 0 8px 32px rgba(59, 31, 15, 0.11);
  --shadow-lg: 0 16px 48px rgba(59, 31, 15, 0.15);
  --shadow-xl: 0 24px 80px rgba(59, 31, 15, 0.20);

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 9999px;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --trans-fast: 150ms ease;
  --trans-base: 250ms ease;
  --trans-slow: 400ms ease;
}

/* =============================================
   Reset
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--walnut); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; color: var(--walnut); }

/* =============================================
   Layout
   ============================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

/* =============================================
   HEADER
   ============================================= */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248, 245, 241, 0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans-base);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 24px; max-width: 1280px; margin: 0 auto;
}

.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-name { font-family: var(--font-serif); font-size: 26px; font-weight: 600; letter-spacing: 0.1em; color: var(--walnut); line-height: 1; }
.logo-tagline { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); transition: color var(--trans-fast); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--trans-base); }
.nav-links a:hover, .nav-links a.active { color: var(--walnut); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

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

.cart-btn {
  position: relative; display: flex; align-items: center; gap: 8px;
  padding: 9px 20px; background: var(--walnut); color: var(--cream);
  border-radius: var(--r-full); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; transition: all var(--trans-base);
}
.cart-btn:hover { background: var(--black); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.cart-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.cart-count { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; background: var(--gold); color: #fff; border-radius: 50%; font-size: 11px; font-weight: 700; line-height: 1; padding: 0 4px; }
.cart-count.hidden { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--walnut); border-radius: 2px; transition: all var(--trans-base); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 999; padding: 40px 24px;
  flex-direction: column; overflow-y: auto;
  opacity: 0; pointer-events: none; transition: opacity var(--trans-base);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { display: block; font-family: var(--font-serif); font-size: 32px; font-weight: 400; color: var(--walnut); padding: 16px 0; border-bottom: 1px solid var(--border); transition: color var(--trans-fast); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-actions { margin-top: 32px; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .cart-btn .cart-text { display: none; }
  .cart-btn { padding: 9px 13px; }
}

/* =============================================
   CART DRAWER
   ============================================= */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(17, 17, 17, 0.45);
  z-index: 1100; opacity: 0; pointer-events: none;
  transition: opacity var(--trans-base); backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 100%;
  background: var(--cream); z-index: 1200; transform: translateX(100%);
  transition: transform var(--trans-slow); display: flex; flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--border); }
.cart-drawer-header h3 { font-family: var(--font-serif); font-size: 22px; }
.cart-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--beige); color: var(--walnut); font-size: 20px; line-height: 1; transition: all var(--trans-fast); }
.cart-close:hover { background: var(--walnut); color: var(--cream); }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 24px; }

.cart-empty { text-align: center; padding: 64px 24px; }
.cart-empty-icon { font-size: 56px; margin-bottom: 16px; opacity: 0.25; }
.cart-empty h4 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 8px; }
.cart-empty p { color: var(--muted); font-size: 14px; }

.cart-items { display: flex; flex-direction: column; gap: 14px; }

.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 16px; background: var(--beige); border-radius: var(--r-md); }
.cart-item-thumb { width: 72px; height: 72px; border-radius: var(--r-sm); overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.cart-item-info { display: flex; flex-direction: column; justify-content: space-between; }
.cart-item-name { font-weight: 600; font-size: 13px; color: var(--walnut); }
.cart-item-variant { font-size: 12px; color: var(--muted); margin-top: 2px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 400; transition: all var(--trans-fast); border: 1px solid var(--border); }
.qty-btn:hover { background: var(--walnut); color: var(--cream); border-color: var(--walnut); }
.qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item-price { font-family: var(--font-serif); font-size: 17px; font-weight: 600; }
.cart-item-remove { font-size: 11px; color: var(--muted); text-decoration: underline; cursor: pointer; transition: color var(--trans-fast); }
.cart-item-remove:hover { color: #c0392b; }

.cart-drawer-footer { padding: 24px; border-top: 1px solid var(--border); }
.cart-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 14px; color: var(--muted); }
.cart-row.total { font-family: var(--font-serif); font-size: 20px; color: var(--walnut); font-weight: 600; padding-top: 12px; border-top: 1px solid var(--border); margin-top: 8px; margin-bottom: 16px; }
.cart-ship-note { font-size: 12px; color: var(--success); text-align: center; margin-bottom: 14px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--r-full); font-size: 13px;
  font-weight: 600; letter-spacing: 0.05em; transition: all var(--trans-base);
  cursor: pointer; white-space: nowrap; border: 2px solid transparent;
}
.btn-primary { background: var(--walnut); color: var(--cream); border-color: var(--walnut); }
.btn-primary:hover { background: var(--black); border-color: var(--black); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: transparent; color: var(--walnut); border-color: var(--walnut); }
.btn-secondary:hover { background: var(--walnut); color: var(--cream); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: #b8924d; border-color: #b8924d; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,164,93,0.35); }
.btn-outline-cream { background: transparent; color: var(--cream); border-color: rgba(248,245,241,0.5); }
.btn-outline-cream:hover { background: var(--cream); color: var(--walnut); }
.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-lg { padding: 18px 44px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

/* =============================================
   BADGES
   ============================================= */
.badge { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: var(--r-full); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.badge-gold { background: var(--gold); color: #fff; }
.badge-walnut { background: var(--walnut); color: var(--cream); }
.badge-black { background: var(--black); color: var(--cream); }
.badge-green { background: var(--success); color: #fff; }
.badge-cream { background: var(--cream); color: var(--walnut); }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); }
.section-title { font-family: var(--font-serif); font-size: clamp(32px, 4vw, 54px); font-weight: 400; color: var(--walnut); margin-bottom: 16px; }
.section-subtitle { font-size: 16px; color: var(--muted); line-height: 1.75; }

.divider { width: 48px; height: 2px; background: var(--gold); margin: 20px auto; }
.divider.left { margin-left: 0; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px; background: var(--cream);
}
.hero-bg-orb-1 { position: absolute; top: -15%; right: -8%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(200,164,93,0.10) 0%, transparent 70%); pointer-events: none; }
.hero-bg-orb-2 { position: absolute; bottom: -10%; left: -5%; width: 450px; height: 450px; border-radius: 50%; background: radial-gradient(circle, rgba(59,31,15,0.06) 0%, transparent 70%); pointer-events: none; }

.hero-inner {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; width: 100%; max-width: 1280px; margin: 0 auto; padding: 80px 24px;
}
.hero-content { max-width: 560px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-headline { font-family: var(--font-serif); font-size: clamp(44px, 6vw, 76px); font-weight: 400; line-height: 1.08; color: var(--walnut); margin-bottom: 24px; }
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.75; margin-bottom: 40px; max-width: 460px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 20px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero-stars { display: flex; gap: 3px; color: var(--gold); font-size: 15px; }
.hero-proof-text { font-size: 13px; color: var(--muted); }
.hero-proof-text strong { color: var(--walnut); }

/* Hero Visual / Mockup */
.hero-visual { position: relative; }
.hero-card {
  background: linear-gradient(155deg, #EDE8DF 0%, #D4C4B0 100%);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5; position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-scene { width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }

/* Pegboard mockup inside hero */
.hero-pegboard {
  width: 180px; height: 220px;
  background: linear-gradient(155deg, #5C3A1E 0%, #2E1408 100%);
  border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 11px; padding: 20px;
}
.hero-hole { border-radius: 50%; background: rgba(0,0,0,0.45); border: 1px solid rgba(200,164,93,0.2); }

.hero-shelf-right {
  position: absolute; right: 32px; top: 45%;
  transform: translateY(-50%); width: 130px;
}
.hero-shelf-plank { width: 100%; height: 16px; background: linear-gradient(90deg, #7B5330, #C8A45D, #8B6042); border-radius: 5px; box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.hero-shelf-items { display: flex; gap: 6px; padding: 6px 6px 0; align-items: flex-end; }
.hero-plant { width: 20px; height: 30px; background: linear-gradient(0deg, #3D6B40, #56934E); border-radius: 3px 3px 0 0; }
.hero-book { border-radius: 3px; }
.hb1 { width: 16px; height: 34px; background: #7B5330; }
.hb2 { width: 14px; height: 26px; background: #111; }
.hb3 { width: 16px; height: 30px; background: #C8A45D; }

.hero-float-card {
  position: absolute; background: #fff; border-radius: var(--r-md); padding: 14px 18px;
  box-shadow: var(--shadow-lg); min-width: 144px;
}
.hero-float-card-1 { bottom: 28px; left: -20px; }
.hero-float-card-2 { top: 28px; right: -20px; }
.hfc-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; }
.hfc-value { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--walnut); }
.hfc-sub { font-size: 11px; color: var(--muted); margin-top: 3px; }
.hfc-stars { display: flex; gap: 2px; color: var(--gold); font-size: 13px; margin-bottom: 4px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; text-align: center; padding: 64px 24px 80px; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .hero-float-card-1 { left: -8px; }
  .hero-float-card-2 { right: -8px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .hero-sub { font-size: 16px; }
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip { background: var(--walnut); padding: 20px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 12px 28px; border-right: 1px solid rgba(248,245,241,0.15); }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 20px; color: var(--gold); }
.trust-text { font-size: 13px; font-weight: 500; color: var(--cream); letter-spacing: 0.04em; white-space: nowrap; }

@media (max-width: 720px) {
  .trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(248,245,241,0.1); padding: 14px 20px; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(248,245,241,0.1); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.product-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-xs); border: 1px solid var(--border);
  display: flex; flex-direction: column; transition: all var(--trans-base);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.product-card-img {
  position: relative; overflow: hidden; aspect-ratio: 3/3.5; flex-shrink: 0;
}
.product-card-img .product-visual { width: 100%; height: 100%; transition: transform var(--trans-slow); display: flex; align-items: center; justify-content: center; }
.product-card:hover .product-card-img .product-visual { transform: scale(1.04); }

.product-card-badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.product-quick-add { position: absolute; bottom: 14px; right: 14px; z-index: 2; opacity: 0; transform: translateY(8px); transition: all var(--trans-base); }
.product-card:hover .product-quick-add { opacity: 1; transform: translateY(0); }

.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.product-name { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--walnut); margin-bottom: 6px; }
.product-desc-short { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.product-pricing { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.price-now { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--walnut); }
.price-was { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.price-save { font-size: 12px; font-weight: 600; color: var(--success); }
.product-card-cta { display: grid; grid-template-columns: 1fr auto; gap: 8px; }

/* Product visual placeholders */
.pv-grid { background: linear-gradient(155deg, #5C3A1E 0%, #2E1408 100%); }
.pv-shelf { background: linear-gradient(155deg, #9B7250 0%, #5C3520 100%); }
.pv-key { background: linear-gradient(155deg, #1A1A1A 0%, #111 100%); }
.pv-cable { background: linear-gradient(155deg, #3B2810 0%, #1A0F06 100%); }

.pv-grid-holes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; padding: 24px; width: 80%; }
.pv-hole { aspect-ratio: 1; border-radius: 50%; background: rgba(0,0,0,0.4); border: 1px solid rgba(200,164,93,0.25); }
.pv-shelf-vis { width: 70%; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.pv-shelf-plank { width: 100%; height: 18px; background: linear-gradient(90deg, #7B5330, #C8A45D, #8B6042); border-radius: 6px; box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.pv-shelf-brackets { display: flex; justify-content: space-between; width: 90%; }
.pv-bracket { width: 6px; height: 40px; background: rgba(17,17,17,0.8); border-radius: 3px; }
.pv-key-panel { width: 60%; background: rgba(255,255,255,0.05); border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.pv-hook { display: flex; align-items: center; gap: 10px; }
.pv-hook-bar { flex: 1; height: 3px; background: rgba(200,164,93,0.6); border-radius: 2px; }
.pv-hook-end { width: 10px; height: 14px; border: 2px solid rgba(200,164,93,0.7); border-radius: 0 0 6px 6px; border-top: none; }
.pv-cable-box { width: 65%; background: rgba(255,255,255,0.06); border-radius: 10px; padding: 20px; border: 1px solid rgba(200,164,93,0.2); display: flex; flex-direction: column; gap: 8px; }
.pv-cable-hole { width: 16px; height: 16px; border-radius: 50%; background: rgba(0,0,0,0.5); border: 1px solid rgba(200,164,93,0.3); }

@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .products-grid { grid-template-columns: 1fr; } }

/* =============================================
   BEFORE / AFTER
   ============================================= */
.before-after { background: var(--beige); }
.ba-grid { display: grid; grid-template-columns: 1fr 48px 1fr; gap: 24px; align-items: center; }
.ba-card { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; position: relative; display: flex; align-items: center; justify-content: center; }
.ba-tag { position: absolute; top: 18px; left: 18px; background: rgba(248,245,241,0.95); backdrop-filter: blur(8px); padding: 5px 14px; border-radius: var(--r-full); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--walnut); }
.ba-before { background: linear-gradient(155deg, #BFB4A5 0%, #A09080 100%); }
.ba-before-scene { display: flex; flex-direction: column; gap: 10px; width: 65%; opacity: 0.65; }
.ba-messy-line { height: 8px; background: rgba(59,31,15,0.35); border-radius: 4px; }
.ba-ml1 { width: 80%; }
.ba-ml2 { width: 55%; margin-left: auto; }
.ba-ml3 { width: 70%; }
.ba-ml4 { width: 45%; margin-left: auto; }
.ba-ml5 { width: 60%; }
.ba-after { background: linear-gradient(155deg, #EDE8DF 0%, #D4C4B0 100%); }
.ba-after-scene { display: flex; flex-direction: column; align-items: center; gap: 20px; width: 65%; }
.ba-org-shelf { width: 100%; height: 14px; background: linear-gradient(90deg, #7B5330, #C8A45D, #8B6042); border-radius: 5px; box-shadow: 0 5px 16px rgba(0,0,0,0.25); }
.ba-org-grid { width: 80px; height: 80px; background: linear-gradient(155deg, #3B1F0F, #5C3A1E); border-radius: 10px; display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; padding: 10px; }
.ba-org-hole { border-radius: 50%; background: rgba(0,0,0,0.4); }
.ba-arrow { width: 48px; height: 48px; background: var(--walnut); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cream); font-size: 20px; flex-shrink: 0; box-shadow: var(--shadow-md); }

@media (max-width: 640px) {
  .ba-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .ba-arrow { display: none; }
}

/* =============================================
   LIFESTYLE GRID
   ============================================= */
.lifestyle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lifestyle-card { border-radius: var(--r-lg); overflow: hidden; position: relative; aspect-ratio: 4/3; display: block; cursor: pointer; }
.lifestyle-bg { width: 100%; height: 100%; transition: transform var(--trans-slow); }
.lifestyle-card:hover .lifestyle-bg { transform: scale(1.06); }
.lifestyle-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(0deg, rgba(17,17,17,0.72) 0%, transparent 100%); }
.lifestyle-title { font-family: var(--font-serif); font-size: 18px; color: #fff; font-weight: 400; }
.lifestyle-sub { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 3px; }
.lifestyle-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 52px; opacity: 0.3; pointer-events: none; }

.lc-bedroom .lifestyle-bg { background: linear-gradient(155deg, #D4C4B0, #A08060); }
.lc-office .lifestyle-bg { background: linear-gradient(155deg, #C8C0B5, #706050); }
.lc-kitchen .lifestyle-bg { background: linear-gradient(155deg, #C5B89A, #806040); }
.lc-entryway .lifestyle-bg { background: linear-gradient(155deg, #2A2A2A, #111); }
.lc-terrace .lifestyle-bg { background: linear-gradient(155deg, #4A7A4E, #2A5030); }
.lc-desk .lifestyle-bg { background: linear-gradient(155deg, #3B2810, #180C05); }

@media (max-width: 768px) { .lifestyle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lifestyle-grid { grid-template-columns: 1fr; } }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works { background: var(--walnut); }
.how-it-works .section-title { color: var(--cream); }
.how-it-works .section-eyebrow { color: var(--gold); }
.how-it-works .section-subtitle { color: rgba(248,245,241,0.6); }

.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.how-steps::before { content: ''; position: absolute; top: 40px; left: calc(16.66% + 36px); right: calc(16.66% + 36px); height: 1px; background: rgba(200,164,93,0.3); }

.how-step { text-align: center; }
.how-step-num { width: 80px; height: 80px; border-radius: 50%; border: 1px solid rgba(200,164,93,0.35); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: var(--font-serif); font-size: 32px; color: var(--gold); position: relative; z-index: 1; background: var(--walnut); }
.how-step-title { font-family: var(--font-serif); font-size: 22px; color: var(--cream); margin-bottom: 12px; }
.how-step-desc { font-size: 14px; color: rgba(248,245,241,0.60); line-height: 1.75; }

@media (max-width: 640px) {
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .how-steps::before { display: none; }
}

/* =============================================
   MATERIALS
   ============================================= */
.materials { background: var(--beige); }
.materials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.materials-swatches { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.swatch { aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden; display: flex; align-items: flex-end; padding: 16px; }
.swatch-name { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(248,245,241,0.85); }
.sw-pine { background: linear-gradient(155deg, #A07850, #7B5A35); }
.sw-walnut { background: linear-gradient(155deg, #5C3A1E, #3B1F0F); }
.sw-metal { background: linear-gradient(155deg, #3A3A3A, #111); }
.sw-gold { background: linear-gradient(155deg, #C8A45D, #A07840); }

.material-list { display: flex; flex-direction: column; gap: 16px; }
.material-item { display: flex; gap: 18px; padding: 20px; background: var(--cream); border-radius: var(--r-md); border: 1px solid var(--border); transition: all var(--trans-base); }
.material-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.material-icon { width: 48px; height: 48px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.mi-pine { background: linear-gradient(135deg, #A07850, #C8A45D); }
.mi-metal { background: linear-gradient(135deg, #2D2D2D, #4A4A4A); }
.mi-finish { background: linear-gradient(135deg, #5C3A1E, #8B6347); }
.mi-design { background: linear-gradient(135deg, #C8A45D, #D4B878); }
.material-title { font-weight: 600; font-size: 14px; color: var(--walnut); margin-bottom: 3px; }
.material-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

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

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--r-xl); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all var(--trans-base); }
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.t-stars { display: flex; gap: 3px; color: var(--gold); font-size: 15px; margin-bottom: 18px; }
.t-text { font-family: var(--font-serif); font-size: 20px; line-height: 1.6; color: var(--walnut); font-style: italic; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 18px; color: #fff; font-weight: 600; flex-shrink: 0; }
.av1 { background: linear-gradient(135deg, #8B6347, #C8A45D); }
.av2 { background: linear-gradient(135deg, #3B1F0F, #5C3A1E); }
.av3 { background: linear-gradient(135deg, #2D2D2D, #5A5A5A); }
.t-name { font-weight: 600; font-size: 14px; color: var(--walnut); }
.t-location { font-size: 12px; color: var(--muted); margin-top: 2px; }
.t-product { font-size: 11px; color: var(--gold); font-weight: 600; margin-top: 3px; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { background: var(--walnut); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(200,164,93,0.14) 0%, transparent 55%), radial-gradient(circle at 80% 50%, rgba(200,164,93,0.08) 0%, transparent 55%); }
.cta-inner { position: relative; z-index: 1; }
.cta-section .section-title { color: var(--cream); }
.cta-section .section-subtitle { color: rgba(248,245,241,0.65); margin-bottom: 40px; }
.cta-section .section-eyebrow { color: var(--gold); }

/* =============================================
   FOOTER
   ============================================= */
#site-footer { background: var(--black); color: var(--cream); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-logo .logo-name { color: var(--cream); }
.footer-logo .logo-tagline { color: var(--gold); }
.footer-desc { font-size: 14px; color: rgba(248,245,241,0.48); margin-top: 16px; margin-bottom: 24px; line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(248,245,241,0.08); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all var(--trans-base); }
.social-btn:hover { background: var(--gold); transform: translateY(-2px); }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(248,245,241,0.50); transition: color var(--trans-fast); }
.footer-links a:hover { color: var(--cream); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-icon { color: var(--gold); font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.footer-contact-val { font-size: 13px; color: rgba(248,245,241,0.50); line-height: 1.5; }
.footer-contact-val a { color: rgba(248,245,241,0.50); }
.footer-contact-val a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(248,245,241,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 12px; color: rgba(248,245,241,0.32); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: rgba(248,245,241,0.32); transition: color var(--trans-fast); }
.footer-legal a:hover { color: var(--cream); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-logo { grid-column: 1 / -1; } }
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header { padding: 128px 0 64px; background: var(--beige); text-align: center; }
.page-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.page-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); }
.page-title { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 64px); font-weight: 400; color: var(--walnut); margin-bottom: 16px; }
.page-desc { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin-right: 6px; }
.filter-btn { padding: 8px 20px; border-radius: var(--r-full); font-size: 12px; font-weight: 600; color: var(--muted); background: var(--beige); border: 1.5px solid transparent; cursor: pointer; transition: all var(--trans-fast); letter-spacing: 0.04em; }
.filter-btn:hover { color: var(--walnut); border-color: var(--border-med); }
.filter-btn.active { background: var(--walnut); color: var(--cream); border-color: var(--walnut); }

/* =============================================
   PRODUCT DETAIL
   ============================================= */
.product-detail { padding: 80px 0 120px; }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pd-images { position: sticky; top: 96px; }
.pd-main-img { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.pd-thumb { aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color var(--trans-fast); display: flex; align-items: center; justify-content: center; }
.pd-thumb.active { border-color: var(--walnut); }

.pd-info { padding-top: 8px; }
.pd-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.pd-name { font-family: var(--font-serif); font-size: clamp(30px, 4vw, 48px); font-weight: 400; color: var(--walnut); margin-bottom: 8px; line-height: 1.1; }
.pd-subtitle { font-family: var(--font-serif); font-size: 18px; color: var(--muted); font-style: italic; margin-bottom: 24px; }
.pd-pricing { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pd-price { font-family: var(--font-serif); font-size: 38px; font-weight: 600; color: var(--walnut); }
.pd-mrp { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.pd-discount { font-size: 13px; font-weight: 700; color: var(--success); background: rgba(61,122,78,0.1); padding: 4px 10px; border-radius: var(--r-full); }
.pd-tax { font-size: 13px; color: var(--muted); margin-bottom: 32px; }

.pd-option-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--walnut); margin-bottom: 10px; }
.pd-option-group { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.opt-btn { padding: 10px 20px; border-radius: var(--r-full); font-size: 13px; font-weight: 500; color: var(--muted); background: var(--beige); border: 1.5px solid var(--border); cursor: pointer; transition: all var(--trans-fast); }
.opt-btn:hover { border-color: var(--walnut); color: var(--walnut); }
.opt-btn.sel { background: var(--walnut); color: var(--cream); border-color: var(--walnut); }

.qty-row { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.qty-row-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--walnut); }
.qty-ctrl { display: flex; align-items: center; border: 1.5px solid var(--border-med); border-radius: var(--r-full); overflow: hidden; }
.qty-minus, .qty-plus { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 300; background: var(--beige); color: var(--walnut); cursor: pointer; transition: all var(--trans-fast); border: none; }
.qty-minus:hover, .qty-plus:hover { background: var(--walnut); color: var(--cream); }
.qty-val { width: 48px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; background: var(--cream); }

.pd-cta-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pd-guarantee { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding-top: 16px; border-top: 1px solid var(--border); }
.pd-guarantee-icon { color: var(--success); font-size: 16px; }

.pd-highlights { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.pd-highlights-title { font-family: var(--font-serif); font-size: 20px; margin-bottom: 18px; }
.hl-list { display: flex; flex-direction: column; gap: 12px; }
.hl-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--muted); }
.hl-icon { color: var(--gold); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.hl-text strong { color: var(--walnut); }

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 13px 0; font-size: 14px; vertical-align: top; }
.spec-table td:first-child { width: 44%; color: var(--muted); font-weight: 500; }
.spec-table td:last-child { color: var(--walnut); font-weight: 600; }

/* Product section tabs */
.pd-sections { padding: 80px 0; background: var(--beige); }
.pd-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 48px; overflow-x: auto; }
.pd-tab { padding: 16px 28px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; white-space: nowrap; transition: all var(--trans-fast); background: none; border-top: none; border-left: none; border-right: none; }
.pd-tab:hover { color: var(--walnut); }
.pd-tab.active { color: var(--walnut); border-bottom-color: var(--gold); }
.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: block; }

@media (max-width: 768px) {
  .pd-grid { grid-template-columns: 1fr; gap: 48px; }
  .pd-images { position: static; }
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { border-radius: var(--r-xl); aspect-ratio: 4/5; background: linear-gradient(155deg, #8B6347 0%, #3B1F0F 100%); display: flex; align-items: center; justify-content: center; padding: 32px; }
.about-visual-label { font-family: var(--font-serif); font-size: 40px; color: rgba(248,245,241,0.18); text-align: center; line-height: 1.4; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.about-stat { background: var(--beige); border-radius: var(--r-lg); padding: 24px; text-align: center; border: 1px solid var(--border); }
.stat-num { font-family: var(--font-serif); font-size: 40px; color: var(--walnut); display: block; margin-bottom: 4px; }
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 80px; }
.value-card { text-align: center; padding: 32px 20px; background: var(--beige); border-radius: var(--r-xl); border: 1px solid var(--border); transition: all var(--trans-base); }
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon { font-size: 40px; margin-bottom: 14px; display: block; }
.value-title { font-family: var(--font-serif); font-size: 18px; margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

@media (max-width: 900px) { .about-story { grid-template-columns: 1fr; gap: 48px; } .about-values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .about-values { grid-template-columns: 1fr; } }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info-card { display: flex; gap: 16px; padding: 22px; background: var(--beige); border-radius: var(--r-lg); border: 1px solid var(--border); margin-bottom: 14px; transition: all var(--trans-base); }
.contact-info-card:hover { box-shadow: var(--shadow-md); }
.ci-icon { width: 46px; height: 46px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ci-email { background: linear-gradient(135deg, #C8A45D, #D4B878); }
.ci-web { background: linear-gradient(135deg, #3B1F0F, #5C3A1E); }
.ci-insta { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.ci-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.ci-value { font-size: 15px; font-weight: 600; color: var(--walnut); }
.ci-desc { font-size: 13px; color: var(--muted); margin-top: 3px; }
.contact-form-wrap { background: var(--beige); border-radius: var(--r-xl); padding: 40px; border: 1px solid var(--border); }
.contact-form-title { font-family: var(--font-serif); font-size: 28px; margin-bottom: 8px; }
.contact-form-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--walnut); margin-bottom: 7px; }
.form-input, .form-textarea { width: 100%; padding: 13px 17px; border-radius: var(--r-md); border: 1.5px solid var(--border-med); background: var(--cream); font-size: 15px; color: var(--walnut); transition: border-color var(--trans-fast); outline: none; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(111,103,95,0.45); }
.form-input:focus, .form-textarea:focus { border-color: var(--walnut); }
.form-textarea { min-height: 150px; resize: vertical; }
.form-success { display: none; text-align: center; padding: 28px; }
.form-success-icon { font-size: 48px; margin-bottom: 14px; }
.form-success h4 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 8px; color: var(--success); }

@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 48px; } }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-family: var(--font-serif); font-size: 18px; color: var(--walnut); gap: 20px; user-select: none; }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--beige); display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; color: var(--walnut); flex-shrink: 0; transition: all var(--trans-base); }
.faq-item.open .faq-icon { background: var(--walnut); color: var(--cream); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--trans-slow); }
.faq-a-inner { padding: 0 0 22px; font-size: 15px; color: var(--muted); line-height: 1.8; }

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-body { max-width: 800px; margin: 0 auto; padding: 80px 24px; }
.policy-body h2 { font-family: var(--font-serif); font-size: 28px; color: var(--walnut); margin-top: 48px; margin-bottom: 14px; }
.policy-body h3 { font-size: 18px; color: var(--walnut); margin-top: 28px; margin-bottom: 10px; font-family: var(--font-sans); font-weight: 600; }
.policy-body p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.policy-body ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-body li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 8px; }
.policy-body a { color: var(--gold); text-decoration: underline; }
.policy-updated { font-size: 13px; color: var(--muted); margin-bottom: 48px; padding-bottom: 24px; border-top: 0; border-bottom: 1px solid var(--border); padding-top: 0; }

/* =============================================
   TOAST
   ============================================= */
.toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: var(--walnut); color: var(--cream); padding: 14px 20px; border-radius: var(--r-md); box-shadow: var(--shadow-xl); font-size: 14px; display: flex; align-items: center; gap: 10px; animation: slideToast 0.3s ease, fadeToast 0.3s ease 2.7s forwards; max-width: 320px; pointer-events: all; }
.toast-icon { color: var(--gold); font-size: 18px; flex-shrink: 0; }
@keyframes slideToast { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeToast { from { opacity: 1; } to { opacity: 0; } }

/* =============================================
   SCROLL TOP
   ============================================= */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--walnut); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: all var(--trans-base); z-index: 100; }
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold); transform: translateY(-2px); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.anim { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-walnut { color: var(--walnut); }
.text-cream { color: var(--cream); }
.bg-cream { background: var(--cream); }
.bg-beige { background: var(--beige); }
.bg-walnut { background: var(--walnut); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.page-fade { animation: fadeIn 0.4s ease; }
