/* ============================================================
   Oxford Meat Company — site.css
   Black & white + accents (red cf124b, sky blue b1ddf6).
   Paper texture background; ripped-paper edges on hero + sections.
   Fonts: Questrial (headings/body), DM Mono (labels/details).
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --ink:        #0d0d0d;
  --ink-2:      #2a2a2a;
  --ink-muted:  #5a5a5a;
  --paper:      #f6f1e7;          /* warm cream paper */
  --paper-2:    #efe8d8;          /* slightly deeper */
  --paper-edge: #e6dcc6;
  --red:        #cc0a2f;
  --red-dark:   #9c0823;
  --sky:        #b1ddf6;
  --sky-dark:   #7dbfe6;
  --line:       rgba(13,13,13,0.12);

  --max:        1240px;
  --max-narrow: 820px;

  --font-sans:  'Questrial', system-ui, -apple-system, sans-serif;
  --font-mono:  'DM Mono', ui-monospace, Menlo, monospace;

  --shadow-soft: 0 10px 30px rgba(20, 14, 0, 0.08);
  --shadow-card: 0 1px 0 rgba(0,0,0,0.04), 0 18px 40px -20px rgba(20,14,0,0.18);

  --t: 0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }

/* ── Paper background (applied to body) ─────────────────────── */
/* Subtle fiber texture — generated SVG, inlined as data URI on body */
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(1200px 800px at 20% -10%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(900px 700px at 100% 110%, rgba(0,0,0,0.05), transparent 60%),
    url("../images/paper-texture.jpg");
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: auto, auto, 520px auto;
  background-attachment: fixed, fixed, fixed;
  background-blend-mode: normal, normal, multiply;
  overflow-x: hidden;
}

/* Default-background sections (hero, fresh meats, catering, testimonials) inherit body texture via transparent. Reinforce with a section-level texture multiply layer so the fibers read even when the body fixed-attachment doesn't tile through transforms. */
section.section:not(.section--red):not(.section--ink):not(.section--alt),
section.hero {
  position: relative;
}
section.section:not(.section--red):not(.section--ink):not(.section--alt)::before {
  content: '';
  position: absolute; inset: 0;
  background: url("../images/paper-texture.jpg") repeat;
  background-size: 520px auto;
  mix-blend-mode: multiply;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
section.section:not(.section--red):not(.section--ink):not(.section--alt) > * {
  position: relative;
  z-index: 1;
}

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 4px; text-decoration: none; font-weight: 700;
  z-index: 9999; transition: top var(--t);
}
.skip-link:focus { top: 16px; }

/* ── Type ───────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { max-width: 65ch; }
p + p { margin-top: 0.9em; }
a  { color: var(--red); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--red-dark); }
strong { font-weight: 700; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-block;
  padding-bottom: 0;
  border-bottom: 0;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── Container ──────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 28px; }
.container--narrow { max-width: var(--max-narrow); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1.5px solid currentColor;
  transition: background var(--t), color var(--t), transform var(--t), border-color var(--t);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--red); color: #fff; border-color: var(--red);
}
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }

.btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.85);
}
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--dark {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.btn--dark:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ── Site header / nav (transparent over hero) ──────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: inline-flex; align-items: center; gap: 14px;
  color: #fff; text-decoration: none;
  transition: color var(--t);
}
.site-logo__mark {
  width: 103px; height: 103px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: width var(--t), height var(--t);
}
.site-logo__mark img,
.site-logo__mark svg { width: 100%; height: 100%; display: block; object-fit: contain; }
.site-logo__text {
  font-family: var(--font-sans);
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.site-logo__text small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  margin-top: 4px;
  opacity: 0.8;
  text-transform: uppercase;
}

/* nav list */
.site-nav {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.site-nav a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}
.site-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }

.site-nav .nav-phone {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
}
.site-nav .nav-phone svg { width: 14px; height: 14px; }
.site-nav .nav-phone::after { display: none; }

.site-nav .nav-cta {
  background: var(--red); color: #fff;
  padding: 10px 18px; border-radius: 2px;
  border: 1.5px solid var(--red);
  transition: background var(--t), color var(--t);
}
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* mobile/tablet right cluster (phone icon + burger) */
.nav-mobile-cluster { display: none; align-items: center; gap: 8px; }
.icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid rgba(255,255,255,0.85);
  border-radius: 2px;
  color: #fff;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.icon-btn:hover { background: #fff; color: var(--ink); border-color: #fff; }
