/* === ROOT VARIABLES === */
:root {
  --bg: #080808;
  --bg-2: #0d0d0d;
  --bg-3: #111111;
  --fg: #f0ece3;
  --fg-dim: rgba(240, 236, 227, 0.55);
  --gold: #c4a84b;
  --gold-bright: #e4c870;
  --gold-dim: rgba(196, 168, 75, 0.3);
  --cream: #f5f0e6;
  --warm-gray: #3a3632;
  --border: rgba(196, 168, 75, 0.18);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* === SELECTION === */
::selection { background: var(--gold); color: var(--bg); }

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4vw;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  color: var(--cream);
}

.logo-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  font-style: italic;
  font-family: var(--font-display);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(196, 168, 75, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(196, 168, 75, 0.02) 0%, transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 5rem 4vw 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  padding-right: 2rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-text {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease-out 0.35s both;
}

.h1-line1 {
  display: block;
  color: var(--fg);
}

.h1-line2 {
  display: block;
  color: var(--fg);
}

.h1-line3 {
  display: block;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--fg-dim);
  line-height: 1.75;
  max-width: 42ch;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease-out 0.5s both;
}

.hero-price-callout {
  animation: fadeUp 0.8s ease-out 0.65s both;
}

.price-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.pi-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  text-transform: uppercase;
}

.pi-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

.pi-note {
  font-size: 0.8rem;
  color: var(--fg-dim);
  font-style: italic;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s ease-out 0.5s both;
}

.hero-sculpture-frame {
  position: relative;
  width: 280px;
  height: 400px;
  display: flex;
  flex-direction: column;
}

.sf-top {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-marker {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

.sf-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sculpture-stand {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ss-base {
  width: 120px;
  height: 16px;
  background: linear-gradient(135deg, #5a4a2a, #3a2a10);
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.8);
}

.ss-pillar {
  width: 28px;
  height: 20px;
  background: linear-gradient(135deg, #4a3a1a, #2a1a08);
}

.ss-cap {
  width: 60px;
  height: 8px;
  background: linear-gradient(135deg, #5a4a2a, #3a2a10);
  border-radius: 2px;
}

.sculpture-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -4px;
  z-index: 3;
}

.sf-orb {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 35% 35%, var(--gold-bright), var(--gold), #7a6030);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px rgba(196, 168, 75, 0.15),
    0 0 30px rgba(196, 168, 75, 0.25),
    inset 0 -8px 20px rgba(0,0,0,0.3),
    inset 0 8px 20px rgba(255, 255, 255, 0.15);
  animation: orbFloat 4s ease-in-out infinite;
}

.sf-halo {
  position: absolute;
  top: 5px;
  width: 100px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(196, 168, 75, 0.3), transparent);
  border-radius: 50%;
  animation: haloPulse 3s ease-in-out infinite;
}

.sf-crown {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -6px;
}

.sc-point {
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter: drop-shadow(0 0 6px rgba(228, 200, 112, 0.8));
}

.sc-ray {
  position: absolute;
  top: 16px;
  width: 2px;
  height: 30px;
  background: linear-gradient(to top, transparent, var(--gold));
}

.sc-ray-l { left: calc(50% - 40px); transform: rotate(-20deg); }
.sc-ray-r { right: calc(50% - 40px); transform: rotate(20deg); }

.sf-face {
  position: absolute;
  top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
}

.sf-eye {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--bg);
  border-radius: 50%;
}

.sf-eye-l { margin-right: 14px; }
.sf-eye-r { margin-left: 14px; }

.sf-smile {
  width: 20px;
  height: 8px;
  border-bottom: 2px solid var(--bg);
  border-radius: 0 0 50% 50%;
  margin-top: 4px;
}

.sf-base-plate {
  width: 200px;
  height: 30px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.sp-marks {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.sf-bottom {
  padding-top: 12px;
  display: flex;
  justify-content: center;
}

.sf-shadow {
  width: 160px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.6), transparent 70%);
  border-radius: 50%;
}

/* Hero tag badge */
.hero-tag-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--gold);
  color: var(--bg);
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* Hero stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 4vw;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  animation: fadeUp 0.8s ease-out 0.8s both;
}

.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hs-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
}

.hs-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.hs-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === CRAFTSMANSHIP === */
.craftsmanship {
  padding: 8rem 4vw;
  background: var(--bg-2);
}

.craft-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.craft-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.craft-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4rem;
  color: var(--cream);
}

.craft-heading em {
  color: var(--gold);
  font-style: italic;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.cg-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.3s;
}

