/* ============================================================
   PRESIDENTIAL BLUNTS — PREMIUM DESIGN SYSTEM
   Dark luxury • Presidential gold • Hunter green accents
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Base palette */
  --ink: #0a0a0a;
  --ink-2: #121212;
  --ink-3: #1a1a1a;
  --ink-4: #222222;
  --smoke: #2a2a2a;
  --ash: #3a3a36;

  /* Brand */
  --gold: #c9a961;
  --gold-bright: #e4c77c;
  --gold-dark: #8a7340;
  --gold-shadow: rgba(201, 169, 97, 0.25);
  --green: #2d4f3a;
  --green-bright: #3f7356;
  --cream: #f4ece0;
  --cream-dim: #d9cfbe;

  /* Text */
  --text: #f4ece0;
  --text-muted: #a09688;
  --text-dim: #6b6258;

  /* Accents */
  --line: rgba(201, 169, 97, 0.2);
  --line-strong: rgba(201, 169, 97, 0.4);
  --overlay: rgba(10, 10, 10, 0.82);

  /* Typography */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Type scale (fluid) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.25rem, 1rem + 0.8vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2vw, 3rem);
  --text-4xl: clamp(2.5rem, 1.8rem + 3vw, 4rem);
  --text-display: clamp(3rem, 2rem + 6vw, 8rem);
  --text-mega: clamp(4rem, 2rem + 10vw, 12rem);

  /* Space */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-section: clamp(5rem, 3rem + 6vw, 10rem);

  /* Radii */
  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;

  /* Motion */
  --dur-fast: 180ms;
  --dur: 320ms;
  --dur-slow: 600ms;
  --dur-very-slow: 1200ms;
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container: 1400px;
  --container-wide: 1600px;
  --container-narrow: 1100px;
  --gutter: clamp(1.25rem, 0.5rem + 3vw, 3rem);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 20px 60px rgba(201, 169, 97, 0.15);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { height: 100%; }
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: none; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: inherit; }

/* ---------- BASE ---------- */
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* Grain / film texture overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: overlay;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, .display { font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; }
h1, .h1 { font-size: var(--text-display); }
h2, .h2 { font-size: var(--text-4xl); }
h3, .h3 { font-size: var(--text-3xl); }
h4, .h4 { font-size: var(--text-2xl); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.italic { font-style: italic; color: var(--gold-bright); }
.serif { font-family: var(--font-display); }
.mono { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.15em; text-transform: uppercase; }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }
.container-wide { max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }
section { padding-block: var(--space-section); position: relative; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 1rem 2rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), filter var(--dur);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform var(--dur-slow) var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--ink); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

.btn-sm { padding: 0.75rem 1.25rem; font-size: var(--text-xs); }
.btn-lg { padding: 1.25rem 2.5rem; font-size: var(--text-base); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: border-color var(--dur), color var(--dur), gap var(--dur);
}
.link-arrow:hover { border-color: var(--gold); gap: var(--space-4); color: var(--gold-bright); }
.link-arrow svg { width: 14px; height: 14px; transition: transform var(--dur); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding-block: var(--space-6);
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), border-color var(--dur);
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5), transparent);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  padding-block: var(--space-3);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-6);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
  justify-self: center;
  transition: transform var(--dur);
}
.brand:hover { transform: scale(1.02); }
.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1rem + 1vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}
.brand-mark::before, .brand-mark::after { content: "★"; color: var(--gold); margin-inline: 0.3em; font-size: 0.6em; vertical-align: middle; }
.brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  text-indent: 0.5em;
}

