/* ============================================================
   BAR FRANCO — Home
   Red #BE1622 · Charcoal #1D1D1B · Paper / Cream
   VTC Marsha (display) · Affairs (serif body)
   ============================================================ */

:root {
  --red: #BE1622;
  --red-deep: #9b1420;
  --ink: #1D1D1B;
  --paper: #FCFBF7;
  --cream: #F4EEE1;
  --muted: #6e655c;
  --line: rgba(29,29,27,.14);
  --redline: rgba(190,22,34,.28);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Affairs", Georgia, serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 1.6;
}
img, image-slot { display: block; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-style: italic; letter-spacing: .34em; text-transform: uppercase;
  font-size: 12.5px; color: var(--red); margin: 0 0 18px;
}
.eyebrow.light { color: rgba(255,255,255,.82); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Affairs", serif; font-style: italic; font-size: 15px;
  text-decoration: none; cursor: pointer; border: none;
  padding: 12px 24px; border-radius: 2px;
  background: var(--red); color: #fff; letter-spacing: .02em;
  transition: background .15s, transform .15s;
}
.btn:hover { background: var(--red-deep); }
.btn.ghost { background: transparent; color: var(--ink); border: 1.4px solid var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.light { background: #fff; color: var(--red); }
.btn.light:hover { background: rgba(255,255,255,.86); }
.btn.lg { padding: 15px 30px; font-size: 16.5px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252,251,247,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: transform .35s ease;
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px;
  height: 72px; display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 30px; width: auto; display: block; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-size: 15px;
  font-style: italic; letter-spacing: .02em;
}
.nav-links a:not(.btn):hover { color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-burger {
  display: none; margin-left: auto; width: 40px; height: 40px; border: none;
  background: none; cursor: pointer; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav-burger span { width: 22px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }

/* ---------- Section frame ---------- */
section { padding: 104px 0; }
.sec-cream { background: var(--cream); }
.sec-ink { background: var(--ink); color: var(--paper); }
.sec-red { background: var(--red); color: #fff; }
.sec-label {
  font-family: "VTC Marsha", serif; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: .12em; font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 14px; line-height: 1;
}
.sec-ink .sec-label, .sec-red .sec-label { color: #fff; }
.lede { font-size: 20px; max-width: 640px; color: var(--ink); margin: 0 0 8px; }
.sec-ink .lede, .sec-red .lede { color: rgba(255,255,255,.92); }

/* ---------- Hero ---------- */
.hero { padding: 86px 0 96px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
}
.hero-logo { height: clamp(58px, 9vw, 104px); width: auto; margin: 0 0 34px; }
.hero h1 {
  font-family: "VTC Marsha", serif; font-weight: 700; color: var(--red);
  font-size: clamp(40px, 5.4vw, 76px); line-height: .96; margin: 0;
  letter-spacing: .005em; text-wrap: balance;
}
.h1-geo { color: var(--ink); display: inline-block; }
.hero-sub {
  font-size: clamp(18px, 2vw, 22px); max-width: 520px; margin: 28px 0 0;
  line-height: 1.55; color: var(--ink);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 38px 0 0; }
.hero-media { position: relative; }
.hero-media img.photo { width: 100%; height: clamp(420px, 52vw, 600px); }
.hero-stamp {
  position: absolute; left: -26px; bottom: -26px; z-index: 2;
  background: var(--red); color: #fff; padding: 18px 22px; max-width: 220px;
  box-shadow: 0 12px 34px rgba(190,22,34,.28);
}
.hero-stamp .st-k { font-style: italic; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.78); margin: 0 0 6px; }
.hero-stamp .st-v { font-family: "VTC Marsha", serif; font-size: 19px; letter-spacing: .04em; line-height: 1.1; margin: 0; }
.hero-negroni {
  position: absolute; top: -42px; right: -30px; z-index: 3;
  width: clamp(96px, 13vw, 150px); height: auto;
  filter: drop-shadow(0 10px 20px rgba(190,22,34,.22));
  animation: bob 5.5s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) { .hero-negroni { animation: none; } }

/* ---------- Marquee strip ---------- */
.strip { background: var(--cream); color: var(--red); overflow: hidden; padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.strip-track span {
  font-family: "VTC Marsha", serif; text-transform: uppercase; letter-spacing: .14em;
  font-size: 17px; padding: 0 26px; display: inline-flex; align-items: center; gap: 26px;
}
.strip-track span::after { content: "•"; color: var(--ink); opacity: .35; font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.about h2 {
  font-family: "VTC Marsha", serif; font-weight: 700; color: var(--red);
  text-transform: uppercase; font-size: clamp(28px, 3.6vw, 44px); letter-spacing: .03em;
  margin: 14px 0 24px; line-height: 1.02;
}
.about p { max-width: 460px; margin: 0 0 18px; }
.about .btn { margin-top: 16px; }
/* photo cluster */
.cluster { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 22px; }
.cluster img.photo { width: 100%; display: block; }
.cluster .c-tall { grid-row: 1 / 3; height: clamp(360px, 44vw, 520px); }
.cluster .c-sm1 { height: clamp(170px, 20vw, 240px); }
.cluster .c-sm2 { height: clamp(170px, 22vw, 256px); }
.cluster .dog-badge {
  position: absolute; right: -16px; top: -22px; width: 76px; height: auto;
  transform: scaleX(-1) rotate(-6deg); z-index: 3;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.18));
}

/* ---------- Two levels ---------- */
.levels { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin-top: 50px; }
.level { position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--paper); display: flex; flex-direction: column; }
.level-mark {
  position: absolute; top: clamp(150px, 20vw, 230px); right: 24px; z-index: 2;
  width: clamp(72px, 8vw, 96px); height: auto; transform: translateY(-50%) rotate(4deg);
  filter: drop-shadow(0 6px 14px rgba(190,22,34,.28));
}
.level img.photo { width: 100%; height: clamp(240px, 26vw, 320px); }
.level-body { padding: 30px 34px 34px; }
.level-kicker { font-style: italic; color: var(--red); letter-spacing: .04em; margin: 0 0 8px; font-size: 15px; }
.level h3 {
  font-family: "VTC Marsha", serif; font-weight: 700; color: var(--ink);
  text-transform: uppercase; font-size: clamp(24px, 2.6vw, 32px); letter-spacing: .04em;
  margin: 0 0 14px; line-height: 1;
}
.level p { margin: 0 0 20px; color: var(--ink); font-size: 16.5px; }
.level .lv-meta { display: flex; gap: 28px; border-top: 1.5px solid var(--redline); padding-top: 16px; }
.lv-meta .m .n { font-family: "VTC Marsha", serif; color: var(--red); font-size: 26px; line-height: 1; }
.lv-meta .m .l { font-style: italic; color: var(--muted); font-size: 13px; margin-top: 4px; }

/* ---------- Events band (red) ---------- */
.events-band .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.events-band h2 {
  font-family: "VTC Marsha", serif; font-weight: 700; color: #fff;
  text-transform: uppercase; font-size: clamp(30px, 4.2vw, 56px); letter-spacing: .025em;
  margin: 0 0 22px; line-height: 1;
}
.events-band p { color: rgba(255,255,255,.92); max-width: 520px; margin: 0 0 30px; }
.eb-list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.eb-list li {
  font-style: italic; font-size: 14.5px; color: #fff;
  border: 1.3px solid rgba(255,255,255,.4); border-radius: 100px; padding: 7px 16px;
}
.events-band .eb-media img.photo { width: 100%; height: clamp(340px, 40vw, 460px); }
.eb-media { position: relative; }
.eb-media .dog-badge { position: absolute; left: -18px; bottom: -18px; width: 84px; transform: scaleX(-1); filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0,0,0,.3)); }

/* ---------- Moments gallery ---------- */
.moments { text-align: center; }
.moments .sec-label, .moments .lede { margin-left: auto; margin-right: auto; }
.moments .lede { text-align: center; }
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 50px 0 44px;
}
.gallery img.photo { width: 100%; height: clamp(180px, 18vw, 240px); }
.gallery .g-wide { grid-column: span 2; }
.gallery img.g-tall { grid-row: span 2; height: 100%; }
.moments-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact h2 {
  font-family: "VTC Marsha", serif; font-weight: 700; color: var(--red);
  text-transform: uppercase; font-size: clamp(32px, 4.4vw, 56px); letter-spacing: .02em;
  margin: 8px 0 22px; line-height: .98;
}
.contact-intro p { max-width: 420px; color: var(--ink); margin: 0 0 36px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 30px; }
.info-block h4 {
  font-family: "VTC Marsha", serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: 14px; color: var(--red); margin: 0 0 10px;
}
.info-block p, .info-block a { margin: 0 0 4px; font-size: 16px; color: var(--ink); text-decoration: none; display: block; line-height: 1.5; }
.info-block a:hover { color: var(--red); }
.socials { display: flex; gap: 14px; margin-top: 6px; }
.socials a {
  width: 38px; height: 38px; border: 1.3px solid var(--ink); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; transition: background .15s, color .15s, border-color .15s;
}
.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.socials svg { width: 17px; height: 17px; }

/* form */
.contact-form {
  background: var(--paper); border: 1px solid var(--line); padding: 40px 40px 38px;
}
.contact-form h3 {
  font-family: "VTC Marsha", serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; font-size: 22px; color: var(--ink); margin: 0 0 6px;
}
.contact-form .fnote { font-style: italic; color: var(--muted); font-size: 14.5px; margin: 0 0 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-style: italic; font-size: 13.5px; color: var(--muted); letter-spacing: .03em; margin: 0 0 7px; }
.field input, .field textarea {
  width: 100%; font-family: "Affairs", serif; font-size: 16px; color: var(--ink);
  background: var(--paper); border: none; border-bottom: 1.5px solid var(--line);
  padding: 8px 2px; outline: none; transition: border-color .15s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(110,101,92,.55); font-style: italic; }
.field input:focus, .field textarea:focus { border-bottom-color: var(--red); }
.field textarea { resize: vertical; min-height: 80px; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .btn { width: 100%; margin-top: 8px; }

/* ---------- Footer ---------- */
.foot { background: var(--cream); color: var(--ink); padding: 64px 0 56px; border-top: 1px solid var(--line); }
.foot .wrap { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.foot-logo { height: clamp(48px, 8vw, 78px); width: auto; opacity: .96; }
.foot .fine { font-style: italic; color: var(--muted); font-size: 13.5px; margin: 0; }
.foot .foot-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.foot .foot-links a { font-style: italic; font-size: 14px; color: var(--muted); text-decoration: none; }
.foot .foot-links a:hover { color: var(--red); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Dachshund scroll-progress walker ---------- */
.walker { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; height: 46px; pointer-events: none; }
.walker-track {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(to right, var(--red) 0%, var(--red) var(--p,0%), rgba(190,22,34,.16) var(--p,0%), rgba(190,22,34,.16) 100%);
}
.walker-dog {
  position: absolute; bottom: 1px; left: var(--p, 0%);
  width: 52px; height: auto; transform: translateX(-50%) scaleX(-1);
  transform-origin: center bottom; filter: drop-shadow(0 2px 3px rgba(0,0,0,.18));
}
.walker-dog.trot { animation: trot .45s ease-in-out infinite; }
@keyframes trot {
  0%,100% { transform: translateX(-50%) scaleX(-1) translateY(0) rotate(0deg); }
  50% { transform: translateX(-50%) scaleX(-1) translateY(-3px) rotate(-1.5deg); }
}
@media (prefers-reduced-motion: reduce) { .walker-dog.trot { animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 12px 26px 22px; box-shadow: 0 18px 30px rgba(0,0,0,.06);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .2s, opacity .2s;
  }
  .nav.open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 8px 0; font-size: 17px; }
  .nav-links a.btn { margin-top: 8px; }
  .hero-grid, .about-grid, .events-band .wrap, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; }
  .levels { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .g-wide { grid-column: span 2; }
  .gallery .g-tall { grid-row: auto; }
  section { padding: 74px 0; }
  .wrap { padding: 0 26px; }
  .nav-inner { padding: 0 26px; }
}
@media (max-width: 560px) {
  .info-grid, .field-2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .g-wide { grid-column: auto; }
  .hero-stamp { left: 0; }
}

/* ============================================================
   SHARED INNER-PAGE COMPONENTS
   ============================================================ */

/* ---- Page hero (inner pages) ---- */
.page-hero { position: relative; padding: 96px 0 64px; overflow: hidden; }
.page-hero.on-cream { background: var(--cream); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: "VTC Marsha", serif; font-weight: 700; color: var(--red);
  text-transform: uppercase; font-size: clamp(40px, 6.4vw, 88px); line-height: .94;
  letter-spacing: .02em; margin: 6px 0 0; text-wrap: balance;
}
.page-hero .lede { margin-top: 22px; max-width: 600px; font-size: 20px; }
.ghost-word {
  position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%);
  white-space: nowrap; font-family: "VTC Marsha", serif; text-transform: uppercase;
  font-size: clamp(90px, 19vw, 260px); line-height: 1; letter-spacing: .02em;
  color: var(--red); opacity: .05; z-index: 1; pointer-events: none; user-select: none;
}

/* ---- Generic two-column text + media ---- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.split.flip .split-media { order: -1; }
.split-media img.photo { width: 100%; height: clamp(360px, 44vw, 500px); }
.split-copy h2 {
  font-family: "VTC Marsha", serif; font-weight: 700; color: var(--red);
  text-transform: uppercase; font-size: clamp(28px, 3.6vw, 46px); letter-spacing: .03em;
  margin: 12px 0 22px; line-height: 1;
}
.split-copy p { max-width: 480px; margin: 0 0 18px; }

/* ---- Menu download cards ---- */
.menu-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.menu-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 300px; padding: 34px; text-decoration: none; overflow: hidden;
  background: var(--ink); color: var(--paper); border: 1px solid var(--line);
  transition: transform .2s;
}
.menu-card:hover { transform: translateY(-4px); }
.menu-card .mc-bg { position: absolute; inset: 0; z-index: 0; }
.menu-card .mc-bg img.photo { width: 100%; height: 100%; }
.menu-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(29,29,27,.25) 0%, rgba(29,29,27,.82) 100%); }
.menu-card > * { position: relative; z-index: 2; }
.menu-card .mc-kicker { font-style: italic; color: rgba(255,255,255,.82); letter-spacing: .1em; text-transform: uppercase; font-size: 12.5px; margin: 0 0 8px; }
.menu-card h3 { font-family: "VTC Marsha", serif; font-weight: 700; text-transform: uppercase; font-size: clamp(26px, 3vw, 38px); letter-spacing: .03em; margin: 0 0 14px; line-height: 1; }
.menu-card .mc-go { display: inline-flex; align-items: center; gap: 10px; font-style: italic; font-size: 16px; }
.menu-card .mc-go svg { width: 18px; height: 18px; transition: transform .2s; }
.menu-card:hover .mc-go svg { transform: translateX(5px); }

