/* ============================================================
   Andrews Butchery Loganholme — styles.css
   Palette sampled from the supplied logo (charcoal + cream,
   monochrome badge) with butcher-red + gold as brand accents.
   Swap any --colour-* below to re-skin the whole site.
   ============================================================ */

:root {
  /* Colour — base tones extracted from the black/white logo */
  --colour-charcoal: #1C1A17;      /* near-black, warm not cold */
  --colour-charcoal-2: #26221D;    /* raised charcoal surface */
  --colour-butcher-red: #7C2128;   /* deep red, primary brand colour */
  --colour-butcher-red-dark: #5A171C;
  --colour-cream: #F6F1E7;         /* warm off-white background */
  --colour-cream-alt: #EFE7D6;
  --colour-gold: #C89B3C;          /* accent for CTAs, dividers, highlights */
  --colour-gold-soft: #D9B45E;
  --colour-text: #221F1C;
  --colour-text-muted: #5C564C;
  --colour-text-on-dark: #ECE6DA;
  --colour-text-on-dark-muted: #A99F8E;
  --colour-line: rgba(34, 31, 28, 0.12);
  --colour-line-dark: rgba(246, 241, 231, 0.14);

  /* Type */
  --font-head: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Type scale */
  --fs-hero: clamp(2.9rem, 7vw, 5.6rem);
  --fs-h2: clamp(2rem, 4.2vw, 3.4rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.6rem);
  --fs-lede: clamp(1.05rem, 1.5vw, 1.25rem);
  --fs-body: 1.02rem;
  --fs-small: 0.82rem;

  /* Layout */
  --wrap: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 4px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Faint paper grain used on cream sections */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: clip; /* clip horizontal overflow WITHOUT creating a scroll container */
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--colour-text);
  background: var(--colour-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-head); font-weight: 700; line-height: 1.02; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(4rem, 8vw, 7.5rem) 0; position: relative; }

/* Alternating section backgrounds + texture */
.section-charcoal { background: var(--colour-charcoal); color: var(--colour-text-on-dark); }
.section-cream-alt { background: var(--colour-cream-alt); }
.section-cream-alt::before,
.about::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--grain); opacity: 0.5; mix-blend-mode: multiply;
}
.section-charcoal::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--grain); opacity: 0.6; mix-blend-mode: screen;
}
.about { position: relative; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--colour-butcher-red);
  margin: 0 0 0.9rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--colour-gold); display: inline-block;
}
.eyebrow-light { color: var(--colour-gold-soft); }
.eyebrow-gold { color: var(--colour-gold-soft); }

.section-title {
  font-size: var(--fs-h2);
  letter-spacing: -0.005em;
  color: var(--colour-text);
}
.section-title.light { color: var(--colour-cream); }
.section-title em { font-style: normal; color: var(--colour-butcher-red); }

.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-head .eyebrow { display: inline-flex; }
.section-intro { color: var(--colour-text-muted); font-size: var(--fs-lede); margin-top: 0.75rem; }
.section-charcoal .section-intro { color: var(--colour-text-on-dark-muted); }

.rule {
  width: 64px; height: 3px; margin: 1.4rem 0 1.6rem;
  background: linear-gradient(90deg, var(--colour-gold), transparent);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.98rem;
  padding: 0.85rem 1.5rem; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn .ico { width: 18px; height: 18px; }
.btn-gold {
  background: var(--colour-gold); color: var(--colour-charcoal);
  box-shadow: 0 6px 18px rgba(200, 155, 60, 0.28);
}
.btn-gold:hover { background: var(--colour-gold-soft); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(200, 155, 60, 0.38); }
.btn-call {
  background: var(--colour-butcher-red); color: var(--colour-cream);
  box-shadow: 0 6px 16px rgba(124, 33, 40, 0.28);
}
.btn-call:hover { background: var(--colour-butcher-red-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(124, 33, 40, 0.4); }
.btn-outline-light {
  background: rgba(246, 241, 231, 0.06); color: var(--colour-cream);
  border-color: rgba(246, 241, 231, 0.45); backdrop-filter: blur(2px);
}
.btn-outline-light:hover { background: var(--colour-cream); color: var(--colour-charcoal); transform: translateY(-2px); border-color: var(--colour-cream); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Icons ---------- */
.ico, .why-ico svg, .detail-ico svg, .social svg, .hours-chev {
  fill: none; stroke: currentColor; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.brand-mark { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.35rem;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--colour-cream);
  transition: color 0.35s var(--ease);
}
.brand-sub {
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--colour-gold-soft); margin-top: 3px; font-weight: 600;
}
.primary-nav { display: flex; gap: 1.9rem; }
.primary-nav a {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600; font-size: 1rem; color: var(--colour-cream);
  position: relative; padding: 0.4rem 0; transition: color 0.25s var(--ease);
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--colour-gold); transition: width 0.28s var(--ease);
}
.primary-nav a:hover { color: var(--colour-gold-soft); }
.primary-nav a:hover::after { width: 100%; }

/* Scrolled state */
.site-header.scrolled {
  background: var(--colour-charcoal);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  border-bottom-color: var(--colour-line-dark);
}
.site-header.scrolled { --header-h: 66px; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: transparent; border: 0; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; height: 2px; width: 100%; background: var(--colour-cream); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 340px);
  background: var(--colour-charcoal-2); z-index: 70;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  padding: calc(var(--header-h) + 1.5rem) 1.8rem 2rem; display: flex;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.4);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav { display: flex; flex-direction: column; gap: 0.4rem; width: 100%; }
