/* Book-A-Bounce — 2026 rebuild
   Palette sampled from the logo artwork: navy wordmark, red BOUNCE, gold + red
   castle towers, blue swoosh. Nothing here is a guessed neutral. */

:root {
  /* Sampled straight from the logo artwork — not eyeballed.
     red #E71D1F · navy #102D4F · gold #FEC005 · blue #275994 */
  --yellow: #FEC005;
  --yellow-deep: #E0A800;
  --red: #E71D1F;
  --red-deep: #B81317;
  --blue: #275994;
  --blue-light: #5183B6;
  --blue-deep: #0E3A6B;
  --navy: #102D4F;
  --green: #2E9E4F;          /* semantic success only — not a brand colour */
  --ink: #102D4F;            /* navy, so body copy belongs to the logo */
  --ink-soft: #4C5A70;       /* navy-biased grey, not a neutral default */
  --paper: #FFFFFF;
  --cloud: #F4F6FA;
  --line: #DFE4EE;

  --font: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 4px 16px rgba(16,45,79,.08);
  --shadow-lg: 0 14px 40px rgba(16,45,79,.14);
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-deep); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* ---------- Skip link / a11y ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ---------- Call bar ---------- */
.callbar {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: .93rem;
  text-align: center;
  padding: 9px 20px;
}
.callbar a {
  color: var(--yellow); text-decoration: none;
  display: inline-block; padding: 6px 4px; /* tappable */
}
.callbar a:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--yellow);
}
.head-in { display: flex; align-items: center; gap: 20px; padding: 10px 20px; max-width: var(--wrap); margin: 0 auto; }
/* The logo already contains the wordmark and tagline — don't set type next to it. */
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo img { height: 46px; width: auto; display: block; }
@media (max-width: 420px) { .logo img { height: 38px; } }

.nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 9px 13px; border-radius: 10px; text-decoration: none;
  color: var(--ink); font-weight: 700; font-size: .93rem;
}
.nav a:hover { background: var(--cloud); }
.nav a.cta {
  background: var(--red); color: #fff; padding: 11px 20px; border-radius: 999px;
  box-shadow: 0 3px 0 var(--red-deep);
}
.nav a.cta:hover { background: var(--red-deep); box-shadow: 0 2px 0 var(--red-deep); transform: translateY(1px); }

.burger {
  display: none; margin-left: auto; background: none; border: 2px solid var(--line);
  border-radius: 10px; font-size: 1.2rem; cursor: pointer;
  min-width: 46px; min-height: 46px; /* full thumb target */
}

@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px; gap: 2px; border-bottom: 3px solid var(--yellow); box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px; }
  .nav a.cta { text-align: center; margin-top: 6px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 15% -10%, rgba(254,192,5,.42), transparent 60%),
    radial-gradient(900px 460px at 90% 0%, rgba(39,89,148,.20), transparent 60%),
    var(--cloud);
  padding: 62px 0 72px;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 46px;
  background: var(--paper);
  clip-path: polygon(0 100%, 0 40%, 6% 62%, 12% 32%, 19% 58%, 26% 26%, 33% 54%, 40% 22%, 47% 50%, 54% 20%, 61% 50%, 68% 24%, 75% 54%, 82% 28%, 89% 58%, 95% 36%, 100% 60%, 100% 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 28px; } }

