/* =====================================================================
   London Brewery Tours — Design System
   Bright, energetic, conversion-focused. Built for speed + Core Web Vitals.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette — bright & appetising */
  --gold:        #FFB703;
  --gold-deep:   #FB8500;
  --teal:        #08A4BD;
  --teal-deep:   #007A91;
  --coral:       #FF5D73;
  --cream:       #FFF8EC;
  --cream-2:     #FFEFD3;
  --ink:         #1C1208;
  --ink-soft:    #4A3E30;
  --white:       #ffffff;

  /* Functional */
  --bg:          var(--cream);
  --surface:     var(--white);
  --text:        var(--ink);
  --muted:       var(--ink-soft);
  --line:        rgba(28, 18, 8, 0.10);

  /* Type */
  --font-display: "Bricolage Grotesque", "Poppins", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Spacing & shape */
  --radius:      18px;
  --radius-lg:   28px;
  --radius-pill: 999px;
  --shadow-sm:   0 2px 8px rgba(28,18,8,.08);
  --shadow:      0 14px 40px rgba(28,18,8,.12);
  --shadow-lg:   0 30px 70px rgba(28,18,8,.18);
  --maxw:        1180px;
  --ease:        cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; font-weight: 800; letter-spacing: -0.02em; overflow-wrap: break-word; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--tight { padding: clamp(40px, 5vw, 70px) 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; font-size: .8rem;
  color: var(--teal-deep); background: rgba(8,164,189,.12);
  padding: 7px 14px; border-radius: var(--radius-pill);
}
.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); max-width: 60ch; }
h2.h-xl { font-size: clamp(2rem, 5vw, 3.4rem); }
h3.h-lg { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.mx-auto { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  padding: 15px 28px; border-radius: var(--radius-pill);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%); color: var(--ink); box-shadow: 0 10px 24px rgba(251,133,0,.34); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(251,133,0,.42); }
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--teal { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(8,164,189,.34); }
.btn--teal:hover { transform: translateY(-2px); background: var(--teal-deep); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--lg { padding: 18px 34px; font-size: 1.1rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,248,236,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-deep); margin-top: 1px; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a { padding: 8px 12px; border-radius: var(--radius-pill); font-weight: 600; font-size: .95rem; white-space: nowrap; transition: background .15s, color .15s; }
.nav__links a:hover, .nav__links a[aria-current="page"] { background: var(--cream-2); color: var(--gold-deep); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; border: 1px solid var(--line); background: var(--white); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; display: block; width: 22px; height: 2.4px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); position: relative; }
.nav__toggle span::before { position: absolute; top: -7px; } .nav__toggle span::after { position: absolute; top: 7px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(56px, 8vw, 96px); }
.hero__bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 70% at 85% 0%, rgba(255,183,3,.45), transparent 60%),
    radial-gradient(50% 60% at 10% 100%, rgba(8,164,189,.30), transparent 60%),
    var(--cream);
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 6.4vw, 4.6rem); }
.hero h1 .hl { color: var(--gold-deep); }
.hero .lead { margin-top: 20px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; align-items: center; }
.stars { color: var(--gold-deep); font-size: 1.05rem; letter-spacing: 2px; }
.hero__trust strong { font-family: var(--font-display); }
.hero__art { position: relative; aspect-ratio: 1/1; }
.hero__card {
  position: absolute; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 14px 16px; font-weight: 700;
  font-family: var(--font-display); display: flex; align-items: center; gap: 10px;
  animation: float 6s ease-in-out infinite;
}
.hero__card span { font-size: 1.6rem; }
.hero__card--a { top: 6%; left: -4%; }
.hero__card--b { bottom: 10%; right: -2%; animation-delay: 1.5s; }
.hero__card small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .78rem; color: var(--muted); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Pill row of trust logos */
.logos { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; justify-content: center; opacity: .8; }
.logos span { font-family: var(--font-display); font-weight: 700; color: var(--muted); font-size: 1.05rem; }

/* ---------- Stat band ---------- */
.stats { background: var(--ink); color: var(--cream); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); }
.stat span { color: rgba(255,248,236,.72); font-size: .95rem; }