.mobile-nav a {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 600; font-size: 1.4rem; color: var(--colour-text-on-dark);
  padding: 0.7rem 0; border-bottom: 1px solid var(--colour-line-dark);
}
.mobile-nav a:hover { color: var(--colour-gold-soft); }
.mobile-nav .btn { margin-top: 1.4rem; font-size: 1.05rem; border-bottom: 0; }
.menu-scrim {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); z-index: 65;
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.menu-scrim.show { opacity: 1; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; color: var(--colour-cream);
  padding-bottom: clamp(4rem, 9vh, 8rem);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  transform: scale(1.04);
  animation: kenburns 32s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.13) translate(-1.5%, -1.5%); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 17, 14, 0.55) 0%, rgba(20, 17, 14, 0.15) 30%, rgba(20, 17, 14, 0.75) 100%),
    linear-gradient(90deg, rgba(20, 17, 14, 0.72) 0%, rgba(20, 17, 14, 0.1) 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-title {
  font-size: var(--fs-hero); font-weight: 800; letter-spacing: -0.01em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero-title em { font-style: normal; color: var(--colour-gold-soft); }
.hero-lede {
  font-size: var(--fs-lede); max-width: 560px; margin: 1.4rem 0 2rem;
  color: rgba(246, 241, 231, 0.92);
}
.shop-status {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.78rem; font-weight: 600; color: rgba(246, 241, 231, 0.65);
  margin: 0 0 1.6rem; padding: 0.35rem 0.85rem 0.35rem 0.6rem;
  border: 1px solid rgba(246, 241, 231, 0.18); border-radius: 999px;
  background: rgba(20, 17, 14, 0.25); backdrop-filter: blur(3px);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: rgba(246, 241, 231, 0.4);
}
.shop-status[data-state="open"] .status-dot { background: #8CA06B; animation: statusPulse 2.6s ease-in-out infinite; }
.shop-status[data-state="opening"] .status-dot,
.shop-status[data-state="closing"] .status-dot { background: var(--colour-gold-soft); animation: statusPulse 1.6s ease-in-out infinite; }
.shop-status[data-state="closed"] .status-dot { background: rgba(169, 100, 91, 0.75); }
.shop-status[data-state="open"] { color: rgba(246, 241, 231, 0.85); }
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.18); }
  50% { box-shadow: 0 0 0 4px rgba(255, 255, 255, 0); }
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(246, 241, 231, 0.5);
  border-radius: 20px; z-index: 2; display: flex; justify-content: center; padding-top: 8px;
}
.scroll-cue span { width: 3px; height: 8px; background: var(--colour-gold-soft); border-radius: 2px; animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-media { position: relative; max-width: 480px; }
.about-media img {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: center 30%; border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(28, 26, 23, 0.25);
}
.about-media-tag {
  position: absolute; right: -14px; bottom: 28px; background: var(--colour-butcher-red);
  color: var(--colour-cream); padding: 1rem 1.3rem; border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(124, 33, 40, 0.35); max-width: 190px;
  border-left: 4px solid var(--colour-gold);
}
.tag-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; line-height: 1; display: block; }
.tag-label { font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.92; }
.about-copy p { color: var(--colour-text-muted); max-width: 52ch; }
.about-more { overflow: hidden; }
.link-more {
  display: none; background: none; border: 0; cursor: pointer; padding: 0;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600; color: var(--colour-butcher-red); font-size: 0.95rem;
  border-bottom: 2px solid var(--colour-gold); padding-bottom: 2px;
}

