/* ========================================================================
   TIPSY COWS — look faithfully modelled on The Cheese Bar
   ======================================================================== */


:root {
  /* vintage parchment palette (matched to the menu artwork) */
  --black: #211f20;          /* warm near-black ink */
  --cream: #efe3cb;          /* light parchment / paper (text on ink, cards) */
  --curd: #d9c8ae;           /* lighter parchment (alt sections) */
  --stone: #4b4742;          /* dark neutral grey */
  --yellow: #b58a3c;         /* muted gold accent */
  --truck-yellow: #c9a44e;   /* lighter gold */
  --mature: #9c6b3f;         /* terracotta brown accent */
  --pink: #b58a3c;
  --red: #8a3b2e;            /* deep wine red */
  --blue: #5c6b4a;           /* muted olive */
  --white: #efe3cb;
  --parchment: #cfba9f;      /* primary parchment background */

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-script: 'Caveat Brush', cursive;

  --maxw: 1600px;
  --gutter: clamp(20px, 4.5vw, 64px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
img, video, iframe, svg { max-width: 100%; }
.exp__info, .menu-doc__grid, .feature, .m-item, .fb-feature, .footer__bottom, .booking-form { min-width: 0; }

/* ============================ PRELOADER ============================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999; background: var(--parchment);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(26px, 4vw, 44px);
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__logo { width: min(460px, 74vw); height: auto; transform-origin: 50% 80%; animation: tipsy 2.4s ease-in-out infinite; }
@keyframes tipsy { 0%, 100% { transform: rotate(-2.2deg); } 50% { transform: rotate(2.2deg); } }
.pg { display: flex; flex-direction: column; align-items: center; }
.pg__bowl { position: relative; width: 62px; height: 56px; border: 3px solid #2b2a26; border-radius: 0 0 31px 31px; overflow: hidden; background: rgba(255,255,255,0.35); }
.pg__liquid { position: absolute; left: 0; right: 0; bottom: 0; height: 8%; background: linear-gradient(180deg, #f8c536, #d98a00); animation: pgfill 4.6s ease-out forwards; }
.pg__b { position: absolute; bottom: 6px; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.75); animation: pgrise 1.5s linear infinite; }
.pg__stem { width: 3px; height: 22px; background: #2b2a26; }
.pg__base { width: 42px; height: 4px; border-radius: 3px; background: #2b2a26; }
@keyframes pgfill { from { height: 8%; } to { height: 85%; } }
@keyframes pgrise { 0% { transform: translateY(0); opacity: 0; } 25% { opacity: 1; } 100% { transform: translateY(-38px); opacity: 0; } }
.preloader__cap { font-family: var(--font-body); font-weight: 600; font-size: 16px; letter-spacing: 0.04em; color: var(--black); }
@media (prefers-reduced-motion: reduce) { .preloader__logo, .pg__liquid, .pg__b { animation: none; } }

/* cow cursors */
html, body { cursor: url('assets/cursors/cow01.png') 0 0, auto; }
a, button, .btn, .btn-menu, .btn-square, .burger-btn, .exp, .ccard, label, summary, [role="button"], .footer__menu, .footer__back, .back { cursor: url('assets/cursors/cow10.png') 5 0, pointer; }
input, textarea { cursor: url('assets/cursors/cow05.png') 3 15, text; }
body {
  font-family: var(--font-body);
  background: var(--parchment);
  color: var(--black);
  font-size: 20px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--black); color: var(--cream); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* giant display — vintage high-contrast serif */
.giant {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0;
}
/* eyebrow — handwritten brush accent */
.eyebrow--block { display: block; margin-bottom: 12px; }
.eyebrow {
  font-family: var(--font-script);
  font-size: 24px; font-weight: 400; text-transform: none; letter-spacing: 0.01em;
  color: var(--black); line-height: 1;
}
/* section titles — handwritten brush script, like the menu headings */
.h-section {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(46px, 7.5vw, 124px);
  line-height: 0.92;
  letter-spacing: 0.01em;
}
.h-section em { font-family: var(--font-script); font-style: normal; color: inherit; }

/* ---- BUTTONS (flat, understated — like the reference) ---- */
/* unified button family — same shape everywhere; header is yellow, content is black */
.btn { font-family: var(--font-body); cursor: pointer; display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; line-height: 1; padding: 12px 22px; border-radius: 6px; border: 1.5px solid var(--black); transition: background 0.25s, color 0.25s; }
.btn-yellow, .btn-flat { background: var(--cream); color: var(--black); border-color: var(--black); }
.btn-yellow:hover, .btn-flat:hover { background: var(--black); color: var(--cream); }
.btn-pill { background: transparent; color: var(--black); border-color: var(--black); }
.btn-pill:hover { background: var(--black); color: var(--cream); }
.btn .arrow, .btn-square .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow, .btn-square:hover .arrow { transform: translateX(5px); }
.arrow { font-family: var(--font-body); }

/* link with arrow caption */
.cap-link { font-weight: 600; font-size: 19px; display: inline-flex; gap: 10px; align-items: center; }
.cap-link .arrow { transition: transform 0.3s var(--ease); }
.cap-link:hover .arrow { transform: translateX(6px); }

/* ============================ HEADER ============================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  color: var(--cream);
  text-shadow: 0 1px 14px rgba(0,0,0,0.5);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), padding 0.4s var(--ease);
}
.header.solid { background: var(--black); color: var(--cream); text-shadow: none; padding: 13px var(--gutter); box-shadow: none; }
.header nav { display: flex; gap: 30px; align-items: center; }
.header nav.right { justify-content: flex-end; }
.header nav a { font-family: var(--font-body); font-size: 17px; font-weight: 500; opacity: 0.92; transition: opacity 0.2s; }
.header nav a:hover { opacity: 1; }
.logo {
  font-family: var(--font-serif); text-transform: uppercase; text-align: center;
  font-weight: 700; line-height: 0.98; letter-spacing: 0.28em;
  font-size: clamp(18px, 1.65vw, 23px); padding-left: 0.28em;
}
.logo b { display: block; font-weight: 700; }
.logo-img { height: clamp(46px, 5.2vw, 62px); width: auto; display: block; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3)); }
.header .actions { display: flex; gap: 10px; align-items: center; justify-content: flex-end; }
.btn-square { background: var(--cream); color: var(--black); border-radius: 6px; padding: 11px 20px; font-weight: 700; font-size: 15px; line-height: 1; white-space: nowrap; display: inline-flex; gap: 9px; align-items: center; }
.btn-square:hover { background: var(--black); color: var(--cream); }
.burger-btn { display: none; }

/* ============================ HERO ============================ */
.hero { position: relative; height: 100vh; height: 100svh; min-height: 620px; overflow: hidden; display: flex; align-items: flex-end; }
.hero video, .hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.18) 24%, rgba(0,0,0,0.12) 55%, rgba(0,0,0,0.55) 100%); z-index: 1; }
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 0 var(--gutter) clamp(40px, 7vh, 88px); }
.hero__title { color: var(--cream); font-family: var(--font-script); font-weight: 400; text-transform: none; line-height: 1; letter-spacing: 0.01em; font-size: clamp(46px, 10vw, 168px); text-shadow: 0 4px 40px rgba(0,0,0,0.45); }
.hero__title .line { display: block; overflow: hidden; white-space: nowrap; }
.hero__title .line > span { display: block; transform: translateY(108%); animation: rise 1s var(--ease) forwards; }
.hero__title .line:nth-child(2) > span { animation-delay: 0.09s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.18s; }
@keyframes rise { to { transform: translateY(0); } }
.hero__cta { margin-top: clamp(22px, 3vh, 38px); display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: fadeup 0.9s var(--ease) 0.5s forwards; }
.btn-menu {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 11px 22px; border-radius: 6px;
  transition: background 0.25s, color 0.25s;
}
.btn-menu:hover { background: var(--black); color: var(--cream); }
.btn-menu .arrow { transition: transform 0.3s var(--ease); }
.btn-menu:hover .arrow { transform: translateX(5px); }
@keyframes fadeup { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ============================ ROTATING STAMP ============================ */
.stamp { width: clamp(140px, 15vw, 230px); height: clamp(140px, 15vw, 230px); position: relative; }
.stamp svg { width: 100%; height: 100%; animation: spin 26s linear infinite; }
.stamp text { font-family: var(--font-body); font-size: 9.2px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; fill: currentColor; }
.stamp__mono { position: absolute; inset: 0; display: grid; place-content: center; font-family: var(--font-serif); font-weight: 700; font-size: clamp(22px, 2.6vw, 40px); letter-spacing: 0.05em; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================ SECTIONS ============================ */
.section { padding: clamp(70px, 9vw, 150px) 0; }
.bg-yellow { background: #c5ae8d; }
.bg-cream { background: var(--parchment); }
.bg-curd { background: var(--curd); }
.bg-dark { background: var(--black); color: var(--cream); }

/* STORY (yellow full-bleed) */
.story__grid { display: grid; grid-template-columns: 1.5fr auto; gap: 40px; align-items: start; }
.story__body { max-width: 760px; }
.story__body .eyebrow { display: block; margin-bottom: 18px; }
.story__lead { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 3.4vw, 50px); line-height: 1.14; letter-spacing: -0.01em; margin-bottom: 6px; }
.story__lead em { font-family: var(--font-serif); font-style: italic; }
.story__more { margin-top: 40px; }
.story .stamp { color: var(--black); justify-self: end; }

/* EXPERIENCES (asymmetric, borderless) */
.exp-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: clamp(30px, 5vw, 70px); flex-wrap: wrap; }
.exp-head p { max-width: 360px; color: var(--stone); font-size: 17px; }
.exp-list { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 86px) clamp(24px, 4vw, 64px); }
.exp { position: relative; display: block; }
.exp:nth-child(even) { margin-top: clamp(28px, 5vw, 84px); }
.exp__media { position: relative; overflow: hidden; aspect-ratio: 4/3.1; }
.exp__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.exp:hover .exp__media img { transform: scale(1.04); }
.exp__loc { position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--cream); color: var(--black); font-size: 14px; font-weight: 500; padding: 5px 14px; border-radius: 999px; }
.exp__info { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: 22px; }
.exp__info h3 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(26px, 3vw, 46px); line-height: 0.94; letter-spacing: -0.015em;
}
.exp__info h3 .dot { color: var(--accent, var(--yellow)); }
.exp__info .cap-link { color: var(--stone); font-size: 17px; white-space: nowrap; padding-bottom: 6px; }
.exp:hover .exp__info h3 { color: var(--accent, var(--black)); transition: color 0.3s var(--ease); }

