/* Waterloo Food Bar — Crafted archetype
   Display: Zilla Slab  |  Body: Schibsted Grotesk
   Warm appetising takeaway theme, Christchurch NZ */

:root {
  --bone: #f6efe4;
  --cream: #fbf7f0;
  --ink: #241e1b;
  --ink-soft: #4a4039;
  --char: #1c1815;
  --paprika: #c8432a;
  --paprika-dark: #a8341e;
  --mustard: #e3a72f;
  --line: rgba(36, 30, 27, 0.12);
  --card-radius: 16px;
  --shadow-sm: 0 2px 8px rgba(36, 30, 27, 0.06);
  --shadow-md: 0 16px 40px rgba(36, 30, 27, 0.12);
  --shadow-lg: 0 30px 70px rgba(36, 30, 27, 0.22);
  --maxw: 1180px;
  --img-treat: saturate(1.05) contrast(1.03);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Schibsted Grotesk', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bone);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Zilla Slab', Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: min(92%, var(--maxw)); margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paprika);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--paprika);
  display: inline-block;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.bg-bone { background: var(--bone); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--char); color: #f3ece1; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fbf7f0; }

.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 16px 0 14px; }
.sec-head p { color: var(--ink-soft); font-size: 1.07rem; }
.bg-dark .sec-head p { color: #cdbfae; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700; font-size: 0.97rem;
  padding: 15px 28px; border-radius: 999px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--paprika); color: #fff; box-shadow: 0 12px 26px rgba(200, 67, 42, 0.32); }