/* ---------- Cards / tours ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.section-head p { margin-top: 12px; }

.card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 16/10; position: relative; display: grid; place-items: center; color: #fff; }
.card__media svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.card__tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--white); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: .78rem; padding: 6px 12px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.card__tag--hot { background: var(--coral); color: #fff; }
.card__body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__body h3 { font-size: 1.32rem; }
.card__meta { display: flex; flex-wrap: wrap; gap: 8px 14px; color: var(--muted); font-size: .9rem; font-weight: 600; }
.card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 8px; }
.price { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }
.price small { font-weight: 500; font-size: .8rem; color: var(--muted); font-family: var(--font-body); }
.link-arrow { font-weight: 700; color: var(--teal-deep); display: inline-flex; gap: 6px; align-items: center; }
.link-arrow:hover { gap: 11px; }

/* ---------- Feature blocks ---------- */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.feature .ic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 16px; background: var(--cream-2); }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .98rem; }

/* ---------- Split / occasion blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); position: relative; }
.split__media svg { width: 100%; height: 100%; }
.checklist { display: grid; gap: 12px; margin: 22px 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.checklist .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .9rem; margin-top: 1px; }

/* ---------- Occasion tiles (stag/hen/corp) ---------- */
.occasions { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.occasion { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; display: flex; align-items: flex-end; color: #fff; padding: 26px; box-shadow: var(--shadow); }
.occasion::before { content: ""; position: absolute; inset: 0; z-index: 0; }
.occasion--stag::before { background: linear-gradient(160deg, #08A4BD, #1C1208); }
.occasion--hen::before  { background: linear-gradient(160deg, #FF5D73, #B22247); }
.occasion--corp::before { background: linear-gradient(160deg, #FFB703, #B25E00); }
.occasion__inner { position: relative; z-index: 1; }
.occasion h3 { font-size: 1.6rem; margin-bottom: 8px; }
.occasion p { color: rgba(255,255,255,.9); margin-bottom: 16px; font-size: .98rem; }

/* ---------- Voucher CTA band ---------- */
.voucher { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(34px,5vw,60px); display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.voucher h2 { font-size: clamp(1.8rem,4vw,2.8rem); }
.voucher p { margin: 14px 0 24px; max-width: 48ch; font-size: 1.08rem; }
.giftcard { background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-lg); transform: rotate(-4deg); }
.giftcard .gc-top { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-weight: 700; }
.giftcard .gc-val { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--gold); margin: 18px 0 6px; }
.giftcard .gc-sub { font-size: .82rem; color: rgba(255,248,236,.7); letter-spacing: .04em; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.quote .stars { margin-bottom: 12px; }
.quote p { font-size: 1.04rem; }
.quote .who { margin-top: 16px; font-weight: 700; font-family: var(--font-display); }
.quote .who small { display: block; font-family: var(--font-body); font-weight: 500; color: var(--muted); }

/* ---------- Itinerary timeline ---------- */
.timeline { max-width: 780px; margin-inline: auto; }
.tl-item { position: relative; padding-left: 46px; padding-bottom: 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: 9px; top: 10px; bottom: 0; width: 2px; background: rgba(8,164,189,.30); }
.tl-item:last-child::before { display: none; }
.tl-dot { position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px var(--bg); }
.tl-time { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .76rem; letter-spacing: .03em; color: var(--teal-deep); background: rgba(8,164,189,.12); padding: 3px 11px; border-radius: var(--radius-pill); margin-bottom: 9px; }
.tl-item h3 { font-size: 1.2rem; margin-bottom: 6px; }
.tl-item p { color: var(--muted); font-size: .98rem; }
.tl-item .tag-incl { display: inline-block; margin-top: 8px; font-size: .78rem; font-weight: 700; color: var(--gold-deep); }

/* ---------- Blog / prose ---------- */
.post-meta { color: var(--muted); font-weight: 600; font-size: .9rem; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.prose { max-width: 720px; margin-inline: auto; font-size: 1.08rem; }
.prose > p:first-of-type { font-size: 1.2rem; color: var(--muted); }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); margin: 40px 0 14px; }
.prose h3 { font-size: 1.3rem; margin: 30px 0 10px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 18px; display: grid; gap: 9px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose a { color: var(--teal-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose blockquote { border-left: 4px solid var(--gold); padding: 4px 0 4px 20px; margin: 24px 0; font-style: italic; color: var(--muted); font-size: 1.18rem; }
.prose figure { margin: 26px 0; }
.prose figure svg, .prose img { border-radius: var(--radius); width: 100%; }
.prose figcaption { color: var(--muted); font-size: .88rem; margin-top: 8px; text-align: center; }

/* ---------- Taproom chips ---------- */
.chip { display: inline-flex; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: .98rem; color: var(--ink); background: var(--surface); border: 1px solid var(--line); padding: 11px 19px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.chip--mystery { background: var(--ink); color: var(--gold); border-color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; color: var(--gold-deep); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 20px; color: var(--muted); }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--ink); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(34px,5vw,64px); text-align: center; }
.cta-strip h2 { font-size: clamp(1.8rem,4vw,3rem); }
.cta-strip p { color: rgba(255,248,236,.78); margin: 14px auto 28px; max-width: 52ch; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(48px,7vw,90px) 0 clamp(40px,5vw,64px); }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(50% 80% at 80% 0%, rgba(255,183,3,.4), transparent 60%),
  radial-gradient(50% 80% at 0% 100%, rgba(8,164,189,.25), transparent 60%), var(--cream); }
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { font-size: clamp(2.2rem,5.5vw,3.8rem); }
.page-hero .lead { margin-top: 18px; }
.crumbs { font-size: .88rem; color: var(--muted); margin-bottom: 18px; font-weight: 600; }
.crumbs a:hover { color: var(--gold-deep); }

/* ---------- Mini contact / forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,4vw,40px); box-shadow: var(--shadow); }
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 700; font-family: var(--font-display); font-size: .95rem; }
.field input, .field select, .field textarea {
  font: inherit; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--cream); transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,164,189,.18); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }

/* ---------- Pricing tiers (vouchers) ---------- */
.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tier { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); text-align: center; position: relative; }
.tier--featured { border: 2px solid var(--gold-deep); box-shadow: var(--shadow); }
.tier__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold-deep); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .78rem; padding: 5px 14px; border-radius: var(--radius-pill); }
.tier .amt { font-family: var(--font-display); font-weight: 800; font-size: 2.8rem; margin: 8px 0; }
.tier ul { display: grid; gap: 10px; margin: 18px 0 24px; text-align: left; }
.tier ul li { display: flex; gap: 10px; color: var(--muted); }
.tier ul li::before { content: "✓"; color: var(--teal); font-weight: 800; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,248,236,.8); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: var(--cream); font-size: 1rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-display); }
.site-footer a { transition: color .15s; }
.site-footer a:hover { color: var(--gold); }
.footer-links { display: grid; gap: 10px; }
.footer-brand .brand { color: var(--cream); margin-bottom: 14px; }
.footer-brand p { font-size: .95rem; max-width: 34ch; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,248,236,.1); display: grid; place-items: center; }
.socials a:hover { background: var(--gold); color: var(--ink); }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,248,236,.14); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 440px; margin-inline: auto; order: -1; }
  .grid--3, .features, .occasions, .quotes, .tiers { grid-template-columns: repeat(2,1fr); }
  .split, .voucher { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .voucher { text-align: left; }
  .stats__grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
  .footer-brand { grid-column: 1 / -1; }
}
/* Collapse the nav to a menu before it gets cramped on tablets / narrow laptops */
@media (max-width: 980px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav[data-open="true"] .nav__links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--cream); padding: 16px 22px 24px; gap: 6px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav[data-open="true"] .nav__links a { padding: 13px 16px; }
}
@media (max-width: 720px) {
  .grid--3, .grid--2, .features, .occasions, .quotes, .tiers, .form-row { grid-template-columns: 1fr; }
  body { font-size: 1rem; }
  .giftcard { transform: none; margin-top: 8px; }
  /* Decorative floating cards clutter the stacked mobile hero — hide them */
  .hero__card { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Newsletter signup: bottom bar + modal ---------- */
body.has-signup-bar { padding-bottom: 88px; }

.signup-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink); box-shadow: 0 -8px 30px rgba(28,18,8,.20);
  transform: translateY(110%); transition: transform .45s var(--ease);
}
.signup-bar.show { transform: none; }
.signup-bar__in { max-width: var(--maxw); margin-inline: auto; padding: 12px 50px 12px 22px; display: flex; align-items: center; gap: 12px 22px; flex-wrap: wrap; position: relative; }
.signup-bar__msg { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; flex: 1 1 280px; line-height: 1.25; }
.signup-bar form { display: flex; gap: 8px; flex: 1 1 340px; min-width: 0; margin: 0; }
.signup-bar input { flex: 1; min-width: 0; padding: 11px 15px; border-radius: var(--radius-pill); border: 2px solid rgba(28,18,8,.22); background: #fff; font: inherit; }
.signup-bar input:focus { outline: none; border-color: var(--ink); }
.signup-bar .btn { flex: none; padding: 11px 22px; }
.signup-bar__legal { flex-basis: 100%; font-size: .72rem; color: rgba(28,18,8,.7); margin: 0; }
.signup-bar__ok { font-family: var(--font-display); font-weight: 700; }
.signup-close { position: absolute; top: 8px; right: 12px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 1.3rem; line-height: 1; color: var(--ink); background: rgba(28,18,8,.10); border: none; cursor: pointer; }
.signup-close:hover { background: rgba(28,18,8,.2); }

.modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(28,18,8,.6); }
.modal__card { position: relative; background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 460px; width: 100%; padding: clamp(28px,5vw,42px); text-align: center; animation: pop .3s var(--ease); }
@keyframes pop { from { transform: translateY(18px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.modal__emoji { font-size: 2.8rem; line-height: 1; }
.modal__card h2 { font-size: clamp(1.5rem,4vw,2rem); margin: 10px 0 8px; }
.modal__card p.lead { margin-inline: auto; }
.modal form { display: grid; gap: 10px; margin-top: 20px; text-align: left; }
.modal input { padding: 13px 15px; border: 2px solid var(--line); border-radius: 12px; font: inherit; background: var(--cream); }
.modal input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,164,189,.18); background: #fff; }
.signup-legal { font-size: .78rem; color: var(--muted); margin-top: 12px; }
.signup-ok { color: var(--teal-deep); font-weight: 700; }
.modal__close { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border-radius: 50%; font-size: 1.5rem; line-height: 1; color: var(--muted); background: var(--cream-2); border: none; cursor: pointer; }
.modal__close:hover { color: var(--ink); }

@media (max-width: 600px) {
  body.has-signup-bar { padding-bottom: 132px; }
  .signup-bar__msg { flex-basis: 100%; font-size: .96rem; }
  .signup-bar form { flex-basis: 100%; }
}

/* ---------- Inline newsletter signup band (above footer, every page) ---------- */
.signup-inline { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(30px,5vw,54px); text-align: center; box-shadow: var(--shadow); }
.signup-inline h2 { font-size: clamp(1.7rem,4vw,2.6rem); }
.signup-inline > p { max-width: 52ch; margin: 12px auto 0; font-size: 1.08rem; }
.signup-inline form { display: flex; gap: 10px; max-width: 540px; margin: 24px auto 0; flex-wrap: wrap; }
.signup-inline input { flex: 1 1 230px; min-width: 0; padding: 15px 17px; border-radius: var(--radius-pill); border: 2px solid rgba(28,18,8,.22); background: #fff; font: inherit; }
.signup-inline input:focus { outline: none; border-color: var(--ink); }
.signup-inline .btn { flex: none; }
.signup-inline__legal { font-size: .78rem; color: rgba(28,18,8,.72); margin-top: 13px; }
.signup-inline__legal a { color: inherit; text-decoration: underline; }

/* ---------- Photos ---------- */
.hero__photo { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Cookie consent banner ---------- */
body.has-cookie-banner { padding-bottom: 104px; }
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 400; background: var(--ink); color: var(--cream); box-shadow: 0 -8px 30px rgba(0,0,0,.3); }
.cookie-banner__in { max-width: var(--maxw); margin-inline: auto; padding: 16px 22px; display: flex; align-items: center; gap: 14px 24px; flex-wrap: wrap; }
.cookie-banner p { flex: 1 1 320px; margin: 0; font-size: .95rem; color: rgba(255,248,236,.9); }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 10px; flex: none; }
.cookie-banner .btn { padding: 11px 22px; }
.cookie-banner .btn--ghost { color: var(--cream); border-color: rgba(255,248,236,.5); }
.cookie-banner .btn--ghost:hover { background: rgba(255,248,236,.12); color: var(--cream); }
@media (max-width: 600px) {
  body.has-cookie-banner { padding-bottom: 150px; }
  .cookie-banner p { flex-basis: 100%; }
  .cookie-banner__btns { flex-basis: 100%; }
  .cookie-banner__btns .btn { flex: 1; }
}
