/* ═══════════════════════════════════════════════════════
   SELVEDGE GOODS — THEME v3
   Built: 2026-05-06
   Palette: heartwood / gold / birch / sawdust / night
   Fonts: Cormorant Garamond (serif) + Jost (sans)
═══════════════════════════════════════════════════════ */

/* ─── RESET ──────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Jost',sans-serif;font-weight:300;background:#F5F0E8;color:#2C1F0E;line-height:1.7;overflow-x:hidden}

/* ─── TOKENS ─────────────────────────────────────────── */
:root{
  --heartwood:#2C1F0E;
  --gold:#B8893A;
  --gold-lt:#D4A855;
  --aged-oak:#8C6830;
  --birch:#E8DCC8;
  --sawdust:#F5F0E8;
  --night:#181310;
  --night-mid:#211608;
  --mid:#5C3D18;
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'Jost',sans-serif;
  --radius:2px;
  --tr:0.3s ease;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1,h2,h3,h4{font-family:var(--serif);font-weight:400;line-height:1.12;letter-spacing:0.02em}
h1{font-size:clamp(2.6rem,5.5vw,4.8rem)}
h2{font-size:clamp(1.9rem,3.8vw,3rem)}
h3{font-size:clamp(1.3rem,2.4vw,1.9rem)}
h4{font-size:1.1rem}
p{font-size:1rem;line-height:1.8}
a{color:inherit;text-decoration:none;transition:color var(--tr)}
em{font-style:italic}
strong{font-weight:500}

/* ─── COMPASS WATERMARK (page-level) ─────────────────── */
/* Insert as <div class="compass-watermark"> anywhere */
.compass-watermark{
  position:absolute;
  pointer-events:none;
  opacity:0.07;
}
.compass-watermark svg{display:block}

/* ─── HEADER / NAV ───────────────────────────────────── */
.site-header{
  position:sticky;top:0;left:0;right:0;z-index:200;
  background:var(--night);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 5%;height:66px;
  border-bottom:1px solid rgba(184,137,58,0.2);
  transition:box-shadow var(--tr);
}
.site-header.scrolled{box-shadow:0 2px 24px rgba(0,0,0,0.35)}

.logo-wrap{display:flex;align-items:center;gap:11px;text-decoration:none;flex-shrink:0}
.logo-mark{width:34px;height:34px;flex-shrink:0}
.logo-text{display:flex;flex-direction:column;line-height:1;gap:3px}
.logo-wordmark{
  font-family:var(--serif);font-size:1.25rem;
  letter-spacing:0.22em;color:var(--birch);font-weight:400;
  text-transform:uppercase;
}
.logo-tagline{
  font-size:0.48rem;letter-spacing:0.38em;
  color:var(--gold);font-family:var(--sans);font-weight:300;
  text-transform:uppercase;
}

nav{display:flex;align-items:center;gap:2.2rem}
.nav-link{
  font-size:0.76rem;letter-spacing:0.18em;text-transform:uppercase;
  color:rgba(232,220,200,0.6);transition:color var(--tr);font-family:var(--sans);
}
.nav-link:hover,.nav-link.active{color:var(--gold)}
.nav-cta{
  border:1px solid rgba(184,137,58,0.55);color:var(--gold);
  padding:6px 16px;font-size:0.72rem;letter-spacing:0.16em;
  text-transform:uppercase;font-family:var(--sans);
  transition:all var(--tr);border-radius:var(--radius);
}
.nav-cta:hover{background:var(--gold);color:var(--night)}

.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;background:none;border:none}
.hamburger span{width:22px;height:1.5px;background:var(--birch);display:block;transition:all var(--tr)}
.mobile-nav{
  display:none;background:var(--night);
  padding:1.5rem 5%;
  border-bottom:1px solid rgba(184,137,58,0.15);
}
.mobile-nav.open{display:flex;flex-direction:column;gap:1.2rem}
.mobile-nav a{
  font-size:0.88rem;letter-spacing:0.15em;text-transform:uppercase;
  color:rgba(232,220,200,0.7);padding:0.5rem 0;
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.mobile-nav a:hover{color:var(--gold)}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary{
  display:inline-block;background:var(--gold);color:var(--night);
  padding:12px 30px;font-size:0.76rem;letter-spacing:0.18em;
  text-transform:uppercase;font-family:var(--sans);font-weight:500;
  border:none;cursor:pointer;transition:all var(--tr);border-radius:var(--radius);
}
.btn-primary:hover{background:var(--aged-oak);color:var(--birch)}
.btn-outline{
  display:inline-block;border:1px solid rgba(232,220,200,0.3);color:var(--birch);
  padding:12px 30px;font-size:0.76rem;letter-spacing:0.18em;
  text-transform:uppercase;font-family:var(--sans);font-weight:300;
  cursor:pointer;transition:all var(--tr);border-radius:var(--radius);background:transparent;
}
.btn-outline:hover{border-color:var(--gold);color:var(--gold)}
.btn-outline-dark{
  display:inline-block;border:1px solid rgba(44,31,14,0.3);color:var(--heartwood);
  padding:11px 26px;font-size:0.76rem;letter-spacing:0.18em;
  text-transform:uppercase;font-family:var(--sans);font-weight:300;
  cursor:pointer;transition:all var(--tr);border-radius:var(--radius);background:transparent;
}
.btn-outline-dark:hover{border-color:var(--gold);color:var(--gold)}

/* ─── EYEBROW / SECTION HEADER ───────────────────────── */
.eyebrow{
  display:flex;align-items:center;gap:10px;
  font-size:0.68rem;letter-spacing:0.3em;text-transform:uppercase;
  color:var(--gold);font-family:var(--sans);font-weight:300;
  margin-bottom:1rem;
}
.eyebrow::before{content:'';display:block;width:22px;height:1px;background:var(--gold);opacity:0.7;flex-shrink:0}
.section-rule{width:40px;height:1px;background:var(--gold);margin:1.5rem 0;opacity:0.7}

/* ─── HERO ───────────────────────────────────────────── */
.hero{
  min-height:480px;max-height:600px;height:58vh;
  background:var(--night);
  display:grid;grid-template-columns:1fr 1fr;
  position:relative;overflow:hidden;
}
.hero-content{
  padding:8% 6% 8% 8%;
  display:flex;flex-direction:column;justify-content:center;
  position:relative;z-index:2;
}
.hero-content .eyebrow{margin-bottom:1.5rem}
.hero h1{color:var(--birch);font-weight:300;margin-bottom:1.5rem}
.hero h1 em{color:var(--gold)}
.hero-sub{color:rgba(232,220,200,0.82);font-size:1.05rem;font-weight:300;max-width:440px;margin-bottom:2.5rem;line-height:1.85}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.hero-image{position:relative;overflow:hidden;background:var(--night-mid)}
.hero-image img{width:100%;height:100%;object-fit:cover;opacity:0.8;transition:transform 8s ease;display:block}
.hero-image:hover img{transform:scale(1.04)}
.hero-tagline{
  position:absolute;bottom:2rem;left:7%;
  font-family:var(--serif);font-style:italic;
  color:rgba(232,220,200,0.3);font-size:1.05rem;letter-spacing:0.06em;z-index:2;
}
/* compass in hero image panel */
.hero-compass{
  position:absolute;bottom:24px;right:24px;
  opacity:0.16;pointer-events:none;z-index:1;
}

/* ─── PAGE HERO (interior pages) ────────────────────── */
.page-hero{
  background:var(--night);
  padding:4rem 8% 3.5rem;
  position:relative;overflow:hidden;
}
.page-hero .compass-watermark{right:-80px;top:-80px;opacity:0.06}
.page-hero .eyebrow{margin-bottom:1.5rem}
.page-hero h1{color:var(--birch);font-weight:300;font-size:clamp(2rem,4vw,3.2rem);margin-bottom:0.8rem}
.page-hero h1 em{color:var(--gold)}
.page-hero p{color:rgba(232,220,200,0.82);font-size:1.1rem;max-width:580px;line-height:1.85;font-weight:300}

/* ─── SECTIONS ───────────────────────────────────────── */
.section{padding:6rem 8%}
.section-light{background:var(--sawdust)}
.section-dark{background:var(--night)}
.section-mid{background:var(--heartwood)}
.section-header{margin-bottom:3.5rem;max-width:640px}
.section-header h2{color:var(--heartwood);margin-bottom:1rem}
.section-dark .section-header h2,.section-mid .section-header h2{color:var(--birch)}
.section-header p{color:var(--mid);font-size:1.05rem;line-height:1.8}
.section-dark .section-header p{color:rgba(232,220,200,0.8)}

/* ─── CREDENTIAL BAR ─────────────────────────────────── */
.cred-bar{
  background:var(--heartwood);
  display:flex;align-items:center;justify-content:center;
  gap:0;flex-wrap:wrap;
  border-bottom:1px solid rgba(184,137,58,0.12);
}
.cred-item{
  display:flex;align-items:center;gap:8px;
  padding:13px 28px;
  border-right:1px solid rgba(184,137,58,0.12);
}
.cred-item:last-child{border-right:none}
.cred-dot{width:4px;height:4px;background:var(--gold);border-radius:50%;opacity:0.7;flex-shrink:0}
.cred-item span{font-size:0.76rem;letter-spacing:0.14em;text-transform:uppercase;color:rgba(232,220,200,0.85);font-family:var(--sans);font-weight:300}

/* ─── PRODUCT GRID ───────────────────────────────────── */
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(290px,1fr));
  gap:2px;
}
.product-card{
  position:relative;overflow:hidden;cursor:pointer;
  aspect-ratio:4/5;background:var(--heartwood);
}
.product-card img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.6s ease,opacity 0.4s ease;
  opacity:0.88;display:block;
}
.product-card:hover img{transform:scale(1.06);opacity:1}
.card-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(24,19,16,0.93) 0%,rgba(24,19,16,0.18) 55%,transparent 100%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:1.6rem;transition:background 0.4s ease;
}
.product-card:hover .card-overlay{
  background:linear-gradient(to top,rgba(24,19,16,0.96) 0%,rgba(24,19,16,0.45) 65%,rgba(24,19,16,0.1) 100%);
}
.card-cat{font-size:0.62rem;letter-spacing:0.26em;text-transform:uppercase;color:var(--gold);font-family:var(--sans);margin-bottom:0.35rem}
.card-title{font-family:var(--serif);font-size:1.35rem;color:var(--birch);font-weight:400;line-height:1.2;margin-bottom:0.35rem}
.card-price{font-size:0.85rem;color:rgba(232,220,200,0.8);font-family:var(--sans);font-weight:300;margin-bottom:0.9rem}
.card-actions{
  display:flex;gap:8px;
  transform:translateY(10px);opacity:0;transition:all 0.3s ease;
}
.product-card:hover .card-actions{transform:translateY(0);opacity:1}
.btn-card{
  flex:1;background:var(--gold);color:var(--night);
  border:none;padding:8px 10px;font-size:0.66rem;
  letter-spacing:0.15em;text-transform:uppercase;
  font-family:var(--sans);cursor:pointer;border-radius:var(--radius);
  font-weight:500;transition:background var(--tr);
}
.btn-card:hover{background:var(--aged-oak)}
.btn-card-ghost{
  background:transparent;border:1px solid rgba(232,220,200,0.35);
  color:var(--birch);padding:8px 10px;font-size:0.66rem;
  letter-spacing:0.15em;text-transform:uppercase;
  font-family:var(--sans);cursor:pointer;border-radius:var(--radius);
  font-weight:300;transition:all var(--tr);white-space:nowrap;
}
.btn-card-ghost:hover{border-color:var(--gold);color:var(--gold)}