.nav-links {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}
.nav-links.left { justify-content: flex-end; }
.nav-links.right { justify-content: flex-start; }
.nav-links a {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.78;
  transition: opacity var(--dur), color var(--dur);
  position: relative;
  padding-block: 4px;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-links a.active { color: var(--gold); opacity: 1; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.6rem 1rem;
  border: 1px solid var(--line-strong);
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.nav-cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.menu-toggle {
  display: none;
  width: 32px; height: 32px;
  position: relative;
  justify-self: end;
}
.menu-toggle span {
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transition: transform var(--dur), opacity var(--dur), top var(--dur);
}
.menu-toggle span:nth-child(1) { top: 10px; }
.menu-toggle span:nth-child(2) { top: 15px; }
.menu-toggle span:nth-child(3) { top: 20px; }
.menu-toggle.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: start; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav.open { display: flex; }
}

.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 99;
  padding: 6rem var(--gutter) 2rem;
  flex-direction: column;
  gap: var(--space-6);
  transform: translateY(-100%);
  transition: transform var(--dur-slow) var(--ease);
}
.mobile-nav.open { display: flex; transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: var(--space-4);
  transition: color var(--dur), padding-left var(--dur);
}
.mobile-nav a:hover { color: var(--gold); padding-left: var(--space-4); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 8rem;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.75) 50%, var(--ink) 100%);
  z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) saturate(0.95) contrast(1.1);
  animation: slowZoom 20s var(--ease) infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.08); } }

.hero-content {
  max-width: 1100px;
  padding-block: var(--space-20);
}
.hero-eyebrow { margin-bottom: var(--space-8); }
.hero h1 {
  font-size: var(--text-display);
  line-height: 0.95;
  font-weight: 400;
  margin-bottom: var(--space-8);
  max-width: 16ch;
}
.hero h1 .italic { font-style: italic; font-family: var(--font-display); }
.hero-lede {
  font-size: var(--text-xl);
  line-height: 1.5;
  color: var(--cream-dim);
  max-width: 55ch;
  margin-bottom: var(--space-12);
}
.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}
.hero-ctas .meta {
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: var(--space-6);
  border-left: 1px solid var(--line);
  margin-left: var(--space-2);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-corner {
  position: absolute;
  top: 40%;
  right: var(--gutter);
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  gap: var(--space-6);
  align-items: center;
}
.hero-corner::before, .hero-corner::after {
  content: ""; width: 40px; height: 1px; background: var(--line);
}

@media (max-width: 768px) {
  .hero-corner { display: none; }
  .hero h1 { max-width: 14ch; }
}

/* ---------- MARQUEE / TICKER ---------- */
.marquee {
  background: linear-gradient(90deg, var(--ink-2) 0%, var(--ink-3) 50%, var(--ink-2) 100%);
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding-block: var(--space-4);
  position: relative;
}
.marquee-inner {
  display: flex;
  gap: var(--space-16);
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--cream-dim);
  display: inline-flex;
  align-items: center;
  gap: var(--space-6);
  white-space: nowrap;
}
.marquee-item::after {
  content: "✦";
  color: var(--gold);
  font-style: normal;
  font-size: 0.6em;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- STATS BAR ---------- */
.stats {
  padding-block: var(--space-20);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-8);
}
.stat {
  padding: var(--space-8);
  border: 1px solid var(--line);
  background: var(--ink-3);
  position: relative;
  transition: border-color var(--dur), transform var(--dur);
}
.stat:hover { border-color: var(--gold); transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 3vw, 5rem);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-3);
}
.stat-num sup { font-size: 0.4em; opacity: 0.7; }
.stat-label {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-label strong { color: var(--text); display: block; margin-bottom: 4px; font-weight: 600; }

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--line);
}
.section-head .title { max-width: 22ch; }
.section-head h2 { margin-top: var(--space-6); }
.section-head .lede { color: var(--cream-dim); font-size: var(--text-lg); max-width: 50ch; line-height: 1.5; margin-top: var(--space-4); }
@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

