/* ============================================================
   The Knife Guys — Lubbock, TX
   Brand system + global styles
   ============================================================ */

:root {
  /* Logo-derived palette --------------------------------------------------- */
  --red: #D72924;          /* logo "KNIFE" red, slightly warm */
  --red-dark: #B01F1B;
  --blue: #1A47C0;         /* logo "GUYS" cobalt */
  --steel: #C8CCD1;
  --steel-2: #8A8F95;
  --steel-deep: #2A3848;   /* darker chrome shadow */

  /* Steel-navy: pulled from the letter extrusion / blade shadow.
     Replaces the old neutral charcoal so dark surfaces echo the logo's dark. */
  --charcoal: #13202F;
  --charcoal-2: #1B2A3C;
  --charcoal-3: #243549;
  --ink: #0E1822;          /* deepest navy, hero scrim + footer base */

  /* Walnut: pulled from the handle. Warm wood for "family-owned, hand-craft" sections. */
  --walnut: #2A1D14;
  --walnut-2: #3A2918;
  --walnut-3: #4A341E;

  /* Brass: pulled from the rivet screws on the handle. */
  --brass: #B58A3C;
  --brass-soft: #C9A45A;
  --brass-glow: rgba(181, 138, 60, 0.35);

  --cream: #F5F1EA;
  --cream-2: #EAE5DB;
  --white: #FFFFFF;

  /* Surfaces & gradients --------------------------------------------------- */
  --steel-grad: linear-gradient(135deg, #2A3848 0%, #0E1822 60%);
  --walnut-grad: linear-gradient(160deg, #4A341E 0%, #2A1D14 100%);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.18);
  --shadow-red: 0 8px 24px rgba(215, 41, 36, 0.35);
  --shadow-brass: 0 6px 20px rgba(181, 138, 60, 0.18);

  --radius: 6px;
  --radius-lg: 10px;

  --container: 1200px;
  --container-wide: 1320px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- Type ---------- */
.font-display {
  font-family: 'Anton', 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-2);
}
.eyebrow.on-dark { color: var(--brass-soft); }
.accent-red { color: var(--red); }
.accent-blue { color: var(--blue); }
.accent-brass { color: var(--brass-soft); }

/* Brass hairline accent that sits under or beside eyebrow text on dark sections. */
.eyebrow.with-rule {
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow.with-rule::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--brass);
  flex: 0 0 auto;
}

h1, h2, h3, h4 { margin: 0; }
.t-hero { font-size: clamp(48px, 8vw, 112px); }
.t-h1    { font-size: clamp(40px, 6vw, 76px); }
.t-h2    { font-size: clamp(30px, 4.2vw, 56px); }
.t-h3    { font-size: clamp(22px, 2.4vw, 30px); }

p { margin: 0; }
.lede { font-size: 18px; line-height: 1.55; color: #444; }
.on-dark .lede, .lede.on-dark { color: #C8CCD1; }

/* ---------- Container ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) {
  .container, .container-wide { padding: 0 32px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.18s var(--ease-out), background 0.18s, color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-outline-dark {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { background: var(--white); color: var(--charcoal); transform: translateY(-2px); }

/* Brass-outlined secondary button — use on walnut sections so it reads as
   a hand-crafted hairline rather than a flat white border. */
.btn-outline-brass {
  border-color: var(--brass);
  color: var(--brass-soft);
  background: transparent;
}
.btn-outline-brass:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--walnut);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brass);
}

.btn-link-red {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}
.btn-link-red:hover { color: var(--red-dark); border-color: var(--red-dark); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(48px, 7vw, 88px) 0; }
.section-cream  { background: var(--cream); color: var(--ink); }
.section-cream-2{ background: var(--cream-2); color: var(--ink); }

/* Steel-navy sections — echo the logo's dark blade shadow.
   Subtle brushed-steel texture overlay so the surface catches light like the blade. */
.section-charcoal,
.section-charcoal-2 {
  position: relative;
  color: var(--white);
}
.section-charcoal { background: var(--charcoal); }
.section-charcoal-2 { background: var(--charcoal-2); }
.section-charcoal::before,
.section-charcoal-2::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.014) 0 1px,
      transparent 1px 3px
    ),
    radial-gradient(1200px 600px at 70% 0%, rgba(181, 138, 60, 0.06), transparent 60%);
  z-index: 0;
}
.section-charcoal > *,
.section-charcoal-2 > * { position: relative; z-index: 1; }

/* Walnut sections — for family-owned story / engraving / craft copy.
   Includes a faint wood-grain repeating gradient. */