.icon-btn svg { width: 20px; height: 20px; }

/* scrolled state: opaque paper-colored header */
.site-header.is-scrolled .site-logo__mark { width: 72px; height: 72px; }
.site-header.is-scrolled {
  background: url("../images/paper-texture.jpg") repeat, rgba(246, 241, 231, 0.96);
  background-size: 720px auto, auto;
  background-blend-mode: multiply;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--line);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(20,14,0,0.06);
}
.site-header.is-scrolled .site-logo,
.site-header.is-scrolled .site-nav a,
.site-header.is-scrolled .site-nav .nav-phone {
  color: var(--ink);
}
.site-header.is-scrolled .icon-btn {
  border-color: var(--ink);
  color: var(--ink);
}
.site-header.is-scrolled .icon-btn:hover { background: var(--ink); color: #fff; }
.site-header.is-scrolled .site-nav .nav-cta { color: #fff; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 78vh;
  min-height: 78svh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: 110px 0 80px;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -2;
  background: #1a1a1a;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 35%, rgba(0,0,0,0.65) 100%);
}
.hero .container { position: relative; }
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sky);
  display: inline-block;
  margin-bottom: 28px;
  opacity: 1;
  padding-bottom: 0;
  border-bottom: 0;
}
.hero__eyebrow::before { display: none; }
.hero h1 {
  font-size: clamp(2.8rem, 8.5vw, 7rem);
  line-height: 0.98;
  max-width: 16ch;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero h1.hero__title--white { color: #fff; }
.hero h1 .accent { color: var(--sky); font-style: italic; }
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 56ch;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.hero__meta {
  position: absolute;
  left: 28px; right: 28px;
  bottom: 80px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  pointer-events: none;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero__meta span::before { content: ''; width: 6px; height: 6px; background: var(--red); display: inline-block; border-radius: 50%; }

/* ── Ripped paper edge (bottom-of-hero, top-of-section) ────── */
/* SVG mask makes the bottom edge of the hero look torn.
   A duplicate paper-colored strip below uses a flipped mask
   so the next section starts cleanly. */
.ripped-bottom {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 90px;
  background: var(--paper);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch' seed='3'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.13  0 0 0 0 0.06  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
  background-size: 420px 420px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0,100 L1440,100 L1440,55 L1428,48 L1416,62 L1404,36 L1392,52 L1380,28 L1368,48 L1356,64 L1344,38 L1332,54 L1320,26 L1308,46 L1296,62 L1284,36 L1272,54 L1260,28 L1248,48 L1236,64 L1224,36 L1212,52 L1200,26 L1188,46 L1176,62 L1164,32 L1152,52 L1140,24 L1128,46 L1116,60 L1104,32 L1092,52 L1080,24 L1068,46 L1056,62 L1044,32 L1032,48 L1020,24 L1008,44 L996,60 L984,30 L972,50 L960,22 L948,42 L936,60 L924,30 L912,50 L900,22 L888,42 L876,58 L864,30 L852,48 L840,20 L828,40 L816,58 L804,28 L792,48 L780,20 L768,42 L756,58 L744,28 L732,46 L720,18 L708,40 L696,58 L684,28 L672,46 L660,18 L648,40 L636,58 L624,26 L612,44 L600,16 L588,38 L576,56 L564,26 L552,44 L540,16 L528,38 L516,56 L504,26 L492,44 L480,16 L468,38 L456,54 L444,24 L432,42 L420,14 L408,36 L396,54 L384,24 L372,42 L360,14 L348,36 L336,54 L324,22 L312,40 L300,12 L288,34 L276,52 L264,22 L252,40 L240,12 L228,34 L216,52 L204,20 L192,40 L180,12 L168,34 L156,52 L144,20 L132,38 L120,10 L108,32 L96,52 L84,20 L72,38 L60,10 L48,32 L36,50 L24,18 L12,38 L0,12 Z' fill='black'/></svg>") no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0,100 L1440,100 L1440,55 L1428,48 L1416,62 L1404,36 L1392,52 L1380,28 L1368,48 L1356,64 L1344,38 L1332,54 L1320,26 L1308,46 L1296,62 L1284,36 L1272,54 L1260,28 L1248,48 L1236,64 L1224,36 L1212,52 L1200,26 L1188,46 L1176,62 L1164,32 L1152,52 L1140,24 L1128,46 L1116,60 L1104,32 L1092,52 L1080,24 L1068,46 L1056,62 L1044,32 L1032,48 L1020,24 L1008,44 L996,60 L984,30 L972,50 L960,22 L948,42 L936,60 L924,30 L912,50 L900,22 L888,42 L876,58 L864,30 L852,48 L840,20 L828,40 L816,58 L804,28 L792,48 L780,20 L768,42 L756,58 L744,28 L732,46 L720,18 L708,40 L696,58 L684,28 L672,46 L660,18 L648,40 L636,58 L624,26 L612,44 L600,16 L588,38 L576,56 L564,26 L552,44 L540,16 L528,38 L516,56 L504,26 L492,44 L480,16 L468,38 L456,54 L444,24 L432,42 L420,14 L408,36 L396,54 L384,24 L372,42 L360,14 L348,36 L336,54 L324,22 L312,40 L300,12 L288,34 L276,52 L264,22 L252,40 L240,12 L228,34 L216,52 L204,20 L192,40 L180,12 L168,34 L156,52 L144,20 L132,38 L120,10 L108,32 L96,52 L84,20 L72,38 L60,10 L48,32 L36,50 L24,18 L12,38 L0,12 Z' fill='black'/></svg>") no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  z-index: 2;
  filter: drop-shadow(0 -2px 1px rgba(0,0,0,0.15));
}
.ripped-bottom::before {
  /* Paper fiber highlight — a slightly lighter line tracing just inside the tear */
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 18%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.ripped-bottom::after {
  /* Soft shadow under the torn lip for depth */
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0));
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.6;
}

/* a section-level ripped top divider — used between sections */
.rip-divider {
  position: relative; height: 72px;
  margin-top: -72px;
  background: var(--paper);
  z-index: 2;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,80 L1440,80 L1440,42 L1428,36 L1414,48 L1402,28 L1388,42 L1374,24 L1360,40 L1346,52 L1332,30 L1318,44 L1304,22 L1290,38 L1276,52 L1262,30 L1248,44 L1234,22 L1220,40 L1206,52 L1192,28 L1178,42 L1164,20 L1150,38 L1136,52 L1122,26 L1108,42 L1094,18 L1080,38 L1066,52 L1052,28 L1038,42 L1024,18 L1010,38 L996,52 L982,26 L968,40 L954,16 L940,36 L926,52 L912,24 L898,40 L884,16 L870,36 L856,50 L842,24 L828,40 L814,14 L800,34 L786,48 L772,24 L758,40 L744,14 L730,34 L716,48 L702,22 L688,38 L674,12 L660,32 L646,48 L632,22 L618,38 L604,12 L590,32 L576,48 L562,20 L548,36 L534,12 L520,32 L506,48 L492,20 L478,36 L464,10 L450,30 L436,46 L422,20 L408,36 L394,10 L380,30 L366,46 L352,18 L338,34 L324,8 L310,28 L296,46 L282,18 L268,34 L254,8 L240,28 L226,44 L212,18 L198,34 L184,6 L170,28 L156,44 L142,16 L128,32 L114,6 L100,26 L86,42 L72,16 L58,32 L44,6 L30,26 L16,42 L0,16 Z' fill='black'/></svg>") no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,80 L1440,80 L1440,42 L1428,36 L1414,48 L1402,28 L1388,42 L1374,24 L1360,40 L1346,52 L1332,30 L1318,44 L1304,22 L1290,38 L1276,52 L1262,30 L1248,44 L1234,22 L1220,40 L1206,52 L1192,28 L1178,42 L1164,20 L1150,38 L1136,52 L1122,26 L1108,42 L1094,18 L1080,38 L1066,52 L1052,28 L1038,42 L1024,18 L1010,38 L996,52 L982,26 L968,40 L954,16 L940,36 L926,52 L912,24 L898,40 L884,16 L870,36 L856,50 L842,24 L828,40 L814,14 L800,34 L786,48 L772,24 L758,40 L744,14 L730,34 L716,48 L702,22 L688,38 L674,12 L660,32 L646,48 L632,22 L618,38 L604,12 L590,32 L576,48 L562,20 L548,36 L534,12 L520,32 L506,48 L492,20 L478,36 L464,10 L450,30 L436,46 L422,20 L408,36 L394,10 L380,30 L366,46 L352,18 L338,34 L324,8 L310,28 L296,46 L282,18 L268,34 L254,8 L240,28 L226,44 L212,18 L198,34 L184,6 L170,28 L156,44 L142,16 L128,32 L114,6 L100,26 L86,42 L72,16 L58,32 L44,6 L30,26 L16,42 L0,16 Z' fill='black'/></svg>") no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  filter: drop-shadow(0 -2px 1px rgba(0,0,0,0.08));
}
.rip-divider--ink   { background: var(--ink); color: #fff; }
.rip-divider--paper2 { background: var(--paper-2); }

/* For sections that sit ABOVE a torn edge (rip goes UP) */
.rip-top {
  position: relative; height: 72px; margin-bottom: -72px; z-index: 2;
  background: var(--paper);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,0 L1440,0 L1440,38 L1428,44 L1414,32 L1402,52 L1388,38 L1374,56 L1360,40 L1346,28 L1332,50 L1318,36 L1304,58 L1290,42 L1276,28 L1262,50 L1248,36 L1234,58 L1220,40 L1206,28 L1192,52 L1178,38 L1164,60 L1150,42 L1136,28 L1122,54 L1108,38 L1094,62 L1080,42 L1066,28 L1052,52 L1038,38 L1024,62 L1010,42 L996,28 L982,54 L968,40 L954,64 L940,44 L926,28 L912,56 L898,40 L884,64 L870,44 L856,30 L842,56 L828,40 L814,66 L800,46 L786,32 L772,56 L758,40 L744,66 L730,46 L716,32 L702,58 L688,42 L674,68 L660,48 L646,32 L632,58 L618,42 L604,68 L590,48 L576,32 L562,60 L548,44 L534,68 L520,48 L506,32 L492,60 L478,44 L464,70 L450,50 L436,34 L422,60 L408,44 L394,70 L380,50 L366,34 L352,62 L338,46 L324,72 L310,52 L296,34 L282,62 L268,46 L254,72 L240,52 L226,36 L212,62 L198,46 L184,74 L170,52 L156,36 L142,64 L128,48 L114,74 L100,54 L86,38 L72,64 L58,48 L44,74 L30,54 L16,38 L0,64 Z' fill='black'/></svg>") no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,0 L1440,0 L1440,38 L1428,44 L1414,32 L1402,52 L1388,38 L1374,56 L1360,40 L1346,28 L1332,50 L1318,36 L1304,58 L1290,42 L1276,28 L1262,50 L1248,36 L1234,58 L1220,40 L1206,28 L1192,52 L1178,38 L1164,60 L1150,42 L1136,28 L1122,54 L1108,38 L1094,62 L1080,42 L1066,28 L1052,52 L1038,38 L1024,62 L1010,42 L996,28 L982,54 L968,40 L954,64 L940,44 L926,28 L912,56 L898,40 L884,64 L870,44 L856,30 L842,56 L828,40 L814,66 L800,46 L786,32 L772,56 L758,40 L744,66 L730,46 L716,32 L702,58 L688,42 L674,68 L660,48 L646,32 L632,58 L618,42 L604,68 L590,48 L576,32 L562,60 L548,44 L534,68 L520,48 L506,32 L492,60 L478,44 L464,70 L450,50 L436,34 L422,60 L408,44 L394,70 L380,50 L366,34 L352,62 L338,46 L324,72 L310,52 L296,34 L282,62 L268,46 L254,72 L240,52 L226,36 L212,62 L198,46 L184,74 L170,52 L156,36 L142,64 L128,48 L114,74 L100,54 L86,38 L72,64 L58,48 L44,74 L30,54 L16,38 L0,64 Z' fill='black'/></svg>") no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  filter: drop-shadow(0 2px 1px rgba(0,0,0,0.08));
}
.rip-top--ink { background: var(--ink); }

/* ── Anchor menu (removed) ────────────────────────────────── */

/* ── Section wrapper ────────────────────────────────────────── */
.section { position: relative; padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt {
  background: url("../images/paper-texture.jpg") repeat, rgba(40, 24, 0, 0.05);
  background-size: 720px auto, auto;
  background-blend-mode: multiply;
}
.section--ink {
  background: url("../images/paper-texture.jpg") repeat, var(--red);
  background-size: 720px auto, auto;
  background-blend-mode: multiply;
  color: #fff;
}
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink .eyebrow { color: var(--sky); }
.section--ink p { color: rgba(255,255,255,0.85); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 14px; text-wrap: balance; }
.section-head p { font-size: 1.05rem; color: var(--ink-muted); }
.section--ink .section-head p { color: rgba(255,255,255,0.78); }

/* ── Fresh Meats gallery (slider) ──────────────────────────── */
.gallery {
  position: relative;
}
.gallery__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 360px);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 4px 28px;
  /* bleed left/right so first/last cards align with container edge */
  margin-left: calc(50% - min(50vw, var(--max) / 2) + 28px);
  margin-right: calc(50% - min(50vw, var(--max) / 2) + 28px);
  padding-right: calc(50vw - min(50vw, var(--max) / 2) + 28px);
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track:focus-visible { outline: 2px solid var(--sky); outline-offset: 6px; }

.gallery__slide {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  scroll-snap-align: start;
  transition: transform var(--t), box-shadow var(--t);
  height: 100%;
}
.gallery__slide:hover { transform: translateY(-3px); }

.gallery__slide .meat-card__img {
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
  overflow: hidden;
}
.gallery__slide .meat-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__slide:hover .meat-card__img img { transform: scale(1.04); }

.gallery__slide .meat-card__body { padding: 24px 24px 28px; }
.gallery__slide .meat-card__tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 10px; display: inline-block;
}
.gallery__slide h3 { font-size: 1.4rem; margin-bottom: 8px; }
.gallery__slide p { color: var(--ink-muted); font-size: 0.96rem; }

/* Tape strips on cards (retained from previous) */
.gallery__slide .tape {
  position: absolute;
  width: 90px; height: 22px;
  background: rgba(177, 221, 246, 0.85);
  top: -10px; left: 24px;
  transform: rotate(-3deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 3;
  pointer-events: none;
}
.gallery__slide .tape--right { left: auto; right: 24px; transform: rotate(3deg); background: rgba(204,10,47,0.85); }

/* Controls row */
.gallery__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}
.gallery__count {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
}
.gallery__count [data-gallery-current] { color: var(--ink); }
.gallery__bar {
  position: relative;
  height: 2px;
  background: var(--line);
  overflow: hidden;
}
.gallery__bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 12%;
  background: var(--red);
  transition: width 0.3s ease;
}
.gallery__buttons { display: inline-flex; gap: 10px; }
.gallery__btn {
  width: 48px; height: 48px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t), color var(--t), border-color var(--t), opacity var(--t);
}
.gallery__btn svg { width: 22px; height: 22px; }
.gallery__btn:hover { background: var(--ink); color: #fff; }
.gallery__btn:disabled { opacity: 0.3; cursor: not-allowed; }
.gallery__btn:disabled:hover { background: transparent; color: var(--ink); }

/* Red section variant (Lunch) */
.section--red {
  background: url("../images/paper-texture.jpg") repeat, var(--red);
  background-size: 720px auto, auto;
  background-blend-mode: multiply;
  color: #fff;
}
.section--red h2, .section--red h3, .section--red h4 { color: #fff; }
.section--red .eyebrow { color: var(--sky); }
.section--red .section-head p { color: rgba(255,255,255,0.92); }

/* ── Lunch Specials ─────────────────────────────────────────── */
.lunch-call {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  white-space: nowrap;
}
.lunch-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 44px 0 56px;
}
.lunch-photo {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}
.lunch-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lunch-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 72px;
}
.lunch-menu__head {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(255,255,255,0.28);
}
.lunch-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lunch-menu__list li {
  font-size: 1.18rem;
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.24);
}
.lunch-menu__list li:last-child { border-bottom: 0; }
.lunch-sandwich {
  margin: 44px 0 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

/* ── Catering ───────────────────────────────────────────────── */
.catering {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.catering__media {
  position: relative;
}
.catering__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.catering__media::before {
  content: '';
  position: absolute; left: -22px; top: -22px;
  width: 100%; height: 100%;
  background: var(--sky);
  z-index: -1;
}
.catering ul {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px;
  margin: 20px 0 28px;
}
.catering ul li {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); padding-left: 22px; position: relative;
}
.catering ul li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 12px; height: 2px; background: var(--red);
}