/* ---------- PRODUCT GRID (FEATURED) ---------- */
.featured {
  background: var(--ink);
  position: relative;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-card {
  background: var(--ink-2);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
  transition: background var(--dur);
  cursor: pointer;
  text-align: left;
}
.product-card:hover { background: var(--ink-3); }
.product-card .media {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--smoke), var(--ink-4));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.product-card .media::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(201, 169, 97, 0.15), transparent 70%);
  z-index: 1;
}
.product-card .media img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: transform var(--dur-slow) var(--ease-out);
  z-index: 2;
  position: relative;
}
.product-card:hover .media img { transform: scale(1.08) rotate(-2deg); }
.product-card .badge {
  position: absolute; top: var(--space-4); right: var(--space-4);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 8px;
  z-index: 3;
  font-weight: 700;
}
.product-card .badge.muted { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.product-card .cat {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.product-card .title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.2;
  color: var(--cream);
  font-weight: 500;
  min-height: 3em;
}
.product-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}
.product-card .price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gold);
}
.product-card .price small { font-size: 0.65em; color: var(--text-muted); letter-spacing: 0.1em; margin-right: 4px; }
.product-card .add {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--dur), color var(--dur), transform var(--dur);
}
.product-card .add:hover { background: var(--gold); color: var(--ink); transform: rotate(90deg); }

/* ---------- FEATURE SPLIT ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
}
.split-media { position: relative; overflow: hidden; min-height: 480px; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 3s var(--ease); filter: saturate(0.9) brightness(0.7); }
.split-media:hover img { transform: scale(1.05); }
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.5) 100%);
}
.split-body {
  padding: var(--space-16) var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-8);
  background: var(--ink-2);
}
.split-body .eyebrow { margin-bottom: var(--space-2); }
.split-body h2 { font-size: var(--text-3xl); }
.split-body p { color: var(--cream-dim); font-size: var(--text-lg); line-height: 1.7; max-width: 50ch; }
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 360px; }
  .split-body { padding: var(--space-12) var(--space-8); }
}
.split.reverse .split-media { order: 2; }
@media (max-width: 960px) { .split.reverse .split-media { order: 0; } }

/* ---------- CRAFT PROCESS ---------- */
.craft {
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border-block: 1px solid var(--line);
}
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: var(--space-8);
}
.craft-step {
  background: var(--ink-2);
  padding: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
  min-height: 360px;
  transition: background var(--dur);
}
.craft-step:hover { background: var(--ink-3); }
.craft-step .num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 3rem + 3vw, 7rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: var(--space-4);
}
.craft-step h3 { font-size: var(--text-2xl); }
.craft-step p { color: var(--cream-dim); font-size: var(--text-base); line-height: 1.6; }
@media (max-width: 900px) {
  .craft-grid { grid-template-columns: 1fr; }
}

/* ---------- SHOP PAGE GRID ---------- */
.shop-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-8);
  padding-block: var(--space-8);
  border-block: 1px solid var(--line);
  margin-bottom: var(--space-12);
}
.shop-count { font-size: var(--text-sm); letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.shop-filters { display: flex; gap: var(--space-2); justify-content: center; flex-wrap: wrap; }
.filter-chip {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  color: var(--text-muted);
  background: transparent;
  transition: border-color var(--dur), color var(--dur), background var(--dur);
}
.filter-chip:hover { color: var(--gold); border-color: var(--gold); }
.filter-chip.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.shop-sort { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
@media (max-width: 900px) { .shop-toolbar { grid-template-columns: 1fr; text-align: center; } }

/* ---------- TESTIMONIALS ---------- */
.reviews {
  background: url("../images/lifestyle/14.jpg") center / cover no-repeat fixed;
  position: relative;
  color: var(--cream);
}
.reviews::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(10, 10, 10, 0.85) 40%, rgba(10, 10, 10, 0.85) 60%, var(--ink) 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}
.review {
  border: 1px solid var(--line);
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(10px);
  padding: var(--space-12);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transition: border-color var(--dur), transform var(--dur);
}
.review:hover { border-color: var(--gold); transform: translateY(-6px); }
.review::before {
  content: "\201C";
  position: absolute;
  top: -30px; left: var(--space-6);
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
}
.review-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.5;
  color: var(--cream);
  font-style: italic;
}
.review-stars { color: var(--gold); letter-spacing: 0.15em; font-size: var(--text-sm); }
.review-by { display: flex; align-items: center; gap: var(--space-3); padding-top: var(--space-6); border-top: 1px solid var(--line); margin-top: auto; }
.review-by strong { color: var(--cream); font-size: var(--text-sm); letter-spacing: 0.1em; font-weight: 600; }
.review-by span { color: var(--text-muted); font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  padding-block: var(--space-24);
  text-align: center;
  background: radial-gradient(ellipse at center, var(--ink-3), var(--ink));
  border-block: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-strip::before,
.cta-strip::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-shadow), transparent 60%);
  transform: translate(-50%, -50%);
}
.cta-strip::before { top: -50%; }
.cta-strip::after { top: 150%; }
.cta-strip h2 {
  font-size: var(--text-display);
  line-height: 0.95;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 2;
}
.cta-strip p { font-size: var(--text-xl); color: var(--cream-dim); max-width: 55ch; margin: 0 auto var(--space-8); position: relative; z-index: 2; }
.cta-strip .btn { position: relative; z-index: 2; }

