/* ============================================================
   The Butcher Shoppe — Premium Multi-Page Stylesheet v4
   Restrained cinematic, editorial, conversion-focused.
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --ink: #0c0c0c;
  --charcoal: #161616;
  --graphite: #262626;
  --parchment: #f4efe6;
  --bone: #faf8f5;
  --cream: #e6ddd0;
  --oxblood: #7a1616;
  --ember: #c93a3a;
  --ember-dark: #a82c2c;
  --ember-light: #e05a5a;
  --amber: #d4a056;
  --amber-light: #e6b86e;
  --white: #ffffff;
  --black: #000000;

  --text: var(--ink);
  --text-inverse: var(--bone);
  --text-muted: rgba(12, 12, 12, 0.6);
  --text-muted-inverse: rgba(250, 248, 245, 0.72);

  --font-display: 'Oswald', Impact, 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;
  --space-4xl: 11rem;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 35px 90px rgba(0, 0, 0, 0.26);

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

  --duration-fast: 0.25s;
  --duration-base: 0.5s;
  --duration-slow: 0.9s;
  --duration-slower: 1.2s;

  --header-height: 96px;
  --header-height-mobile: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bone);
  overflow-x: hidden;
}

img, picture, video, iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------- Accessibility ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 10000;
  padding: var(--space-sm) var(--space-md);
  background: var(--ember);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: top 0.2s;
}

.skip-link:focus {
  top: var(--space-md);
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.display-headline {
  font-size: clamp(3.2rem, 9.5vw, 8rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.display-headline--small {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
}

.section-title {
  font-size: clamp(2.1rem, 5vw, 3.75rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-title--small {
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: var(--space-sm);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--amber);
}

.body-large {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-left: 4px solid var(--ember);
  padding-left: var(--space-md);
  margin: var(--space-xl) 0;
}

.section--dark .pull-quote {
  color: var(--bone);
  border-left-color: var(--amber);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: 860px;
}

.section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.section--tight {
  padding: var(--space-2xl) 0;
}

.section--bone { background: var(--bone); }
.section--parchment { background: var(--parchment); }
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--ink);
  color: var(--text-inverse);
}

.section--dark .body-large,
.section--dark .preview__list li,
.section--dark .feature-card p,
.section--dark .visit-card__content {
  color: var(--text-muted-inverse);
}

.section-number {
  position: absolute;
  top: var(--space-2xl);
  left: var(--space-lg);
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 700;
  color: rgba(12, 12, 12, 0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.section--dark .section-number {
  color: rgba(250, 248, 245, 0.035);
}

.section > .container {
  position: relative;
  z-index: 1;
}

.chapter-rule {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  color: var(--ember);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chapter-rule::before,
.chapter-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.25;
}

.section--dark .chapter-rule {
  color: var(--amber);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.85rem;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: transform var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
  will-change: transform;
}

.btn svg {
  flex-shrink: 0;
}

.btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--ember);
  color: var(--white);
  border-color: var(--ember);
}

.btn--primary:hover {
  background: var(--ember-dark);
  border-color: var(--ember-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 58, 58, 0.28);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--small {
  padding: 0.7rem 1.25rem;
  font-size: 0.78rem;
}

.btn--large {
  padding: 1.15rem 2.5rem;
  font-size: 1.05rem;
}

.btn--block {
  width: 100%;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.55) 0%, rgba(12, 12, 12, 0) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: height var(--duration-base) var(--ease-out),
              background var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out),
              backdrop-filter var(--duration-base) var(--ease-out);
}

.site-header--scrolled {
  height: 78px;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(18px) saturate(140%);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-xl);
  max-width: 1520px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  width: auto;
  height: clamp(68px, 5.5vw, 76px);
  transition: height var(--duration-base) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}

.site-header--scrolled .nav__logo img {
  height: clamp(54px, 4.5vw, 64px);
}

.nav__logo:hover img {
  transform: scale(1.03);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__links a {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.35rem 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--ember);
  transition: width var(--duration-fast) var(--ease-out);
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  width: 100%;
}

.nav__links a[aria-current="page"] {
  color: var(--amber);
}

/* ---------- "About" dropdown (2026-09-16) ----------
   Secondary pages live under one tab so the row stays short. Opens on hover,
   keyboard focus, or click (aria-expanded toggled in main.js). */
.nav__item--menu {
  position: relative;
}

.nav__menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.35rem 0;
  white-space: nowrap;
  cursor: pointer;
}

.nav__menu-toggle svg {
  transition: transform var(--duration-fast) var(--ease-out);
}

.nav__menu-toggle[aria-expanded="true"] svg,
.nav__item--menu:hover .nav__menu-toggle svg {
  transform: rotate(180deg);
}