/* =========================================================
   PRODUCTS
   ========================================================= */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr; gap: 1.25rem;
}
.product-card {
  position: relative; background: var(--colour-charcoal-2); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--colour-line-dark);
  display: flex; flex-direction: column; min-height: 320px;
}
.card-media { position: relative; overflow: hidden; flex: 1; }
.card-media img {
  width: 100%; height: 100%; object-fit: cover; min-height: 200px;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .card-media img { transform: scale(1.07); }
.card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 17, 14, 0.35) 100%);
}
.card-body { padding: 1.3rem 1.4rem 1.5rem; }
.card-kicker {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.72rem; font-weight: 600; color: var(--colour-gold-soft);
}
.card-body h3 { font-size: var(--fs-h3); color: var(--colour-cream); margin: 0.35rem 0 0.5rem; }
.card-body p { color: var(--colour-text-on-dark-muted); font-size: 0.95rem; margin: 0; }

/* Feature sizing — breaks the uniform grid */
.card-feature { grid-row: span 2; }
.card-feature .card-body h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.card-wide { grid-column: span 2; }
.card-wide { flex-direction: row; }
.card-wide .card-media { flex: 1.1; }
.card-wide .card-body { flex: 1; align-self: center; }

/* =========================================================
   WHY US
   ========================================================= */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.why-item { text-align: left; }
.why-ico {
  display: inline-flex; width: 62px; height: 62px; align-items: center; justify-content: center;
  border: 2px solid var(--colour-line); border-radius: 50%; color: var(--colour-butcher-red);
  margin-bottom: 1.1rem; background: var(--colour-cream-alt);
}
.why-ico svg { width: 34px; height: 34px; }
.why-item h3 { font-size: var(--fs-h3); margin-bottom: 0.4rem; }
.why-item p { color: var(--colour-text-muted); font-size: 0.95rem; margin: 0; }

/* =========================================================
   BBQ CALLOUT
   ========================================================= */
.callout {
  position: relative; overflow: hidden; color: var(--colour-cream);
  padding: clamp(5rem, 12vw, 9rem) 0; display: flex; align-items: center;
}
.callout-media { position: absolute; inset: 0; z-index: 0; }
.callout-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.callout-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(16, 13, 11, 0.9) 0%, rgba(16, 13, 11, 0.6) 55%, rgba(16, 13, 11, 0.3) 100%);
}
.callout-content { position: relative; z-index: 2; max-width: 560px; }
.callout-title { font-size: clamp(2.3rem, 5vw, 4rem); font-weight: 800; margin-bottom: 0.4rem; }
.callout-content p { color: rgba(246, 241, 231, 0.9); font-size: var(--fs-lede); margin: 1rem 0 1.8rem; }

/* =========================================================
   REVIEWS
   ========================================================= */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--colour-line); border-radius: var(--radius);
  background: var(--colour-cream); overflow: hidden;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.stat { padding: 1.8rem 1.2rem; text-align: center; border-right: 1px solid var(--colour-line); }
.stat:last-child { border-right: 0; }
.stat-num {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem); color: var(--colour-butcher-red); line-height: 1;
}
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--colour-text-muted); margin-top: 0.5rem; display: block; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.tcard {
  position: relative; background: var(--colour-cream); border: 1px solid var(--colour-line);
  border-radius: var(--radius); padding: 2.4rem 1.6rem 1.6rem; margin: 0;
  border-top: 3px solid var(--colour-gold);
}
.quote-mark {
  position: absolute; top: -0.2rem; left: 1.1rem; font-family: var(--font-head);
  font-size: 4.5rem; color: var(--colour-butcher-red); opacity: 0.22; line-height: 1;
}
.tcard blockquote { margin: 0 0 1rem; font-size: 1.05rem; color: var(--colour-text); position: relative; }
.tcard figcaption {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.82rem; font-weight: 600; color: var(--colour-text-muted);
}

/* =========================================================
   FIND US
   ========================================================= */
.find-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.find-info { align-self: center; }
.detail-list { display: flex; flex-direction: column; gap: 1.1rem; margin: 0.5rem 0 1.8rem; }
.detail-list li { display: flex; gap: 0.9rem; align-items: flex-start; color: var(--colour-text-on-dark-muted); }
.detail-list strong { color: var(--colour-cream); font-weight: 500; }
.detail-ico {
  flex: none; width: 40px; height: 40px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; color: var(--colour-gold-soft);
  border: 1px solid var(--colour-line-dark); background: var(--colour-charcoal-2);
}
.detail-ico svg { width: 20px; height: 20px; }
.detail-link { color: var(--colour-gold-soft); font-size: 1.3rem; font-family: var(--font-head); letter-spacing: 0.02em; }
.detail-link:hover { color: var(--colour-cream); }