/* ─── PLACEHOLDER CARD ───────────────────────────────── */
.placeholder-card{
  aspect-ratio:4/5;background:var(--heartwood);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:1rem;padding:2rem;text-align:center;
}
.placeholder-icon{
  width:52px;height:52px;border:1px solid rgba(184,137,58,0.3);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
}
.placeholder-icon svg{width:22px;height:22px;stroke:var(--gold);fill:none;stroke-width:1.2}
.placeholder-card strong{color:rgba(232,220,200,0.85);font-family:var(--serif);font-size:1.1rem;font-weight:400}
.placeholder-card p{color:rgba(232,220,200,0.65);font-size:0.85rem;font-family:var(--sans);font-weight:300;line-height:1.6}

/* ─── CRAFT / PROCESS STRIP ──────────────────────────── */
.craft-strip{
  background:var(--night);padding:5rem 8%;
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:2.5rem;
  position:relative;overflow:hidden;
}
.craft-strip .compass-watermark{right:-100px;top:50%;transform:translateY(-50%);opacity:0.04}
.craft-item{text-align:center;position:relative}
.craft-item::after{
  content:'';position:absolute;top:28px;right:-1.25rem;
  width:2.5rem;height:1px;background:rgba(184,137,58,0.2);
}
.craft-item:last-child::after{display:none}
.craft-num{
  font-family:var(--serif);font-size:2.8rem;
  color:rgba(184,137,58,0.12);line-height:1;display:block;margin-bottom:0.4rem;
}
.craft-icon{
  width:46px;height:46px;border:1px solid rgba(184,137,58,0.28);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  margin:0 auto 0.9rem;
}
.craft-icon svg{width:18px;height:18px;stroke:var(--gold);fill:none;stroke-width:1.2}
.craft-item h4{font-family:var(--serif);font-size:1.05rem;color:var(--birch);font-weight:400;margin-bottom:0.45rem}
.craft-item p{font-size:0.84rem;color:rgba(232,220,200,0.72);font-family:var(--sans);font-weight:300;line-height:1.7}

