/* ══════════════════════════════════════════════════════
   PONSAR CLOTHING v2 — FULL CSS
   Premium Black & Gold · Multi-page · Animated
══════════════════════════════════════════════════════ */

:root {
  --black:   #080808;
  --dark:    #111111;
  --dark2:   #1a1a1a;
  --dark3:   #232323;
  --gold:    #c9a84c;
  --gold-lt: #e2c97e;
  --gold-dk: #9a7830;
  --white:   #f5f0e8;
  --white2:  #d4cfc5;
  --muted:   #7a7570;
  --font-d:  'Cormorant Garamond', serif;
  --font-b:  'Montserrat', sans-serif;
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h:   70px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-b);
  overflow-x: hidden;
  animation: pageEnter 0.5s var(--ease);
}
@keyframes pageEnter { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--dark); }
::-webkit-scrollbar-thumb { background:var(--gold-dk); border-radius:3px; }
::selection { background:var(--gold-dk); color:var(--white); }

/* ══ PAGE ENTER ═══════════════════════════════════════ */
body { animation: pageEnter 0.4s ease; }
@keyframes pageEnter { from { opacity:0; } to { opacity:1; } }

/* ══════════════════════════════════════════════════════
   APPLE-STYLE BIRTHDAY POPUP
══════════════════════════════════════════════════════ */

/* ── Particle canvas (behind overlay) ───────────────── */
.bday-particles-canvas {
  position:fixed; inset:0; z-index:8000;
  pointer-events:none; display:none;
}

/* ── Overlay — blurs entire page ────────────────────── */
.bday-overlay {
  position:fixed; inset:0; z-index:8001;
  display:none; align-items:center; justify-content:center;
  /* Page blur effect */
  background:rgba(0,0,0,0);
  backdrop-filter:blur(0px);
  transition:background 300ms ease, backdrop-filter 300ms ease;
}
.bday-overlay.active {
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(18px) saturate(140%);
}

/* ── Glass card ──────────────────────────────────────── */
.bday-card {
  position:relative;
  width:min(540px,92vw);
  padding:0;
  background:rgba(10,10,10,0.65);
  backdrop-filter:blur(24px) saturate(160%);
  -webkit-backdrop-filter:blur(24px) saturate(160%);
  border:1px solid rgba(201,168,76,0.25);
  border-radius:18px;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.08),
    0 32px 80px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow:hidden;
  /* Start scaled down, fade in */
  opacity:0;
  transform:scale(0.92) translateY(24px);
  transition:opacity 500ms cubic-bezier(0.16,1,0.3,1),
             transform 500ms cubic-bezier(0.16,1,0.3,1);
}
.bday-card.visible {
  opacity:1;
  transform:scale(1) translateY(0);
}

/* ── Border shimmer sweep ────────────────────────────── */
.bday-shimmer {
  position:absolute; top:0; left:-100%; width:60%; height:100%;
  background:linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.5) 50%,
    transparent 100%);
  pointer-events:none; z-index:10;
  border-radius:18px;
  animation:none;
  opacity:0;
}
.bday-shimmer.run {
  opacity:1;
  animation:shimmerSweep 900ms cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes shimmerSweep {
  0%   { left:-100%; opacity:0; }
  10%  { opacity:1; }
  100% { left:150%;  opacity:0; }
}

/* ── X close ─────────────────────────────────────────── */
.bday-x-close {
  position:absolute; top:14px; right:14px; z-index:20;
  width:26px; height:26px; border-radius:50%;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.5); font-size:.85rem;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:all 200ms ease; line-height:1;
}
.bday-x-close:hover {
  background:rgba(201,168,76,0.2);
  border-color:rgba(201,168,76,0.4);
  color:var(--gold);
}

/* ── Card inner (parallax tilt target) ───────────────── */
.bday-inner {
  padding:2.8rem 2.8rem 2.4rem;
  text-align:center;
  transform-style:preserve-3d;
  transition:transform 120ms ease;
  will-change:transform;
}

/* ── Photo wrap ──────────────────────────────────────── */
.bday-photo-wrap {
  position:relative; display:inline-block;
  margin-bottom:1.4rem;
}
/* Step 1: gold circle appears */
.bday-photo-circle {
  width:150px; height:150px; border-radius:50%;
  border:2px solid rgba(201,168,76,0);
  box-shadow:none;
  overflow:hidden; position:relative;
  margin:0 auto;
  transform:scale(0);
  transition:
    transform 200ms cubic-bezier(0.34,1.56,0.64,1),
    border-color 200ms ease,
    box-shadow 200ms ease;
}
.bday-photo-circle.step1 {
  transform:scale(1);
  border-color:rgba(201,168,76,0.8);
  box-shadow:0 0 20px rgba(201,168,76,0.3);
}
/* Step 2: image fades in */
.bday-photo-circle img,
.bday-photo-circle .dad-initial {
  width:100%; height:100%; object-fit:cover;
  opacity:0; transition:opacity 300ms ease 200ms;
  display:block; border-radius:50%;
}
.bday-photo-circle.step2 img,
.bday-photo-circle.step2 .dad-initial { opacity:1; }
.dad-initial {
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-d); font-size:2.5rem; color:var(--gold);
  background:linear-gradient(135deg,#111 0%,#1a1400 100%);
}
/* Step 3: halo glow expands */
.bday-halo {
  position:absolute; inset:-8px; border-radius:50%;
  border:1px solid rgba(201,168,76,0);
  box-shadow:0 0 0px rgba(201,168,76,0);
  transition:
    border-color 150ms ease 500ms,
    box-shadow 150ms ease 500ms,
    inset 400ms ease 500ms;
  pointer-events:none;
  animation:none;
}
.bday-photo-circle.step3 ~ .bday-halo,
.bday-photo-wrap.step3 .bday-halo {
  border-color:rgba(201,168,76,0.4);
  box-shadow:0 0 22px rgba(201,168,76,0.35), 0 0 60px rgba(201,168,76,0.12);
}
/* Gentle pulse after halo appears */
@keyframes haloPulse {
  0%,100%{ box-shadow:0 0 22px rgba(201,168,76,.35),0 0 60px rgba(201,168,76,.12); }
  50%    { box-shadow:0 0 30px rgba(201,168,76,.5), 0 0 80px rgba(201,168,76,.2); }
}
.bday-photo-wrap.pulsing .bday-halo {
  animation:haloPulse 3s ease-in-out infinite;
}

/* ── Typography ──────────────────────────────────────── */
.bday-text > * { opacity:0; }

.bday-label {
  font-size:.82rem; font-weight:700; letter-spacing:.45em;
  color:var(--gold); margin-bottom:.6rem;
  transition:opacity 400ms ease;
}
.bday-name {
  font-family:var(--font-d); font-size:2.8rem; font-weight:300;
  color:#fff; line-height:1.05; margin-bottom:.3rem;
  transform:translateY(18px);
  transition:opacity 500ms cubic-bezier(0.16,1,0.3,1),
             transform 500ms cubic-bezier(0.16,1,0.3,1);
}
.bday-name.visible { transform:translateY(0); }
.bday-role {
  font-size:.6rem; letter-spacing:.14em; color:rgba(255,255,255,0.45);
  margin-bottom:.8rem;
  transition:opacity 400ms ease;
}
.bday-divider {
  width:48px; height:1px; margin:.2rem auto .9rem;
  background:linear-gradient(90deg,transparent,rgba(201,168,76,0.7),transparent);
  transform:scaleX(0); transform-origin:center;
  transition:opacity 300ms ease, transform 400ms cubic-bezier(0.16,1,0.3,1);
}
.bday-divider.visible { transform:scaleX(1); }
.bday-quote {
  font-family:var(--font-d); font-style:italic;
  font-size:1.1rem; color:rgba(245,240,232,0.8); line-height:1.75;
  min-height:3rem; margin-bottom:.6rem;
  transition:opacity 300ms ease;
}
.bday-date {
  font-size:.58rem; letter-spacing:.2em; color:rgba(201,168,76,0.6);
  margin-bottom:1.2rem;
  transition:opacity 400ms ease;
}

