/* ==========================================================================
   HUGH MAGUIRE BUTCHERS & SMOKEHOUSE, FOODSERVICE LANDING PAGE
   Brand palette: charcoal / smoke / cream / warm white / forest / copper
   Typography: Fraunces (serif, headings) + Inter (sans, body/nav)
   ========================================================================== */

:root{
  /* brand colours */
  --charcoal: #1C2420;      /* smokehouse midnight */
  --forest: #2E3D32;        /* deep forest */
  --copper: #B8905A;        /* burnished copper, the single warm accent */
  --copper-light: #D4AA78;
  --parchment: #F2EBD9;     /* aged parchment / cream */
  --bone: #FAFAF7;          /* bone / warm white */
  --oak: #3A2818;           /* smoked oak, footer */
  --text-ink: #2C1E10;
  --text-muted-light: #6B5C44;  /* secondary text on light backgrounds */
  --text-muted-dark: #8AA090;   /* secondary text on dark backgrounds */
  --border-light: #D8CCBA;
  --border-dark: rgba(184,144,90,.16);

  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1180px;
  --section-pad: clamp(64px, 9vw, 120px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }
h1,h2,h3,h4{ font-family: var(--font-serif); font-weight: 400; margin: 0; }
p{ margin: 0; }

.skip-link{
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--copper); color: var(--charcoal);
  padding: 10px 16px; font-size: 13px; font-weight: 600;
}
.skip-link:focus{ left: 10px; top: 10px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- shared type ---------- */
.eyebrow{
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--copper); margin: 0 0 16px;
  font-weight: 600;
}
.eyebrow-dark{ color: #8A6A3A; }
.eyebrow-line{ width: 28px; height: 1px; background: var(--copper); flex-shrink: 0; }

.section{ padding: var(--section-pad) 6vw; }
.section-dark{ background: var(--charcoal); color: var(--parchment); }
.section-forest{ background: var(--forest); color: var(--parchment); }
.section-parchment{ background: var(--parchment); }
.section-bone{ background: var(--bone); }

.section-intro{ max-width: 680px; margin: 0 auto 56px; text-align: left; }
.section-intro h2{ font-size: clamp(30px, 4vw, 46px); line-height: 1.15; margin-bottom: 14px; }
.section-lede{ font-size: 16px; line-height: 1.7; color: var(--text-muted-light); max-width: 560px; }
.section-lede.light{ color: var(--text-muted-dark); }

.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; border-radius: 2px; border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s;
}
.btn-normal-case{ text-transform: none; letter-spacing: normal; }
.btn-primary{ background: var(--copper); color: var(--charcoal); }
.btn-primary:hover{ transform: translateY(-2px); background: var(--copper-light); }
.btn-ghost{
  border-color: rgba(242,235,217,.55); color: var(--parchment);
  background: rgba(16,20,18,.45); backdrop-filter: blur(3px);
}
.btn-ghost:hover{ border-color: var(--copper); color: var(--copper); background: rgba(16,20,18,.65); transform: translateY(-2px); }
.btn-outline{ border-color: var(--copper); color: var(--copper); background: transparent; }
.btn-outline:hover{ background: var(--copper); color: var(--charcoal); transform: translateY(-2px); }

/* ---------- reveal-on-scroll ---------- */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader{
  position: fixed; inset: 0; z-index: 9999;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
#preloader.loaded{ opacity: 0; visibility: hidden; }
.preloader-mark{ text-align: center; }
.preloader-word{
  font-family: var(--font-serif); color: var(--parchment); font-size: 15px;
  letter-spacing: .3em; display: block; margin-bottom: 14px;
}
.preloader-line{
  display: block; width: 60px; height: 1px; margin: 0 auto; background: var(--border-dark);
  position: relative; overflow: hidden;
}
.preloader-line::after{
  content: ''; position: absolute; inset: 0; background: var(--copper);
  animation: preload-sweep 1.1s ease-in-out infinite;
}
@keyframes preload-sweep{
  0%{ transform: translateX(-100%); } 50%{ transform: translateX(0); } 100%{ transform: translateX(100%); }
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
#site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 22px 0;
}
#site-header.scrolled{
  background: rgba(28,36,32,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  padding: 12px 0;
}
.nav-inner{
  max-width: var(--max-width); margin: 0 auto; padding: 0 6vw;
  display: flex; align-items: center; justify-content: space-between;
}
.logo{ display: flex; align-items: center; }
.logo-img{ height: 60px; width: auto; display: block; transition: opacity .2s, height .35s var(--ease); }
.logo-img:hover{ opacity: .85; }
#site-header.scrolled .logo-img{ height: 46px; }

#primary-nav ul{ display: flex; align-items: center; gap: 30px; }
#primary-nav a{
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted-dark); font-weight: 500;
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
#primary-nav a:hover{ color: var(--parchment); }
#primary-nav a.nav-cta{
  color: var(--charcoal); background: var(--copper); padding: 10px 20px;
  border-radius: 2px; font-weight: 600;
  transition: background .2s, transform .2s;
}
#primary-nav a.nav-cta:hover{ background: var(--copper-light); color: var(--charcoal); transform: translateY(-1px); }

#nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: transparent; border: none; padding: 0;
}
#nav-toggle span{ display: block; width: 100%; height: 1.5px; background: var(--parchment); transition: transform .3s, opacity .3s; }
#nav-toggle.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
#nav-toggle.open span:nth-child(2){ opacity: 0; }
#nav-toggle.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
#hero{
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; overflow: hidden; background: var(--charcoal);
  padding: 140px 6vw 60px;
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; object-position: 78% 45%; opacity: .96; }
.hero-overlay{
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(16,20,18,.1) 0%, rgba(16,20,18,.04) 32%, rgba(16,20,18,.42) 100%),
    linear-gradient(100deg, rgba(16,20,18,.5) 0%, rgba(16,20,18,.26) 38%, rgba(16,20,18,0) 66%);
}
.hero-content{ position: relative; z-index: 2; max-width: 640px; }
.hero-logo-img{
  height: 92px; width: auto; margin-bottom: 30px;
  filter: drop-shadow(0 6px 22px rgba(0,0,0,.55));
}
.hero-content h1{
  font-size: clamp(36px, 6vw, 64px); line-height: 1.1; color: var(--parchment);
  margin: 0 0 22px; text-shadow: 0 4px 30px rgba(0,0,0,.7);
}
.nowrap{ white-space: nowrap; }
.hero-sub{ font-size: clamp(15px, 1.6vw, 18px); line-height: 1.75; color: var(--text-muted-dark); max-width: 480px; margin-bottom: 38px; text-shadow: 0 2px 18px rgba(0,0,0,.65); }
.hero-btns{ display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust{
  position: relative; z-index: 2; margin-top: 56px;
  display: flex; flex-wrap: wrap; gap: 12px 24px;
}
.trust-item{
  display: flex; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--copper-light); font-weight: 500;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.trust-item .dot{ width: 5px; height: 5px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }

.scroll-cue{
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 26px; height: 44px; border: 1px solid rgba(242,235,217,.35);
  border-radius: 14px; background: transparent;
}
.scroll-cue span{
  display: block; width: 4px; height: 8px; background: var(--copper); border-radius: 2px;
  margin: 7px auto 0; animation: scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-move{
  0%{ transform: translateY(0); opacity: 1; } 70%{ transform: translateY(14px); opacity: 0; } 100%{ opacity: 0; }
}

/* ---------- media fallback (graceful degrade if hotlinked image fails) ---------- */
[data-label]{ position: relative; overflow: hidden; background: linear-gradient(135deg, var(--forest), var(--charcoal)); }
[data-label].media-fallback img{ display: none; }
[data-label].media-fallback::after{
  content: attr(data-label);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 20px; font-family: var(--font-sans);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--copper-light); border: 1px dashed var(--border-dark);
}

/* ==========================================================================
   STAT STRIP
   ========================================================================== */
.stat-strip{
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--forest); border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark);
}
.stat-item{
  padding: 34px 14px; text-align: center; border-right: 1px solid var(--border-dark);
}
.stat-item:last-child{ border-right: none; }
.stat-num{ font-family: var(--font-serif); font-size: clamp(26px, 3vw, 38px); color: var(--copper); line-height: 1; }
.stat-label{ font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted-dark); margin-top: 8px; }

/* ==========================================================================
   TRUSTED BY STRIP
   ========================================================================== */