.nav__menu-toggle.is-active {
  color: var(--amber);
}

.nav__submenu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  min-width: 240px;
  padding: 0.6rem 0;
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--ember);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out),
              visibility var(--duration-fast);
}

/* invisible bridge so the pointer can travel from the tab to the panel */
.nav__submenu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -1rem;
  height: 1rem;
}

.nav__item--menu:hover .nav__submenu,
.nav__item--menu:focus-within .nav__submenu,
.nav__menu-toggle[aria-expanded="true"] + .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav__links .nav__submenu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav__links .nav__submenu a::after {
  display: none;
}

.nav__links .nav__submenu a:hover,
.nav__links .nav__submenu a[aria-current="page"] {
  color: var(--amber);
  background: rgba(255, 255, 255, 0.05);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  transition: background var(--duration-fast),
              border-color var(--duration-fast),
              color var(--duration-fast);
}

.nav__phone:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.nav__phone svg {
  width: 14px;
  height: 14px;
}

.nav__cta {
  padding: 0.9rem 1.6rem;
  font-size: 0.85rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 24px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--duration-fast) var(--ease-out),
              opacity var(--duration-fast);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity var(--duration-base) var(--ease-out),
              visibility var(--duration-base),
              transform var(--duration-base) var(--ease-out);
}

.mobile-menu:not([hidden]) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* The header's hamburger (z-index 1000) already turns into an × above the
   menu, and it sits right on top of this button — so keep this one for
   screen readers only rather than drawing two ×'s in the same corner. */
.mobile-menu__close {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7vw, 3rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--duration-fast);
}

.mobile-menu__links a:hover,
.mobile-menu__links a[aria-current="page"] {
  color: var(--amber);
}

/* Secondary group (the desktop "About" dropdown, flattened) */
.mobile-menu__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin: calc(var(--space-xl) * -1 + var(--space-sm)) 0 var(--space-sm);
}

.mobile-menu__links--secondary {
  gap: var(--space-sm);
}

.mobile-menu__links--secondary a {
  font-size: clamp(1.1rem, 4.5vw, 1.6rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
  max-width: 320px;
}

.mobile-menu__footer {
  position: absolute;
  bottom: var(--space-lg);
  color: var(--text-muted-inverse);
  font-size: 0.9rem;
  text-align: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg {
  transform: scale(1.08);
  transition: transform 0.1s linear;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 12, 12, 0.82) 0%,
    rgba(12, 12, 12, 0.55) 45%,
    rgba(12, 12, 12, 0.35) 100%
  );
  z-index: 1;
}

.hero__light {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 30%,
    rgba(212, 160, 86, 0.12) 0%,
    transparent 55%
  );
  z-index: 2;
  pointer-events: none;
}

.hero__texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.6;
  z-index: 3;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1320px;
  padding: calc(var(--header-height) + var(--space-2xl)) var(--space-xl) var(--space-3xl);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero__main {
  max-width: 760px;
}

.hero__eyebrow {
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.hero__headline {
  margin-bottom: var(--space-lg);
}

.hero__sub {
  max-width: 560px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.hero__accent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  padding-left: var(--space-lg);
  border-left: 3px solid var(--ember);
}

.hero__stamp {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero__panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  opacity: 0;
  transition: transform var(--duration-slow) var(--ease-out),
              opacity var(--duration-slow) var(--ease-out);
}

.hero.is-visible .hero__panel {
  transform: translateY(0);
  opacity: 1;
}

.hero__panel img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 12, 12, 0.65) 100%);
}

.hero__panel-caption {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

/* ---------- Page Header ---------- */
.page-header {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  padding-bottom: var(--space-3xl);
}

/* Pages whose first section is a photo gallery (client, 2026-09-18: "photos
   should be the first thing people see") keep the header but shorter, so the
   gallery starts within the first screen. */
.page-header--short {
  min-height: 46svh;
}

.page-header__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 0.55) 0%,
    rgba(12, 12, 12, 0.65) 55%,
    rgba(12, 12, 12, 0.88) 100%
  );
  z-index: 1;
}

.page-header__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  padding: 0 var(--space-xl);
}

.breadcrumbs {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-md);
}

.breadcrumbs a:hover {
  color: var(--amber);
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 var(--space-xs);
}

.page-header .display-headline {
  max-width: 960px;
  margin-bottom: var(--space-md);
}

.page-header .hero__sub {
  max-width: 640px;
  margin-bottom: 0;
}

/* ---------- Trust Bar ---------- */
.trust {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.trust__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--amber);
  flex-shrink: 0;
}