/* Catering menu dropdowns — full-width boxes */
.catering-menu-list {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.catering-menu-box {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 0;
  box-shadow: var(--shadow-card);
}
.catering-menu-list details { cursor: pointer; }
.catering-menu-list summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}
.catering-menu-list summary::-webkit-details-marker { display: none; }
.catering-menu-list summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--red);
  transition: transform var(--t);
}
.catering-menu-list details[open] summary::after { content: '–'; }
.catering-menu-items {
  list-style: none !important;
  padding: 0 28px 24px !important;
  margin: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
  border-top: 1px dashed var(--line);
  padding-top: 18px !important;
}
.catering-menu-items li {
  padding: 8px 0 !important;
  margin: 0 !important;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-2);
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.catering-menu-items li::before { display: none !important; }
@media (max-width: 900px) {
  .catering-menu-list { margin-top: 40px; grid-template-columns: 1fr; }
  .catering-menu-items { grid-template-columns: 1fr 1fr; }
  .catering-menu-list summary { padding: 18px 22px; font-size: 13px; }
  .catering-menu-items { padding-left: 22px !important; padding-right: 22px !important; }
}
@media (max-width: 600px) {
  .catering-menu-items { grid-template-columns: 1fr; }
}

/* ── About / FAQ ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-grid p { color: rgba(255,255,255,0.86); }

/* About section — big butcher-knife watermark, subtly behind content */
.section--ink { position: relative; overflow: hidden; }
.about-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 0;
}
.about-watermark img {
  width: min(1100px, 130%);
  height: auto;
  opacity: 0.18;
  filter: brightness(0);
  mix-blend-mode: multiply;
  transform: rotate(-8deg);
}
.section--ink .container { position: relative; z-index: 1; }