/* OUR CHEESE (yellow, oversized type) */
.cheese-hero { position: relative; overflow: hidden; }
.cheese-hero__word {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  color: var(--cream); font-size: clamp(58px, 18vw, 360px); line-height: 0.86;
  letter-spacing: 0; text-align: center; pointer-events: none;
}
.cheese-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; margin-top: clamp(40px, 5vw, 76px); }
.cheese-hero__copy { max-width: 560px; }
.cheese-hero__copy .eyebrow { display: block; margin-bottom: 16px; }
.cheese-hero__copy p { font-size: clamp(20px, 2.1vw, 30px); line-height: 1.3; }
.cheese-hero__photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.cheese-hero__stamp { display: none; }

/* cheese cards */
.cheese-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 34px); margin-top: clamp(60px, 7vw, 110px); }
.ccard__img { aspect-ratio: 1/1; overflow: hidden; }
.ccard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.ccard:hover .ccard__img img { transform: scale(1.06); }
.ccard h3 { font-family: var(--font-serif); font-weight: 700; font-size: 25px; margin: 16px 0 6px; }
.ccard p { font-size: 15.5px; color: var(--stone); line-height: 1.5; }

/* MENU */
.menu-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: clamp(36px, 5vw, 64px); flex-wrap: wrap; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 100px); align-items: start; }
.menu-col h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -0.01em; }
.menu-col .note { color: var(--red); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin: 6px 0 22px; }
.m-item { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(35,36,37,0.14); }
.m-item .name { font-weight: 700; font-size: 18px; }
.m-item .desc { font-size: 14.5px; color: var(--stone); margin-top: 2px; }
.m-item .price { font-family: var(--font-serif); font-weight: 700; font-size: 23px; white-space: nowrap; }
.menu-foot { margin-top: 26px; font-size: 14.5px; color: var(--stone); }