.trust__item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.trust__item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

/* ---------- Preview Sections ---------- */
.preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.preview__grid--reverse .preview__body {
  order: 1;
}

.preview__grid--reverse .preview__visual {
  order: 2;
}

.preview__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.preview__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 22, 22, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.preview__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform var(--duration-slow) var(--ease-out);
}

.preview__visual:hover img {
  transform: scale(1.04);
}

.preview__body {
  position: relative;
  z-index: 1;
}

.preview__list {
  margin: var(--space-md) 0 var(--space-lg);
}

.preview__list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
  font-size: 1.02rem;
}

.preview__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
}

.preview__cta {
  margin-top: var(--space-lg);
}

/* ---------- Sticky Story ---------- */
.sticky-story {
  padding: 0;
}

.sticky-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.sticky-story__media {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.sticky-story__media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: -10%;
  left: 0;
  will-change: transform;
  transition: transform var(--duration-slower) var(--ease-out);
}

.sticky-story__panels {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-3xl) var(--space-2xl);
  min-height: 100vh;
}

.sticky-story__panel {
  max-width: 540px;
  opacity: 0.35;
  transform: translateY(20px);
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.sticky-story__panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Category Strip ---------- */
.category-strip {
  position: sticky;
  top: 78px;
  z-index: 100;
  background: var(--bone);
  border-bottom: 1px solid rgba(12, 12, 12, 0.08);
  padding: var(--space-md) 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.category-strip ul {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-width: max-content;
}

.category-strip a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: color var(--duration-fast), background var(--duration-fast);
  white-space: nowrap;
}

.category-strip a:hover {
  color: var(--ember);
  background: rgba(201, 58, 58, 0.06);
}

/* ---------- Product Hero ---------- */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.product-hero--reverse .product-hero__body {
  order: 1;
}

.product-hero--reverse .product-hero__media {
  order: 2;
}

.product-hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-hero__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-hero__body {
  max-width: 560px;
}

/* ---------- Product Row ---------- */
.product-row__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.product-row__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.product-row__media {
  overflow: hidden;
}

.product-row__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-row__body {
  padding: var(--space-lg);
}

/* ---------- Product Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.product-grid--large {
  grid-template-columns: repeat(2, 1fr);
}

.product-grid--asymmetric {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-card__media img {
  transform: scale(1.08);
}

.product-card__body {
  padding: var(--space-md);
}

.product-card__body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.product-card__body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-card--large .product-card__media {
  aspect-ratio: 16 / 10;
}

.product-card--featured {
  border-top: 4px solid var(--ember);
}

.product-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.5rem;
}

/* ---------- Editorial Feature ---------- */
.editorial-feature {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.editorial-feature__media {
  position: relative;
  min-height: 480px;
}

.editorial-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.editorial-feature__body {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-feature--reverse {
  grid-template-columns: 0.75fr 1.25fr;
}

.editorial-feature--reverse .editorial-feature__media {
  order: 2;
}

/* ---------- Team Grid ---------- */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}

.team-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-card__photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--parchment) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.team-card__photo svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

.team-card__body {
  padding: var(--space-md);
}

.team-card__body .role {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.3rem;
}

.team-card__body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.team-card__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.team-card--placeholder {
  opacity: 0.9;
}

.team-card--placeholder .team-card__body p {
  font-style: italic;
}

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--ember);
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---------- Quote Grid ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.quote-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.quote-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
}

.quote-card footer {
  font-size: 0.85rem;
  color: var(--amber);
  font-weight: 600;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(transparent, rgba(12, 12, 12, 0.82));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- Visit Page ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.visit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.visit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.visit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(201, 58, 58, 0.1);
  color: var(--ember);
  margin-bottom: var(--space-md);
}

.visit-card__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.visit-card__content {
  flex: 1;
  margin-bottom: var(--space-lg);
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.visit-card__content a {
  color: var(--ink);
  transition: color var(--duration-fast);
}

.visit-card__content a:hover {
  color: var(--ember);
}

.visit-card__phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  min-height: 480px;
  padding: var(--space-2xl);
  text-align: center;
  background: linear-gradient(135deg, var(--parchment) 0%, var(--cream) 100%);
  color: var(--ink);
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 12, 12, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 12, 12, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.map-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(12, 12, 12, 0.08) 100%);
  pointer-events: none;
}

.map-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.map-placeholder__pin {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(201, 58, 58, 0.3);
}

.map-placeholder__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: 1.1rem;
}

.map-placeholder__content strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.map-placeholder__cta {
  display: inline-block;
  margin-top: var(--space-sm);
  padding: 0.75rem 1.5rem;
  background: var(--ember);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: background var(--duration-fast);
}