.trusted-by{
  background: var(--bone); padding: 30px 6vw; text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.trusted-by-label{
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted-light); margin-bottom: 14px; font-weight: 600;
}
.trusted-by-row{
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-serif); font-size: clamp(15px, 2vw, 20px); color: var(--text-ink);
  letter-spacing: .01em;
}
.tb-sep{ color: var(--copper); font-family: var(--font-sans); }

/* ==========================================================================
   OUR STORY, alternating rows
   ========================================================================== */
.story-row{
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  max-width: var(--max-width); margin: 0 auto 88px;
}
.story-row:last-child{ margin-bottom: 0; }
.story-row-reverse{ direction: rtl; }
.story-row-reverse > *{ direction: ltr; }
.story-media{ aspect-ratio: 4/5; border-radius: 3px; }
.story-media img{ width: 100%; height: 100%; object-fit: cover; }
.story-media.story-media-wide{ aspect-ratio: 3/2; }
.story-kicker{ font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); font-weight: 600; margin-bottom: 12px; }
.story-text h3{ font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 16px; line-height: 1.25; }
.story-text p{ font-size: 15px; line-height: 1.85; color: var(--text-muted-light); }

/* ==========================================================================
   SMOKEHOUSE
   ========================================================================== */
.smokehouse-grid{ display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; max-width: var(--max-width); margin: 0 auto; }
.smokehouse-media{ position: relative; aspect-ratio: 3/4; border-radius: 3px; }
.smokehouse-media img{ width: 100%; height: 100%; object-fit: cover; }
.award-tag{
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  background: rgba(28,36,32,.88); border: 1px solid var(--border-dark);
  border-radius: 3px; padding: 14px 16px; backdrop-filter: blur(4px);
}
.award-tag-label{ display: block; font-size: 9px; letter-spacing: .1em; color: var(--copper); text-transform: uppercase; margin-bottom: 5px; }
.award-tag-text{ display: block; font-family: var(--font-serif); font-size: 15px; color: var(--copper-light); line-height: 1.4; }

.smokehouse-content h2{ font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; color: var(--parchment); }

.icon-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 24px; margin-top: 40px; }
.icon-card .icon{ width: 30px; height: 30px; color: var(--copper); margin-bottom: 14px; }
.icon-card h4{ font-size: 15px; color: var(--parchment); margin-bottom: 8px; font-weight: 500; font-family: var(--font-sans); letter-spacing: .01em; }
.icon-card p{ font-size: 12.5px; line-height: 1.65; color: var(--text-muted-dark); }

/* ==========================================================================
   ORIGIN GREEN COMMITMENT
   ========================================================================== */
.og-grid{ display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; max-width: var(--max-width); margin: 0 auto; }
.og-media{ aspect-ratio: 4/5; border-radius: 3px; }
.og-media img{ width: 100%; height: 100%; object-fit: cover; }
.og-content h2{ font-size: clamp(28px, 4vw, 40px); color: var(--parchment); margin-bottom: 16px; }
.og-actions{ display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 26px; }
.og-logo-slot{ display: inline-flex; align-items: center; }
.og-logo-img{ height: 68px; width: auto; }
.og-logo-slot span{ font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted-dark); }

/* ==========================================================================
   FOODSERVICE SOLUTIONS
   ========================================================================== */
.fs-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: var(--max-width); margin: 0 auto;
}
.fs-card{
  background: var(--bone); border: 1px solid var(--border-light); border-radius: 4px;
  padding: 32px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.fs-card:hover{
  transform: translateY(-6px); border-color: var(--copper);
  box-shadow: 0 18px 40px rgba(28,36,32,.1);
}
.fs-card .icon{ width: 30px; height: 30px; color: var(--copper); margin-bottom: 18px; }
.fs-card h3{ font-size: 18px; margin-bottom: 8px; }
.fs-card p{ font-size: 13.5px; line-height: 1.6; color: var(--text-muted-light); }

/* ==========================================================================
   PRODUCT HIGHLIGHTS
   ========================================================================== */
.product-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: var(--max-width); margin: 0 auto;
}
.product-card{
  background: var(--bone); border: 1px solid var(--border-light); border-radius: 4px; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product-card:hover{ transform: translateY(-6px); box-shadow: 0 20px 44px rgba(28,36,32,.12); }
.product-media{ aspect-ratio: 4/3; position: relative; background: var(--forest); }
.product-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-media img{ transform: scale(1.06); }
.product-badge{
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(184,144,90,.92); color: var(--charcoal);
  font-size: 9px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
  padding: 5px 9px; border-radius: 2px;
}
.placeholder-media{
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--forest), var(--charcoal));
}
.placeholder-media svg{ width: 44px; height: 44px; color: var(--copper); opacity: .7; }
.product-card h3{ font-size: 17px; padding: 18px 18px 6px; }
.product-card p{ font-size: 12.5px; line-height: 1.6; color: var(--text-muted-light); padding: 0 18px 20px; }