.eyebrow {
  display: inline-block; background: var(--paper); border: 2px solid var(--yellow-deep);
  color: var(--ink); font-weight: 800; font-size: .8rem; letter-spacing: .04em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.05; margin: 0 0 16px;
  font-weight: 900; letter-spacing: -.03em;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero p.lede { font-size: 1.16rem; color: var(--ink-soft); margin: 0 0 26px; max-width: 56ch; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  font-weight: 800; padding: 15px 28px; border-radius: 999px; font-size: 1.04rem;
  transition: transform .12s, box-shadow .12s, background .12s;
}
.btn-call { background: var(--red); color: #fff; box-shadow: 0 4px 0 var(--red-deep); }
.btn-call:hover { background: var(--red-deep); transform: translateY(2px); box-shadow: 0 2px 0 var(--red-deep); }
.btn-ghost { background: var(--paper); color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

.hero-card {
  background: var(--paper); border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow-lg); border: 3px solid var(--yellow);
}
.hero-card h2 { margin: 0 0 14px; font-size: 1.1rem; font-weight: 900; }
.hero-card ul { list-style: none; margin: 0; padding: 0; }
.hero-card li {
  padding: 9px 0 9px 30px; position: relative; font-weight: 600;
  font-size: .96rem; border-bottom: 1px solid var(--line);
}
.hero-card li:last-child { border-bottom: 0; }
.hero-card li::before {
  content: "✓"; position: absolute; left: 0; top: 9px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--green); color: #fff;
  font-size: .72rem; font-weight: 900; display: grid; place-items: center;
}

/* ---------- Sections ---------- */
section { padding: 62px 0; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.sec-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 900; letter-spacing: -.02em;
  margin: 0 0 12px; line-height: 1.15;
}
.sec-head p { color: var(--ink-soft); font-size: 1.06rem; margin: 0; }
.bg-cloud { background: var(--cloud); }

/* ---------- Category / product cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: var(--paper); border-radius: var(--radius); border: 1px solid var(--line);
  padding: 24px; box-shadow: var(--shadow);
  transition: transform .14s, box-shadow .14s, border-color .14s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--yellow-deep); }
.card h3 { margin: 0 0 8px; font-size: 1.16rem; font-weight: 900; letter-spacing: -.01em; }
.card p { margin: 0 0 16px; color: var(--ink-soft); font-size: .95rem; flex: 1; }
.card .card-link {
  text-decoration: none; color: var(--red); font-weight: 800; font-size: .95rem;
  display: inline-flex; align-items: center; min-height: 44px; /* thumb-sized tap target */
}
.card .card-link:hover { text-decoration: underline; }
.card-icon { font-size: 2rem; line-height: 1; margin-bottom: 12px; }

/* ---------- Photo cards ---------- */
.card-photo { padding: 0; overflow: hidden; text-decoration: none; color: inherit; }
.card-img {
  display: block; background: var(--cloud);
  border-bottom: 1px solid var(--line);
}
.card-img img {
  width: 100%; height: 190px; object-fit: contain; padding: 10px;
  transition: transform .18s ease;
}
.card-photo:hover .card-img img { transform: scale(1.04); }
.card-photo-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card-photo-body h3 { margin: 0 0 6px; font-size: 1.08rem; font-weight: 900; }
.card-photo-body p { margin: 0 0 12px; color: var(--ink-soft); font-size: .9rem; flex: 1; }

/* ---------- Price rows ---------- */
.unit-img {
  flex-shrink: 0; display: block; width: 132px; height: 132px;
  border-radius: 12px; overflow: hidden; background: var(--cloud); border: 1px solid var(--line);
}
.unit-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.unit {
  display: flex; align-items: flex-start; gap: 18px; padding: 20px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  margin-bottom: 12px;
}
.unit:hover { border-color: var(--yellow-deep); }
.unit-body { flex: 1; min-width: 0; }
.unit-body h3 { margin: 0 0 4px; font-size: 1.05rem; font-weight: 800; }
.unit-body p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.unit-meta { font-size: .8rem; color: var(--ink-soft); font-weight: 700; margin-top: 5px; }
.unit-price { text-align: right; flex-shrink: 0; }
.reg { display: block; font-size: .82rem; color: var(--ink-soft); text-decoration: line-through; }
.now { display: block; font-size: 1.42rem; font-weight: 900; color: var(--red); line-height: 1.2; }
.per { display: block; font-size: .72rem; color: var(--ink-soft); font-weight: 700; }
.save-tag {
  display: inline-block; background: var(--green); color: #fff; font-size: .7rem;
  font-weight: 900; padding: 3px 9px; border-radius: 999px; margin-top: 5px;
}
@media (max-width: 620px) {
  .unit { flex-wrap: wrap; gap: 14px; }
  .unit-img { width: 96px; height: 96px; }
  .unit-body { flex: 1 1 55%; min-width: 0; }
  .unit-price { text-align: left; flex: 1 1 100%; }
  .unit-price .price-cta { width: 100%; }
  .card-img img { height: 165px; }
}

/* Replaces the price when show_prices is off — the CTA *is* the price. */
.price-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  white-space: nowrap; text-decoration: none;
  background: var(--red); color: #fff; font-weight: 800; font-size: .95rem;
  padding: 12px 20px; border-radius: 999px; min-height: 44px;
  box-shadow: 0 3px 0 var(--red-deep);
  transition: background .12s, transform .12s, box-shadow .12s;
}
.price-cta:hover {
  background: var(--red-deep); transform: translateY(2px); box-shadow: 0 1px 0 var(--red-deep);
}
.card .price-cta { width: 100%; }