/* Blinking cursor for typewriter */
.bday-cursor {
  display:inline-block; width:1.5px; height:.9em;
  background:var(--gold); margin-left:1px;
  vertical-align:middle;
  animation:blinkCursor .65s ease-in-out infinite;
}
@keyframes blinkCursor { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Inline Journey ──────────────────────────────────── */
.bday-journey {
  border-top:1px solid rgba(201,168,76,.12);
  padding-top:.9rem; margin-top:.2rem;
  display:flex; justify-content:center; gap:2rem;
  opacity:0; transition:opacity 500ms ease;
}
.bday-jt-row {
  display:flex; flex-direction:column; align-items:center; gap:.3rem;
  position:relative;
}
.bday-jt-row:not(:last-child)::after {
  content:'';
  position:absolute; right:-1rem; top:50%; transform:translateY(-50%);
  width:1px; height:60%; background:rgba(201,168,76,.15);
}
.bday-jt-year {
  font-family:var(--font-d); font-size:1.1rem; font-weight:300; color:var(--gold);
}
.bday-jt-dot {
  width:5px; height:5px; border-radius:50%;
  background:var(--gold-dk); border:1px solid var(--gold);
  flex-shrink:0;
}
.bday-jt-text {
  font-size:.6rem; letter-spacing:.06em; color:rgba(255,255,255,0.4);
  text-align:center; max-width:110px; line-height:1.4;
}

/* Hide old elements */
.bday-confetti-fullpage,
.bday-fibre-canvas,
.bday-weave-canvas,
.bday-card-fibres,
.bday-sparks,
.bday-ribbon,
.bday-ribbon2 { display:none !important; }

/* Mobile */
@media(max-width:540px){
  .bday-inner { padding:2rem 1.6rem 1.6rem; }
  .bday-photo-circle { width:120px; height:120px; }
  .bday-name { font-size:2.2rem; }
  .bday-label { font-size:.65rem; }
  .bday-journey { gap:1.2rem; }
}

/* ══ NAV ══════════════════════════════════════════════ */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--nav-h); display:flex; align-items:center; justify-content:space-between;
  padding:0 5vw; transition:background .4s,box-shadow .4s;
}
.nav.scrolled {
  background:rgba(8,8,8,.96);
  box-shadow:0 1px 0 rgba(201,168,76,.15);
  backdrop-filter:blur(14px);
}
.nav-logo { text-decoration:none; display:flex; flex-direction:column; line-height:1; }
.logo-text { font-family:var(--font-b); font-size:1rem; font-weight:600; letter-spacing:.4em; color:var(--gold); }
.logo-sub  { font-size:.45rem; font-weight:500; letter-spacing:.35em; color:var(--white2); }
/* Desktop nav-links — normal flex row inside nav */
.nav-links {
  list-style:none;
  display:flex;
  gap:2.5rem;
  align-items:center;
  margin:0; padding:0;
}
.nav-links a {
  color:var(--white2); text-decoration:none;
  font-size:.65rem; font-weight:500; letter-spacing:.18em; text-transform:uppercase;
  position:relative; transition:color .3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:100%;
  height:1px; background:var(--gold); transition:right .35s var(--ease);
}
.nav-links a:hover,.nav-links a.active { color:var(--gold); }
.nav-links a:hover::after,.nav-links a.active::after { right:0; }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; z-index:1001; }
.hamburger span { width:24px; height:1.5px; background:var(--gold); transition:all .3s; display:block; }
.hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

/* ══ BACK BUTTON ════════════════════════════════════== */
.back-btn {
  position:fixed; top:calc(var(--nav-h) + 1.2rem); left:5vw; z-index:900;
  display:flex; align-items:center; gap:.5rem;
  color:var(--muted); text-decoration:none;
  font-size:.65rem; font-weight:500; letter-spacing:.15em; text-transform:uppercase;
  padding:.5rem .9rem;
  border:1px solid rgba(201,168,76,.15);
  background:rgba(8,8,8,.8);
  backdrop-filter:blur(8px);
  transition:all .3s;
}
.back-btn svg { width:14px; height:14px; transition:transform .3s; }
.back-btn:hover { color:var(--gold); border-color:var(--gold-dk); }
.back-btn:hover svg { transform:translateX(-3px); }

/* ══ PAGE HERO ════════════════════════════════════════ */
.page-hero {
  min-height:40vh; padding:calc(var(--nav-h) + 5rem) 8vw 4rem;
  display:flex; flex-direction:column; justify-content:flex-end;
  position:relative; overflow:hidden;
}
.page-hero-bg {
  position:absolute; inset:0;
  background:radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,.07) 0%, transparent 70%),
             linear-gradient(180deg,#0d0b00 0%,var(--black) 100%);
}
.page-hero-bg::after {
  content:''; position:absolute; inset:0;
  background-image:repeating-linear-gradient(0deg,transparent,transparent 79px,rgba(201,168,76,.03) 80px);
}
.page-title {
  font-family:var(--font-d); font-size:clamp(2.2rem,6vw,4.5rem);
  font-weight:300; line-height:1.1; color:var(--white); position:relative; z-index:1;
  animation:revealUp .8s .2s var(--ease) both;
}
.page-title em { color:var(--gold); font-style:italic; }
.page-title-line {
  width:80px; height:1px; background:var(--gold-dk);
  margin-top:1.5rem; position:relative; z-index:1;
  animation:expandLine 1s .5s var(--ease) both;
}
@keyframes expandLine { from{width:0} to{width:80px} }
.page-hero-sub { position:relative; z-index:1; max-width:500px; margin-top:1rem; font-size:.82rem; font-weight:200; line-height:1.8; color:var(--muted); animation:revealUp .8s .4s var(--ease) both; }
.section-eyebrow { font-size:.58rem; font-weight:600; letter-spacing:.4em; color:var(--gold); margin-bottom:.8rem; text-transform:uppercase; position:relative; z-index:1; animation:revealUp .7s .1s var(--ease) both; }

/* ══ PAGE SECTIONS ════════════════════════════════════ */
.page-section { padding:5rem 8vw 7rem; }

/* ══ SCROLL ANIMATIONS ════════════════════════════════ */
.fade-in { opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease),transform .7s var(--ease); }
.fade-in.visible { opacity:1; transform:translateY(0); }
.fade-in-delay-1 { transition-delay:.12s; }
.fade-in-delay-2 { transition-delay:.24s; }
.fade-in-delay-3 { transition-delay:.36s; }

