/* ─────────────────────────────────────────────────────────────
   KTM DRIP — Luxury Hemp Website
   Palette: Dark charcoal · Himalayan gold · Sage green · Cream
   ───────────────────────────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --clr-bg:       #080807;
  --clr-bg-2:     #0f0f0c;
  --clr-surface:  #141410;
  --clr-gold:     #c9a84c;
  --clr-gold-lt:  #e4c97e;
  --clr-gold-dk:  #8f7230;
  --clr-cream:    #f0e8d6;
  --clr-sage:     #5a7050;
  --clr-sage-lt:  #8a9e7a;
  --clr-text:     #d4ccb8;
  --clr-muted:    #7a7264;
  --clr-border:   #2a2820;

  --ff-serif:     'Cormorant Garamond', Georgia, serif;
  --ff-display:   'Playfair Display', Georgia, serif;
  --ff-sans:      'Inter', system-ui, sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h:        80px;
  --max-w:        1200px;
}

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

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

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-sans);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

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

/* ── CONTAINER ── */
.container {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
}

/* ── TYPOGRAPHY ── */
.section-label {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--clr-gold-lt); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--clr-cream);
  margin-bottom: 1.8rem;
}
.section-title em {
  font-style: italic;
  color: var(--clr-gold);
}
.section-title.light { color: #fff; }

.body-text {
  font-size: 1rem;
  color: var(--clr-muted);
  max-width: 54ch;
  margin-bottom: 1.4rem;
  line-height: 1.85;
}

/* ── CUSTOM CURSOR ── */
.cursor,
.cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: opacity 0.3s;
}
.cursor {
  width: 8px;
  height: 8px;
  background: var(--clr-gold-lt);
  transform: translate(-50%, -50%);
}
.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid var(--clr-gold);
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}
body:hover .cursor { opacity: 1; }
.cursor-follower.hover {
  width: 56px;
  height: 56px;
  border-color: var(--clr-gold-lt);
}

/* ── LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }

.loader-logo {
  width: 180px;
  margin: 0 auto 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderFade 0.8s 0.3s var(--ease-out) forwards;
}
.loader-logo img { width: 100%; filter: invert(1) brightness(0.7) sepia(1) hue-rotate(5deg) saturate(3); }

.loader-bar {
  width: 200px;
  height: 1px;
  background: var(--clr-border);
  margin: 0 auto;
  overflow: hidden;
}
.loader-bar span {
  display: block;
  height: 100%;
  background: var(--clr-gold);
  animation: loaderBar 1.8s var(--ease-in-out) forwards;
}

@keyframes loaderFade {
  to { opacity: 1; transform: none; }
}
@keyframes loaderBar {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(8, 8, 7, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--clr-border);
}

.nav-logo { width: 120px; position: relative; }
.nav-logo img { width: 100%; transition: opacity 0.3s; }
.logo-light { filter: invert(1) brightness(0.7) sepia(1) hue-rotate(5deg) saturate(3); }
.logo-dark  { position: absolute; top: 0; left: 0; opacity: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--clr-cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--clr-gold) !important;
  padding: 0.45rem 1.2rem !important;
  color: var(--clr-gold) !important;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--clr-gold) !important; color: var(--clr-bg) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--clr-cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Mountain silhouette using CSS */