.cg-card:hover {
  border-color: rgba(196, 168, 75, 0.4);
}

.cg-card-main {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
}

.cc-visual {
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-text h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.cc-text p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* Sculpture stand visual */
.cv-sculpture {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.vs-stand {
  width: 80px;
  height: 8px;
  background: linear-gradient(135deg, #5a4a2a, #3a2a10);
  border-radius: 2px;
}

.vs-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vf-head {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 35% 35%, var(--gold-bright), var(--gold));
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(196, 168, 75, 0.3);
}

.vf-body {
  width: 60px;
  height: 70px;
  background: radial-gradient(circle at 40% 30%, var(--gold-bright), var(--gold), #7a6030);
  border-radius: 8px 8px 12px 12px;
  margin-top: -4px;
}

.vf-arm {
  position: absolute;
  top: 20px;
  width: 12px;
  height: 30px;
  background: var(--gold);
  border-radius: 4px;
}

.vf-arm-l { left: calc(50% - 44px); }
.vf-arm-r { right: calc(50% - 44px); }

.vs-base {
  width: 100px;
  height: 16px;
  background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Shine visual */
.cv-shine-1 {
  position: absolute;
  width: 80px;
  height: 80px;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(228, 200, 112, 0.4) 30deg, transparent 60deg);
  border-radius: 50%;
  animation: shineRotate 4s linear infinite;
}

.cv-shine-2 {
  position: absolute;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, var(--gold-bright), var(--gold));
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(228, 200, 112, 0.5);
}

/* Weight bars visual */
.cv-weight-bars {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 80px;
}

.wb-bar {
  width: 20px;
  background: linear-gradient(to top, var(--gold), var(--gold-bright));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(196, 168, 75, 0.3);
}

.wb-1 { height: 60px; }
.wb-2 { height: 80px; }
.wb-3 { height: 50px; }

.wb-scale {
  width: 4px;
  height: 60px;
  background: var(--warm-gray);
  border-radius: 2px;
  position: relative;
}

.ws-needle {
  position: absolute;
  top: 15px;
  left: -12px;
  width: 28px;
  height: 3px;
  background: var(--gold);
  transform-origin: right center;
  transform: rotate(-25deg);
  border-radius: 2px;
}

/* Package visual */
.cv-package {
  position: relative;
  width: 90px;
  height: 70px;
}

.vp-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 60px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 1px solid rgba(196, 168, 75, 0.2);
  border-radius: 3px;
}

.vp-tape {
  position: absolute;
  top: 28px;
  left: 0;
  width: 90px;
  height: 8px;
  background: rgba(196, 168, 75, 0.3);
}

.vp-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--bg);
  line-height: 1.1;
}

/* === COLLECTION === */
.collection {
  padding: 8rem 4vw;
  background: var(--bg);
}

.coll-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.coll-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.coll-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
}

.coll-heading em {
  color: var(--gold);
  font-style: italic;
}

.coll-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 168, 75, 0.4);
}

.pc-visual {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  overflow: hidden;
}

.pc-original-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  color: var(--fg-dim);
  text-decoration: line-through;
  font-style: italic;
}

.pc-info {
  padding: 1.5rem;
}