.section-walnut {
  position: relative;
  background: var(--walnut);
  color: var(--white);
}
.section-walnut::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      92deg,
      rgba(74, 52, 30, 0.45) 0 2px,
      transparent 2px 6px,
      rgba(255, 255, 255, 0.012) 6px 7px,
      transparent 7px 14px
    ),
    radial-gradient(1100px 700px at 20% 10%, rgba(201, 164, 90, 0.10), transparent 60%),
    linear-gradient(160deg, rgba(74, 52, 30, 0.55) 0%, rgba(42, 29, 20, 0) 60%);
  z-index: 0;
  mix-blend-mode: normal;
}
.section-walnut > * { position: relative; z-index: 1; }

/* Brushed-steel divider strip */
.divider-steel {
  height: 4px;
  background:
    linear-gradient(90deg, transparent 0, rgba(200,204,209,0.7) 20%, rgba(200,204,209,1) 50%, rgba(200,204,209,0.7) 80%, transparent 100%);
  position: relative;
}
.divider-steel::after{
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.18) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

/* ---------- Utility bar ---------- */
.utility-bar {
  background: var(--ink);
  color: var(--steel);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(181, 138, 60, 0.22); /* brass hairline */
}
.utility-bar .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  padding-top: 6px;
  padding-bottom: 6px;
  gap: 12px;
  flex-wrap: wrap;
}
.utility-bar a { color: var(--white); font-weight: 600; }
.utility-bar a:hover { color: var(--red); }
.utility-bar .star { color: var(--red); }

/* ---------- Sticky nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(181, 138, 60, 0.28); /* brass hairline echoes the rivets */
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(14, 24, 34, 0.10); }
.nav .container-wide {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 16px;
}
.nav .logo {
  display: flex; align-items: center; gap: 10px;
  height: 56px;
}
.nav .logo img {
  height: 56px; width: auto;
  /* Logo file ships on white; if charcoal nav is enabled later, swap to dark variant */
  mix-blend-mode: multiply;
}
.nav-links {
  display: none;
  gap: 28px; align-items: center;
}
.nav-links a {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.has-dropdown::after {
  content: "▾"; margin-left: 4px; font-size: 10px; vertical-align: 1px;
}
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: calc(100% + 14px); left: -16px;
  background: var(--white);
  min-width: 240px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.18s var(--ease-out);
}
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 4px;
}
.dropdown-panel a:hover { background: var(--cream); color: var(--red); }

.nav .cta-call {
  display: none;
}
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav .cta-call { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 70;
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--white);
}
.mobile-menu a {
  display: block;
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .sub {
  font-size: 16px; padding: 8px 0; border: 0;
  font-family: 'Inter', sans-serif; font-weight: 600;
  letter-spacing: 0.06em; opacity: 0.85;
}

/* ---------- HERO (scroll-driven frame sequence) ---------- */
.hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
}
/* Video hero: full-bleed, single 100vh viewport */
.hero-video {
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero-stage {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #000;
}
video.hero-frame, img.hero-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Source video is portrait shot inside the store — focal point is upper-center (the KNIFE GUYS sign and walls) */
  object-position: 50% 35%;
  z-index: 1;
  display: block;
  filter: brightness(0.9);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(14,24,34,0.55) 0%, rgba(14,24,34,0.20) 30%, rgba(14,24,34,0.55) 60%, rgba(14,24,34,0.92) 100%),
    radial-gradient(900px 500px at 30% 60%, rgba(11,18,26,0.55), transparent 70%);
  pointer-events: none;
}
.hero-overlay {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(72px, 10vh, 120px);
  padding-bottom: clamp(48px, 8vh, 96px);
}
.hero-copy {
  max-width: 760px;
  width: 100%;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.hero-copy h1 {
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero-copy .cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px;
}
.hero-copy .trust-strip {
  margin-top: 28px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--steel);
  text-transform: uppercase;
}
.hero-copy .trust-strip span { color: var(--red); margin-right: 6px; }