/* ==========================================================================
   WHY CHOOSE
   ========================================================================== */
.why-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-dark); max-width: var(--max-width); margin: 0 auto; }
.why-card{ background: var(--forest); padding: 40px 32px; }
.why-num{ display: block; font-family: var(--font-serif); font-size: 13px; color: var(--copper); letter-spacing: .06em; margin-bottom: 18px; }
.why-card h3{ font-size: 19px; color: var(--parchment); margin-bottom: 10px; }
.why-card p{ font-size: 13.5px; line-height: 1.7; color: var(--text-muted-dark); }

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline{
  display: flex; justify-content: space-between; align-items: flex-start;
  max-width: var(--max-width); margin: 0 auto; position: relative; padding: 0 10px;
}
.timeline::before{
  content: ''; position: absolute; top: 6px; left: 20px; right: 20px; height: 1px; background: var(--border-light);
}
.timeline-node{
  position: relative; z-index: 1; background: transparent; border: none;
  display: flex; flex-direction: column; align-items: center; gap: 12px; flex: 1;
  padding: 0 6px;
}
.node-dot{
  width: 13px; height: 13px; border-radius: 50%; background: var(--bone); border: 2px solid var(--border-light);
  transition: background .3s, border-color .3s, transform .3s;
}
.timeline-node.active .node-dot{ background: var(--copper); border-color: var(--copper); transform: scale(1.2); }
.node-year{ font-size: 12px; letter-spacing: .06em; color: var(--text-muted-light); font-weight: 600; transition: color .3s; }
.timeline-node.active .node-year{ color: var(--copper); }
.timeline-node:hover .node-year{ color: var(--copper); }