/* CHARITY (dark) */
.charity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.charity-grid img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.charity__lead { font-family: var(--font-serif); font-style: italic; font-size: clamp(28px, 3.4vw, 50px); line-height: 1.16; margin-bottom: 22px; }
.charity__lead b { font-style: normal; color: var(--black); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip { border: 1.5px solid rgba(35,36,37,0.25); border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 600; }
.chip--y { background: var(--yellow); color: var(--black); border-color: var(--black); }

/* REVIEWS MARQUEE — photo behind, beige-white text, seamless loop */
.bg-reviews { position: relative; color: var(--cream); background: var(--black); overflow: hidden; }
.bg-reviews .bgimg { display: block; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.bg-reviews::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,16,0.66) 0%, rgba(20,18,16,0.58) 50%, rgba(20,18,16,0.66) 100%); z-index: 1; }
.bg-reviews .wrap, .bg-reviews .reviews-rows { position: relative; z-index: 2; }
.reviews-rows { display: flex; flex-direction: column; gap: clamp(26px, 3.2vw, 48px); }
.marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; width: max-content; will-change: transform; }
.rev { flex: 0 0 clamp(288px, 24vw, 360px); margin-right: clamp(28px, 3vw, 54px); display: flex; flex-direction: column; }
.rev-stars { color: var(--cream); font-size: 15px; letter-spacing: 4px; margin-bottom: 16px; }
.rev blockquote { font-family: var(--font-serif); font-style: italic; font-size: clamp(19px, 1.7vw, 26px); line-height: 1.36; text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
.rev figcaption { margin-top: 16px; font-family: var(--font-script); font-size: 22px; color: var(--cream); }
.rev figcaption span { color: rgba(239,227,203,0.65); font-size: 14px; font-family: var(--font-body); }

/* CTA */
.cta { text-align: center; }
.cta__big { color: var(--black); font-size: clamp(44px, 9vw, 150px); margin: 18px 0 26px; }
.cta__big a { color: var(--black); transition: color 0.25s; }
.cta__big a:hover { text-decoration: underline; }
.cta__row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* FOOTER */
.footer { background: var(--curd); color: var(--black); padding: clamp(40px, 5vw, 70px) 0 36px; }
.footer__top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding-bottom: 30px; }
.footer__menu { background: var(--black); color: var(--cream); border-radius: 7px; padding: 12px 18px; font-weight: 600; display: inline-flex; gap: 10px; align-items: center; }
.footer .logo { color: var(--black); }
.footer__back { justify-self: end; font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; display: inline-flex; gap: 8px; align-items: center; }
.footer__hr { height: 1px; background: rgba(35,36,37,0.2); margin: 8px 0 clamp(40px, 5vw, 70px); }
.footer__cols { display: grid; grid-template-columns: 0.9fr repeat(3, 1fr); gap: 40px; margin-bottom: clamp(40px, 5vw, 70px); }
.footer .stamp { color: var(--black); }
.footer__col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; font-size: 17px; font-weight: 500; }
.footer__col a:hover { text-decoration: underline; }
.footer__bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; border-top: 1px solid rgba(35,36,37,0.2); padding-top: 26px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.socials { display: flex; gap: 10px; }
.footer__bottom .socials { justify-self: center; }
.footer__bottom > span:last-of-type { justify-self: end; text-align: right; }
.socials a svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.socials a { width: 44px; height: 44px; border: 1.5px solid rgba(35,36,37,0.35); border-radius: 50%; display: grid; place-content: center; font-size: 13px; transition: background 0.25s, color 0.25s; }
.socials a:hover { background: var(--black); color: var(--cream); }