/* Hero entrance animation — staggered fade-up */
.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 1.0s var(--ease-out) forwards;
}
.hero-anim[data-anim="1"] { animation-delay: 0.20s; }
.hero-anim[data-anim="2"] { animation-delay: 0.40s; }
.hero-anim[data-anim="3"] { animation-delay: 0.65s; }
.hero-anim[data-anim="4"] { animation-delay: 0.85s; }
.hero-anim[data-anim="5"] { animation-delay: 1.05s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll hint at bottom of hero */
.scroll-hint {
  position: absolute;
  left: 50%; bottom: clamp(20px, 4vh, 36px);
  transform: translateX(-50%);
  z-index: 4;
  color: var(--steel);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s linear;
  pointer-events: none;
}
.scroll-hint svg { color: var(--red); animation: bounceY 1.6s ease-in-out infinite; }
@keyframes bounceY {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}

@media (max-width: 768px) {
  .hero-video { min-height: 560px; }
  .hero-overlay { padding-top: clamp(80px, 12vh, 140px); }
  .hero-copy { max-width: 100%; }
  .hero-frame { object-position: 50% 30%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim { opacity: 1; transform: none; animation: none; }
  /* Pause video for users who prefer reduced motion */
  video.hero-frame { animation: none; }
}

/* ---------- Brand marquee ---------- */
.marquee {
  background: var(--charcoal-2);
  color: var(--steel);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee-track span {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white);
  opacity: 0.85;
  cursor: pointer;
  transition: color 0.18s;
}
.marquee-track span:hover { color: var(--red); opacity: 1; }
.marquee-track .sep { color: var(--red); opacity: 1; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Finder tiles ---------- */
.finder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 640px) { .finder-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .finder-grid { grid-template-columns: repeat(4, 1fr); } }
.finder-tile {
  /* Blade-bevel corner: big rounded radius + a single sharp diagonal cut on the
     top-right corner, like the angle of a blade tip. Created with clip-path. */
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px 4px 18px 18px;
  padding: 28px 24px;
  display: flex; flex-direction: column;
  gap: 10px;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s, border-color 0.22s;
  text-decoration: none; color: var(--ink);
  position: relative;
  min-height: 188px;
  overflow: hidden;
}
/* Brass diagonal accent stripe at the cut corner */
.finder-tile::after {
  content: "";
  position: absolute;
  top: -1px; right: -1px;
  width: 56px; height: 56px;
  background: linear-gradient(225deg, var(--brass) 0%, var(--brass) 38%, transparent 39%);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
  pointer-events: none;
}
.finder-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
  border-color: rgba(215, 41, 36, 0.4);
}
.finder-tile:hover::after { opacity: 0.85; }
.finder-tile .icon {
  width: 36px; height: 36px;
  color: var(--red);
}
.finder-tile .label {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.finder-tile .hook {
  font-size: 14px; color: #4a4a4a;
}
.finder-tile .arrow {
  position: absolute; right: 18px; bottom: 16px;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 14px;
  transition: transform 0.22s var(--ease-out);
}
.finder-tile:hover .arrow { transform: translateX(4px); }

/* ---------- Story / split ---------- */
.split {
  display: grid; gap: 40px; align-items: center;
}
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: 72px; }
}
.story-art {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #4A341E 0%, #2A1D14 100%);
  border: 1px solid rgba(181, 138, 60, 0.28);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
/* Steel-navy variant of the placeholder (kitchen / map / etc) */
.story-art.steel {
  background: var(--steel-grad);
  border-color: rgba(200, 204, 209, 0.18);
}
.story-art .placeholder-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 10.5px; letter-spacing: 0.2em; font-weight: 700;
  text-transform: uppercase;
  color: var(--steel-2);
  background: rgba(0,0,0,0.55);
  padding: 6px 9px; border-radius: 4px;
  border: 1px dashed rgba(200,204,209,0.4);
}
.story-art .placeholder-blade {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(200,204,209,0.4);
  font-family: 'Anton', sans-serif;
  font-size: 16px; letter-spacing: 0.2em;
  text-align: center; padding: 24px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
@media (min-width: 768px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(200,204,209,0.12);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.section-walnut .stat {
  border-color: rgba(181, 138, 60, 0.28);
  background: rgba(255, 255, 255, 0.025);
}
.stat .num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--red);
  letter-spacing: 0.02em;
}
.section-walnut .stat .num { color: var(--brass-soft); }
.stat .lbl {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel);
  margin-top: 4px;
}

/* ---------- Why-come-in cards ---------- */
.why-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 18px; margin-top: 44px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  /* Blade-bevel: large radius all corners except top-right which is sharp
     to suggest a blade tip. Brass top-edge accent on the bevel. */
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,204,209,0.12);
  border-radius: 20px 4px 20px 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s var(--ease-out), border-color 0.22s, background 0.22s;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 28px; right: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brass) 30%, var(--brass) 70%, transparent 100%);
  opacity: 0.6;
}
.why-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 44px; height: 44px;
  background: linear-gradient(225deg, var(--brass) 0%, var(--brass) 30%, transparent 31%);
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out);
}
.why-card:hover::after { opacity: 0.9; }
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 41, 36, 0.5);
  background: rgba(255,255,255,0.05);
}
/* On walnut sections, switch the card's hairline to brass */
.section-walnut .why-card {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(181, 138, 60, 0.28);
}
.section-walnut .why-card:hover {
  border-color: rgba(201, 164, 90, 0.7);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-brass);
}
.why-card .num {
  font-family: 'Anton', sans-serif;
  font-size: 14px; letter-spacing: 0.2em;
  color: var(--red);
}
.section-walnut .why-card .num { color: var(--brass-soft); }
.why-card .icon {
  width: 32px; height: 32px;
  color: var(--steel);
  margin-top: 14px;
}
.section-walnut .why-card .icon { color: var(--brass-soft); }
.why-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-top: 14px;
  color: var(--white);
}
.why-card p {
  font-size: 15px; color: var(--steel);
  margin-top: 10px; line-height: 1.6;
}