.btn-primary:hover { background: var(--paprika-dark); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(200, 67, 42, 0.42); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }
.btn-ubereats { background: #06c167; color: #0b1e10; box-shadow: 0 12px 26px rgba(6, 193, 103, 0.28); }
.btn-ubereats:hover { background: #05a656; transform: translateY(-3px); box-shadow: 0 18px 34px rgba(6, 193, 103, 0.38); }
.btn-doordash { background: #eb1700; color: #fff; box-shadow: 0 12px 26px rgba(235, 23, 0, 0.28); }
.btn-doordash:hover { background: #c81400; transform: translateY(-3px); box-shadow: 0 18px 34px rgba(235, 23, 0, 0.38); }

/* ---------- Intro overlay ---------- */
#intro {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--char);
  display: grid; place-items: center;
  transition: opacity .7s ease, visibility .7s ease;
}
#intro.hide { opacity: 0; visibility: hidden; }
.intro-mark {
  font-family: 'Zilla Slab', serif; font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.6rem); color: #fbf7f0;
  text-align: center; opacity: 0;
  animation: introUp .9s ease forwards .15s;
}
.intro-mark span { color: var(--paprika); }
.intro-logo { width: min(380px, 74vw); height: auto; display: block; margin: 0 auto; }
.intro-mark small {
  display: block; font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 600; font-size: 0.8rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--mustard); margin-top: 18px;
}
@keyframes introUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Nav ---------- */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
header.nav.scrolled { background: rgba(251, 247, 240, 0.94); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Zilla Slab', serif; font-weight: 700; font-size: 1.28rem; color: #fff; transition: color .3s ease; }
header.nav.scrolled .brand { color: var(--ink); }
.brand .dot { width: 38px; height: 38px; border-radius: 11px; background: var(--paprika); color: #fff; display: grid; place-items: center; font-size: 1.1rem; box-shadow: 0 6px 16px rgba(200,67,42,.4); }
.brand-logo { height: 46px; width: auto; display: block; filter: drop-shadow(0 3px 8px rgba(0,0,0,.35)); }
header.nav.scrolled .brand-logo { filter: none; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.link { font-weight: 600; font-size: 0.95rem; color: rgba(255,255,255,.92); transition: color .25s ease; }
header.nav.scrolled .nav-links a.link { color: var(--ink-soft); }
.nav-links a.link:hover { color: var(--paprika); }
.nav-cta { font-size: 0.9rem; padding: 11px 20px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: background .3s; }
header.nav.scrolled .nav-toggle span { background: var(--ink); }

@media (max-width: 880px) {
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78%, 320px);
    background: var(--char); flex-direction: column; justify-content: center;
    gap: 26px; transform: translateX(100%); transition: transform .35s ease; padding: 40px;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a.link { color: #f3ece1 !important; font-size: 1.15rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  header.nav.scrolled .nav-toggle span { background: #fff; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; background: var(--char); overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease; filter: var(--img-treat);
}
.hero-slide.active { opacity: 1; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(105deg, rgba(20,16,13,.82) 0%, rgba(20,16,13,.58) 46%, rgba(20,16,13,.34) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 140px 0 70px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); align-items: center; gap: clamp(30px, 5vw, 60px); }
.hero-lead { min-width: 0; }
.hero-eyebrow { color: var(--mustard); }
.hero-eyebrow::before { background: var(--mustard); }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6.4vw, 4.7rem); max-width: 16ch; margin: 20px 0 18px; }
.hero h1 em { color: var(--paprika); font-style: normal; }
.hero .sub { color: #e7ddcf; font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 52ch; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 38px; color: #d8cdbd; font-size: 0.92rem; }
.hero-meta b { color: #fff; font-family: 'Zilla Slab', serif; }
.scroll-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 9px; }
.scroll-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,.4); cursor: pointer; padding: 0; transition: background .3s, width .3s; }
.scroll-dots button.on { background: var(--paprika); width: 26px; border-radius: 5px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); color: #f3ece1; padding: 30px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trust-item { display: flex; align-items: center; gap: 15px; }
.trust-item .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(227,167,47,.16); color: var(--mustard); display: grid; place-items: center; flex: 0 0 auto; }
.trust-item h4 { color: #fff; font-size: 1.02rem; margin-bottom: 1px; }
.trust-item p { color: #c3b6a4; font-size: 0.87rem; line-height: 1.4; }
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--card-radius);
  padding: 32px 28px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
  position: relative; overflow: hidden;
}
.svc-card::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--paprika); transform: scaleY(0); transform-origin: top; transition: transform .3s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::after { transform: scaleY(1); }
.svc-ic { width: 54px; height: 54px; border-radius: 14px; background: rgba(200,67,42,.1); color: var(--paprika); display: grid; place-items: center; margin-bottom: 18px; }
.svc-card h3 { font-size: 1.32rem; margin-bottom: 9px; }
.svc-card p { color: var(--ink-soft); font-size: 0.97rem; }
.svc-card .price { margin-top: 14px; font-family: 'Zilla Slab', serif; font-weight: 700; color: var(--paprika); font-size: 1.05rem; }
@media (max-width: 920px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.about-media { position: relative; max-width: 460px; margin-inline: auto; }
.about-media img { width: 100%; aspect-ratio: 4/3; max-height: 380px; object-fit: cover; object-position: center 32%; border-radius: var(--card-radius); filter: var(--img-treat); box-shadow: var(--shadow-md); }
.about-tag { position: absolute; bottom: -18px; right: -10px; background: var(--paprika); color: #fff; padding: 16px 22px; border-radius: 14px; font-family: 'Zilla Slab', serif; font-weight: 700; line-height: 1.1; box-shadow: var(--shadow-md); }
.about-tag b { display: block; font-size: 1.7rem; }
.about-tag span { font-size: 0.78rem; font-weight: 600; opacity: .9; }
.about-copy h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 14px 0 16px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 14px; }
.checklist { list-style: none; margin-top: 22px; display: grid; gap: 13px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.checklist .tick { flex: 0 0 auto; width: 25px; height: 25px; border-radius: 50%; background: var(--paprika); color: #fff; display: grid; place-items: center; font-size: 0.8rem; margin-top: 2px; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .about-media { max-width: 520px; } }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 4; column-gap: 16px; }
.gallery-item { margin: 0 0 16px; break-inside: avoid; -webkit-column-break-inside: avoid; overflow: hidden; border-radius: var(--card-radius); box-shadow: var(--shadow-md); background: #000; }
.gallery-item img { display: block; width: 100%; height: auto; filter: var(--img-treat); transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 920px) { .gallery-grid { columns: 3; } }
@media (max-width: 620px) { .gallery-grid { columns: 2; column-gap: 12px; } .gallery-item { margin-bottom: 12px; } }
@media (max-width: 420px) { .gallery-grid { columns: 1; } }

/* ---------- Crew ---------- */
.crew-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.crew-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--card-radius); padding: 32px 26px; text-align: center; transition: transform .3s ease, box-shadow .3s ease; }
.crew-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.avatar { width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 50%; background: var(--char); color: #fff; display: grid; place-items: center; font-family: 'Zilla Slab', serif; font-weight: 700; font-size: 1.7rem; border: 3px solid var(--paprika); box-shadow: 0 0 0 5px rgba(200,67,42,.12); }
.crew-card h3 { font-size: 1.18rem; }
.crew-card .role { color: var(--paprika); font-weight: 700; font-size: 0.82rem; letter-spacing: .08em; text-transform: uppercase; margin: 5px 0 11px; }
.crew-card p { color: var(--ink-soft); font-size: 0.93rem; }
.badge { display: inline-block; background: rgba(227,167,47,.18); color: var(--paprika-dark); font-weight: 700; font-size: 0.72rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; margin-bottom: 16px; }
@media (max-width: 860px) { .crew-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* ---------- Reviews ---------- */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rev-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--card-radius); padding: 30px 28px; transition: transform .3s ease, box-shadow .3s ease; }
.rev-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { color: var(--mustard); letter-spacing: 2px; margin-bottom: 14px; font-size: 1.05rem; }
.rev-card p { color: var(--ink-soft); font-style: italic; margin-bottom: 18px; }
.rev-who { display: flex; align-items: center; gap: 12px; }
.rev-who .ra { width: 42px; height: 42px; border-radius: 50%; background: var(--paprika); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: 'Zilla Slab', serif; }
.rev-who b { display: block; font-size: 0.97rem; }
.rev-who span { font-size: 0.83rem; color: var(--ink-soft); }
@media (max-width: 920px) { .rev-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* ---------- Review funnel banner ---------- */
.funnel { position: relative; background: var(--char); color: #fff; text-align: center; overflow: hidden; }
.funnel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% -10%, rgba(200,67,42,.32), transparent 60%); }
.funnel .wrap { position: relative; z-index: 1; }
.funnel .stars { font-size: 2rem; justify-content: center; margin-bottom: 18px; }
.funnel h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.funnel p { color: #cdbfae; max-width: 50ch; margin: 0 auto 28px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 64px); }
.contact-info h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 14px 0 18px; }
.contact-info > p { color: #cdbfae; margin-bottom: 28px; max-width: 44ch; }
.cinfo-row { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.cinfo-row .ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(227,167,47,.16); color: var(--mustard); display: grid; place-items: center; flex: 0 0 auto; }
.cinfo-row b { display: block; color: #fff; font-family: 'Zilla Slab', serif; font-size: 1.05rem; }
.cinfo-row span, .cinfo-row a { color: #cdbfae; font-size: 0.94rem; }
.cinfo-row a:hover { color: var(--mustard); }
.hours-card { margin-top: 26px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 20px 22px; }
.hours-card h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: #cdbfae; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: #fff; }

.form-card { background: var(--cream); border-radius: var(--card-radius); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card .fc-sub { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: 0.97rem; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--paprika); box-shadow: 0 0 0 3px rgba(200,67,42,.13); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer.foot { background: #161210; color: #b9ac9b; padding: 60px 0 26px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.08); }
.foot-brand { display: flex; align-items: center; gap: 11px; font-family: 'Zilla Slab', serif; font-weight: 700; font-size: 1.3rem; color: #fff; margin-bottom: 14px; }
.foot-brand .dot { width: 36px; height: 36px; border-radius: 10px; background: var(--paprika); color: #fff; display: grid; place-items: center; }
.foot-col p { font-size: 0.92rem; max-width: 34ch; }
.foot-col h5 { color: #fff; font-family: 'Schibsted Grotesk', sans-serif; font-size: 0.82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col a { display: block; font-size: 0.93rem; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: var(--mustard); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 22px; font-size: 0.84rem; color: #82766a; }
.foot-bottom a:hover { color: var(--mustard); }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Sub-page hero ---------- */
.page-hero { background: var(--char); color: #fff; padding: 150px 0 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(200,67,42,.28), transparent 55%); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 14px 0 12px; }
.page-hero p { color: #cdbfae; max-width: 56ch; margin: 0 auto; }

/* ---------- Review page ---------- */
.review-wrap { min-height: 100vh; display: grid; place-items: center; background: var(--bone); padding: 120px 20px 60px; }
.review-card { background: var(--cream); border-radius: 22px; box-shadow: var(--shadow-lg); padding: clamp(32px, 5vw, 56px); max-width: 560px; width: 100%; text-align: center; }
.review-card .dot { width: 60px; height: 60px; border-radius: 16px; background: var(--paprika); color: #fff; display: grid; place-items: center; font-family: 'Zilla Slab', serif; font-size: 1.6rem; margin: 0 auto 20px; }
.review-card h1 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 12px; }
.review-card > p { color: var(--ink-soft); margin-bottom: 30px; }
.star-pick { display: flex; justify-content: center; gap: 10px; margin-bottom: 26px; direction: rtl; }
.star-pick button { background: none; border: none; cursor: pointer; font-size: clamp(2.4rem, 9vw, 3.4rem); color: #dcd0bf; transition: transform .15s, color .15s; line-height: 1; padding: 0; }
.star-pick button:hover, .star-pick button:hover ~ button, .star-pick button:focus, .star-pick button:focus ~ button { color: var(--mustard); transform: scale(1.12); }
.review-hint { font-size: 0.9rem; color: var(--ink-soft); }
.back-link { display: inline-block; margin-top: 26px; color: var(--paprika); font-weight: 600; }
.back-link:hover { text-decoration: underline; }

/* ---------- Legal / content pages ---------- */
.legal { padding: 60px 0 90px; background: var(--bone); }
.legal .wrap { max-width: 820px; }
.legal h2 { font-size: 1.4rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal .updated { color: var(--paprika); font-weight: 600; font-size: 0.9rem; }

/* success state */
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--paprika); color: #fff; display: grid; place-items: center; margin: 0 auto 18px; font-size: 1.8rem; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); }

/* ============================================================
   Mobile optimisation
   ============================================================ */

/* Animated hamburger -> X, backdrop and scroll lock */
.nav-toggle span { transition: transform .3s ease, opacity .2s ease, background .3s; transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-toggle.open span { background: #fff !important; }
.nav-backdrop { position: fixed; inset: 0; z-index: 999; background: rgba(20,16,13,.55); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; }
.nav-backdrop.show { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

@media (max-width: 880px) {
  .nav-links { gap: 22px; padding: 96px 40px 40px; justify-content: flex-start; }
  .nav-links .nav-cta { margin-top: 10px; width: 100%; justify-content: center; }
  .brand-logo { height: 42px; }
}

/* Stack the hero review under the content on tablet/phone */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-gwidget { justify-self: start; margin-top: 4px; }
}

/* Full-width, stacked button rows + tighter spacing on phones */
.menu-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 42px; }
@media (max-width: 620px) {
  .hero-inner { padding: 112px 0 56px; }
  .hero h1 { font-size: clamp(2.05rem, 8.4vw, 2.9rem); max-width: 100%; margin: 14px 0 14px; }
  .hero .sub { font-size: 1.02rem; margin-bottom: 26px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 11px; }
  .hero-cta .btn { width: 100%; justify-content: center; white-space: normal; }
  .hero-meta { gap: 13px; margin-top: 24px; }
  .hero-meta > div { flex: 1 1 100%; }
  .menu-cta { flex-direction: column; align-items: stretch; }
  .menu-cta .btn { width: 100%; justify-content: center; }
  .sec-head { margin-bottom: 32px; }
  .sec-head p { font-size: 1rem; }
  .btn { padding: 15px 24px; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .trust { padding: 24px 0; }
  .cinfo-row, .hours-card { text-align: left; }
  .about-tag { font-size: 0.9rem; }
  .scroll-dots { bottom: 16px; }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.95rem; }
  .brand-logo { height: 38px; }
  .nav { padding: 14px 0; }
}

/* Hero Google reviews widget (glass) */
.hero-gwidget { margin-top: 0; justify-self: end; width: 100%; max-width: 400px; background: rgba(28,24,21,.5); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.18); border-radius: 16px; padding: 18px 20px; box-shadow: 0 20px 44px -18px rgba(0,0,0,.6); }
.gw-head { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.16); }
.gw-g { background: #fff; border-radius: 8px; padding: 5px; display: flex; flex: 0 0 auto; }
.gw-g svg { width: 24px; height: 24px; display: block; }
.gw-top { display: flex; align-items: center; gap: 8px; }
.gw-top b { font-family: 'Zilla Slab', serif; font-size: 1.4rem; color: #fff; line-height: 1; }
.gw-stars { color: var(--mustard); letter-spacing: 1px; font-size: 1rem; }
.gw-sub { font-size: .78rem; color: #cdbfae; }
.gw-quote { font-size: .92rem; font-style: italic; color: #efe6d8; line-height: 1.5; min-height: 70px; transition: opacity .4s ease; }
.gw-by { font-size: .78rem; font-weight: 600; color: var(--mustard); margin-top: 8px; transition: opacity .4s ease; }
.gw-cta { display: inline-block; margin-top: 12px; font-weight: 700; font-size: .85rem; color: #fff; }
.gw-cta:hover { color: var(--mustard); }
@media (max-width: 620px) { .hero-gwidget { max-width: 100%; } }

/* Contact action buttons (replaces form) */
.contact-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.contact-actions .btn { width: 100%; justify-content: center; }