/* ---------- ABOUT PAGE ---------- */
.page-hero {
  padding-top: 10rem;
  padding-bottom: var(--space-16);
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
}
.page-hero h1 { font-size: var(--text-display); margin-bottom: var(--space-6); max-width: 20ch; margin-inline: auto; line-height: 0.95; }
.page-hero p { color: var(--cream-dim); font-size: var(--text-xl); max-width: 60ch; margin-inline: auto; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}
.pillar {
  padding: var(--space-8);
  border: 1px solid var(--line);
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color var(--dur), transform var(--dur);
}
.pillar:hover { border-color: var(--gold); transform: translateY(-4px); }
.pillar-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--space-4);
}
.pillar h3 { font-size: var(--text-xl); }
.pillar p { color: var(--cream-dim); font-size: var(--text-base); line-height: 1.6; }

/* ---------- CONTACT FORM ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.contact-info { padding: var(--space-16) var(--space-12); background: var(--ink-2); display: flex; flex-direction: column; gap: var(--space-8); }
.contact-info h3 { font-size: var(--text-2xl); }
.contact-block { border-top: 1px solid var(--line); padding-top: var(--space-6); }
.contact-block .label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--space-3); }
.contact-block .value { font-family: var(--font-display); font-size: var(--text-xl); color: var(--gold); }
.contact-block a:hover { color: var(--gold-bright); }

.contact-form { padding: var(--space-16) var(--space-12); background: var(--ink); display: flex; flex-direction: column; gap: var(--space-6); }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); }
.field input, .field textarea, .field select {
  padding: var(--space-4);
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--cream);
  font-size: var(--text-base);
  transition: border-color var(--dur);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 140px; resize: vertical; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } .contact-info, .contact-form { padding: var(--space-12) var(--space-6); } }

/* ---------- FOOTER ---------- */
.site-footer {
  padding-block: var(--space-20) var(--space-8);
  background: var(--ink);
  border-top: 1px solid var(--line);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid var(--line);
}
.footer-brand { max-width: 340px; display: flex; flex-direction: column; gap: var(--space-6); }
.footer-brand p { color: var(--cream-dim); line-height: 1.6; font-size: var(--text-sm); }
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-6);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.3em;
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { font-size: var(--text-sm); color: var(--cream-dim); transition: color var(--dur), padding-left var(--dur); display: inline-block; }
.footer-col a:hover { color: var(--gold); padding-left: var(--space-2); }
.social { display: flex; gap: var(--space-3); margin-top: var(--space-2); }
.social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--cream-dim);
  transition: border-color var(--dur), color var(--dur), transform var(--dur);
  font-size: var(--text-sm);
}
.social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  padding-top: var(--space-8);
  font-size: var(--text-xs);
  color: var(--text-dim);
  letter-spacing: 0.1em;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- AGE GATE ---------- */