/* ============================ MENU PAGE ============================ */
.menu-hero { background: #c5ae8d; padding: clamp(96px, 11vw, 170px) 0 clamp(34px, 4vw, 64px); }
.menu-hero .back { display: inline-block; margin-bottom: 22px; font-weight: 600; font-size: 16px; }
.menu-hero .back:hover { color: var(--black); }
.menu-hero h1 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(60px, 15vw, 220px); line-height: 0.86; letter-spacing: 0; }
.menu-hero .sub { margin-top: 20px; font-size: clamp(18px, 2vw, 25px); max-width: 660px; line-height: 1.35; }
/* menu artwork pages */
.menu-pages { padding: clamp(34px, 4vw, 64px) 0 clamp(40px, 5vw, 80px); }
.menu-pages .wrap { display: flex; flex-direction: column; gap: clamp(26px, 3.4vw, 54px); align-items: center; }
.menu-page { margin: 0; width: 100%; max-width: 760px; }
.menu-page img { width: 100%; height: auto; display: block; box-shadow: 0 22px 54px rgba(33,31,32,0.28); }
.menu-section { padding: clamp(46px, 6vw, 92px) 0; }
.menu-section + .menu-section { border-top: 1px solid rgba(35,36,37,0.12); }
.cat-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(26px, 3vw, 46px); }
.cat-head h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(30px, 4.4vw, 64px); letter-spacing: -0.015em; line-height: 0.95; }
.cat-head .price-tag { font-family: var(--font-serif); font-style: italic; font-size: clamp(17px, 1.7vw, 24px); color: var(--black); white-space: nowrap; }
.feature { display: grid; grid-template-columns: 1fr auto; gap: 4px 28px; padding: 26px 0; align-items: baseline; }
.feature + .feature { border-top: 1px solid rgba(35,36,37,0.12); }
.feature h3 { font-weight: 700; font-size: clamp(21px, 2.2vw, 30px); }
.feature .price { font-family: var(--font-serif); font-weight: 700; font-size: clamp(24px, 2.4vw, 34px); }
.feature p { grid-column: 1 / 2; color: var(--stone); font-size: 16.5px; line-height: 1.5; margin-top: 4px; }
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 36px) clamp(24px, 3vw, 50px); }
.dish h3 { font-weight: 700; font-size: 18px; }
.dish p { color: var(--stone); font-size: 14.5px; margin-top: 4px; line-height: 1.45; }
.price-cols { columns: 2; column-gap: clamp(36px, 6vw, 90px); }
.price-line { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px dashed rgba(35,36,37,0.2); break-inside: avoid; }
.price-line .price { font-family: var(--font-serif); font-weight: 700; }
.menu-note { background: var(--curd); border-radius: 14px; padding: 30px 32px; font-size: 15.5px; color: #4a4a4a; line-height: 1.6; }
.menu-note strong { color: var(--black); }
.menu-cta { text-align: center; padding: clamp(50px, 7vw, 110px) 0; }
.menu-cta h2 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(34px, 6vw, 90px); line-height: 0.9; margin-bottom: 26px; }
@media (max-width: 900px) { .dish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dish-grid { grid-template-columns: 1fr; } .price-cols { columns: 1; } }

/* reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* drawer */
.drawer { position: fixed; inset: 0; z-index: 200; background: var(--black); color: var(--cream); transform: translateY(-100%); transition: transform 0.5s var(--ease); padding: 26px var(--gutter); display: flex; flex-direction: column; }
.drawer.open { transform: none; }
.drawer__x { align-self: flex-end; background: none; border: none; color: var(--cream); font-size: 38px; cursor: pointer; line-height: 1; }
.drawer nav { display: flex; flex-direction: column; gap: 4px; margin-top: 24px; }
.drawer nav a { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(32px, 9vw, 60px); line-height: 1.06; }
.drawer nav a:hover { text-decoration: underline; }