.map-placeholder:hover .map-placeholder__cta {
  background: var(--ember-dark);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  padding: var(--space-3xl) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  max-width: 960px;
  margin: 0 auto var(--space-md);
}

.cta-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-xl);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--text-inverse);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand img {
  width: auto;
  height: 52px;
  margin-bottom: var(--space-md);
}

.footer__brand p {
  color: var(--text-muted-inverse);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer__col h3 {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  color: var(--amber);
}

.footer__col li {
  margin-bottom: var(--space-sm);
}

.footer__col a {
  color: var(--text-muted-inverse);
  font-size: 0.95rem;
  transition: color var(--duration-fast);
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-muted-inverse);
}

.footer__seo {
  max-width: 520px;
  text-align: right;
}

/* ---------- Mobile Actions ---------- */
.mobile-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--charcoal);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.28);
}

.mobile-actions__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: background var(--duration-fast);
}

.mobile-actions__btn--call {
  background: var(--ember);
}

.mobile-actions__btn--call:hover {
  background: var(--ember-dark);
}

.mobile-actions__btn--directions {
  background: var(--graphite);
}

.mobile-actions__btn--directions:hover {
  background: var(--charcoal);
}

/* ---------- Scroll Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="fade-up"] {
  transform: translateY(32px);
}

[data-reveal="scale-in"] {
  transform: scale(0.94);
}

[data-reveal="scale-in"].is-visible {
  transform: scale(1);
}

[data-reveal="image-mask"] {
  clip-path: inset(0 100% 0 0);
  transform: none;
  transition: clip-path var(--duration-slower) var(--ease-out-expo);
}

[data-reveal="image-mask"].is-visible {
  clip-path: inset(0 0 0 0);
}

[data-reveal="image-mask"].is-visible img {
  transform: scale(1);
}

[data-reveal="image-mask"] img {
  transform: scale(1.08);
  transition: transform var(--duration-slower) var(--ease-out);
}

[data-reveal="clip-up"] {
  clip-path: inset(100% 0 0 0);
  transform: none;
  transition: clip-path var(--duration-slower) var(--ease-out-expo);
}

[data-reveal="clip-up"].is-visible {
  clip-path: inset(0 0 0 0);
}

[data-reveal="slide-rule"] {
  position: relative;
  transform: none;
  opacity: 1;
}

[data-reveal="slide-rule"]::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--ember);
  transition: width var(--duration-slow) var(--ease-out);
}

[data-reveal="slide-rule"].is-visible::after {
  width: 80px;
}

[data-reveal="split-text"] {
  opacity: 1;
  transform: none;
}

[data-reveal="split-text"] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

[data-reveal="split-text"] .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

[data-reveal="split-text"].is-visible .word-inner {
  transform: translateY(0);
}

[data-reveal="stagger"] > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

[data-reveal="stagger"].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="stagger"].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal="stagger"].is-visible > *:nth-child(2) { transition-delay: 90ms; }
[data-reveal="stagger"].is-visible > *:nth-child(3) { transition-delay: 180ms; }
[data-reveal="stagger"].is-visible > *:nth-child(4) { transition-delay: 270ms; }
[data-reveal="stagger"].is-visible > *:nth-child(5) { transition-delay: 360ms; }
[data-reveal="stagger"].is-visible > *:nth-child(6) { transition-delay: 450ms; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

  .hero__main {
    max-width: 720px;
    margin: 0 auto;
  }

  .hero__sub,
  .hero__actions,
  .hero__details {
    justify-content: center;
  }

  .hero__accent {
    align-items: center;
    padding-left: 0;
    border-left: none;
    border-top: 3px solid var(--ember);
    padding-top: var(--space-md);
  }

  .hero__panel {
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .preview__grid,
  .sticky-story__grid,
  .editorial-feature,
  .editorial-feature--reverse,
  .product-grid--asymmetric,
  .product-hero,
  .product-hero--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .preview__grid--reverse .preview__body,
  .preview__grid--reverse .preview__visual,
  .editorial-feature--reverse .editorial-feature__media,
  .editorial-feature--reverse .editorial-feature__body,
  .product-hero--reverse .product-hero__body,
  .product-hero--reverse .product-hero__media {
    order: unset;
  }

  .product-row__grid {
    grid-template-columns: 1fr;
  }

  .category-strip {
    top: var(--header-height-mobile);
  }

  .product-hero__body {
    max-width: 100%;
  }

  .sticky-story__media {
    position: relative;
    height: 50vh;
    min-height: 360px;
  }

  .sticky-story__media img {
    height: 100%;
    top: 0;
  }

  .editorial-feature__media {
    min-height: 320px;
  }

  .product-grid,
  .product-grid--large,
  .feature-grid,
  .quote-grid,
  .visit-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__seo {
    text-align: left;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3rem;
    --space-xl: 2rem;
    --header-height: var(--header-height-mobile);
  }

  .nav {
    padding: 0 var(--space-md);
  }

  .nav__phone,
  .nav__cta {
    display: none;
  }

  .nav__logo img {
    height: clamp(52px, 12vw, 58px);
  }

  .site-header--scrolled .nav__logo img {
    height: 52px;
  }

  .hero__content {
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-2xl);
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    flex: 1;
  }

  .display-headline {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .product-grid,
  .product-grid--large,
  .feature-grid,
  .quote-grid,
  .visit-grid,
  .gallery-grid,
  .gallery-grid--2x2,
  .product-row__grid,
  .trust__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .trust__item {
    gap: var(--space-md);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__seo {
    text-align: center;
    max-width: 100%;
  }

  .mobile-actions {
    display: grid;
  }

  body {
    padding-bottom: 56px;
  }

  .page-header {
    min-height: 60svh;
    padding-bottom: var(--space-2xl);
  }

  .page-header .display-headline {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .cta-banner__title {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .sticky-story__panel {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .btn--large {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero__chip {
    font-size: 0.7rem;
    padding: 0.45rem 0.75rem;
  }

  .visit-card {
    padding: var(--space-lg);
  }
}

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

  [data-reveal],
  [data-reveal="stagger"] > *,
  [data-reveal="split-text"] .word-inner,
  [data-reveal="image-mask"],
  [data-reveal="clip-up"],
  [data-reveal="slide-rule"]::after,
  .hero__panel {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .hero__bg {
    transform: scale(1);
  }

  .sticky-story__panel {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Mobile parallax disable ---------- */