.age-gate {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  display: grid;
  place-items: center;
  padding: var(--gutter);
  transition: opacity var(--dur-slow), visibility var(--dur-slow);
}
.age-gate.hidden { opacity: 0; visibility: hidden; }
/* Synchronous fix: if sessionStorage confirmed, hide the gate before it ever paints */
html.age-confirmed .age-gate { display: none !important; }
.age-card {
  max-width: 520px;
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--gold);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
}
.age-card::before {
  content: "";
  position: absolute; inset: 8px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.age-card .seal {
  width: 80px; height: 80px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto var(--space-8);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  position: relative;
}
.age-card .seal::before,
.age-card .seal::after {
  content: "";
  position: absolute; inset: -8px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}
.age-card .seal::after { inset: 6px; border-color: var(--line); }
.age-card h2 { font-size: var(--text-3xl); margin-bottom: var(--space-4); }
.age-card p { color: var(--cream-dim); margin-bottom: var(--space-8); font-size: var(--text-base); line-height: 1.6; }
.age-card .buttons { display: flex; gap: var(--space-4); justify-content: center; }
.age-card .fine { font-size: var(--text-xs); color: var(--text-dim); margin-top: var(--space-8); line-height: 1.5; }

/* ---------- ATMOSPHERIC SECTION BACKGROUNDS ---------- */
/* Use: <section class="atmos" style="--atmos-img: url('images/lifestyle/14.jpg');"> */
.atmos {
  position: relative;
  overflow: hidden;
  background: transparent !important;
}
/* Gold cross divider — reusable composition for ::after backgrounds */
:root {
  --atmos-cross:
    linear-gradient(rgba(201, 169, 97, 0.22), rgba(201, 169, 97, 0.22)) 50% 0 / 1px 100% no-repeat,
    linear-gradient(rgba(201, 169, 97, 0.22), rgba(201, 169, 97, 0.22)) 0 50% / 100% 1px no-repeat;
}
/* Image layer — bottom — NOW TILED 2x2 for crisper resolution */
.atmos::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--atmos-img);
  background-size: 50% 50%;
  background-position: 0 0;
  background-repeat: repeat;
  filter: brightness(0.68) saturate(0.95) contrast(1.05);
  opacity: 0.55;
  transition: transform 12s var(--ease), opacity var(--dur);
  pointer-events: none;
}
/* Gradient overlay + gold cross divider — middle */
.atmos::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    var(--atmos-cross),
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.88) 0%,
      rgba(10, 10, 10, 0.35) 30%,
      rgba(10, 10, 10, 0.35) 70%,
      rgba(10, 10, 10, 0.88) 100%);
  pointer-events: none;
}
/* All direct children sit ABOVE both layers */
.atmos > * { position: relative; z-index: 2; }
/* Variants — each prepends the cross to its own gradient */
.atmos-deep::before { filter: brightness(0.55) saturate(0.9) contrast(1.1); opacity: 0.50; }
.atmos-deep::after { background: var(--atmos-cross), linear-gradient(180deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 30%, rgba(10,10,10,0.5) 70%, rgba(10,10,10,0.9) 100%); }
.atmos-subtle::before { filter: brightness(0.75) saturate(1) contrast(1.02); opacity: 0.40; }
.atmos-subtle::after { background: var(--atmos-cross), linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.25) 30%, rgba(10,10,10,0.25) 70%, rgba(10,10,10,0.85) 100%); }
.atmos-bright::before { filter: brightness(0.82) saturate(1.05); opacity: 0.95; }
.atmos-bright::after { background: var(--atmos-cross), linear-gradient(180deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.18) 35%, rgba(10,10,10,0.18) 65%, rgba(10,10,10,0.82) 100%); }
.atmos-product::before { background-position: center 30%; }
.atmos-fixed::before { background-attachment: fixed; }
/* Slow cinematic pan */
.atmos.animate::before { animation: slowPan 30s var(--ease) infinite alternate; }
@keyframes slowPan {
  from { transform: scale(1.03); }
  to { transform: scale(1.1); }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 100ms; }
.reveal.delay-2 { transition-delay: 200ms; }
.reveal.delay-3 { transition-delay: 300ms; }
.reveal.delay-4 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-bg img { animation: none; }
  .marquee-inner { animation: none; }
}

/* ---------- UTILITIES ---------- */
.tc { text-align: center; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

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

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ash); border: 2px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