/* ─── ABOUT / SPLIT LAYOUT ───────────────────────────── */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.about-image{position:relative}
.about-image img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block}
.about-caption{
  position:absolute;bottom:-1.25rem;right:-1.25rem;
  background:var(--night);padding:1.25rem 1.6rem;
  border-left:2px solid var(--gold);max-width:240px;
}
.about-caption strong{
  display:block;font-size:0.62rem;letter-spacing:0.22em;text-transform:uppercase;
  color:var(--gold);font-family:var(--sans);margin-bottom:0.4rem;
}
.about-caption span{font-size:0.88rem;color:rgba(232,220,200,0.62);font-family:var(--serif);font-style:italic;line-height:1.5}
.about-content h2{color:var(--heartwood);margin-bottom:1.2rem}
.about-content p{color:#3D2A0F;font-size:1rem;line-height:1.85;margin-bottom:1.3rem}
.about-stats{
  display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;
  margin-top:2.5rem;padding-top:2.5rem;border-top:1px solid rgba(44,31,14,0.1);
}
.stat-num{font-family:var(--serif);font-size:2.6rem;color:var(--gold);line-height:1;display:block;margin-bottom:0.25rem}
.stat-label{font-size:0.7rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--mid);font-family:var(--sans);font-weight:400}

/* ─── TESTIMONIAL ────────────────────────────────────── */
.testimonial{
  background:var(--night);padding:5.5rem 8%;
  text-align:center;position:relative;overflow:hidden;
}
.testimonial .compass-watermark{left:50%;top:50%;transform:translate(-50%,-50%);opacity:0.04}
.testimonial-rule{width:40px;height:1px;background:var(--gold);margin:0 auto 2rem;opacity:0.7}
.testimonial blockquote{
  font-family:var(--serif);font-size:clamp(1.3rem,2.8vw,2rem);
  color:var(--birch);font-weight:300;font-style:italic;
  max-width:680px;margin:0 auto 1.8rem;line-height:1.65;
}
.testimonial cite{font-size:0.7rem;letter-spacing:0.22em;text-transform:uppercase;color:var(--gold);font-family:var(--sans);font-style:normal}