.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background:
    /* Peak 1 - far left */
    radial-gradient(ellipse 10% 100% at 10% 100%, #1a2012 0%, transparent 100%),
    /* Peak 2 */
    radial-gradient(ellipse 14% 85% at 22% 100%, #1c2515 0%, transparent 100%),
    /* Peak 3 - tallest center-left */
    radial-gradient(ellipse 18% 100% at 36% 100%, #141d0f 0%, transparent 100%),
    /* Peak 4 - center */
    radial-gradient(ellipse 12% 90% at 50% 100%, #192211 0%, transparent 100%),
    /* Peak 5 */
    radial-gradient(ellipse 20% 95% at 64% 100%, #1a2313 0%, transparent 100%),
    /* Peak 6 */
    radial-gradient(ellipse 16% 80% at 78% 100%, #1c2615 0%, transparent 100%),
    /* Peak 7 */
    radial-gradient(ellipse 12% 70% at 90% 100%, #18200f 0%, transparent 100%);
  clip-path: polygon(
    0% 100%,
    0% 72%, 5% 55%, 10% 38%, 14% 55%, 17% 40%,
    22% 18%, 26% 40%, 30% 25%, 36% 0%, 42% 28%,
    47% 14%, 52% 32%, 57% 8%, 63% 30%, 68% 16%,
    74% 38%, 79% 22%, 84% 45%, 88% 30%, 93% 52%,
    97% 38%, 100% 55%, 100% 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(14, 18, 10, 0.4) 0%, transparent 60%),
    linear-gradient(180deg,
      rgba(8,8,7,0.5) 0%,
      rgba(8,8,7,0.1) 30%,
      rgba(8,8,7,0.3) 70%,
      rgba(8,8,7,0.85) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--clr-cream);
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.hero-title span { display: block; }
.hero-title em {
  font-style: italic;
  color: var(--clr-gold);
  display: block;
  font-size: 1.15em;
}

.hero-subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 300;
  color: rgba(212, 204, 184, 0.75);
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-gold);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }

.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-bg);
  border: 1px solid var(--clr-gold);
}
.btn-primary::before { background: var(--clr-gold-lt); }
.btn-primary:hover { color: var(--clr-bg); }
.btn-primary:hover::before { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--clr-cream);
  border: 1px solid rgba(240, 232, 214, 0.3);
}
.btn-ghost::before { background: rgba(240, 232, 214, 0.08); }
.btn-ghost:hover::before { transform: translateY(0); }

.btn-full { width: 100%; }

.btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn.loading .btn-text { display: none; }
.btn.loading .btn-spinner { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--clr-gold);
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-bg);
}
.marquee-track .dot { color: var(--clr-bg); opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
  padding: clamp(5rem, 12vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: 'HEMP';
  position: absolute;
  right: -0.1em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.03);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border);
}
.stat { text-align: left; }
.stat span { font-family: var(--ff-display); font-size: 2.4rem; color: var(--clr-gold); }
.stat p   { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clr-muted); margin-top: 0.3rem; }

.about-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 560px;
}
.about-img-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(90,112,80,0.15) 0%, rgba(8,8,7,0) 50%),
    repeating-linear-gradient(
      45deg,
      rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px,
      transparent 1px, transparent 20px
    ),
    var(--clr-surface);
  border: 1px solid var(--clr-border);
}
.about-img-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(90,112,80,0.12) 0%, transparent 70%);
}

.about-product-img {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,0.42));
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid var(--clr-gold-dk);
  z-index: -1;
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 90px;
  height: 90px;
  background: var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  animation: badgeRotate 12s linear infinite;
}
.about-img-badge img { width: 100%; filter: invert(1); }
@keyframes badgeRotate {
  to { transform: rotate(360deg); }
}

/* ── PRODUCTS ── */
.products {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(201,168,76,0.11), transparent 35%),
    radial-gradient(circle at 85% 78%, rgba(106,171,106,0.12), transparent 38%),
    linear-gradient(180deg, #0c0f0b 0%, #10140f 48%, #0d110d 100%);
  overflow: hidden;
}
.products::before,
.products::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.products::before {
  inset: -20% 10% auto 10%;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.18), transparent 72%);
  filter: blur(30px);
}
.products::after {
  inset: 0;
  background: repeating-linear-gradient(
    110deg,
    rgba(201,168,76,0.02) 0px,
    rgba(201,168,76,0.02) 1px,
    transparent 1px,
    transparent 48px
  );
}