/* ---------- What-we-carry category stack ---------- */
.category-stack {
  margin-top: 48px;
  display: grid;
  gap: 18px;
}
@media (min-width: 900px) {
  .category-stack { grid-template-columns: 1fr 1fr; gap: 20px; }
}
.category {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(200,204,209,0.12);
  border-radius: 20px 4px 20px 20px;
  padding: 36px 32px;
  scroll-margin-top: 110px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s var(--ease-out), border-color 0.22s, background 0.22s;
}
.category::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 56px; height: 56px;
  background: linear-gradient(225deg, var(--brass) 0%, var(--brass) 28%, transparent 29%);
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out);
}
.category:hover::after { opacity: 0.9; }
.category:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 41, 36, 0.45);
  background: rgba(255,255,255,0.05);
}
.category:target {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 41, 36, 0.18);
}
.cat-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.cat-title {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 10px;
  line-height: 1.02;
}
.category p {
  margin-top: 14px;
  color: var(--steel);
  font-size: 15.5px;
  line-height: 1.6;
}
.cat-cta {
  margin-top: 20px;
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* ---------- Engraving ---------- */
.engraving-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.engraving-card .body { padding: clamp(28px, 4vw, 56px); }
.engraving-art {
  aspect-ratio: 1.4 / 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(181, 138, 60, 0.22), transparent 55%),
    linear-gradient(160deg, #4A341E 0%, #1F1208 100%);
  position: relative;
  display: grid; place-items: center;
  color: rgba(201, 164, 90, 0.55);
  font-family: 'Anton', sans-serif;
  font-size: 18px; letter-spacing: 0.2em;
  border: 1px solid rgba(181, 138, 60, 0.22);
  border-radius: var(--radius-lg);
}

/* ---------- Visit / map ---------- */
.visit-grid {
  display: grid; gap: 36px;
}
@media (min-width: 900px) {
  .visit-grid { grid-template-columns: 1.2fr 1fr; gap: 56px; }
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--charcoal-2);
  aspect-ratio: 4/3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.info-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(200,204,209,0.14);
  border-radius: 20px 4px 20px 20px;
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
}
.info-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 52px; height: 52px;
  background: linear-gradient(225deg, var(--brass) 0%, var(--brass) 30%, transparent 31%);
  opacity: 0.5;
  pointer-events: none;
}
.section-walnut .info-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(181, 138, 60, 0.30);
}
.info-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.info-card .row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info-card .row:last-child { border: 0; }
.info-card .row .icon {
  flex: 0 0 24px; color: var(--red); margin-top: 2px;
}
.info-card .row .lbl {
  font-size: 11px; letter-spacing: 0.18em; font-weight: 700;
  text-transform: uppercase; color: var(--steel);
}
.info-card .row .val { color: var(--white); font-size: 16px; font-weight: 600; }
.info-card .row .val a:hover { color: var(--red); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid; gap: 18px; grid-template-columns: 1fr;
  margin-top: 44px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px 4px 18px 18px;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s;
}
.review::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 40px; height: 40px;
  background: linear-gradient(225deg, var(--brass) 0%, var(--brass) 32%, transparent 33%);
  opacity: 0.55;
  pointer-events: none;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review .stars { color: var(--red); letter-spacing: 0.08em; font-size: 16px; }