/* ─── WOOD CARE SECTION (dark) ───────────────────────── */
.wc-split{
  background:var(--night);
  display:grid;grid-template-columns:1fr 1fr;
  position:relative;overflow:hidden;
}
.wc-content{padding:6rem 8%;display:flex;flex-direction:column;justify-content:center}
.wc-content h2{color:var(--birch);font-weight:300;margin-bottom:1.2rem}
.wc-content h2 em{color:var(--gold)}
.wc-content p{color:rgba(232,220,200,0.8);font-size:1rem;line-height:1.85;max-width:380px;margin-bottom:1.5rem;font-weight:300}
.wc-price{font-family:var(--serif);font-size:1.8rem;color:var(--gold);font-weight:300;margin-bottom:1.5rem}
.wc-visual{
  background:var(--night-mid);
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
  min-height:360px;
}
.wc-visual .compass-watermark{left:50%;top:50%;transform:translate(-50%,-50%);opacity:0.12}
.wc-tin{
  width:140px;height:140px;border:1px solid rgba(184,137,58,0.35);
  border-radius:50%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;
  background:rgba(184,137,58,0.04);
  position:relative;z-index:2;
}
.wc-tin-name{font-family:var(--serif);font-size:1rem;color:var(--birch);font-weight:400;letter-spacing:0.08em}
.wc-tin-sub{font-size:0.6rem;letter-spacing:0.22em;text-transform:uppercase;color:rgba(184,137,58,0.7);font-family:var(--sans);font-weight:300}
.wc-ingredients{
  display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;margin-bottom:2rem;
}
.wc-ing-item{padding:1rem 1.2rem;border:1px solid rgba(184,137,58,0.15);background:rgba(184,137,58,0.04)}
.wc-ing-item h4{font-family:var(--serif);font-size:1rem;color:var(--birch);font-weight:400;margin-bottom:0.3rem}
.wc-ing-item p{font-size:0.82rem;color:rgba(232,220,200,0.75);font-family:var(--sans);font-weight:300;line-height:1.6}