/* Footer — Visit Us block: logo on left, address on right */
.info-block--visit {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 20px;
}
.visit-mark img {
  width: 120px; height: 120px;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.22));
}
.visit-body .info-label { margin-bottom: 8px; }
@media (max-width: 900px) {
  .info-block--visit { grid-template-columns: 96px 1fr; gap: 16px; }
  .visit-mark img { width: 96px; height: 96px; }
  .about-watermark img { width: 180%; }
}

.faq-list { list-style: none; padding: 0; }
.faq-item {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.18); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 1.15rem; font-weight: 400; color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem; line-height: 1; color: var(--red);
  transition: transform var(--t);
}
.faq-item details[open] summary::after { content: '–'; }
.faq-item .answer {
  padding-top: 14px; color: rgba(255,255,255,0.78); font-size: 1rem;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 26px 26px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.testimonial::before {
  content: '"';
  position: absolute; top: -22px; left: 18px;
  font-family: var(--font-sans);
  font-size: 110px; line-height: 1;
  color: var(--sky);
  pointer-events: none;
}
.testimonial__stars {
  color: var(--red); font-size: 0.95rem; letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial__text {
  font-size: 1rem; color: var(--ink-2);
  margin-bottom: 18px;
}
.testimonial__author {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── Contact + Footer (combined) ────────────────────────────── */
.contact-footer {
  position: relative;
  background: url("../images/paper-texture.jpg") repeat, var(--ink);
  background-size: 720px auto, auto;
  background-blend-mode: multiply;
  color: #fff;
  padding: 120px 0 36px;
}
.contact-footer::before {
  /* fine paper-fiber tint over ink for warmth */
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: 0.6;
}
.contact-footer .container { position: relative; }

.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}
.contact-form-card { }
.contact-form-card h2 { color: #fff; }
.contact-form-card .eyebrow { color: var(--red); }
.contact-form-card .eyebrow::before { background: var(--sky); display: none; }

.contact-form {
  display: grid; gap: 16px;
  margin-top: 28px;
}
.contact-form .row2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-form label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block; margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-family: var(--font-sans); font-size: 1rem;
  border-radius: 2px;
  transition: border-color var(--t), background var(--t);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-color: var(--sky); background: rgba(255,255,255,0.1);
}
.contact-form textarea { min-height: 130px; resize: vertical; }

.contact-info {
  display: grid; gap: 28px;
}
.info-block .info-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 8px;
}
.info-block .info-value {
  font-size: 1.1rem; color: #fff; line-height: 1.55;
}
.info-block .info-value a {
  color: #fff; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: border-color var(--t);
}
.info-block .info-value a:hover { border-bottom-color: var(--red); }

.info-block address { font-style: normal; }

.hours-table {
  width: 100%; font-family: var(--font-mono); font-size: 13px;
  border-collapse: collapse;
}
.hours-table td {
  padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,0.12);
  letter-spacing: 0.04em;
}
.hours-table td:first-child {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); width: 40%;
}
.hours-table td:last-child { color: #fff; }

.contact-map {
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  overflow: hidden;
  position: relative;
}
.contact-map iframe { display: block; width: 100%; height: 200px; border: 0; filter: invert(0.9) hue-rotate(180deg) saturate(0.6); }

.social-row {
  display: flex; gap: 14px; margin-top: 8px;
}
.social-link {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  transition: all var(--t);
  border-radius: 2px;
}
.social-link:hover { background: #fff; border-color: #fff; color: var(--red); }
.social-link svg { width: 18px; height: 18px; }

.contact-footer .btn--primary {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}
.contact-footer .btn--primary:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.55);
}
.footer-bottom a {
  color: rgba(255,255,255,0.55); text-decoration: none;
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom .stmm a { color: var(--sky); }
.footer-bottom .stmm a:hover { color: #fff; }
.footer-bottom__legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ── Mobile menu drawer ─────────────────────────────────────── */
.mobile-drawer {
  position: fixed; inset: 0;
  background: url("../images/paper-texture.jpg") repeat, var(--ink);
  background-size: 720px auto, auto;
  background-blend-mode: multiply;
  color: #fff;
  z-index: 2000;
  padding: 28px;
  display: none;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.7, 0, 0.2, 1);
}
.mobile-drawer.is-open { display: flex; transform: translateY(0); }
.mobile-drawer__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 56px;
}
.mobile-drawer ul {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 22px;
}
.mobile-drawer ul a {
  font-family: var(--font-sans);
  font-size: 2rem; line-height: 1;
  color: #fff; text-decoration: none;
}
.mobile-drawer ul a:hover { color: var(--red); }
.mobile-drawer__foot {
  margin-top: auto;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: grid; gap: 14px;
}
.mobile-drawer__foot a { color: #fff; }

/* ── Responsive ─────────────────────────────────────────────── */

/* Large tablet / small laptop — nav collapses to burger here */
@media (max-width: 1080px) {
  .container { padding-inline: 28px; }
  .section { padding: 88px 0; }
  .gallery__track { grid-auto-columns: minmax(320px, 320px); }
  .about-grid { gap: 56px; }
  .catering { gap: 48px; }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .testimonial:nth-child(3) { grid-column: 1 / -1; max-width: 720px; margin-inline: auto; }
  .contact-grid { gap: 56px; }

  /* Hide desktop nav, show phone + burger */
  .site-nav { display: none; }
  .nav-mobile-cluster { display: inline-flex; }
}

/* Tablet — hero shrinks, single-column blocks */
@media (max-width: 900px) {
  .site-header { padding: 14px 0; }
  .site-header.is-scrolled { padding: 10px 0; }

  .hero { padding: 96px 0 64px; min-height: 68vh; }
  .hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
  .hero__sub { font-size: 1.05rem; margin-bottom: 28px; }
  .hero__meta { display: none; }

  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }

  .gallery__track { grid-auto-columns: minmax(280px, 60vw); }
  .gallery__slide h3 { font-size: 1.25rem; }

  .catering { grid-template-columns: 1fr; gap: 36px; }
  .catering ul { grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 16px 0 24px; }
  .catering__media { max-width: 520px; }
  .catering__media img { aspect-ratio: 4 / 3; }
  .catering__media::before { left: -12px; top: -12px; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-watermark img { width: 160%; transform: rotate(-6deg); }

  .testimonials { grid-template-columns: 1fr; }
  .testimonial:nth-child(3) { max-width: none; }

  .specials { grid-template-columns: 1fr; gap: 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; }
  .contact-footer { padding: 88px 0 32px; }

  .faq-item summary { font-size: 1.05rem; }
}

/* Phone */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }

  /* Header / nav */
  .site-logo__text { display: none; }
  .site-logo__mark { width: 56px; height: 56px; }
  .site-header { padding: 10px 0; }
  .site-header.is-scrolled { padding: 8px 0; }
  .site-header.is-scrolled .site-logo__mark { width: 48px; height: 48px; }
  .icon-btn { width: 42px; height: 42px; }
  .nav-mobile-cluster { gap: 6px; }

  /* Hero */
  .hero { padding: 90px 0 56px; min-height: 64vh; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.02; margin-bottom: 18px; }
  .hero__sub { font-size: 0.98rem; margin-bottom: 22px; }
  .hero__eyebrow { font-size: 11px; margin-bottom: 18px; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { padding: 12px 18px; font-size: 11px; }

  /* Buttons */
  .btn { font-size: 11px; padding: 12px 18px; letter-spacing: 0.14em; }

  /* Fresh Meats slider */
  .gallery__track {
    grid-auto-columns: 80vw;
    gap: 14px;
    margin-left: 18px;
    margin-right: 18px;
    padding-right: 18px;
  }
  .gallery__slide .meat-card__body { padding: 18px 18px 22px; }
  .gallery__slide h3 { font-size: 1.2rem; }
  .gallery__slide p { font-size: 0.92rem; }
  .gallery__controls { grid-template-columns: 1fr auto; gap: 14px; }
  .gallery__count { grid-row: 1; }
  .gallery__bar { grid-column: 1 / -1; grid-row: 2; }
  .gallery__buttons { grid-row: 1; }
  .gallery__btn { width: 44px; height: 44px; }

  /* Lunch specials — stack photos and lists */
  .lunch-photos {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 32px 0 40px;
  }
  .lunch-photos .lunch-photo:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .lunch-menu { grid-template-columns: 1fr; gap: 36px; }
  .lunch-menu__list li { font-size: 1.08rem; }

  /* Catering */
  .catering ul { grid-template-columns: 1fr; gap: 8px; }
  .catering__media::before { left: -8px; top: -8px; }
  .catering-menu-list summary { padding: 16px 18px; font-size: 12px; letter-spacing: 0.2em; }
  .catering-menu-list summary::after { font-size: 1.5rem; }
  .catering-menu-items {
    padding: 12px 18px 18px !important;
    grid-template-columns: 1fr;
    gap: 0 !important;
  }

  /* About / FAQ */
  .faq-item { padding: 18px 0; }
  .faq-item summary { font-size: 1rem; gap: 12px; }
  .faq-item .answer { font-size: 0.94rem; }

  /* Testimonials */
  .testimonial { padding: 24px 20px 22px; }
  .testimonial::before { font-size: 80px; top: -16px; left: 14px; }
  .testimonial__text { font-size: 0.96rem; }

  /* Contact / footer */
  .contact-footer { padding: 72px 0 28px; }
  .contact-form .row2 { grid-template-columns: 1fr; gap: 16px; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select { padding: 13px 14px; font-size: 16px; /* iOS no-zoom */ }
  .info-block--visit { grid-template-columns: 84px 1fr; gap: 14px; }
  .visit-mark img { width: 84px; height: 84px; }
  .contact-map iframe { height: 220px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 11px;
    text-align: left;
  }

  /* Mobile drawer */
  .mobile-drawer { padding: 22px; }
  .mobile-drawer__top { margin-bottom: 40px; }
  .mobile-drawer ul { gap: 18px; }
  .mobile-drawer ul a { font-size: 1.6rem; }

  /* Ripped helper edges */
  .ripped-bottom { height: 56px; }
  .rip-divider, .rip-top { height: 48px; }
  .rip-divider { margin-top: -48px; }
  .rip-top { margin-bottom: -48px; }
}

/* Very small phones */
@media (max-width: 380px) {
  .container { padding-inline: 14px; }
  .hero h1 { font-size: 1.85rem; }
  .gallery__track { grid-auto-columns: 86vw; }
  .special-item { grid-template-columns: 64px 1fr; }
  .special-item__photo { width: 64px; height: 64px; }
}

/* ── Reveal-on-scroll (light touch) ─────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ── Privacy Policy page tweaks ─────────────────────────────── */
.legal-page {
  padding: 200px 0 120px;
}
.legal-page h1 { margin-bottom: 8px; }
.legal-page .kicker { margin-bottom: 20px; }
.legal-page h2 { font-size: 1.6rem; margin-top: 40px; margin-bottom: 12px; }
.legal-page p, .legal-page li { font-size: 1rem; color: var(--ink-2); }
.legal-page ul { padding-left: 22px; margin-bottom: 16px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

/* ── Focus styles ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}