.review p { margin-top: 14px; font-size: 16px; color: #2a2a2a; line-height: 1.6; }
.review .name {
  margin-top: 18px;
  font-size: 12px; letter-spacing: 0.16em; font-weight: 700;
  text-transform: uppercase; color: var(--steel-2);
}
.review-cta {
  display: grid; gap: 18px;
  align-items: center;
  background: var(--steel-grad);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 40px;
  border: 1px solid rgba(181, 138, 60, 0.28);
}
@media (min-width: 768px){
  .review-cta { grid-template-columns: 1fr auto auto; gap: 28px; }
}
.review-cta h3 { font-family: 'Anton', sans-serif; font-size: 28px; letter-spacing: 0.04em; }
.review-cta p { color: var(--steel); margin-top: 4px; }
.qr-card {
  background: var(--white);
  color: var(--charcoal);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}
.qr-card img { width: 110px; height: 110px; }
.qr-card .lbl { font-size: 10px; letter-spacing: 0.18em; font-weight: 700; margin-top: 6px; }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 40px auto 0; }
.faq details {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 18px 0;
}
.faq summary {
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; cursor: pointer;
  font-family: 'Anton', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--red); font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 26px; transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: 12px;
  font-size: 16px; color: #444; line-height: 1.65;
  padding-right: 32px;
}

/* ---------- Forms ---------- */
.form {
  display: grid; gap: 14px;
}
.form .row { display: grid; gap: 14px; }
@media (min-width: 640px) { .form .row.two { grid-template-columns: 1fr 1fr; } }
.field label {
  font-size: 11px; letter-spacing: 0.18em; font-weight: 700;
  text-transform: uppercase;
  color: var(--steel-2);
  display: block; margin-bottom: 6px;
}
.on-dark .field label { color: var(--steel); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--white);
  font: inherit;
  color: var(--ink);
}
.on-dark .field input, .on-dark .field textarea, .on-dark .field select {
  background: rgba(255,255,255,0.06);
  border-color: rgba(200,204,209,0.2);
  color: var(--white);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214,40,40,0.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.form .check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--steel);
}
.form-status {
  font-size: 14px; padding: 10px 12px; border-radius: var(--radius);
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: rgba(54,160,73,0.15); color: #5fd07a; }
.form-status.err { background: rgba(214,40,40,0.18); color: #ff8e8e; }

/* ---------- Newsletter band ---------- */
.newsletter {
  background:
    linear-gradient(135deg, rgba(215, 41, 36, 0.20) 0%, transparent 50%),
    var(--steel-grad);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid; gap: 28px;
  align-items: center;
  border: 1px solid rgba(181, 138, 60, 0.28);
}
@media (min-width: 900px){
  .newsletter { grid-template-columns: 1.1fr 1fr; padding: 56px; }
}
.newsletter h2 { font-family: 'Anton', sans-serif; font-size: clamp(28px, 3.5vw, 44px); letter-spacing: 0.04em; }
.newsletter p { color: var(--steel); margin-top: 10px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--steel);
  padding: 64px 0 24px;
  border-top: 1px solid rgba(181, 138, 60, 0.30); /* brass hairline */
  position: relative;
}
.footer::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px);
}
.footer .container-wide { position: relative; z-index: 1; }
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer h4 {
  font-family: 'Anton', sans-serif;
  font-size: 16px; letter-spacing: 0.16em;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 16px;
}
.footer a { display: block; color: var(--steel); padding: 4px 0; font-size: 14px; }
.footer a:hover { color: var(--red); }
.footer .brand-row { display: flex; flex-direction: column; gap: 14px; }
.footer .brand-row img { height: 44px; width: auto; filter: brightness(1.1); }
.footer .legal {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: space-between;
  font-size: 12px; color: var(--steel-2);
}
.footer .socials { display: flex; gap: 10px; margin-top: 6px; }
.footer .socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200,204,209,0.18);
  border-radius: var(--radius);
  padding: 0;
}
.footer .socials a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer .socials svg { width: 18px; height: 18px; }

/* ---------- Mobile sticky bottom bar ---------- */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--ink);
  border-top: 1px solid rgba(181, 138, 60, 0.32); /* brass hairline */
  box-shadow: 0 -10px 30px rgba(0,0,0,0.45);
}
.mobile-cta a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 10px 4px;
  color: var(--white);
  font-size: 10.5px; letter-spacing: 0.16em; font-weight: 700;
  text-transform: uppercase;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.mobile-cta a:last-child { border-right: 0; }
.mobile-cta a:active { background: rgba(255,255,255,0.06); }
.mobile-cta .icon { width: 20px; height: 20px; color: var(--red); }
@media (min-width: 1024px) { .mobile-cta { display: none; } body { padding-bottom: 0 !important; } }
@media (max-width: 1023.98px) { body { padding-bottom: 64px; } }

/* ---------- Reveal-on-scroll ----------
   Progressive enhancement: only hidden when JS adds `.js-reveal` to <html>.
   Without JS (or before IO upgrades), content shows immediately. */
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
html.js-reveal .reveal.in { opacity: 1; transform: none; }

/* ---------- Helpers ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.gap-3 { gap: 12px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* ---------- Print / motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .marquee-track { animation: none !important; }
}