/* ─── HOW TO USE ─────────────────────────────────────── */
.steps{counter-reset:step;display:flex;flex-direction:column;gap:1.25rem;margin:2rem 0}
.step{display:flex;gap:1.2rem;align-items:flex-start}
.step-num{
  flex-shrink:0;width:28px;height:28px;
  border:1px solid rgba(184,137,58,0.5);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-size:0.85rem;color:var(--aged-oak);font-weight:500;
  margin-top:2px;background:rgba(184,137,58,0.08);
}
.step-body h4{font-family:var(--serif);font-size:1rem;color:var(--heartwood);font-weight:400;margin-bottom:0.2rem}
.step-body p{font-size:0.88rem;color:#3D2A0F;font-family:var(--sans);font-weight:300;line-height:1.65}
.section-dark .step-num,.section-mid .step-num{color:var(--gold);border-color:rgba(184,137,58,0.5);background:rgba(184,137,58,0.06)}
.section-dark .step-body h4,.section-mid .step-body h4{color:var(--birch)}
.section-dark .step-body p,.section-mid .step-body p{color:rgba(232,220,200,0.78)}

/* ─── SPECS TABLE ────────────────────────────────────── */
.specs-table{width:100%;border-collapse:collapse}
.specs-table tr{border-bottom:1px solid rgba(44,31,14,0.08)}
.specs-table td{padding:0.7rem 0;font-size:0.9rem;vertical-align:top}
.specs-table td:first-child{color:var(--mid);font-family:var(--sans);font-weight:300;width:40%}
.specs-table td:last-child{color:var(--heartwood);font-family:var(--sans);font-weight:400}
.specs-dark td:first-child{color:rgba(232,220,200,0.45);font-weight:300}
.specs-dark td:last-child{color:rgba(232,220,200,0.8)}
.specs-dark tr{border-bottom-color:rgba(184,137,58,0.1)}

/* ─── SHOP TABS ──────────────────────────────────────── */
.shop-tabs{
  display:flex;gap:0;
  border-bottom:1px solid rgba(44,31,14,0.12);
  flex-wrap:wrap;margin-bottom:0.5rem;
}
.shop-tab{
  padding:0.9rem 1.6rem;font-size:0.72rem;letter-spacing:0.18em;
  text-transform:uppercase;font-family:var(--sans);font-weight:400;
  cursor:pointer;border:none;background:transparent;
  color:rgba(44,31,14,0.4);border-bottom:2px solid transparent;
  margin-bottom:-1px;transition:all var(--tr);
}
.shop-tab.active,.shop-tab:hover{color:var(--heartwood);border-bottom-color:var(--gold)}

/* ─── CONTACT ────────────────────────────────────────── */
.contact-grid{display:grid;grid-template-columns:1fr 1.5fr;gap:5rem;align-items:start}
.contact-detail{display:flex;gap:1rem;margin-bottom:1.5rem;align-items:flex-start}
.contact-detail svg{width:18px;height:18px;stroke:var(--gold);fill:none;stroke-width:1.5;flex-shrink:0;margin-top:3px}
.contact-detail strong{display:block;font-size:0.72rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--mid);margin-bottom:0.2rem;font-family:var(--sans)}
.contact-detail span{font-size:0.95rem;color:var(--heartwood);font-family:var(--sans);font-weight:300}
label{display:block;font-size:0.72rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--mid);font-family:var(--sans);margin-bottom:0.4rem}
input,textarea,select{
  width:100%;padding:0.75rem 1rem;
  border:1px solid rgba(44,31,14,0.18);background:rgba(255,255,255,0.6);
  color:var(--heartwood);font-family:var(--sans);font-size:0.95rem;
  border-radius:var(--radius);transition:border-color var(--tr);outline:none;
  margin-bottom:1.2rem;
}
input:focus,textarea:focus,select:focus{border-color:var(--gold)}
textarea{min-height:140px;resize:vertical}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer{
  background:var(--night);
  border-top:1px solid rgba(184,137,58,0.12);
  padding:4rem 8% 2.5rem;
}
.footer-grid{
  display:grid;grid-template-columns:1.8fr 1fr 1fr 1fr;
  gap:3rem;margin-bottom:3rem;
  padding-bottom:3rem;border-bottom:1px solid rgba(184,137,58,0.1);
}
.footer-brand .logo-wordmark{font-size:1.4rem;letter-spacing:0.22em;color:var(--birch);font-weight:400;display:block;font-family:var(--serif)}
.footer-brand .logo-tagline{font-size:0.46rem;letter-spacing:0.38em;color:rgba(184,137,58,0.6);text-transform:uppercase;font-family:var(--sans);font-weight:300;display:block;margin-top:4px;margin-bottom:1rem}
.footer-brand p{font-size:0.88rem;color:rgba(232,220,200,0.38);line-height:1.75;font-family:var(--sans);font-weight:300;max-width:220px}
.footer-col h5{
  font-size:0.62rem;letter-spacing:0.25em;text-transform:uppercase;
  color:var(--gold);font-family:var(--sans);font-weight:400;
  margin-bottom:1rem;opacity:0.8;
}
.footer-col a{
  display:block;font-size:0.88rem;color:rgba(232,220,200,0.45);
  font-family:var(--sans);font-weight:300;margin-bottom:0.6rem;
  transition:color var(--tr);
}
.footer-col a:hover{color:var(--gold)}
.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;
}
.footer-bottom p{font-size:0.78rem;color:rgba(232,220,200,0.25);font-family:var(--sans);font-weight:300}
.footer-bottom a{color:rgba(184,137,58,0.5);transition:color var(--tr)}
.footer-bottom a:hover{color:var(--gold)}