@keyframes revealUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* ══ COMMON ═══════════════════════════════════════════ */
.section-title { font-family:var(--font-d); font-size:clamp(1.8rem,4.5vw,3.2rem); font-weight:300; line-height:1.1; color:var(--white); margin-bottom:1.5rem; }
.section-title em { color:var(--gold); font-style:italic; }
.body-text { font-size:.83rem; font-weight:200; line-height:1.9; color:var(--white2); margin-bottom:1rem; }
.body-text strong { color:var(--gold); font-weight:500; }
.btn-gold { display:inline-block; background:var(--gold); color:var(--black); text-decoration:none; padding:.85rem 2.2rem; font-size:.7rem; font-weight:600; letter-spacing:.15em; text-transform:uppercase; transition:background .3s,transform .2s,box-shadow .3s; }
.btn-gold:hover { background:var(--gold-lt); transform:translateY(-2px); box-shadow:0 8px 30px rgba(201,168,76,.25); }
.btn-outline { display:inline-block; background:transparent; color:var(--white); text-decoration:none; padding:.85rem 2.2rem; font-size:.7rem; font-weight:400; letter-spacing:.15em; border:1px solid rgba(245,240,232,.3); transition:border-color .3s,color .3s; }
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }

/* ══ HERO ══════════════════════════════════════════════ */
.hero {
  min-height:100vh; position:relative;
  display:flex; align-items:center; padding:var(--nav-h) 8vw 0;
  overflow:hidden;
}
.hero-bg { position:absolute; inset:0; background:radial-gradient(ellipse 80% 80% at 60% 40%,rgba(201,168,76,.06) 0%,transparent 60%),linear-gradient(180deg,#080808 0%,#0d0d00 50%,#080808 100%); }
.hero-grain { position:absolute; inset:0; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E"); opacity:.4; pointer-events:none; }
.hero-lines { position:absolute; inset:0; background-image:repeating-linear-gradient(0deg,transparent,transparent 79px,rgba(201,168,76,.04) 80px); pointer-events:none; }
.hero-content { position:relative; z-index:2; max-width:660px; }
.hero-eyebrow { font-size:.62rem; font-weight:600; letter-spacing:.4em; color:var(--gold); margin-bottom:1.5rem; opacity:0; animation:revealUp .8s .3s var(--ease) forwards; }
.hero-title { font-family:var(--font-d); font-size:clamp(3.5rem,9vw,7rem); font-weight:300; line-height:1.0; margin-bottom:1.5rem; }
.hero-title span { display:block; color:var(--white); }
.hero-title em { display:block; font-style:italic; color:var(--gold); }
.ht-1 { opacity:0; animation:revealUp .9s .4s var(--ease) forwards; }
.ht-2 { opacity:0; animation:revealUp .9s .55s var(--ease) forwards; }
.ht-3 { opacity:0; animation:revealUp .9s .7s var(--ease) forwards; }
.hero-sub { font-size:.83rem; font-weight:200; line-height:1.9; color:var(--white2); max-width:480px; margin-bottom:2.5rem; opacity:0; animation:revealUp .9s .85s var(--ease) forwards; }
.hero-ctas { display:flex; gap:1.2rem; flex-wrap:wrap; opacity:0; animation:revealUp .9s 1s var(--ease) forwards; }
.hero-scroll { position:absolute; bottom:2.5rem; left:8vw; display:flex; align-items:center; gap:.8rem; font-size:.58rem; letter-spacing:.2em; color:var(--muted); z-index:2; opacity:0; animation:revealUp .8s 1.2s var(--ease) forwards; }
.scroll-dot { width:6px; height:6px; border-radius:50%; border:1px solid var(--gold); animation:scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0%,100%{transform:scale(1);opacity:.5} 50%{transform:scale(1.4);opacity:1} }
.scroll-line { width:50px; height:1px; background:linear-gradient(to right,var(--gold-dk),transparent); }
.hero-badge { position:absolute; right:8vw; bottom:3rem; font-size:.58rem; letter-spacing:.3em; color:var(--gold-dk); border:1px solid var(--gold-dk); padding:.5rem 1rem; z-index:2; opacity:0; animation:revealUp .8s 1.3s var(--ease) forwards; }

/* ══ NEEDLE SCENE ═════════════════════════════════════ */
.needle-scene {
  position:absolute;
  /* Start at top-right corner, span full page height */
  right:0; top:0;
  width:160px; height:100%;
  z-index:1; pointer-events:none;
  opacity:0; animation:revealUp 1.2s .5s var(--ease) forwards;
  overflow:visible;
}
#yarnCanvas { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }
.needle-wrap {
  position:absolute;
  /* Anchor top-right corner, tilt inward */
  right:18px; top:-10px;
  width:44px;
  transform:rotate(15deg);
  transform-origin:85% 2%;
  animation:needleFloat 6s ease-in-out infinite;
  filter:drop-shadow(0 8px 28px rgba(180,190,220,.3));
}
@keyframes needleFloat {
  0%,100%{ transform:rotate(15deg); }
  50%    { transform:rotate(13deg) translateX(-4px); }
}
.needle-svg { width:100%; height:auto; }
.needle-wrap-yarn {
  position:absolute;
  top:22px; left:-22px;
  width:70px; height:90px;
  opacity:0;
  animation:fadeInEl 1s 1.8s var(--ease) forwards;
}
@keyframes fadeInEl { from{opacity:0} to{opacity:1} }
/* No yarn ball */
.yarn-ball { display:none; }

/* ══ MARQUEE ══════════════════════════════════════════ */
.marquee-bar { border-top:1px solid rgba(201,168,76,.2); border-bottom:1px solid rgba(201,168,76,.2); background:var(--dark); overflow:hidden; padding:.9rem 0; }
.marquee-track { display:flex; gap:2.5rem; white-space:nowrap; animation:marquee 24s linear infinite; width:max-content; }
.marquee-track span { font-size:.58rem; font-weight:600; letter-spacing:.3em; color:var(--white2); }
.marquee-track .dot { color:var(--gold); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══ HOME SECTION CARDS ═══════════════════════════════ */
.home-sections { padding:5rem 8vw; background:var(--dark); }
.hs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; }
.hs-card {
  position:relative; padding:2.5rem 2rem;
  background:var(--dark2); text-decoration:none; color:inherit;
  overflow:hidden; transition:transform .4s var(--ease);
  display:flex; flex-direction:column; gap:.6rem;
  animation:revealUp .7s var(--ease) both;
}
.hs-card:nth-child(1){animation-delay:.1s}
.hs-card:nth-child(2){animation-delay:.2s}
.hs-card:nth-child(3){animation-delay:.3s}
.hs-card:nth-child(4){animation-delay:.4s}
.hs-card:nth-child(5){animation-delay:.5s}
.hs-card:nth-child(6){animation-delay:.6s}
.hs-card-bg {
  position:absolute; inset:0;
  background:radial-gradient(circle at 0% 100%, rgba(201,168,76,.1) 0%, transparent 60%);
  opacity:0; transition:opacity .4s;
}
.hs-card:hover .hs-card-bg { opacity:1; }
.hs-card:hover { transform:translateY(-4px); }
.hs-card::before {
  content:attr(data-label);
  position:absolute; top:1.5rem; right:1.5rem;
  font-family:var(--font-d); font-size:3.5rem; font-weight:300;
  color:rgba(201,168,76,.07); line-height:1;
}
.hs-icon { width:48px; height:48px; margin-bottom:.5rem; }
.hs-icon svg { width:100%; height:100%; }
.hs-label { font-size:.55rem; font-weight:600; letter-spacing:.3em; color:var(--gold); }
.hs-card h3 { font-family:var(--font-d); font-size:1.5rem; font-weight:300; color:var(--white); }
.hs-card h3 em { color:var(--gold); font-style:italic; }
.hs-desc { font-size:.75rem; font-weight:200; color:var(--muted); line-height:1.7; flex:1; }
.hs-arrow { color:var(--gold-dk); font-size:1.1rem; transition:transform .3s; }
.hs-card:hover .hs-arrow { transform:translateX(4px); color:var(--gold); }

/* ══ STATS BAR ════════════════════════════════════════ */
.stats-bar {
  background:var(--black); border-top:1px solid rgba(201,168,76,.15);
  border-bottom:1px solid rgba(201,168,76,.15);
  display:flex; align-items:center; justify-content:center;
  gap:0; padding:2.5rem 8vw; flex-wrap:wrap;
}
.sb-item { text-align:center; padding:0 3rem; }
.sb-num { font-family:var(--font-d); font-size:2.8rem; font-weight:300; color:var(--gold); }
.sb-plus { font-family:var(--font-d); font-size:2rem; color:var(--gold-dk); }
.sb-item p { font-size:.6rem; letter-spacing:.1em; color:var(--muted); margin-top:.2rem; }
.sb-div { color:rgba(201,168,76,.3); font-size:1rem; }

/* ══ ABOUT PAGE ═══════════════════════════════════════ */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; margin-bottom:5rem; }
.about-visual { position:relative; height:480px; }
.about-img-frame { width:300px; height:400px; border:1px solid rgba(201,168,76,.3); position:relative; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,var(--dark2) 0%,#100e00 100%); }
.about-img-frame-border { position:absolute; top:14px; left:14px; right:-14px; bottom:-14px; border:1px solid rgba(201,168,76,.12); pointer-events:none; }
.about-img-placeholder svg { width:110px; }
.about-stat-card { position:absolute; background:var(--black); border:1px solid rgba(201,168,76,.22); padding:1.1rem 1.4rem; display:flex; flex-direction:column; box-shadow:0 20px 60px rgba(0,0,0,.5); }
.about-stat-card { bottom:60px; right:0; }
.about-stat-card.card2 { bottom:-10px; right:150px; }
.stat-num { font-family:var(--font-d); font-size:2rem; color:var(--gold); font-weight:300; }
.stat-label { font-size:.62rem; letter-spacing:.1em; color:var(--muted); }
.about-pillars { display:flex; gap:2rem; margin:1.5rem 0 2rem; flex-wrap:wrap; }
.pillar { display:flex; flex-direction:column; align-items:center; gap:.4rem; font-size:.62rem; letter-spacing:.1em; color:var(--muted); }
.pillar-icon { font-size:1.2rem; }

/* Founder / Core Team */
.core-team-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:2px; margin-top:0; }
.team-card { background:var(--dark2); padding:1.8rem 1.4rem; display:flex; flex-direction:column; align-items:center; text-align:center; transition:background .3s,transform .3s; position:relative; overflow:hidden; }
.team-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:var(--gold); transform:scaleX(0); transition:transform .4s var(--ease); }
.team-card:hover { background:var(--dark3); }
.team-card:hover::after { transform:scaleX(1); }
.team-photo { width:80px; height:80px; border-radius:50%; overflow:hidden; border:1.5px solid var(--gold-dk); margin-bottom:1rem; box-shadow:0 0 20px rgba(201,168,76,.15); position:relative; }
.team-photo img { width:100%; height:100%; object-fit:cover; }
.team-initial { display:flex; align-items:center; justify-content:center; width:100%; height:100%; font-family:var(--font-d); font-size:1.4rem; color:var(--gold); background:linear-gradient(135deg,var(--dark) 0%,#1a1400 100%); }
.team-info h4 { font-family:var(--font-d); font-size:1.1rem; font-weight:400; color:var(--white); margin-bottom:.2rem; }
.team-info span { font-size:.55rem; letter-spacing:.12em; color:var(--gold); font-weight:600; display:block; margin-bottom:.7rem; }
.team-info p { font-size:.7rem; font-weight:200; color:var(--muted); line-height:1.7; }

.founder-section { margin:4rem 0; }
.founder-card { background:var(--dark); border:1px solid rgba(201,168,76,.12); padding:3rem; display:grid; grid-template-columns:160px 1fr; gap:3rem; align-items:center; }
.founder-photo { width:160px; height:160px; border-radius:50%; overflow:hidden; border:2px solid var(--gold-dk); box-shadow:0 0 40px rgba(201,168,76,.2); flex-shrink:0; }
.founder-photo img { width:100%; height:100%; object-fit:cover; }
.founder-text h3 { font-family:var(--font-d); font-size:2rem; font-weight:300; color:var(--white); margin-bottom:.3rem; }
.founder-title { font-size:.65rem; letter-spacing:.15em; color:var(--gold); margin-bottom:1rem; }
.founder-divider { color:var(--gold-dk); margin-top:1rem; opacity:.5; }

/* Values */
.values-section { margin-top:5rem; }
.values-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:3px; margin-top:3rem; }
.value-card { background:var(--dark); padding:2rem 1.8rem; border-bottom:2px solid transparent; transition:border-color .3s,background .3s; }
.value-card:hover { background:var(--dark2); border-color:var(--gold); }
.value-num { font-family:var(--font-d); font-size:3rem; font-weight:300; color:rgba(201,168,76,.15); line-height:1; margin-bottom:1rem; }
.value-card h4 { font-family:var(--font-d); font-size:1.2rem; font-weight:400; color:var(--gold); margin-bottom:.8rem; }
.value-card p { font-size:.75rem; font-weight:200; line-height:1.8; color:var(--muted); }

/* ══ PROCESS PAGE — TIMELINE ══════════════════════════ */
.timeline { position:relative; max-width:860px; margin:0 auto 5rem; }
.timeline-line { position:absolute; left:50%; transform:translateX(-50%); top:0; width:1px; height:0; background:linear-gradient(to bottom,var(--gold-dk),transparent); transition:height 2s ease; }
.tl-step { display:flex; align-items:flex-start; margin-bottom:4rem; position:relative; }
.tl-dot {
  position:absolute; left:50%; transform:translateX(-50%);
  width:44px; height:44px; border-radius:50%;
  border:1px solid var(--gold-dk); background:var(--black);
  display:flex; align-items:center; justify-content:center; z-index:2;
  font-size:.58rem; font-weight:600; letter-spacing:.08em; color:var(--gold);
  flex-shrink:0;
  box-shadow:0 0 20px rgba(201,168,76,.2);
}
.tl-content { width:calc(50% - 40px); }
.tl-right { margin-left:auto; padding-left:40px; }
.tl-content:not(.tl-right) { padding-right:40px; text-align:right; }
.tl-icon { width:60px; height:60px; margin-bottom:1rem; display:inline-block; }
.tl-content:not(.tl-right) .tl-icon { float:right; margin-left:1rem; }
.tl-text h3 { font-family:var(--font-d); font-size:1.5rem; font-weight:300; color:var(--white); margin-bottom:.7rem; }
.tl-text p { font-size:.78rem; font-weight:200; line-height:1.8; color:var(--muted); margin-bottom:1rem; }
.tl-tags { display:flex; gap:.5rem; flex-wrap:wrap; }
.tl-content:not(.tl-right) .tl-tags { justify-content:flex-end; }
.tl-tags span { font-size:.55rem; letter-spacing:.1em; color:var(--gold-dk); border:1px solid rgba(201,168,76,.2); padding:.3rem .7rem; }
.process-cta { text-align:center; padding:3rem; background:linear-gradient(135deg,#0d0b00,#1a1400); border:1px solid rgba(201,168,76,.15); }
.process-cta h3 { font-family:var(--font-d); font-size:2rem; font-weight:300; color:var(--white); margin-bottom:.7rem; }
.process-cta p { font-size:.8rem; color:var(--muted); margin-bottom:1.5rem; }

/* ══ PRODUCTS PAGE ════════════════════════════════════ */
.product-full { display:grid; grid-template-columns:1fr 1fr; gap:0; margin-bottom:2px; background:var(--dark); }
.product-reverse { direction:rtl; }
.product-reverse .pf-info { direction:ltr; }
.product-reverse .pf-visual { direction:ltr; }
.product-real-img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s var(--ease); }
.product-full:hover .product-real-img { transform:scale(1.03); }
.pf-visual { min-height:500px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.yarn-visual { background:linear-gradient(135deg,#0d0b00 0%,#1a1400 100%); }
.mat-visual  { background:linear-gradient(135deg,#000d0a 0%,#001a14 100%); }
.pf-svg { width:min(280px,80%); height:auto; }
.product-tag { position:absolute; top:1.5rem; left:1.5rem; font-size:.52rem; font-weight:700; letter-spacing:.25em; color:var(--gold); border:1px solid var(--gold-dk); padding:.35rem .75rem; background:rgba(0,0,0,.5); }
.pf-info { padding:3.5rem; display:flex; flex-direction:column; gap:0; background:var(--dark); }
.pf-info .section-title { margin-bottom:1.2rem; }
.product-specs { margin:1.5rem 0; }
.product-specs h4 { font-size:.62rem; font-weight:600; letter-spacing:.25em; color:var(--gold); margin-bottom:1rem; }
.specs-grid { display:grid; grid-template-columns:1fr 1fr; gap:0; }
.spec-item { padding:.6rem 0; border-bottom:1px solid rgba(255,255,255,.04); }
.spec-label { display:block; font-size:.58rem; letter-spacing:.1em; color:var(--muted); margin-bottom:.2rem; }
.spec-val { font-size:.75rem; font-weight:300; color:var(--white2); }
.product-features { list-style:none; margin:1rem 0 1.5rem; }
.product-features li { font-size:.72rem; font-weight:300; color:var(--muted); padding:.35rem 0; border-bottom:1px solid rgba(255,255,255,.04); }
.product-divider { text-align:center; padding:2rem 0; color:var(--gold-dk); font-size:1.2rem; opacity:.4; }
.sustain-banner { background:linear-gradient(135deg,#0d0b00,#1a1400); border:1px solid rgba(201,168,76,.18); padding:3rem 3.5rem; display:flex; gap:3rem; align-items:center; flex-wrap:wrap; margin-top:2rem; }
.sustain-text { flex:1; min-width:200px; }
.sustain-text h3 { font-family:var(--font-d); font-size:1.6rem; font-weight:300; color:var(--gold); margin-bottom:.6rem; }
.sustain-text p { font-size:.78rem; font-weight:200; color:var(--muted); line-height:1.8; }
.sustain-stats { display:flex; gap:2.5rem; flex-wrap:wrap; }
.s-stat { text-align:center; }
.s-stat span { font-family:var(--font-d); font-size:2rem; color:var(--gold); font-weight:300; display:block; }
.s-stat p { font-size:.62rem; letter-spacing:.1em; color:var(--muted); }

/* ══ CONTACT PAGE ═════════════════════════════════════ */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; }
.contact-info-cards { display:flex; flex-direction:column; gap:.8rem; margin:1.5rem 0 2rem; }
.ci-card { display:flex; align-items:flex-start; gap:1rem; padding:1rem 1.2rem; background:var(--dark); border:1px solid rgba(201,168,76,.1); transition:border-color .3s; }
.ci-card:hover { border-color:var(--gold-dk); }
.ci-icon { font-size:1.2rem; flex-shrink:0; margin-top:.1rem; }
.ci-card h4 { font-size:.62rem; font-weight:600; letter-spacing:.15em; color:var(--gold); margin-bottom:.3rem; }
.ci-card p { font-size:.75rem; font-weight:200; color:var(--white2); line-height:1.6; }
.ci-card a { color:var(--white2); text-decoration:none; transition:color .3s; }
.ci-card a:hover { color:var(--gold); }
.socials-title { font-size:.6rem; font-weight:600; letter-spacing:.25em; color:var(--gold); margin-bottom:.8rem; }
.socials-row { display:flex; gap:.8rem; flex-wrap:wrap; margin-bottom:2rem; }
.social-link { display:flex; align-items:center; gap:.5rem; padding:.65rem 1.1rem; border:1px solid rgba(201,168,76,.22); color:var(--white2); text-decoration:none; font-size:.68rem; letter-spacing:.1em; transition:all .3s; }
.social-link svg { width:13px; height:13px; flex-shrink:0; }
.social-link:hover { border-color:var(--gold); color:var(--gold); background:rgba(201,168,76,.05); }

/* ══ FOOTER SOCIAL ICONS ══════════════════════════════ */
.footer-social-icons { display:flex; gap:.55rem; margin-top:.6rem; flex-wrap:wrap; align-items:center; }
.fsi-link {
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(201,168,76,.45);
  color:var(--gold);
  text-decoration:none;
  flex-shrink:0;
  transition:all .3s;
  background:rgba(201,168,76,.04);
}
.fsi-link:hover { border-color:var(--gold); background:var(--gold); color:var(--black); }
.fsi-link svg {
  width:15px; height:15px;
  fill:none; stroke:currentColor;
  stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round;
  display:block; pointer-events:none;
}

/* ══ CONTACT INFO ICON STYLES ═════════════════════════ */
.ci-icon-svg { width:22px; height:22px; flex-shrink:0; color:var(--gold); display:flex; align-items:center; justify-content:center; }
.ci-icon-svg svg { width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.map-container { margin-top:1rem; }
.map-label { font-size:.62rem; letter-spacing:.15em; color:var(--gold); margin-bottom:.7rem; font-weight:600; }
.map-frame { border:1px solid rgba(201,168,76,.18); overflow:hidden; margin-bottom:.7rem; }
.map-nav-btn { display:inline-block; padding:.65rem 1.5rem; background:var(--gold); color:var(--black); text-decoration:none; font-size:.7rem; font-weight:600; letter-spacing:.1em; transition:background .3s; }
.map-nav-btn:hover { background:var(--gold-lt); }
.contact-form { background:var(--dark); padding:2.5rem; border:1px solid rgba(201,168,76,.1); }
.contact-form h3 { font-family:var(--font-d); font-size:1.6rem; font-weight:300; color:var(--white); margin-bottom:1.8rem; }
.form-group { display:flex; flex-direction:column; margin-bottom:1.2rem; }
.form-group label { font-size:.55rem; font-weight:600; letter-spacing:.2em; color:var(--gold); text-transform:uppercase; margin-bottom:.4rem; }
.form-group input,.form-group textarea,.form-group select {
  width:100%; background:var(--dark2);
  border:none; border-bottom:1px solid rgba(201,168,76,.25);
  color:var(--white); padding:.75rem 1rem;
  font-family:var(--font-b); font-size:.78rem; font-weight:300;
  outline:none; transition:border-color .3s,background .3s; appearance:none;
  border-radius:0;
}
.form-group input::placeholder,.form-group textarea::placeholder { color:var(--muted); font-size:.75rem; }
.form-group select { color:var(--muted); cursor:pointer; }
.form-group select.has-value { color:var(--white); }
.form-group select option { background:var(--dark2); color:var(--white); }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-color:var(--gold); background:#1f1e10; }
.form-group textarea { resize:vertical; min-height:96px; }
.form-btn { width:100%; padding:1rem; font-size:.72rem; margin-top:.5rem; }

/* ══ FOOTER ═══════════════════════════════════════════ */
.footer { background:var(--dark); border-top:1px solid rgba(201,168,76,.12); padding:5rem 8vw 2rem; }
.footer-top { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,.05); }
.footer-brand h3 { font-family:var(--font-b); font-size:1.2rem; font-weight:600; letter-spacing:.4em; color:var(--gold); margin-bottom:.2rem; }
.footer-brand p { font-size:.68rem; color:var(--muted); letter-spacing:.1em; }
.footer-tagline { font-family:var(--font-d); font-style:italic; font-size:.9rem; color:var(--white2); margin-top:1rem; }
.footer-links h4,.footer-connect h4 { font-size:.58rem; font-weight:600; letter-spacing:.25em; color:var(--gold); margin-bottom:1.2rem; }
.footer-links a,.footer-connect a { display:block; font-size:.73rem; font-weight:200; color:var(--muted); text-decoration:none; margin-bottom:.6rem; transition:color .3s; }
.footer-links a:hover,.footer-connect a:hover { color:var(--gold); }
.footer-bottom { text-align:center; font-size:.62rem; color:var(--muted); padding-top:.5rem; }
.footer-founder em { color:var(--gold-dk); font-style:italic; }

/* ══ WHATSAPP FLOATING BUBBLE ═════════════════════════ */
.wa-bubble {
  position:fixed; bottom:2rem; right:2rem; z-index:9000;
  width:58px; height:58px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  text-decoration:none;
  animation:waBubblePop .6s 2s var(--ease) both;
  transition:transform .3s, box-shadow .3s;
}
.wa-bubble:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,.55); }
.wa-bubble svg { width:30px; height:30px; fill:#fff; }
.wa-tooltip { position:absolute; right:68px; top:50%; transform:translateY(-50%); background:var(--dark); color:var(--white); font-size:.65rem; font-weight:500; letter-spacing:.08em; white-space:nowrap; padding:.45rem .9rem; border:1px solid rgba(37,211,102,.3); pointer-events:none; opacity:0; transition:opacity .3s; }
.wa-bubble:hover .wa-tooltip { opacity:1; }
.wa-ping { position:absolute; inset:-6px; border-radius:50%; border:2px solid rgba(37,211,102,.4); animation:waPing 2.5s 2.5s ease-out infinite; }
@keyframes waBubblePop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
@keyframes waPing { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.6);opacity:0} }

/* ══ RESPONSIVE ═══════════════════════════════════════ */
@media(max-width:1100px){
  .hs-grid { grid-template-columns:1fr 1fr; }
  .values-grid { grid-template-columns:1fr 1fr; }
  .core-team-grid { grid-template-columns:repeat(3,1fr); }
  .product-full { grid-template-columns:1fr; direction:ltr; }
  .product-reverse .pf-visual { order:-1; }
  .pf-visual { min-height:320px; }
  .about-grid { grid-template-columns:1fr; gap:3rem; }
  .about-visual { height:360px; }
}
@media(max-width:900px){
  .contact-grid { grid-template-columns:1fr; gap:3rem; }
  .timeline-line { display:none; }
  .tl-step { flex-direction:column; }
  .tl-dot { position:relative; left:auto; transform:none; margin-bottom:1rem; }
  .tl-content,.tl-right { width:100%; padding:0; text-align:left; direction:ltr; }
  .tl-content:not(.tl-right) .tl-icon { float:none; margin:0 0 1rem; }
  .tl-content:not(.tl-right) .tl-tags { justify-content:flex-start; }
  .founder-card { grid-template-columns:1fr; gap:2rem; }
  .footer-top { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px){
  /* Nav always solid on mobile */
  .nav {
    background:rgba(8,8,8,.98) !important;
    backdrop-filter:blur(12px);
    box-shadow:0 1px 0 rgba(201,168,76,.15);
  }

  /* Hamburger: always fixed in top-right, highest z-index */
  .hamburger {
    display:flex !important;
    position:fixed !important;
    top:18px !important;
    right:5vw !important;
    z-index:999999 !important;
    background:none !important;
    border:none !important;
    cursor:pointer !important;
    padding:10px !important;
  }

  /* Original nav-links: hide on mobile — overlay div is used instead */
  .nav-links { display:none !important; }

  /* Needle: hidden on mobile */
  .needle-scene { display:none !important; }
  #yarnCanvas   { display:none !important; }

  /* Hero */
  .hero { padding:var(--nav-h) 6vw 0; }
  .hero-content { max-width:100%; }
  .hero-title { font-size:3rem; }
  .hero-ctas { flex-direction:column; align-items:flex-start; }

  /* About page overlap fix */
  .about-grid { grid-template-columns:1fr; gap:2rem; }
  .about-visual { height:auto; margin-bottom:1rem; }
  .about-img-frame { width:100%; max-width:260px; margin:0 auto; }
  .about-stat-card { position:static !important; display:inline-flex; margin:.5rem .5rem 0 0; }
  .about-stat-card.card2 { position:static !important; right:auto !important; }

  /* General layout */
  .page-section { padding:3rem 6vw 5rem; }
  .hs-grid { grid-template-columns:1fr 1fr; }
  .core-team-grid { grid-template-columns:1fr 1fr; }
  .footer-top { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .stats-bar { gap:1rem; padding:2rem 6vw; }
  .sb-item { padding:0 1.5rem; }
  .sustain-banner { flex-direction:column; padding:2rem; }
  .wa-bubble { bottom:1.5rem; right:1.5rem; width:52px; height:52px; }
  .contact-grid { grid-template-columns:1fr; }
  .product-full { grid-template-columns:1fr; }
  .product-reverse { direction:ltr; }

  /* Improve body text readability on mobile */
  .body-text { font-size:.88rem; line-height:2; }
  .tl-text p { font-size:.84rem; line-height:2; }
  .value-card p { font-size:.82rem; line-height:1.9; }
  .product-features li { font-size:.82rem; }
  .spec-val { font-size:.82rem; }
  .ci-card p { font-size:.82rem; }
  .team-info p { font-size:.78rem; }
}
@media(max-width:480px){
  .hero-title { font-size:2.5rem; }
  .bday-card { padding:2rem 1.5rem; }
  .bday-name { font-size:1.8rem; }
  .page-title { font-size:2rem; }
  .core-team-grid { grid-template-columns:1fr; }
  .team-card { flex-direction:row; text-align:left; gap:1rem; align-items:flex-start; }
  .team-photo { width:60px; height:60px; flex-shrink:0; }
  .about-grid { gap:1rem; }
  /* Readable body text on small phones */
  .body-text { font-size:.88rem; line-height:2; }
  .tl-text p { font-size:.82rem; line-height:1.95; }
  .product-features li { font-size:.78rem; }
  .value-card p { font-size:.8rem; line-height:1.9; }
  .craft-caption-body { font-size:.82rem; }
  .craft-item-caption p { font-size:.78rem; }
}
/* ══ SUBPAGE ADJUSTMENTS ══════════════════════════════ */
.subpage .page-section { padding-top:3rem; }

/* ══════════════════════════════════════════════════════
   BEHIND THE CRAFT PAGE
══════════════════════════════════════════════════════ */
.craft-intro { padding:4rem 8vw 2.5rem; background:var(--black); }
.craft-intro-inner { max-width:680px; margin:0 auto; display:flex; flex-direction:column; align-items:center; gap:1.5rem; }
.craft-intro-line { width:1px; height:48px; background:linear-gradient(to bottom,transparent,var(--gold-dk),transparent); }
.craft-quote { font-family:var(--font-d); font-style:italic; font-size:clamp(1.3rem,3vw,1.9rem); font-weight:300; color:var(--white2); text-align:center; line-height:1.6; }
.craft-quote-attr { font-size:.62rem; letter-spacing:.18em; color:var(--gold); font-weight:500; text-align:center; }
.craft-section-header { text-align:center; margin-bottom:3.5rem; }
.craft-section-sub { font-size:.8rem; font-weight:200; color:var(--muted); max-width:500px; margin:.8rem auto 0; line-height:1.9; }

/* Media label badge */
.craft-media-label { position:absolute; top:1.2rem; left:1.2rem; z-index:4; display:flex; align-items:center; gap:.5rem; background:rgba(0,0,0,.65); backdrop-filter:blur(6px); border:1px solid rgba(201,168,76,.3); padding:.3rem .75rem .3rem .55rem; pointer-events:none; }
.cml-num { font-family:var(--font-d); font-size:1rem; font-weight:300; color:var(--gold); line-height:1; }
.cml-text { font-size:.48rem; font-weight:600; letter-spacing:.22em; color:var(--white2); }

/* Primary video layout */
.craft-media-primary { display:grid; grid-template-columns:1fr 340px; gap:0; margin-bottom:3px; background:var(--dark); min-height:420px; }
.craft-video-wrap { position:relative; overflow:hidden; background:#000; }
.craft-video-primary { min-height:420px; }
.craft-video-el { width:100%; height:100%; object-fit:cover; display:block; }

/* Play overlay */
.craft-video-overlay { position:absolute; inset:0; z-index:3; background:rgba(0,0,0,.42); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1.2rem; cursor:pointer; transition:background .3s,opacity .4s; }
.craft-video-overlay:hover { background:rgba(0,0,0,.25); }
.craft-play-btn { width:72px; height:72px; border-radius:50%; border:1.5px solid rgba(201,168,76,.7); background:rgba(201,168,76,.12); display:flex; align-items:center; justify-content:center; color:var(--gold); transition:transform .3s,background .3s; }
.craft-video-overlay:hover .craft-play-btn { transform:scale(1.08); background:rgba(201,168,76,.22); }
.craft-play-btn svg { width:24px; height:24px; margin-left:4px; }
.craft-play-sm { width:52px; height:52px; }
.craft-play-sm svg { width:18px; height:18px; margin-left:3px; }
.craft-play-label { font-size:.6rem; letter-spacing:.18em; color:var(--white2); font-weight:500; text-transform:uppercase; }

/* Caption sidebar */
.craft-primary-caption { padding:3rem 2.5rem; background:var(--dark); display:flex; flex-direction:column; justify-content:center; gap:.8rem; border-left:1px solid rgba(201,168,76,.1); }
.craft-caption-title { font-family:var(--font-d); font-size:1.7rem; font-weight:300; color:var(--white); line-height:1.2; }
.craft-caption-title em { color:var(--gold); font-style:italic; }
.craft-caption-body { font-size:.76rem; font-weight:200; line-height:1.9; color:var(--muted); }
.craft-caption-tags { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:.4rem; }
.craft-caption-tags span { font-size:.52rem; letter-spacing:.1em; color:var(--gold-dk); border:1px solid rgba(201,168,76,.2); padding:.28rem .65rem; }

/* 3-up row */
.craft-media-row { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; margin-bottom:3px; }
.craft-media-item { display:flex; flex-direction:column; }
.craft-img-wrap, .craft-video-item { position:relative; overflow:hidden; background:var(--dark2); aspect-ratio:4/3; flex-shrink:0; }
.craft-img-el { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s var(--ease); }
.craft-img-wrap:hover .craft-img-el { transform:scale(1.04); }
.craft-img-fallback { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.8rem; background:linear-gradient(135deg,var(--dark2) 0%,#100e00 100%); color:var(--muted); font-size:.65rem; letter-spacing:.1em; }
.craft-img-shimmer { position:absolute; inset:0; pointer-events:none; background:linear-gradient(135deg,transparent 0%,rgba(201,168,76,.06) 100%); opacity:0; transition:opacity .4s; }
.craft-img-wrap:hover .craft-img-shimmer { opacity:1; }
.craft-item-caption { padding:1.2rem 1.4rem; background:var(--dark); border-top:1px solid rgba(201,168,76,.12); flex:1; }
.craft-item-caption h4 { font-family:var(--font-d); font-size:1.05rem; font-weight:400; color:var(--white); margin-bottom:.4rem; }
.craft-item-caption p { font-size:.72rem; font-weight:200; color:var(--muted); line-height:1.7; }

/* Fact strip */
.craft-facts { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; background:var(--dark); border:1px solid rgba(201,168,76,.1); padding:2.5rem 3rem; margin-bottom:3px; }
.craft-fact { display:flex; flex-direction:column; align-items:center; gap:.5rem; padding:0 2.5rem; text-align:center; }
.cf-icon { width:36px; height:36px; margin-bottom:.3rem; }
.cf-icon svg { width:100%; height:100%; }
.cf-num { font-family:var(--font-d); font-size:2rem; font-weight:300; color:var(--gold); line-height:1; }
.cf-label { font-size:.6rem; letter-spacing:.1em; color:var(--muted); max-width:130px; line-height:1.5; }
.craft-fact-div { color:rgba(201,168,76,.25); font-size:.9rem; }

/* CTA block */
.craft-cta { background:linear-gradient(135deg,#0d0b00 0%,#1a1400 100%); border:1px solid rgba(201,168,76,.15); padding:4rem 3rem; margin-top:2rem; }
.craft-cta-inner { max-width:560px; margin:0 auto; text-align:center; }
.craft-cta-inner h3 { font-family:var(--font-d); font-size:2rem; font-weight:300; color:var(--white); margin:.6rem 0 .8rem; }
.craft-cta-inner p { font-size:.8rem; font-weight:200; color:var(--muted); line-height:1.9; margin-bottom:1.8rem; }
.craft-cta-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* Craft responsive */
@media(max-width:1100px){ .craft-media-primary { grid-template-columns:1fr; } .craft-primary-caption { border-left:none; border-top:1px solid rgba(201,168,76,.1); } }
@media(max-width:768px){ .craft-media-row { grid-template-columns:1fr; } .craft-video-primary { min-height:240px; } .craft-facts { padding:2rem 1.5rem; } .craft-fact { padding:0 1rem; } .craft-fact-div { display:none; } .craft-intro { padding:3rem 6vw 1.5rem; } .craft-cta { padding:3rem 1.5rem; } }

/* ══════════════════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════════════════ */

/* Featured post */
.blog-featured { display:grid; grid-template-columns:360px 1fr; gap:0; background:var(--dark); margin-bottom:3px; min-height:460px; }
.blog-featured-visual { background:linear-gradient(135deg,#0d0b00 0%,#1a1400 100%); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1.5rem; padding:3rem 2.5rem; position:relative; border-right:1px solid rgba(201,168,76,.1); }
.blog-feat-num { position:absolute; top:2rem; left:2rem; font-family:var(--font-d); font-size:5rem; font-weight:300; color:rgba(201,168,76,.07); line-height:1; }
.blog-feat-icon { width:120px; height:120px; }
.blog-feat-icon svg { width:100%; height:100%; }
.blog-feat-tags { display:flex; gap:.5rem; flex-wrap:wrap; justify-content:center; }
.blog-feat-tags span { font-size:.5rem; font-weight:600; letter-spacing:.2em; color:var(--gold-dk); border:1px solid rgba(201,168,76,.2); padding:.3rem .7rem; }
.blog-featured-text { padding:3.5rem; display:flex; flex-direction:column; justify-content:center; gap:.8rem; }
.blog-feat-title { font-family:var(--font-d); font-size:clamp(1.8rem,3vw,2.4rem); font-weight:300; color:var(--white); line-height:1.15; }
.blog-feat-title em { color:var(--gold); font-style:italic; }
.blog-feat-meta { display:flex; gap:1rem; align-items:center; margin:.2rem 0; }
.blog-read-time { font-size:.62rem; letter-spacing:.1em; color:var(--muted); }
.blog-tag-inline { font-size:.52rem; font-weight:600; letter-spacing:.15em; color:var(--gold); border:1px solid rgba(201,168,76,.3); padding:.2rem .6rem; }
.blog-feat-body { font-size:.8rem; font-weight:200; line-height:1.9; color:var(--muted); }
.blog-read-btn { margin-top:.5rem; align-self:flex-start; }

/* Blog grid */
.blog-grid { display:grid; grid-template-columns:1fr 1fr; gap:3px; margin-bottom:3px; }

/* Blog card */
.blog-card { background:var(--dark); padding:2.5rem 2.5rem 2rem; display:flex; flex-direction:column; gap:.8rem; border-bottom:2px solid transparent; transition:border-color .3s,background .3s; }
.blog-card:hover { background:var(--dark2); border-bottom-color:var(--gold); }
.blog-card-header { display:flex; align-items:center; justify-content:space-between; }
.blog-card-icon { width:48px; height:48px; flex-shrink:0; }
.blog-card-icon svg { width:100%; height:100%; }
.blog-card-labels { display:flex; flex-direction:column; align-items:flex-end; gap:.3rem; }
.blog-card-num { font-family:var(--font-d); font-size:2.5rem; font-weight:300; color:rgba(201,168,76,.1); line-height:1; }
.blog-card-cat { font-size:.5rem; font-weight:600; letter-spacing:.22em; color:var(--gold); }
.blog-card-title { font-family:var(--font-d); font-size:1.45rem; font-weight:300; color:var(--white); line-height:1.25; }
.blog-card-meta { display:flex; gap:1rem; }
.blog-card-meta span { font-size:.6rem; letter-spacing:.1em; color:var(--muted); }
.blog-card-meta span:last-child { color:var(--gold-dk); }
.blog-card-body { flex:1; }
.blog-card-body p { font-size:.76rem; font-weight:200; line-height:1.9; color:var(--muted); margin-bottom:.8rem; }
.blog-card-body p:last-child { margin-bottom:0; }

/* Inline fact box */
.blog-inline-fact { background:rgba(201,168,76,.05); border-left:2px solid var(--gold-dk); padding:1rem 1.2rem; margin-top:1rem; }
.bif-label { display:block; font-size:.55rem; font-weight:600; letter-spacing:.18em; color:var(--gold); margin-bottom:.5rem; }
.blog-inline-fact p { font-size:.72rem; font-weight:200; line-height:1.8; color:var(--white2); margin:0; }

.blog-card-footer { margin-top:auto; padding-top:1rem; border-top:1px solid rgba(255,255,255,.04); }
.blog-card-tags { display:flex; flex-wrap:wrap; gap:.4rem; }
.blog-card-tags span { font-size:.52rem; letter-spacing:.1em; color:var(--gold-dk); border:1px solid rgba(201,168,76,.15); padding:.22rem .6rem; transition:border-color .3s,color .3s; }
.blog-card:hover .blog-card-tags span { border-color:rgba(201,168,76,.3); color:var(--gold); }

/* Blog CTA / newsletter strip */
.blog-cta { display:grid; grid-template-columns:1fr 1fr; gap:0; background:linear-gradient(135deg,#0d0b00 0%,#1a1400 100%); border:1px solid rgba(201,168,76,.15); padding:3.5rem; margin-top:2rem; }
.blog-cta-left { padding-right:3rem; border-right:1px solid rgba(201,168,76,.12); display:flex; flex-direction:column; gap:.8rem; justify-content:center; }
.blog-cta-left h3 { font-family:var(--font-d); font-size:1.8rem; font-weight:300; color:var(--white); }
.blog-cta-left p { font-size:.78rem; font-weight:200; color:var(--muted); line-height:1.9; }
.blog-cta-topics { padding-left:3rem; display:flex; flex-direction:column; justify-content:center; gap:.6rem; }
.blog-upcoming { list-style:none; display:flex; flex-direction:column; gap:.6rem; }
.blog-upcoming li { display:flex; align-items:flex-start; gap:1rem; font-size:.72rem; font-weight:200; color:var(--muted); line-height:1.6; }
.bu-num { font-family:var(--font-d); font-size:1rem; color:var(--gold-dk); font-weight:300; flex-shrink:0; line-height:1.4; }

/* Blog responsive */
@media(max-width:1100px){ .blog-featured { grid-template-columns:1fr; } .blog-featured-visual { min-height:220px; } }
@media(max-width:900px){ .blog-grid { grid-template-columns:1fr; } .blog-cta { grid-template-columns:1fr; } .blog-cta-left { padding-right:0; border-right:none; border-bottom:1px solid rgba(201,168,76,.12); padding-bottom:2rem; } .blog-cta-topics { padding-left:0; padding-top:2rem; } }
@media(max-width:768px){ .blog-featured-text { padding:2rem; } .blog-card { padding:2rem 1.5rem 1.5rem; } .blog-cta { padding:2.5rem 1.5rem; } .blog-card-body p { font-size:.82rem; line-height:2; } .blog-feat-body { font-size:.84rem; line-height:2; } .blog-inline-fact p { font-size:.78rem; } .blog-card-title { font-size:1.3rem; } }

/* ══ FOOTER EMAIL + PHONE LINKS ═══════════════════════ */
.footer-email-link {
  display:block;
  font-size:.68rem; font-weight:200;
  color:var(--muted); text-decoration:none;
  margin-top:.5rem; letter-spacing:.04em;
  transition:color .3s;
}
.footer-email-link:hover { color:var(--gold); }