@media (max-width: 768px) {
  [data-parallax] {
    transform: none !important;
  }
}

/* ---------- Parallax Layers ---------- */
.parallax-layer {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  will-change: transform;
}

.parallax-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ---------- Nav fit ---------- */
/* Since 2026-09-16 the row is 5 tabs (Products · Packages · BBQ · About ▾ · Visit),
   so the hamburger threshold dropped from 1400px to 1100px. This is the ONLY
   place the hamburger breakpoint lives — the shared 1200px block above no
   longer touches the nav. Labels never break mid-phrase. */
.nav__links a,
.nav__phone {
  white-space: nowrap;
}

.nav__links {
  flex-wrap: nowrap;
}

@media (max-width: 1100px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__actions {
    margin-left: auto;
    margin-right: var(--space-md);
  }
}

/* ---------- Side-panel photos: no darkening (client, 2026-09-17) ---------- */
/* These photos sit BESIDE the copy with nothing written over them, yet each
   page's CSS dimmed them to 55–75% brightness and laid a dark gradient on top
   ("a darkened transparency over Mandi"). Show them at full brightness.
   Deliberately NOT touched: page headers, full-bleed bands, cards and map
   panels that carry text on the photo — those still need the shade.
   Specificity (main + class + img) outranks the per-page rules regardless of
   stylesheet order, so this can live here in the shared sheet. */
main .butcher-help__visual img,
main .visit-cta__visual img,
main .inside-custom__visual img,
main .why-butcher__visual img,
main .visit-call-ahead__visual img,
main .local-trust__visual img,
main .ask__visual img {
  filter: saturate(0.96) contrast(1.03);
  /* The frames have a min-height but the img's height:100% can't resolve
     against it, so a landscape photo stopped short of the bottom edge — the
     old gradient was hiding that gap. Let the photo fill the frame. */
  min-height: inherit;
}

main .butcher-help__visual::after,
main .visit-cta__visual::after,
main .inside-custom__visual::after,
main .why-butcher__visual::after,
main .visit-call-ahead__visual::after {
  background: none;
}

/* These two carry a small caption in the bottom corner — keep just enough
   shade at the foot of the frame for it to read. */
main .local-trust__visual::after,
main .ask__visual::after {
  background: linear-gradient(180deg, transparent 65%, rgba(12, 12, 12, 0.55) 100%);
}

/* ---------- Footer legal row ---------- */
.footer__legal {
  margin-bottom: 0.4em;
  font-size: 0.85rem;
}

.footer__legal a,
.footer__legal .consent-reopen {
  color: rgba(250, 248, 245, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__legal a:hover,
.footer__legal .consent-reopen:hover,
.footer__legal a:focus-visible,
.footer__legal .consent-reopen:focus-visible {
  color: var(--amber);
}