/* ─── SCROLL FADE ────────────────────────────────────── */
.fade-up{opacity:0;transform:translateY(22px);transition:opacity 0.7s ease,transform 0.7s ease}
.fade-up.visible{opacity:1;transform:translateY(0)}
.delay-1{transition-delay:0.1s}
.delay-2{transition-delay:0.2s}
.delay-3{transition-delay:0.3s}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media(max-width:1100px){
  .hero{grid-template-columns:1fr}
  .hero-image{display:none}
  .wc-split{grid-template-columns:1fr}
  .wc-visual{min-height:280px}
  .about-grid{grid-template-columns:1fr;gap:3rem}
  .about-image{display:none}
  .contact-grid{grid-template-columns:1fr;gap:3rem}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2.5rem}
}
@media(max-width:768px){
  .section{padding:4.5rem 6%}
  .page-hero{padding:5rem 6% 3.5rem}
  nav{display:none}
  .hamburger{display:flex}
  .hero-content{padding:3rem 6%}
  .craft-strip{grid-template-columns:1fr 1fr;padding:3.5rem 6%;gap:2rem}
  .craft-item::after{display:none}
  .cred-bar{flex-direction:column;gap:0}
  .cred-item{border-right:none;border-bottom:1px solid rgba(184,137,58,0.1);width:100%;justify-content:center}
  .cred-item:last-child{border-bottom:none}
  .product-grid{grid-template-columns:repeat(auto-fill,minmax(240px,1fr))}
  .footer-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .about-stats{grid-template-columns:1fr 1fr}
  .wc-ingredients{grid-template-columns:1fr}
}
@media(max-width:480px){
  .product-grid{grid-template-columns:1fr 1fr}
  .hero-actions{flex-direction:column}
  .craft-strip{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}

/* ─── PRODUCT DETAIL PAGE ────────────────────────────── */
.product-hero{
  background:var(--night);
  display:grid;grid-template-columns:1fr 1fr;
  height:calc(100vh - 66px);
  max-height:620px;
  min-height:420px;
  position:relative;overflow:hidden;
}
.product-hero-gallery{
  display:flex;flex-direction:column;
  background:var(--night-mid);
  height:100%;
  overflow:hidden;
}
.gallery-main{
  /* flex:1 fills all height not consumed by thumb strip */
  flex:1 1 0;
  min-height:0;
  position:relative;
  overflow:hidden;
  background:var(--night-mid);
}
.gallery-main img{
  position:absolute;top:0;left:0;
  width:100%;height:100%;
  object-fit:contain;   /* contain: whole image visible, no cropping */
  object-position:center;
  opacity:0.95;display:block;
  transition:opacity 0.25s ease;
  background:var(--night-mid);
}
.gallery-thumbs{
  flex:0 0 72px;         /* fixed 72px strip height — never overlaps gallery-main */
  display:flex;flex-direction:row;align-items:center;
  gap:5px;
  padding:6px 10px;
  background:#0f0c09;
  border-top:1px solid rgba(184,137,58,0.12);
  overflow-x:auto;
  scrollbar-width:thin;
  scrollbar-color:rgba(184,137,58,0.3) transparent;
}
.gallery-thumbs::-webkit-scrollbar{height:3px}
.gallery-thumbs::-webkit-scrollbar-thumb{background:rgba(184,137,58,0.3);border-radius:2px}
.gallery-thumb{
  width:80px;
  height:56px;
  flex-shrink:0;
  object-fit:cover;
  cursor:pointer;
  opacity:0.45;
  border:2px solid transparent;
  display:block;
  transition:opacity 0.2s ease,border-color 0.2s ease;
}
.gallery-thumb.active,.gallery-thumb:hover{
  opacity:1;
  border-color:var(--gold);
}
.product-hero-info{
  padding:4% 5%;
  display:flex;flex-direction:column;justify-content:flex-start;
  overflow-y:auto;
  scrollbar-width:thin;
  scrollbar-color:rgba(184,137,58,0.2) transparent;
}
.product-hero-info::-webkit-scrollbar{width:3px}
.product-hero-info::-webkit-scrollbar-thumb{background:rgba(184,137,58,0.2);border-radius:2px}
.product-hero-info .eyebrow{margin-bottom:1.2rem}
.product-hero-info h1{color:var(--birch);font-weight:300;font-size:clamp(1.6rem,3vw,2.4rem);margin-bottom:0.4rem}
.product-hero-info h1 em{color:var(--gold)}
.product-price{
  font-family:var(--serif);font-size:1.6rem;color:var(--gold);
  font-weight:300;margin:0.8rem 0 0.3rem;
}
.product-price-note{font-size:0.72rem;color:rgba(232,220,200,0.55);font-family:var(--sans);font-weight:300;letter-spacing:0.06em;margin-bottom:1rem}
.product-hero-info p{color:rgba(232,220,200,0.82);font-size:0.92rem;line-height:1.75;max-width:420px;margin-bottom:1rem;font-weight:300}
.product-cta-row{display:flex;gap:0.7rem;flex-wrap:wrap;margin-bottom:1rem}
.product-meta{
  display:flex;flex-direction:column;gap:0.4rem;
  padding-top:1rem;border-top:1px solid rgba(184,137,58,0.15);
}
.product-meta-row{display:flex;gap:1.5rem;flex-wrap:wrap}
.product-meta-item{font-size:0.78rem;font-family:var(--sans);font-weight:300}
.product-meta-item span:first-child{color:rgba(232,220,200,0.45);text-transform:uppercase;letter-spacing:0.14em;margin-right:0.5rem}
.product-meta-item span:last-child{color:rgba(232,220,200,0.82)}

.product-story{background:var(--sawdust);padding:5.5rem 8%}
.product-story .about-grid{align-items:start;gap:4rem}
.product-story h2{color:var(--heartwood);margin-bottom:1rem}
.product-story p{color:#3D2A0F;font-size:1rem;line-height:1.88;margin-bottom:1.2rem}

.product-specs{background:var(--night);padding:4rem 8%}
.product-specs h3{color:var(--birch);font-family:var(--serif);font-size:1.4rem;font-weight:400;margin-bottom:1.5rem}
.specs-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem}

.related-strip{background:var(--sawdust);padding:4rem 8%}
.related-strip h3{font-family:var(--serif);font-size:1.4rem;color:var(--heartwood);font-weight:400;margin-bottom:2rem}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px}