/* ============================ RESPONSIVE ============================ */
.lbl-short { display: none; }
@media (max-width: 1000px) {
  /* logo left, then Menu + Book a Table buttons + hamburger (rest of nav in drawer) */
  .header { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 11px var(--gutter); }
  .header.solid { padding: 9px var(--gutter); }
  .header nav { display: none; }
  .logo { text-align: left; padding-left: 0; }
  .logo-img { height: 44px; }
  .header .actions { gap: 8px; }
  .btn-square { padding: 0 14px; font-size: 14px; height: 44px; }
  .burger-btn { display: inline-flex; align-items: center; justify-content: center; background: var(--cream); color: var(--black); border: none; border-radius: 6px; padding: 0; width: 44px; height: 44px; font-size: 19px; line-height: 1; cursor: pointer; }
  .story__grid, .exp-list, .cheese-hero__grid, .menu-grid, .charity-grid { grid-template-columns: 1fr; }
  .exp:nth-child(even) { margin-top: 0; }
  .cheese-cards { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .story .stamp { display: none; }
  .cheese-hero__stamp { display: none; }
}
@media (max-width: 600px) {
  .footer__bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 12px; }
  .footer__bottom > span:last-of-type { justify-self: center; text-align: center; }
  .btn-square .arrow { display: none; }          /* compact header CTAs */
  .btn-square { padding: 0 13px; }
  .header .actions { gap: 7px; }
  .cheese-cards { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; justify-items: center; gap: 16px; text-align: center; }
  .footer__back { justify-self: center; }
  .footer .stamp { display: none; }
  .m-item .desc { display: none; }
  .exp__cap { text-align: left; }
}
/* menu document on phones: stop long rows forcing horizontal overflow */
@media (max-width: 700px) {
  .md-item .desc, .feature p { max-width: none; }
  .md-item .row { gap: 12px; }
  .md-item .row .nm { min-width: 0; }            /* long names (e.g. Cumberland sausage) wrap instead of overflowing */
  .md-line { justify-content: space-between; gap: 14px; }
  .md-line .nm { flex: 1 1 auto; min-width: 0; }
  .md-line .dots { display: none; }
  .feature { gap: 4px 14px; }
  .feature h3 { min-width: 0; }
  .menu-doc__head { gap: 12px; }
  .menu-doc__head h2, .menu-doc__head h1 { font-size: clamp(34px, 9vw, 56px); }
  .menu-doc__head img { height: clamp(44px, 11vw, 60px); }
}
@media (max-width: 520px) {
  .lbl-full { display: none; }
  .lbl-short { display: inline; }
  .logo-img { height: 40px; }
  .btn-square { padding: 0 12px; font-size: 13.5px; }
}
@media (max-width: 480px) {
  :root { --gutter: 18px; }
  .section { padding: 58px 0; }
  .cheese-cards { grid-template-columns: 1fr 1fr; }
  .gallery--4 { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .hero { min-height: 540px; }
  .menu-doc { padding: 26px 18px; }
  .menu-doc::before { inset: 8px; }
  .menu-doc .cnr { width: 16px; height: 16px; top: 14px; left: 14px; }
  .menu-doc .cnr.tr { left: auto; right: 14px; } .menu-doc .cnr.bl { top: auto; bottom: 14px; } .menu-doc .cnr.br { top: auto; bottom: 14px; left: auto; right: 14px; }
  .fb-feature__stat { font-size: clamp(38px, 12vw, 56px); }
}

/* ============================ SHARED PAGE COMPONENTS ============================ */
.page-hero { background: #c5ae8d; padding: clamp(110px, 12vw, 190px) 0 clamp(40px, 5vw, 76px); }
.page-hero .back { display: inline-block; margin-bottom: 20px; font-weight: 600; font-size: 16px; }
.page-hero .back:hover { text-decoration: underline; }
.page-hero h1 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(48px, 11vw, 168px); line-height: 0.9; }
.page-hero .sub { margin-top: 18px; font-size: clamp(18px, 2vw, 26px); max-width: 700px; line-height: 1.4; }
.lead { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3vw, 44px); line-height: 1.18; }
.prose p { font-size: clamp(18px, 1.4vw, 21px); line-height: 1.6; margin-top: 18px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 90px); align-items: center; }
.split img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split--portrait img { aspect-ratio: 4/5; }
.section-head { margin-bottom: clamp(34px, 5vw, 66px); }
.section-head .eyebrow { display: block; margin-bottom: 10px; }

/* stats */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 50px); }
.stat-b { text-align: center; }
.stat-b b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 5vw, 80px); line-height: 1; }
.stat-b span { display: block; margin-top: 10px; font-family: var(--font-script); font-size: 21px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.step { }
.step .n { font-family: var(--font-display); font-weight: 800; font-size: 40px; line-height: 1; opacity: 0.4; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin: 10px 0 8px; }
.step p { color: var(--stone); font-size: 16.5px; line-height: 1.5; }

/* team */
.team { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); }
.team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.team-card h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 2.4vw, 36px); margin: 18px 0 4px; }
.team-card .role { font-family: var(--font-script); font-size: 22px; margin-bottom: 10px; }
.team-card p { color: var(--stone); font-size: 17px; line-height: 1.5; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.gallery--4 { grid-template-columns: repeat(4, 1fr); }

/* facebook embed */
.fb-wrap { display: flex; justify-content: center; margin-top: clamp(30px, 4vw, 50px); }
/* two-column facebook feature (fills the width; the FB plugin is capped at 500px) */
.fb-feature { display: grid; grid-template-columns: 1fr clamp(360px, 38vw, 500px); gap: clamp(36px, 5vw, 84px); align-items: center; text-align: left; }
.fb-feature__text .eyebrow { display: block; margin-bottom: 10px; }
.fb-feature__text h2 { margin-bottom: 18px; }
.fb-feature__text p { font-size: clamp(18px, 1.5vw, 22px); max-width: 46ch; margin-bottom: 22px; }
.fb-feature__stat { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 4.6vw, 72px); line-height: 1; }
.fb-feature__stat span { display: block; margin-top: 6px; font-family: var(--font-script); font-size: 24px; font-weight: 400; }
.fb-feature__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.fb-embed { width: 100%; max-width: 500px; justify-self: end; }
.fb-wrap .fb-page, .fb-wrap span, .fb-wrap iframe { max-width: 100% !important; }
.fb-embed .fb-page, .fb-embed span, .fb-embed iframe { width: 100% !important; max-width: 100% !important; }
@media (max-width: 900px) {
  .fb-feature { grid-template-columns: 1fr; text-align: center; }
  .fb-feature__text p { margin-left: auto; margin-right: auto; }
  .fb-feature__cta { justify-content: center; }
  .fb-embed { justify-self: center; }
}