.hours { border: 1px solid var(--colour-line-dark); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.8rem; background: var(--colour-charcoal-2); }
.hours-head {
  display: flex; align-items: center; gap: 0.8rem; width: 100%; padding: 1rem 1.2rem;
  background: transparent; border: 0; cursor: pointer; color: var(--colour-cream); text-align: left;
}
.hours-head .detail-ico { width: 34px; height: 34px; }
.hours-head .detail-ico svg { width: 17px; height: 17px; }
.hours-title { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; font-size: 1.05rem; }
.hours-today { margin-left: auto; font-size: 0.78rem; color: var(--colour-gold-soft); letter-spacing: 0.04em; }
.hours-chev { width: 20px; height: 20px; color: var(--colour-text-on-dark-muted); transition: transform 0.3s var(--ease); flex: none; }
.hours.collapsed .hours-chev { transform: rotate(-90deg); }
.hours-table { width: 100%; border-collapse: collapse; overflow: hidden; transition: max-height 0.4s var(--ease); }
.hours.collapsed .hours-table { max-height: 0 !important; }
.hours-table tr { border-top: 1px solid var(--colour-line-dark); }
.hours-table th, .hours-table td { padding: 0.6rem 1.2rem; font-size: 0.92rem; }
.hours-table th { text-align: left; font-weight: 500; color: var(--colour-text-on-dark-muted); }
.hours-table td { text-align: right; color: var(--colour-cream); }
.hours-table tr.is-today { background: rgba(200, 155, 60, 0.12); }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--colour-gold-soft); }
.btn-find-call { }

.find-map { border-radius: var(--radius); overflow: hidden; min-height: 380px; border: 1px solid var(--colour-line-dark); box-shadow: 0 24px 50px rgba(0,0,0,0.3); }
.find-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #141210; color: var(--colour-text-on-dark-muted); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand p { max-width: 30ch; font-size: 0.92rem; }
.footer-mark { width: 84px; height: 84px; margin-bottom: 0.6rem; }
.footer-col h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em; color: var(--colour-cream); font-size: 1rem; margin-bottom: 0.8rem; }
.footer-col h4.mt { margin-top: 1.2rem; }
.footer-col p, .footer-col a { font-size: 0.92rem; line-height: 1.8; }
.footer-col a { display: block; }
.footer-col a:hover, .footer-brand a:hover { color: var(--colour-gold-soft); }
.socials { display: flex; gap: 0.7rem; margin-top: 1rem; }
.social {
  width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--colour-line-dark); color: var(--colour-text-on-dark); transition: all 0.25s var(--ease);
}
.social svg { width: 20px; height: 20px; }
.social:hover { background: var(--colour-butcher-red); border-color: var(--colour-butcher-red); color: var(--colour-cream); transform: translateY(-2px); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--colour-line-dark); margin-top: 2.5rem; padding-top: 1.5rem;
  font-size: 0.82rem;
}
.credit { color: var(--colour-gold-soft); letter-spacing: 0.02em; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   FOCUS / A11Y
   ========================================================= */
:focus-visible { outline: 3px solid var(--colour-gold); outline-offset: 3px; border-radius: 2px; }
.btn:focus-visible { outline-offset: 4px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .primary-nav { gap: 1.3rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .header-call { display: none; }
  .primary-nav { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-media { max-width: 440px; }
  .about-media-tag { right: 12px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .card-feature { grid-row: span 1; }
  .card-wide { grid-column: span 2; }

  .find-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --header-h: 64px; }
  .brand-sub { display: none; }
  .brand-name { font-size: 1.15rem; }

  .hero { align-items: flex-end; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }

  .product-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: span 1; flex-direction: column; }
  .card-wide .card-body { align-self: stretch; }

  .why-grid { grid-template-columns: 1fr; }
  .why-item { text-align: center; }
  .why-ico { margin-left: auto; margin-right: auto; }

  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--colour-line); }

  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; }

  /* Collapse long About copy behind Read more on small screens */
  .about-more { max-height: 0; opacity: 0; transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease); }
  .about-copy.expanded .about-more { max-height: 300px; opacity: 1; margin-bottom: 1rem; }
  .link-more { display: inline-block; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; transform: scale(1.02); }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue span { animation: none; }
  .status-dot { animation: none !important; }
}