/* Skeleton loading cards */
.product-card.skeleton {
  pointer-events: none;
  min-height: 320px;
}
.product-card.skeleton::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.04) 50%,
    rgba(255,255,255,0) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position:  200% 0; }
}
.section-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.products-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(23,28,22,0.92), rgba(13,15,12,0.97));
  border: 1px solid rgba(201,168,76,0.16);
  transition: transform 0.45s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(201,168,76,0.08), transparent 58%);
  pointer-events: none;
}
.product-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 28px 56px rgba(0,0,0,0.38);
}

.product-img {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.product-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
  background-size: cover;
  background-position: center;
  filter: saturate(0.86) brightness(0.75);
}
.product-card:hover .product-img-bg {
  transform: scale(1.06);
  filter: saturate(1) brightness(0.88);
}

/* Product image placeholder patterns */
.bag {
  background:
    linear-gradient(135deg, #1e2a18 0%, #0f1a0c 50%, #1a250f 100%),
    repeating-linear-gradient(
      0deg,
      rgba(201,168,76,0.06) 0px, rgba(201,168,76,0.06) 2px,
      transparent 2px, transparent 28px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(201,168,76,0.06) 0px, rgba(201,168,76,0.06) 2px,
      transparent 2px, transparent 28px
    );
}
.cap {
  background: linear-gradient(135deg, #1a1a10 0%, #141408 50%, #201e0e 100%);
  background-image:
    radial-gradient(circle at 50% 35%, rgba(201,168,76,0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 35%, rgba(90,112,80,0.12) 0%, transparent 70%);
}
.sidebag {
  background: linear-gradient(135deg, #12201a 0%, #0a1610 50%, #16241c 100%);
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px,
      transparent 1px, transparent 16px
    );
}
.backpack {
  background: linear-gradient(160deg, #1c1812 0%, #110e0a 50%, #201a10 100%);
  background-image:
    radial-gradient(ellipse at 50% 100%, rgba(90,112,80,0.18) 0%, transparent 60%);
}
.fabric {
  background: linear-gradient(135deg, #1a180e 0%, #100e06 50%, #201e10 100%);
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(201,168,76,0.08) 0px, rgba(201,168,76,0.08) 1px,
      transparent 1px, transparent 12px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(201,168,76,0.05) 0px, rgba(201,168,76,0.05) 1px,
      transparent 1px, transparent 12px
    );
}
.pouch {
  background: linear-gradient(135deg, #161e12 0%, #0c1408 50%, #1a2210 100%);
  background-image:
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
}

/* Add a hemp leaf SVG watermark to product images via ::after */
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.22), transparent 45%),
    linear-gradient(to top, rgba(8,8,7,0.88) 0%, rgba(8,8,7,0.32) 45%, transparent 78%);
}

.product-photo-shell {
  position: relative;
  z-index: 1;
  width: min(82%, 280px);
  height: min(74%, 220px);
  border: 1px solid rgba(201,168,76,0.22);
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.14), rgba(8,8,7,0.22) 65%);
  display: grid;
  place-items: center;
  backdrop-filter: blur(2.2px);
  box-shadow: inset 0 0 40px rgba(201,168,76,0.08), 0 26px 40px rgba(0,0,0,0.32);
}

.product-photo {
  max-width: 94%;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.46));
  animation: floatImage 6s ease-in-out infinite;
}

.product-photo--fallback {
  width: 78%;
  height: 72%;
  border: 1px dashed rgba(201,168,76,0.35);
  display: grid;
  place-items: center;
  color: rgba(237,229,208,0.84);
  font-family: var(--ff-serif);
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

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

.product-tag {
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  z-index: 2;
  background: var(--clr-gold);
  color: var(--clr-bg);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.product-info {
  position: relative;
  z-index: 1;
  padding: 1.3rem 1.45rem 1.7rem;
}
.product-info h3 {
  font-family: var(--ff-serif);
  font-size: 1.28rem;
  font-weight: 400;
  color: var(--clr-cream);
  margin-bottom: 0.6rem;
}
.product-info p {
  font-size: 0.84rem;
  color: var(--clr-muted);
  line-height: 1.58;
  margin-bottom: 1rem;
}
.product-material {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold-dk);
}
.product-price {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.06rem;
  color: var(--clr-gold);
  margin-bottom: 0.4rem;
}

/* ── HERITAGE ── */
.heritage {
  position: relative;
  padding: clamp(6rem, 14vw, 11rem) 0;
  overflow: hidden;
}
.heritage-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--clr-bg) 0%, #0c120a 30%, #0c120a 70%, var(--clr-bg) 100%);
  z-index: 0;
}
.heritage-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 50%, rgba(90,112,80,0.08) 0%, transparent 60%),
    repeating-linear-gradient(
      -55deg,
      rgba(201,168,76,0.015) 0px, rgba(201,168,76,0.015) 1px,
      transparent 1px, transparent 40px
    );
}
.heritage-content { position: relative; z-index: 1; }