/* ---- Event types grid ---- */
.types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.type {
  border: 1px solid var(--line); background: var(--paper); padding: 30px 26px 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.type .t-num { font-family: "VTC Marsha", serif; color: var(--redline); font-size: 30px; line-height: 1; }
.type h3 { font-family: "VTC Marsha", serif; font-weight: 700; text-transform: uppercase; color: var(--ink); font-size: 21px; letter-spacing: .03em; margin: 0; line-height: 1.05; }
.type p { margin: 0; font-size: 15.5px; color: var(--muted); }

/* ---- Capacity stat row ---- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.stat { border-top: 2px solid var(--redline); padding-top: 20px; }
.stat .s-n { font-family: "VTC Marsha", serif; color: var(--red); font-size: clamp(40px, 5vw, 60px); line-height: 1; }
.stat .s-l { font-style: italic; color: var(--ink); margin-top: 8px; font-size: 16px; }

/* ---- Testimonials ---- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.tcard { background: var(--paper); border: 1px solid var(--line); padding: 30px 28px 28px; display: flex; flex-direction: column; gap: 16px; }
.sec-ink .tcard, .sec-red .tcard { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); }
.tcard .quote-mark { font-family: "VTC Marsha", serif; color: var(--red); font-size: 44px; line-height: .6; height: 24px; }
.sec-ink .tcard .quote-mark, .sec-red .tcard .quote-mark { color: #fff; }
.tcard p { margin: 0; font-size: 17px; line-height: 1.5; }
.tcard .t-by { font-style: italic; color: var(--muted); font-size: 14.5px; margin-top: auto; }
.sec-ink .tcard .t-by, .sec-red .tcard .t-by { color: rgba(255,255,255,.7); }

/* ---- FAQ accordion ---- */
.faq { max-width: 820px; margin: 44px auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative;
  font-family: "VTC Marsha", serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(17px, 2vw, 21px); letter-spacing: .02em; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--red); font-size: 26px; font-family: "Affairs", serif; transition: transform .2s;
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-a { padding: 0 0 24px; max-width: 680px; color: var(--ink); margin: 0; }

/* ---- Vouchers ---- */
.voucher-statement { max-width: 760px; margin: 0 auto; text-align: center; }
.voucher-statement h2 {
  font-family: "VTC Marsha", serif; font-weight: 700; color: var(--red);
  text-transform: uppercase; font-size: clamp(28px, 4vw, 50px); letter-spacing: .02em;
  line-height: 1.02; margin: 0 0 26px;
}
.voucher-statement p { font-size: 20px; line-height: 1.55; margin: 0 auto 18px; max-width: 600px; }
.voucher-art { position: relative; max-width: 420px; margin: 0 auto 8px; }
.voucher-art img.photo { width: 100%; height: 260px; }
.voucher-art .dog-badge { position: absolute; right: -14px; bottom: -16px; width: 78px; transform: scaleX(-1) rotate(-6deg); }

/* ---- Reservation panel (Bookings) ---- */
.resv { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.resv-media img.photo { width: 100%; height: clamp(380px, 44vw, 520px); }
.resv-card { background: var(--paper); border: 1px solid var(--line); padding: 40px; }
.resv-card h2 { font-family: "VTC Marsha", serif; font-weight: 700; color: var(--red); text-transform: uppercase; font-size: clamp(26px, 3.4vw, 40px); letter-spacing: .03em; margin: 0 0 16px; line-height: 1; }
.resv-card p { margin: 0 0 24px; max-width: 420px; }
.resv-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 26px 0 30px; }
.resv-meta h4 { font-family: "VTC Marsha", serif; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; font-size: 13px; color: var(--red); margin: 0 0 6px; }
.resv-meta p { margin: 0; font-size: 15.5px; }
.resv-card .btn { width: 100%; }

/* ---- Map ---- */
.map-frame { width: 100%; height: clamp(320px, 40vw, 440px); border: 1px solid var(--line); filter: grayscale(.3) contrast(1.02); }

/* ---- NowBookit reservation widget ---- */
.booking-widget { border: 1px solid var(--line); background: var(--paper); box-shadow: 0 18px 44px rgba(29,29,27,.08); display: flex; flex-direction: column; overflow: hidden; }
.bw-bar { display: flex; align-items: center; gap: 10px; background: var(--red); color: #fff; padding: 13px 20px; }
.bw-dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25); }
.bw-title { font-family: "VTC Marsha", serif; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.bw-frame { width: 100%; height: clamp(560px, 72vh, 760px); border: 0; display: block; background: var(--paper); }
.bw-fallback { margin: 0; padding: 12px 20px; border-top: 1px solid var(--line); font-style: italic; font-size: 13.5px; color: var(--muted); text-align: center; }
.bw-fallback a { color: var(--red); text-decoration: none; }

/* ---- Rich site footer ---- */
.site-foot { background: var(--cream); color: var(--ink); border-top: 1px solid var(--line); }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 70px 40px 50px; max-width: var(--maxw); margin: 0 auto; }
.foot-top .foot-logo { height: 46px; width: auto; margin: 0 0 18px; }
.foot-brand p { color: var(--muted); font-size: 15px; max-width: 260px; margin: 0 0 18px; }
.foot-col h4 { font-family: "VTC Marsha", serif; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; color: var(--red); margin: 0 0 14px; }
.foot-col p, .foot-col a { display: block; color: var(--ink); font-size: 15px; text-decoration: none; line-height: 1.55; margin: 0 0 4px; }
.foot-col a:hover { color: var(--red); }
.foot-col h4 + h4 { margin-top: 22px; }
.foot-socials { display: flex; gap: 12px; margin-top: 6px; }
.foot-socials a { width: 36px; height: 36px; color: var(--ink); border: 1.2px solid var(--ink); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: background .15s, border-color .15s, color .15s; }
.foot-socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.foot-socials svg { width: 16px; height: 16px; }
.foot-bottom { border-top: 1px solid var(--line); padding: 22px 40px; max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot-bottom .foot-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-bottom a { color: var(--muted); text-decoration: none; font-style: italic; font-size: 14px; }
.foot-bottom a:hover { color: var(--red); }
.foot-bottom .copy { color: var(--muted); font-size: 13px; font-style: italic; }

@media (max-width: 940px) {
  .split, .resv { grid-template-columns: 1fr; gap: 40px; }
  .split.flip .split-media, .resv-media { order: -1; }
  .types { grid-template-columns: repeat(2, 1fr); }
  .tcards { grid-template-columns: 1fr; }
  .menu-cards { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 30px; padding: 56px 26px 40px; }
  .foot-bottom { padding: 20px 26px; }
}
@media (max-width: 560px) {
  .types, .stats { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
}

/* baked-in photos */
img.photo { object-fit: cover; background: var(--cream); }
.hero-media img.photo, .cluster img.photo, .gallery img.photo, .eb-media img.photo, .split-media img.photo, .voucher-art img.photo, .resv-media img.photo { border-radius: 4px; }