.badge {
  display: inline-block; background: var(--yellow); color: var(--ink);
  font-size: .68rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; margin-left: 7px; vertical-align: middle;
}

/* ---------- Towns ---------- */
.town-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.town-chip {
  display: block; text-decoration: none; background: var(--paper); border: 2px solid var(--line);
  border-radius: 14px; padding: 15px 18px; font-weight: 800; color: var(--ink);
  transition: border-color .12s, transform .12s;
}
.town-chip:hover { border-color: var(--red); transform: translateY(-2px); }
.town-chip small { display: block; font-weight: 600; color: var(--ink-soft); font-size: .78rem; }

/* ---------- Reviews ---------- */
.review {
  background: var(--paper); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.stars { color: var(--yellow-deep); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 10px; }
.review p { margin: 0 0 14px; font-size: .96rem; color: var(--ink-soft); }
.review cite { font-style: normal; font-weight: 800; font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line); border-radius: 14px; padding: 0;
  margin-bottom: 10px; background: var(--paper); overflow: hidden;
}
.faq details[open] { border-color: var(--yellow-deep); }
.faq summary {
  cursor: pointer; font-weight: 800; padding: 18px 20px; list-style: none;
  display: flex; justify-content: space-between; gap: 14px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--red); font-weight: 900; }
.faq details[open] summary::after { content: "−"; }
.faq .faq-body { padding: 0 20px 18px; color: var(--ink-soft); }
.faq .faq-body p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff; text-align: center; padding: 62px 20px; border-radius: var(--radius-lg);
}
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 900; margin: 0 0 12px; }
.cta-band p { font-size: 1.08rem; opacity: .95; margin: 0 0 26px; }
.cta-band .btn-call { box-shadow: 0 4px 0 var(--red-deep); }

/* ---------- Footer ---------- */
.site-foot { background: var(--navy); color: #AEBACB; padding: 54px 0 26px; margin-top: 62px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.site-foot h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 2px; }
.site-foot a {
  color: #AEBACB; text-decoration: none; font-size: .9rem;
  display: inline-flex; align-items: center; min-height: 40px; /* tappable on phones */
}
.site-foot a:hover { color: var(--yellow); }
/* "BOOK A" is navy — on the navy footer it would vanish. White chip, deliberate. */
.foot-logo {
  display: inline-block; background: #fff; padding: 12px 16px;
  border-radius: 14px; margin-bottom: 14px;
}
.foot-logo img { height: 44px; width: auto; display: block; }
.foot-phone { color: var(--yellow) !important; font-size: 1.32rem !important; font-weight: 900; }
.foot-bot {
  border-top: 1px solid #2A4570; margin-top: 34px; padding-top: 20px;
  font-size: .8rem; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}

/* ---------- Sticky mobile call ---------- */
.mobile-call { display: none; }
@media (max-width: 700px) {
  .mobile-call {
    display: block; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 60;
    background: var(--red); color: #fff; text-align: center; text-decoration: none;
    font-weight: 900; padding: 16px; border-radius: 999px; box-shadow: var(--shadow-lg);
  }
  body { padding-bottom: 84px; }
}

/* ---------- Prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; font-weight: 900; margin: 34px 0 12px; letter-spacing: -.01em; }
.prose h3 { font-size: 1.15rem; font-weight: 800; margin: 26px 0 8px; }
.prose p { color: var(--ink-soft); margin: 0 0 14px; }
.prose ul { color: var(--ink-soft); padding-left: 20px; }
.prose li { margin-bottom: 7px; }

.crumbs { font-size: .85rem; color: var(--ink-soft); padding: 18px 0 0; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--red); }

.page-head { padding: 44px 0 28px; }
.page-head h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 900; letter-spacing: -.025em; margin: 0 0 12px; }
.page-head p { font-size: 1.08rem; color: var(--ink-soft); margin: 0; max-width: 62ch; }

.note {
  background: #FFF9DB; border-left: 4px solid var(--yellow-deep);
  padding: 15px 18px; border-radius: 0 12px 12px 0; font-size: .93rem; margin: 20px 0;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