.heritage-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.pillar {
  text-align: left;
  padding: 2rem 1.5rem;
  border: 1px solid var(--clr-border);
  position: relative;
  transition: border-color 0.4s, background 0.4s;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.pillar:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.03); }
.pillar:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 40px;
  height: 40px;
  color: var(--clr-gold);
  margin-bottom: 1.5rem;
}
.pillar h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--clr-cream);
  margin-bottom: 0.75rem;
}
.pillar p {
  font-size: 0.87rem;
  color: var(--clr-muted);
  line-height: 1.75;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
}
.testimonials-slider {
  position: relative;
  max-width: 720px;
  margin: 2rem auto;
  min-height: 120px;
}
.testimonial {
  opacity: 0;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: opacity 0.7s var(--ease-out);
  pointer-events: none;
}
.testimonial.active { opacity: 1; position: relative; pointer-events: auto; }
.testimonial blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--clr-cream);
}
.testimonial cite {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
}
.testimonials-dots {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-border);
  transition: background 0.3s, transform 0.3s;
}
.t-dot.active { background: var(--clr-gold); transform: scale(1.4); }

/* ── CONTACT ── */
.contact {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: var(--clr-bg-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cd-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
}
.contact-details a {
  transition: color 0.3s;
}
.contact-details a:hover { color: var(--clr-gold-lt); }

.contact-form-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--clr-border);
  color: var(--clr-cream);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--clr-muted); opacity: 0.6; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
  background: rgba(201,168,76,0.04);
}

.form-response {
  margin-top: 1rem;
  font-size: 0.85rem;
  min-height: 1.2em;
  color: var(--clr-sage-lt);
}
.form-response.error { color: #c97a6a; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--clr-border);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--clr-border);
}
.footer-brand { max-width: 240px; }
.footer-logo {
  width: 130px;
  margin-bottom: 1rem;
  filter: invert(1) brightness(0.7) sepia(1) hue-rotate(5deg) saturate(2.5);
}
.footer-brand p { font-size: 0.9rem; color: var(--clr-muted); line-height: 1.7; }
.footer-nav { display: flex; gap: 4rem; }
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1rem;
}
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--clr-muted);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--clr-cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--clr-muted); }
.footer-tagline { color: var(--clr-gold-dk) !important; }

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-up.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays via data-delay attribute — applied by JS */

/* ── PARTICLES (canvas drawn by JS) ── */
#heroParticles canvas {
  position: absolute;
  inset: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .heritage-pillars { grid-template-columns: repeat(2, 1fr); }
  .products-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  /* Keep the same top-nav look while scrolling on mobile. */
  .navbar.scrolled {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    height: calc(100dvh - var(--nav-h));
    width: min(300px, 84vw);
    background: rgba(20, 20, 16, 0.97);
    backdrop-filter: blur(12px);
    border-left: 1px solid var(--clr-border);
    border-top: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1rem 1.2rem 3rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 1100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 0.72rem 0.2rem;
  }
  .nav-links li { width: 100%; }
  .nav-links .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  body.menu-open {
    overflow: hidden;
  }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }

  .products-grid { grid-template-columns: 1fr; }
  .heritage-pillars { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; }
  .footer-nav { gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Cursor hidden on touch */
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