.pc-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.pc-desc {
  font-size: 0.82rem;
  color: var(--fg-dim);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.pc-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pc-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.pc-save {
  font-size: 0.72rem;
  color: rgba(100, 200, 100, 0.7);
  background: rgba(100, 200, 100, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

/* Duck sculpture */
.pc-sculpture.duck {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.ds-base {
  width: 80px;
  height: 10px;
  background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
  border-radius: 2px;
  margin-top: 4px;
}

.ds-neck {
  width: 24px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 12px 12px 4px 4px;
  margin-top: -2px;
}

.ds-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -2px;
}

.dh-eye {
  width: 8px;
  height: 8px;
  background: var(--bg);
  border-radius: 50%;
}

.dh-beak {
  width: 18px;
  height: 10px;
  background: linear-gradient(135deg, #8a6030, #6a4020);
  border-radius: 0 0 50% 50%;
}

.ds-crown {
  display: flex;
  gap: 4px;
  margin-top: -2px;
}

.dc-ray {
  width: 2px;
  height: 14px;
  background: var(--gold-bright);
}

.dc-ray-l { transform: rotate(-15deg); }
.dc-ray-m { height: 18px; }
.dc-ray-r { transform: rotate(15deg); }

.ds-coin {
  position: absolute;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 35% 35%, var(--gold-bright), var(--gold));
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(196, 168, 75, 0.5);
}

.ds-coin-1 { bottom: 80px; right: 50px; }
.ds-coin-2 { bottom: 60px; left: 50px; width: 12px; height: 12px; }

/* Bear sculpture */
.pc-sculpture.bear {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.bs-base {
  width: 90px;
  height: 12px;
  background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
  border-radius: 2px;
}

.bs-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bb-arm {
  position: absolute;
  top: 20px;
  width: 14px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 8px;
}

.bb-arm-l { left: -10px; }
.bb-arm-r { right: -10px; }

.bb-head {
  position: relative;
}

.bh-ear {
  position: absolute;
  top: -8px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 35% 35%, var(--gold-bright), var(--gold));
  border-radius: 50%;
}

.bh-ear-l { left: -8px; }
.bh-ear-r { right: -8px; }

.bh-face {
  width: 60px;
  height: 55px;
  background: radial-gradient(circle at 35% 35%, var(--gold-bright), var(--gold));
  border-radius: 50% 50% 45% 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.bf-eye {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--bg);
  border-radius: 50%;
}

.bf-nose {
  width: 12px;
  height: 8px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
}

.bs-crown {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.bc-star {
  width: 16px;
  height: 16px;
  background: var(--gold-bright);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  filter: drop-shadow(0 0 4px rgba(228, 200, 112, 0.8));
}

/* Money bag sculpture */
.pc-sculpture.money {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.ms-base {
  width: 80px;
  height: 10px;
  background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
  border-radius: 2px;
}

.ms-sack {
  position: relative;
  width: 70px;
  height: 80px;
  background: radial-gradient(circle at 35% 35%, var(--gold-bright), var(--gold), #8a7030);
  border-radius: 35% 35% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-tie {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 12px;
  background: rgba(0,0,0,0.15);
  border-radius: 0 0 10px 10px;
}

.ms-coin {
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 35% 35%, var(--gold-bright), #9a8040);
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.2);
}

.ms-coin-1 { top: 15px; right: -5px; }
.ms-coin-2 { bottom: 20px; left: -6px; }
.ms-coin-3 { top: 40px; left: -8px; width: 10px; height: 10px; }

.ms-$ {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(0,0,0,0.25);
}

/* Collection reassurance */
.coll-reassurance {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.ri-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--fg-dim);
}

.ri-icon {
  color: var(--gold);
  font-size: 0.9rem;
}

/* === MANIFESTO === */
.manifesto {
  padding: 8rem 4vw;
  background: var(--bg-2);
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}

.mep-top-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 3rem;
}

.manifesto-quote {
  margin-bottom: 3rem;
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
}

.manifesto-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
}

.manifesto-body {
  margin-bottom: 3rem;
}

.manifesto-body p {
  font-size: 1rem;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.manifesto-byline {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mb-rule {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold-dim);
  flex-shrink: 0;
}

.mb-text {
  font-size: 0.8rem;
  color: var(--fg-dim);
  font-style: italic;
}

/* === CLOSING === */
.closing {
  padding: 10rem 4vw;
  background: var(--bg);
  text-align: center;
  background-image:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(196, 168, 75, 0.03) 0%, transparent 70%);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.close-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.close-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--cream);
}

.close-heading em {
  color: var(--gold);
  font-style: italic;
}

.close-body {
  margin-bottom: 3rem;
}

.close-body p {
  font-size: 1rem;
  color: var(--fg-dim);
  line-height: 1.8;
}

.close-cta {
  margin-bottom: 2rem;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.cta-link:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.cta-link svg {
  transition: transform 0.2s;
}

.cta-link:hover svg {
  transform: translate(3px, -3px);
}

.close-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--fg-dim);
}

.close-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* === FOOTER === */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 4vw 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 2rem;
}

.ft-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cream);
}

.ft-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 2rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.fl-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.flg-title {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.fl-link {
  font-size: 0.85rem;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.fl-link:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--fg-dim);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

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

@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes haloPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes shineRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3rem;
  }

  .hero-visual {
    order: -1;
    height: 300px;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-price-callout {
    display: flex;
    justify-content: center;
  }

  .craft-grid {
    grid-template-columns: 1fr;
  }

  .cg-card-main {
    flex-direction: column;
  }

  .coll-grid {
    grid-template-columns: 1fr;
  }

  .coll-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .coll-reassurance {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-stats-row {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

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

  .hero-stats-row {
    gap: 1rem;
  }

  .hs-divider { display: none; }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .close-heading br { display: none; }
}