/* booking form */
.booking { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.booking-form .fg { display: flex; flex-direction: column; gap: 7px; }
.booking-form .fg.full { grid-column: 1 / -1; }
.booking-form label { font-family: var(--font-script); font-size: 20px; }
.booking-form input, .booking-form select, .booking-form textarea {
  font-family: var(--font-body); font-size: 17px; padding: 13px 15px; color: var(--black);
  background: var(--cream); border: 1.5px solid var(--black); border-radius: 5px; width: 100%;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { outline: 2px solid var(--black); outline-offset: 1px; }
.booking-form .helper { font-size: 14px; color: var(--stone); }
.booking-aside { background: var(--curd); border: 1.5px solid var(--black); padding: clamp(24px, 3vw, 36px); }
.booking-aside h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; margin-bottom: 8px; }
.booking-aside p { font-size: 16.5px; line-height: 1.55; margin-bottom: 14px; }
.booking-aside p:last-child { margin-bottom: 0; }
.map-embed { margin-top: clamp(40px, 5vw, 70px); border: 1.5px solid var(--black); }
.map-embed iframe { width: 100%; height: clamp(280px, 38vw, 460px); display: block; border: 0; }

/* 404 */
.notfound { min-height: 80vh; min-height: 80svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 22px; padding: 140px var(--gutter) 80px; }
.notfound h1 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(80px, 20vw, 280px); line-height: 0.9; }

@media (max-width: 900px) {
  .split, .team, .booking { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .steps, .gallery, .gallery--4 { grid-template-columns: 1fr 1fr; }
  .booking-form { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================ MENU DOCUMENT (real HTML, replicating the artwork) ============================ */
.menu-stage { padding: clamp(98px, 11vw, 134px) 0 clamp(50px, 6vw, 90px); }
.menu-stage .wrap { max-width: 1560px; }
.menu-doc { position: relative; background: var(--cream); border: 3px solid var(--black); padding: clamp(30px, 4vw, 64px); margin-bottom: clamp(34px, 4vw, 60px); box-shadow: 0 22px 54px rgba(33,31,32,0.22); }
.menu-doc::before { content: ''; position: absolute; inset: 10px; border: 1.5px solid var(--black); pointer-events: none; }
.menu-doc .cnr { position: absolute; width: 22px; height: 22px; border: 2px solid var(--black); z-index: 2; }
.menu-doc .cnr.tl { top: 18px; left: 18px; border-right: none; border-bottom: none; }
.menu-doc .cnr.tr { top: 18px; right: 18px; border-left: none; border-bottom: none; }
.menu-doc .cnr.bl { bottom: 18px; left: 18px; border-right: none; border-top: none; }
.menu-doc .cnr.br { bottom: 18px; right: 18px; border-left: none; border-top: none; }
.menu-doc__head { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2vw, 30px); border-bottom: 2px solid var(--black); padding-bottom: clamp(16px, 2vw, 26px); margin-bottom: clamp(24px, 3vw, 40px); }
.menu-doc__head img { height: clamp(54px, 6vw, 82px); width: auto; }
.menu-doc__head h2, .menu-doc__head h1 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(38px, 6vw, 92px); line-height: 0.9; letter-spacing: 0.02em; }
.menu-doc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); }
.menu-doc__grid > .col + .col { border-left: 1.5px solid var(--black); padding-left: clamp(28px, 4vw, 56px); }
.md-title { font-family: 'Pinyon Script', cursive; font-size: clamp(40px, 5vw, 70px); line-height: 1.05; margin: 4px 0 18px; }
.md-note-top { font-size: 14px; font-style: italic; color: var(--stone); text-align: center; margin-bottom: 18px; }
/* platter / feature item */
.md-item { padding: 14px 0; border-bottom: 1px solid rgba(33,31,32,0.18); }
.md-item:last-child { border-bottom: none; }
.md-item .row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.md-item .nm { font-weight: 700; font-size: clamp(17px, 1.5vw, 21px); }
.md-item .pr { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 1.5vw, 23px); white-space: nowrap; text-align: right; }
.md-item .pr small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.md-item .desc { font-style: italic; color: var(--stone); font-size: 15px; line-height: 1.45; margin-top: 4px; max-width: 46ch; }
/* leader line (drinks) */
.md-line { display: flex; align-items: baseline; gap: 8px; padding: 7px 0; }
.md-line .nm { font-size: 16.5px; }
.md-line .dots { flex: 1; border-bottom: 1.5px dotted rgba(33,31,32,0.4); position: relative; top: -5px; }
.md-line .pr { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; white-space: nowrap; }
.md-line .sub { display: block; font-size: 13px; font-style: italic; color: var(--stone); }
/* framed sub-box (fondue / please note) */
.md-box { position: relative; border: 1.5px solid var(--black); padding: clamp(20px, 2.4vw, 30px); text-align: center; margin-bottom: 26px; }
.md-box .cnr { position: absolute; width: 14px; height: 14px; border: 2px solid var(--black); }
.md-box .cnr.tl { top: 7px; left: 7px; border-right: none; border-bottom: none; }
.md-box .cnr.tr { top: 7px; right: 7px; border-left: none; border-bottom: none; }
.md-box .cnr.bl { bottom: 7px; left: 7px; border-right: none; border-top: none; }
.md-box .cnr.br { bottom: 7px; right: 7px; border-left: none; border-top: none; }
.md-box.italic p { font-style: italic; font-size: 15.5px; line-height: 1.5; }
.md-box .price-big { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 40px); margin: 10px 0 4px; }
.md-box .price-sub { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.md-foot { text-align: center; font-size: 14px; font-style: italic; color: var(--stone); margin-top: 22px; }
/* cocktail columns */
.md-cocktails { columns: 3; column-gap: clamp(30px, 3vw, 54px); }
.md-sec { break-inside: avoid; margin-bottom: 26px; }
.md-sec .price-note { font-style: italic; font-size: 13.5px; color: var(--stone); margin: -10px 0 12px; }
.md-ck { padding: 6px 0; }
.md-ck .nm { font-weight: 700; font-size: 16px; }
.md-ck .ing { font-style: italic; color: var(--stone); font-size: 13.5px; }
@media (max-width: 1100px) { .md-cocktails { columns: 2; } }
@media (max-width: 820px) {
  .menu-doc__grid { grid-template-columns: 1fr; }
  .menu-doc__grid > .col + .col { border-left: none; padding-left: 0; border-top: 1.5px solid var(--black); padding-top: 30px; }
  .md-cocktails { columns: 1; }
}

/* ============================ HAMPER CARDS ============================ */
.hamper-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 30px); }
.hamper-card { border: 1.5px solid var(--black); background: var(--cream); padding: clamp(22px, 2.4vw, 34px); display: flex; flex-direction: column; }
.hamper-card h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(20px, 1.8vw, 27px); line-height: 1; margin-bottom: 16px; }
.hamper-card ul { list-style: none; margin: 0 0 20px; padding: 0; }
.hamper-card li { font-size: 16px; padding: 6px 0; border-bottom: 1px dotted rgba(33,31,32,0.22); }
.hamper-card li:last-child { border-bottom: none; }
.hamper-card .price { margin-top: auto; font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 3vw, 46px); line-height: 1; }
.hamper-card .price small { display: block; margin-top: 6px; font-family: var(--font-body); font-weight: 400; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--stone); }
.hamper-note { border: 1.5px solid var(--black); background: var(--curd); padding: clamp(24px, 3vw, 38px); text-align: center; margin-top: clamp(24px, 3vw, 42px); }
.hamper-note .free { font-family: var(--font-script); font-size: clamp(30px, 3.4vw, 48px); display: block; margin-bottom: 10px; }
.hamper-note p { font-size: 17px; line-height: 1.55; max-width: 760px; margin: 0 auto; }
@media (max-width: 900px){ .hamper-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .hamper-grid { grid-template-columns: 1fr; } }