.timeline-detail{ max-width: 680px; margin: 44px auto 0; min-height: 130px; position: relative; }
.timeline-panel{
  display: none; opacity: 0; transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.timeline-panel.active{ display: block; opacity: 1; transform: translateY(0); }
.timeline-panel h3{ font-size: 22px; margin-bottom: 10px; }
.timeline-panel p{ font-size: 15px; line-height: 1.8; color: var(--text-muted-light); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-slider{ max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial-track{ position: relative; min-height: 190px; }
.testimonial{
  display: none; opacity: 0; position: absolute; inset: 0;
  transition: opacity .6s var(--ease);
}
.testimonial.active{ display: block; opacity: 1; position: relative; }
.testimonial p{
  font-family: var(--font-serif); font-size: clamp(19px, 2.4vw, 25px); line-height: 1.55;
  color: var(--parchment); font-style: italic; margin-bottom: 22px;
}
.testimonial footer{ font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--copper); font-weight: 600; }

.testimonial-dots{ display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.t-dot{
  width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--border-dark);
  background: transparent; padding: 0; transition: background .3s, transform .3s;
}
.t-dot.active{ background: var(--copper); transform: scale(1.2); }

/* ==========================================================================
   GALLERY / MASONRY
   ========================================================================== */
.masonry{
  columns: 4 220px; column-gap: 16px; max-width: var(--max-width); margin: 0 auto;
}
.masonry-item{
  break-inside: avoid; margin-bottom: 16px; border-radius: 3px; overflow: hidden;
  position: relative; cursor: pointer; background: var(--forest);
}
.masonry-item img{ width: 100%; display: block; transition: transform .5s var(--ease), filter .4s; }
.masonry-item:nth-child(3n+1) img{ aspect-ratio: 3/4; object-fit: cover; }
.masonry-item:nth-child(3n+2) img{ aspect-ratio: 1/1; object-fit: cover; }
.masonry-item:nth-child(3n) img{ aspect-ratio: 4/5; object-fit: cover; }
.masonry-item::after{
  content: '\002B'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--parchment); background: rgba(28,36,32,0); opacity: 0;
  transition: opacity .3s, background .3s; pointer-events: none;
}
.masonry-item:hover img{ transform: scale(1.06); }
.masonry-item:hover::after{ opacity: 1; background: rgba(28,36,32,.32); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-inner{ max-width: 640px; margin: 0 auto; text-align: left; }
.contact-inner h2{ font-size: clamp(30px, 4vw, 46px); color: var(--parchment); margin-bottom: 16px; }
.contact-btns{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.contact-note{ margin-top: 20px; font-size: 11.5px; color: var(--text-muted-dark); }
.contact-note code{ background: rgba(0,0,0,.2); padding: 2px 6px; border-radius: 2px; }

.form-divider{
  display: flex; align-items: center; gap: 16px; margin: 40px 0 26px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted-dark);
}
.form-divider::before, .form-divider::after{ content: ''; flex: 1; height: 1px; background: var(--border-dark); }

.contact-form{ display: flex; flex-direction: column; gap: 18px; }
.form-row{ display: flex; gap: 18px; }
.form-row .form-field{ flex: 1; min-width: 0; }
.form-field label{
  display: block; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted-dark); margin-bottom: 8px;
}
.form-field input, .form-field textarea{
  width: 100%; padding: 13px 15px; background: rgba(255,255,255,.05);
  border: 1px solid var(--border-dark); border-radius: 3px; color: var(--parchment);
  font-family: 'Inter', Arial, sans-serif; font-size: 14.5px; transition: border-color .2s, background .2s;
}
.form-field input::placeholder, .form-field textarea::placeholder{ color: rgba(138,160,144,.6); }
.form-field input:focus, .form-field textarea:focus{
  outline: none; border-color: var(--copper); background: rgba(255,255,255,.08);
}
.form-field textarea{ resize: vertical; min-height: 100px; }
.form-hp{ position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status{ font-size: 13px; min-height: 18px; color: var(--copper-light); }
.form-status.is-error{ color: #E39A8C; }

@media (max-width: 720px){
  .form-row{ flex-direction: column; gap: 18px; }
}

/* ==========================================================================
   BROCHURES CTA
   ========================================================================== */
.brochures-section{ padding-top: clamp(44px, 6vw, 70px); padding-bottom: clamp(44px, 6vw, 70px); }
.brochures-intro{ max-width: 680px; margin: 0 auto 40px; }
.brochures-intro h2{ font-size: clamp(26px, 3.4vw, 38px); line-height: 1.2; margin-bottom: 12px; }
.brochure-cards{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: var(--max-width); margin: 0 auto;
}
.brochure-card{
  display: block; background: var(--parchment); border: 1px solid var(--border-light); border-radius: 4px;
  padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.brochure-card:hover{ transform: translateY(-6px); border-color: var(--copper); box-shadow: 0 18px 40px rgba(28,36,32,.1); }
.brochure-card .icon{ width: 30px; height: 30px; color: var(--copper); margin-bottom: 18px; }
.brochure-media{ aspect-ratio: 16/10; border-radius: 3px; overflow: hidden; margin-bottom: 18px; background: var(--forest); }
.brochure-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.brochure-card:hover .brochure-media img{ transform: scale(1.06); }
.brochure-card h3{ font-size: 18px; margin-bottom: 8px; color: var(--text-ink); }
.brochure-card p{ font-size: 13px; line-height: 1.6; color: var(--text-muted-light); margin-bottom: 18px; }
.brochure-cta{ font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--copper); font-weight: 600; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
#site-footer{ background: var(--oak); color: #C7B39A; padding: 70px 6vw 0; }
.footer-grid{
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  max-width: var(--max-width); margin: 0 auto; padding-bottom: 46px;
}
.footer-logo-img{ height: 76px; width: auto; margin-bottom: 20px; }
.footer-addr{ font-size: 13px; line-height: 1.9; color: #9C8468; }
.footer-col h4{ font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #8A7156; margin-bottom: 16px; font-family: var(--font-sans); font-weight: 600; }
.footer-col a{ display: block; font-size: 13px; color: #9C8468; margin-bottom: 12px; transition: color .2s; }
.footer-col a:hover{ color: var(--copper-light); }
.footer-hours{ display: block; font-size: 12px; color: #7C6650; margin-top: 4px; }
.social-row{ display: flex; gap: 12px; margin-top: 4px; }
.social-icon{
  width: 34px; height: 34px; border: 1px solid rgba(184,144,90,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: border-color .2s, transform .2s;
}
.social-icon svg{ width: 15px; height: 15px; color: #9C8468; }
.social-icon:hover{ border-color: var(--copper); transform: translateY(-2px); }

.footer-bottom{
  border-top: 1px solid rgba(184,144,90,.15); padding: 18px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: 11px; color: #7C6650; max-width: var(--max-width); margin: 0 auto;
}
.og-badge{ display: inline-flex; align-items: center; gap: 7px; letter-spacing: .05em; }
.og-badge .dot{ width: 6px; height: 6px; border-radius: 50%; background: #7A9480; }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
#back-to-top{
  position: fixed; right: 24px; bottom: 24px; z-index: 400;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border-dark);
  background: var(--charcoal); color: var(--copper);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s;
}
#back-to-top.visible{ opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top svg{ width: 18px; height: 18px; }
#back-to-top:hover{ background: var(--copper); color: var(--charcoal); }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox{
  position: fixed; inset: 0; z-index: 1000; background: rgba(20,24,21,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.open{ opacity: 1; visibility: visible; }
.lightbox-img{ max-width: 82vw; max-height: 76vh; object-fit: contain; border-radius: 2px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-caption{
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  color: var(--text-muted-dark); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
}
.lightbox-close, .lightbox-prev, .lightbox-next{
  position: absolute; background: transparent; border: 1px solid rgba(242,235,217,.25);
  color: var(--parchment); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s;
}
.lightbox-close{ top: 26px; right: 26px; width: 42px; height: 42px; font-size: 22px; }
.lightbox-prev, .lightbox-next{ top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 26px; }
.lightbox-prev{ left: 20px; }
.lightbox-next{ right: 20px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover{ border-color: var(--copper); color: var(--copper); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px){
  .story-row{ grid-template-columns: 1fr; gap: 30px; }
  .story-row-reverse{ direction: ltr; }
  .smokehouse-grid{ grid-template-columns: 1fr; gap: 44px; }
  .og-grid{ grid-template-columns: 1fr; gap: 30px; }
  .icon-grid{ grid-template-columns: repeat(2, 1fr); }
  .fs-grid{ grid-template-columns: repeat(2, 1fr); }
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .brochure-cards{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .stat-strip{ grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3){ border-right: none; }
  .masonry{ columns: 3 180px; }
}

@media (max-width: 1024px){
  #primary-nav{
    position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh; width: min(78vw, 320px);
    background: var(--charcoal); padding: 100px 32px 40px;
    transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.3);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    z-index: 501;
  }
  #primary-nav.open{ transform: translateX(0); }
  #primary-nav ul{ flex-direction: column; align-items: flex-start; gap: 26px; }
  #primary-nav a.nav-cta{ margin-top: 10px; }
  #nav-toggle{ display: flex; }
}

@media (max-width: 720px){
  .logo-img{ height: 40px; }
  #site-header.scrolled .logo-img{ height: 34px; }
  .hero-logo-img{ height: 62px; margin-bottom: 22px; }
  .footer-logo-img{ height: 58px; }

  .hero-btns{ flex-direction: column; align-items: flex-start; }
  .hero-trust{ gap: 10px 18px; }

  .stat-strip{ grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3){ border-right: 1px solid var(--border-dark); }
  .stat-item:nth-child(2n){ border-right: none; }

  .icon-grid{ grid-template-columns: 1fr; }
  .fs-grid{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-grid{ grid-template-columns: 1fr; }
  .brochure-cards{ grid-template-columns: 1fr; }

  .timeline{ overflow-x: auto; justify-content: flex-start; gap: 30px; padding-bottom: 6px; }
  .timeline::before{ left: 20px; right: 20px; }
  .timeline-node{ flex: 0 0 auto; min-width: 64px; }

  .masonry{ columns: 2 140px; }

  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }

  .contact-btns{ flex-direction: column; align-items: stretch; }
  .contact-btns .btn{ width: 100%; }

  .lightbox-prev, .lightbox-next{ width: 40px; height: 40px; }
}

@media (max-width: 460px){
  .product-grid{ grid-template-columns: 1fr; }
}