@media(max-width:1100px){
  .product-hero{grid-template-columns:1fr}
  .product-hero{height:auto;min-height:0}
  .product-hero-gallery{height:56vw;min-height:260px}
  .specs-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .product-hero{height:auto}
  .product-hero-gallery{height:68vw;min-height:240px}
  .related-grid{grid-template-columns:repeat(2,1fr)}
  .product-story .about-grid{grid-template-columns:1fr}
}

/* ─── STOCK BADGE ────────────────────────────────────────── */
.stock-badge{
  display:inline-flex;align-items:center;gap:7px;
  padding:7px 14px;margin-bottom:1.2rem;
  font-size:0.7rem;letter-spacing:0.16em;text-transform:uppercase;
  font-family:var(--sans);font-weight:400;
  border-radius:2px;
}
.stock-dot{
  width:7px;height:7px;border-radius:50%;flex-shrink:0;
}
.stock-badge.in-stock{
  background:rgba(184,137,58,0.12);
  color:var(--gold);
  border:1px solid rgba(184,137,58,0.3);
}
.stock-badge.in-stock .stock-dot{background:var(--gold)}
.stock-badge.made-to-order{
  background:rgba(184,137,58,0.06);
  color:rgba(184,137,58,0.75);
  border:1px solid rgba(184,137,58,0.18);
}
.stock-badge.made-to-order .stock-dot{
  background:transparent;
  border:1.5px solid rgba(184,137,58,0.6);
}
.stock-badge.sold{
  background:rgba(255,255,255,0.04);
  color:rgba(232,220,200,0.4);
  border:1px solid rgba(255,255,255,0.08);
}
.stock-badge.sold .stock-dot{background:rgba(232,220,200,0.25)}
.stock-note{
  font-size:0.72rem;color:rgba(184,137,58,0.7);
  font-family:var(--sans);font-weight:300;
  letter-spacing:0.04em;margin-top:-0.8rem;margin-bottom:1.2rem;
  font-style:italic;
}
.stock-lead{
  display:block;font-size:0.68rem;letter-spacing:0.12em;
  color:rgba(232,220,200,0.45);font-family:var(--sans);font-weight:300;
  margin-top:0.25rem;text-transform:none;
}
/* card-level badge on collection pages */
.card-stock{
  font-size:0.58rem;letter-spacing:0.16em;text-transform:uppercase;
  font-family:var(--sans);padding:2px 7px;border-radius:2px;
  display:inline-block;margin-bottom:0.35rem;
}
.card-stock.in-stock{background:rgba(184,137,58,0.2);color:var(--gold)}
.card-stock.made-to-order{background:rgba(184,137,58,0.1);color:rgba(184,137,58,0.7)}
.card-stock.sold{background:rgba(255,255,255,0.06);color:rgba(232,220,200,0.4)}