/* press / video embed */
.video-embed { max-width: 860px; margin: clamp(30px, 4vw, 52px) auto 0; border: 1.5px solid var(--black); aspect-ratio: 16/9; background: var(--black); }
.video-embed iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ============================ ACCESSIBILITY ============================ */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 10000; background: var(--black); color: var(--cream); padding: 12px 18px; font-family: var(--font-body); font-weight: 700; border-radius: 0 0 6px 0; }
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .btn:focus-visible, .btn-square:focus-visible { outline: 3px solid var(--black); outline-offset: 3px; }
.header.solid a:focus-visible, .header a:focus-visible { outline-color: var(--cream); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .preloader__logo, .pg__liquid, .pg__b, .hero__title .line > span, .hero__cta { animation: none !important; }
  .marquee__track { transform: none !important; }
  .stamp svg { animation: none !important; }
}

/* ============================ MENU TYPE (match artwork: Oswald bold condensed) ============================ */
.menu-doc__head h2, .menu-doc__head h1 { font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: 0.01em; }
.md-item .nm, .md-line .nm, .md-ck .nm, .feature h3 { font-family: 'Oswald', sans-serif; font-weight: 600; }
.md-item .pr, .md-line .pr, .md-box .price-big, .feature .price { font-family: 'Oswald', sans-serif; font-weight: 600; }
.md-item .pr small { font-family: 'Oswald', sans-serif; font-weight: 500; }
.md-sec .price-note { font-family: 'Oswald', sans-serif; font-weight: 600; font-style: normal; text-transform: uppercase; letter-spacing: 0.04em; font-size: 14px; color: var(--black); margin: 4px 0 14px; }
.md-box .price-sub, .md-line .nm .sub { font-family: 'EB Garamond', serif; }

/* ============================ BACKGROUND MUSIC TOGGLE ============================ */
.sound-toggle {
  position: fixed; right: clamp(14px, 2.5vw, 26px); bottom: clamp(14px, 2.5vw, 26px); z-index: 120;
  width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--black);
  background: var(--cream); color: var(--black); cursor: pointer;
  display: grid; place-content: center; box-shadow: 0 8px 22px rgba(33,31,32,0.28);
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(0.9); pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.25s, color 0.25s;
}
.sound-toggle.show { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.sound-toggle:hover { background: var(--black); color: var(--cream); }
.sound-toggle svg { width: 28px; height: 28px; display: block; fill: currentColor; }
.sound-toggle .ico-off { display: none; }
.sound-toggle.muted .ico-on { display: none; }
.sound-toggle.muted .ico-off { display: block; }
@media (max-width: 600px) {
  .sound-toggle { width: 68px; height: 68px; }
  .sound-toggle svg { width: 30px; height: 30px; }
  .hero__title { font-size: clamp(56px, 14.5vw, 92px); }
}

/* ============================ AWARD BADGE BAND ============================ */
.award-band { display: grid; grid-template-columns: auto 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.award-badge { margin: 0; background: #120f0e; border-radius: 14px; padding: 14px; box-shadow: 0 16px 42px rgba(33,31,32,0.32); }
.award-badge img { display: block; width: auto; height: clamp(280px, 32vw, 420px); border-radius: 6px; }
.award-text .eyebrow { display: block; margin-bottom: 10px; }
.award-text p { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.55; max-width: 50ch; margin-top: 6px; }
@media (max-width: 780px) {
  .award-band { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .award-text p { margin-left: auto; margin-right: auto; }
  .award-badge img { height: clamp(240px, 62vw, 340px); }
}

/* ============================ MOBILE: touch feedback + notch safe-areas (research pass) ============================ */
a, button, .btn, .btn-square, .burger-btn, .exp, .ccard, .sound-toggle, .footer__menu, .footer__back { -webkit-tap-highlight-color: transparent; }
@media (hover: none) {
  .btn:active, .btn-square:active, .burger-btn:active, .sound-toggle:active, .footer__menu:active { transform: scale(0.96); }
}
.header { padding-left: max(var(--gutter), env(safe-area-inset-left)); padding-right: max(var(--gutter), env(safe-area-inset-right)); }
.drawer { padding-left: max(var(--gutter), env(safe-area-inset-left)); padding-right: max(var(--gutter), env(safe-area-inset-right)); }
.sound-toggle { right: calc(clamp(16px, 2.5vw, 28px) + env(safe-area-inset-right)); bottom: calc(clamp(16px, 2.5vw, 28px) + env(safe-area-inset-bottom)); }

/* footer credit */
.footer__credit { text-align: center; margin-top: 24px; font-family: var(--font-script); font-size: 20px; color: var(--black); opacity: 0.78; }

/* facebook facade card (static, replaces the live SDK embed) */
.fb-card { display: flex; align-items: center; gap: 18px; width: 100%; min-height: 200px; padding: clamp(22px,3vw,38px); background: var(--cream); border: 1.5px solid var(--black); color: var(--black); transition: background 0.25s, color 0.25s; }
.fb-card:hover { background: var(--black); color: var(--cream); }
.fb-card__f { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 8px; background: var(--black); color: var(--cream); display: grid; place-content: center; font-family: var(--font-serif); font-weight: 700; font-size: 30px; transition: background 0.25s, color 0.25s; }
.fb-card:hover .fb-card__f { background: var(--cream); color: var(--black); }
.fb-card__body { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
.fb-card__body strong { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px,2vw,28px); line-height: 1.05; }
.fb-card__body span { font-size: 15px; opacity: 0.82; }
.fb-card__cta { flex: 0 0 auto; font-weight: 700; font-size: 15px; white-space: nowrap; }
.video-embed .fb-card { height: 100%; }

/* Lenis smooth scroll: stop native scroll-behavior:smooth from fighting Lenis */
html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* page hero with background image (cheese-experience, hampers, charity) */
.page-hero.has-bg { position: relative; overflow: hidden; color: var(--cream); background-size: cover; background-position: center; background-repeat: no-repeat; }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero.has-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,16,0.46) 0%, rgba(20,18,16,0.66) 100%); z-index: 1; }
.page-hero.has-bg .wrap { position: relative; z-index: 2; }
.page-hero.has-bg .back, .page-hero.has-bg .eyebrow, .page-hero.has-bg h1, .page-hero.has-bg .sub { color: var(--cream); }

/* smaller hero title on image heroes so it doesn't swamp the photo */
.page-hero.has-bg h1 { font-size: clamp(36px, 7vw, 92px); }
.page-hero.has-bg .sub { max-width: 620px; }

/* fixed-background parallax: image stays pinned, content scrolls over it (desktop only) */
.parallax-bg { background-size: cover; background-position: center; background-repeat: no-repeat; }
@media (min-width: 1025px) and (prefers-reduced-motion: no-preference) {
  .parallax-bg { background-attachment: fixed; }
}

/* homepage hero address / info line */
.hero__meta { margin-top: clamp(16px, 2.4vh, 30px); color: var(--cream); font-family: var(--font-body); font-size: clamp(15px, 1.5vw, 21px); line-height: 1.6; text-shadow: 0 2px 16px rgba(0,0,0,0.55); }
.hero__meta a { text-decoration: underline; text-underline-offset: 3px; }
.hero__meta a:hover { opacity: 0.82; }

/* booking page: call-to-action instead of a form */
.booking-cta { align-self: center; }
.booking-cta__h { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(30px, 3.6vw, 54px); line-height: 1.02; margin: 8px 0 18px; }
.booking-cta p { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; max-width: 52ch; margin-bottom: 30px; color: var(--stone); }
.booking-cta__row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-big { display: inline-flex; align-items: center; gap: 10px; background: var(--cream); color: var(--black); border: 1.5px solid var(--black); padding: 16px 28px; font-family: var(--font-body); font-weight: 700; font-size: 18px; border-radius: 6px; transition: background 0.25s, color 0.25s; }
.btn-big:hover { background: var(--black); color: var(--cream); }
.btn-big--ghost { background: transparent; }
.btn-big .arrow { transition: transform 0.3s var(--ease); }
.btn-big:hover .arrow { transform: translateX(5px); }
