/* =================================================================
   CLUB K9 — stylesheet
   Colour scheme: olive green · sage · warm neutrals · charcoal
   Layout: full-width colour bands, split photo panels, flat cards
   Fonts: Oswald (condensed caps headings) · Nunito (body)

   👉 ALL COLOURS LIVE IN :root BELOW — change one and it updates
      everywhere on the site.
   ================================================================= */

:root {
  /* --- greens (the main brand colour) --- */
  --olive:       #7A8B54;   /* primary green — bands & buttons */
  --olive-deep:  #5C6B3D;   /* darker green — hovers & headings */
  --olive-dark:  #48542F;   /* deepest green                    */
  --sage:        #C6D0AF;   /* solid sage panel                 */
  --sage-pale:   #E8EBE0;   /* pale section background          */

  /* --- neutrals --- */
  --charcoal:    #333333;   /* dark bands & footer   */
  --charcoal-lt: #414141;   /* dark card surface     */
  --off-white:   #F5F5F2;   /* light section bg      */
  --white:       #FFFFFF;   /* card surface          */

  /* --- supporting warmth (kept from the original brand) --- */
  --brown:       #7C5A39;
  --beige:       #EDE4D6;
  --gold:        #C9A24B;   /* stars */

  /* --- text --- */
  --ink:         #2E3226;   /* body copy        */
  --muted:       #6B7264;   /* secondary copy   */
  --on-dark:     #EDEFE6;   /* copy on dark bg  */

  /* --- shape & depth --- */
  --radius:      4px;       /* squarer, more grown-up than before */
  --radius-lg:   8px;
  --shadow-sm:   0 2px 10px rgba(45,50,38,.07);
  --shadow-md:   0 10px 30px -14px rgba(45,50,38,.22);

  --maxw:        1180px;
}

/* ===== base ===================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--olive-deep); }

/* Headings: tall condensed caps — the signature of the new look */
h1, h2, h3, h4, h5, .num, .btn, .nav-cta, .main-nav a, .svc-num, .licence-bar {
  font-family: 'Oswald', 'Nunito', sans-serif;
  font-weight: 600;
  letter-spacing: .02em;
}

h1, h2, h3, h4, h5 {
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--olive-deep);
}

h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; }

.container { width: min(100% - 3rem, var(--maxw)); margin-inline: auto; }

/* ===== buttons ================================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border: 0;
  border-radius: var(--radius);
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s, border-color .2s;
}
.btn-primary { background: var(--olive); color: #fff; }
.btn-primary:hover { background: var(--olive-deep); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--olive-deep);
  border: 2px solid var(--olive);
}
.btn-ghost:hover { background: var(--olive); color: #fff; transform: translateY(-2px); }

.btn-lg { padding: 1.2rem 3rem; font-size: 1.15rem; }
.btn-block { width: 100%; text-align: center; }

/* ===== header — centred logo above a centred nav ================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--olive);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.18); }

.brand-bar {
  display: flex; justify-content: center;
  padding: .9rem 1rem .5rem;
  transition: padding .25s;
}
.site-header.scrolled .brand-bar { padding: .35rem 1rem .2rem; }

.brand-logo {
  height: 94px; width: auto;
  transition: height .25s;
}
.site-header.scrolled .brand-logo { height: 57px; }

.nav-bar { border-top: 1px solid rgba(255,255,255,.18); }
.nav-inner { display: flex; justify-content: center; align-items: center; }

.main-nav { display: flex; align-items: center; gap: .35rem; flex-wrap: wrap; justify-content: center; }
.main-nav a {
  padding: .85rem .8rem;
  color: #fff;
  font-size: .95rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
}
.main-nav a:hover { color: var(--sage); }

.nav-cta {
  margin-left: .6rem;
  padding: .6rem 1.2rem !important;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: var(--radius);
}
.nav-cta:hover { background: #fff; color: var(--olive-deep) !important; }

/* hamburger (mobile only) */
.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: .6rem; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; margin: 5px 0;
  background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== hero — full-bleed photo ================================== */
.hero {
  position: relative;
  /* fill the screen below the header, however tall the window is
     (svh keeps it honest on phones, where the address bar moves) */
  min-height: max(460px, calc(100vh - 170px));   /* 170px = header height */
  min-height: max(460px, calc(100svh - 170px));
  display: grid; place-items: center;
  text-align: center;
  overflow: hidden;
}
/* drone footage fills the hero; poster image sits behind as a fallback */
.hero { background: url('images/drone-poster.jpg') center/cover no-repeat; }

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* dark wash so the white headline stays readable over the footage */
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(35,40,28,.62) 0%, rgba(35,40,28,.48) 45%, rgba(35,40,28,.72) 100%);
}
.hero-inner { position: relative; padding: 4.5rem 1.5rem; }

.hero-logo { height: 143px; width: auto; margin: 0 auto 1.6rem; }

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 6vw, 4rem);
  margin-bottom: .3em;
  text-shadow: 0 3px 20px rgba(0,0,0,.4);
}
.hero-tagline {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}

/* ---- "formerly Holmwood Bound" line in the hero ---- */
.hero-former {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase; letter-spacing: .14em;
  font-size: .82rem;
  color: rgba(255,255,255,.82);
  margin: -.6rem 0 1.6rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

/* ---- headline price flash in the hero ---- */
.price-flash-row { text-align: center; margin: -.6rem 0 2.2rem; }
.price-flash {
  display: inline-flex; align-items: baseline; gap: .45rem;
  margin: 0;
  padding: .6rem 1.6rem;
  background: var(--olive-deep);
  border: 2px solid var(--gold);
  border-radius: 100px;
  text-decoration: none;
}
.pf-from, .pf-unit {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase; letter-spacing: .08em;
  font-size: .82rem; color: #fff;
}
.pf-amount {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 2rem; line-height: 1; color: var(--gold);
}

/* ===== inner-page hero (shorter than the home page one) ========= */
.page-hero {
  position: relative;
  min-height: 380px;
  display: grid; place-items: center;
  text-align: center;
  background: center/cover no-repeat var(--sage-pale);
  overflow: hidden;
}
.page-hero-inner { position: relative; padding: 4rem 1.5rem; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  margin-bottom: .25em;
  text-shadow: 0 3px 20px rgba(0,0,0,.4);
}
.page-eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: .82rem; color: var(--sage);
  margin: 0 0 .7rem;
}

/* ===== nav dropdown ============================================= */
.has-sub { position: relative; }
.sub-menu {
  position: absolute; left: 0; top: 100%;
  min-width: 200px;
  background: var(--olive-deep);
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
  padding: .3rem 0;
  display: none;
  z-index: 5;
}
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu { display: block; }
.sub-menu a { display: block; padding: .6rem 1.1rem; font-size: .9rem; white-space: nowrap; }
.sub-menu a:hover { background: var(--olive); color: #fff; }
.sub-menu a.is-current { color: var(--sage); }

/* ===== narrow text column ======================================= */
.narrow { max-width: 760px; }
.lead-copy { font-size: 1.1rem; }
.muted-note { font-size: .93rem; color: rgba(237,239,230,.75); }

/* Woof Bus fare line */
.bus-fare { font-size: 1.05rem; margin-bottom: .6rem; }
.bus-fare strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem; color: var(--sage); letter-spacing: .02em;
}

/* ===== centred call-to-action band ============================== */
.cta-band { text-align: center; }
.cta-band p { max-width: 52ch; margin-inline: auto; color: rgba(255,255,255,.9); }
.cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }
.btn-ghost.btn-on-dark { color: #fff; border-color: rgba(255,255,255,.75); background: transparent; }
.btn-ghost.btn-on-dark:hover { background: #fff; color: var(--olive-deep); border-color: #fff; }

/* ===== Woof Bus promo strip on the home page ==================== */
.bus-promo { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.bus-promo-media { min-height: 340px; background: center/cover no-repeat var(--sage-pale); }
.bus-promo-copy {
  background: var(--charcoal);
  display: grid; align-items: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
}
.bus-promo-copy h2 { color: var(--sage); }
.bus-promo-copy p  { color: var(--on-dark); }
.bus-promo-copy .page-eyebrow { color: var(--olive); }

/* ===== licence bar ============================================== */
.licence-bar {
  background: var(--olive-deep);
  color: #fff;
  text-align: center;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .85rem 1.5rem;
}

/* ===== bands (full-width colour blocks) ========================= */
.band { padding: clamp(3.5rem, 7vw, 6rem) 0; }

/* stop the sticky header covering headings when jumping to a link */
.band, .split, .hero { scroll-margin-top: 130px; }
.band-pale     { background: var(--sage-pale); }
.band-offwhite { background: var(--off-white); }
.band-olive    { background: var(--olive); color: #fff; }
.band-olive h2, .band-olive h3 { color: #fff; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3.2rem); }
.section-head h2 { margin-bottom: .4em; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section-head-light .section-sub { color: rgba(255,255,255,.85); }

/* ===== about — paw-tick checklist =============================== */
.about-grid {
  display: grid; grid-template-columns: 1.4fr .8fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.about-copy h2 { margin-bottom: .8em; }

.paw-list { list-style: none; margin: 0; padding: 0; }
.paw-list li {
  position: relative;
  padding: .45rem 0 .45rem 3.1rem;
  font-size: 1.05rem;
}
/* white paw-print bullet in a green circle */
.paw-list li::before {
  content: '';
  position: absolute; left: 0; top: .3rem;
  width: 2.1rem; height: 2.1rem;
  background: var(--olive) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cellipse cx='6.5' cy='9' rx='2.2' ry='3'/%3E%3Cellipse cx='11' cy='6.5' rx='2.2' ry='3.2'/%3E%3Cellipse cx='16' cy='7.5' rx='2.2' ry='3'/%3E%3Cellipse cx='19.5' cy='11.5' rx='2' ry='2.6'/%3E%3Cpath d='M12.5 12c2.8 0 5.5 2.2 5.5 4.8 0 2-1.6 3.2-3.6 3.2-1.2 0-1.6-.5-3-.5s-1.8.5-3 .5c-2 0-3.4-1.2-3.4-3.2C5 14.2 9.7 12 12.5 12z'/%3E%3C/svg%3E") center/1.1rem no-repeat;
  border-radius: 50%;
}
.paw-list-light li { color: var(--on-dark); }

.about-aside { display: grid; place-items: center; }
.about-mascot { max-width: 260px; }

/* ---- about: photo cards with a heading underneath ---- */
.about-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.about-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.about-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.ac-photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sage-pale); }
.ac-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s ease;
}
.about-card:hover .ac-photo img { transform: scale(1.08); }

.about-card figcaption { padding: 1.2rem 1.2rem 1.4rem; }
.about-card h3 {
  margin-bottom: .45em;
  position: relative; padding-bottom: .5rem;
}
/* a little green rule that grows on hover */
.about-card h3::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 30px; height: 3px; background: var(--olive);
  transition: width .35s ease;
}
.about-card:hover h3::after { width: 68px; }
.about-card figcaption p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---- about: the facts list, with Bear alongside ---- */
.about-facts {
  display: grid; grid-template-columns: 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
}
.about-facts .paw-list { columns: 2; column-gap: 2.5rem; }
.about-facts .paw-list li { break-inside: avoid; }
.about-facts .about-mascot { max-width: 190px; }

/* ===== trust strip (counters) =================================== */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; text-align: center;
}
.stat .num {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
/* a word rather than a number, so it needs to sit smaller to fit */
.num-word { font-size: clamp(1.6rem, 3.4vw, 2.4rem) !important; }

.stat .label {
  display: block; margin-top: .4rem;
  font-size: .9rem; letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

/* ===== services — flat numbered cards =========================== */
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* illustrated site map */
.site-map {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(.8rem, 2vw, 1.6rem);
  box-shadow: var(--shadow-sm);
}
.site-map img { width: 100%; height: auto; display: block; }

/* centred button under the "how it works" steps */
.how-cta { text-align: center; margin-top: 2.5rem; }

/* with 7 cards the last one would sit alone on the left — centre it */
.service-grid > .service-card:last-child:nth-child(3n + 1) { grid-column: 2; }

.svc-num {
  display: grid; place-items: center;
  width: 52px; height: 52px; margin: 0 auto 1.2rem;
  background: var(--olive); color: #fff;
  border-radius: 50%;
  font-size: 1.35rem; font-weight: 600;
}
.service-card h3 { margin-bottom: .6em; }

/* ---- service cards that carry a photo ---- */
.service-card--photo { padding: 0; overflow: hidden; }
.svc-photo { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sage-pale); }
.svc-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s ease;
}
.service-card--photo:hover .svc-photo img { transform: scale(1.07); }
/* the numbered badge sits over the bottom edge of the photo */
.service-card--photo .svc-num {
  position: relative; z-index: 1;
  margin-top: -27px; margin-bottom: 1rem;
  border: 3px solid var(--white);
}
.svc-body { padding: 0 1.7rem 2.1rem; }
/* stand-in panel where there is no photo yet */
.svc-photo-blank { display: grid; place-items: center; background: var(--sage); }
.svc-photo-blank svg { width: 62px; height: 62px; fill: var(--olive); opacity: .5; }
.service-card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ===== split bands (text panel + edge-to-edge photo) ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-copy {
  background: var(--sage);
  display: grid; align-items: center;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 4rem);
}
.split-inner { max-width: 520px; margin-inline: auto; }
.split-copy h2 { margin-bottom: .7em; }

.split-dark { background: var(--charcoal); }
.split-dark h2 { color: var(--sage); }
.split-dark p  { color: var(--on-dark); }
.split-dark strong { color: #fff; }

.split-media { min-height: 420px; background: center/cover no-repeat var(--sage-pale); }

/* photo first on reversed bands */
.split-reverse .split-media { grid-column: 1; grid-row: 1; }
.split-reverse .split-copy  { grid-column: 2; grid-row: 1; }

/* ===== membership ============================================== */
/* a secondary heading used inside a section */
.sub-head {
  text-align: center;
  font-size: 1.35rem;
  margin: 0 0 1.4rem;
}

/* the three "how it works" steps */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.how-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.7rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.how-card h3 { margin-bottom: .55em; }
.how-card p  { color: var(--muted); margin: 0; font-size: .97rem; }

/* the days-per-week price tiers */
.member-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  align-items: stretch;
}
.member-card {
  position: relative;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 2rem 1rem 1.7rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.member-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.member-card.featured { border-color: var(--olive); }

.member-days {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase; letter-spacing: .04em;
  font-size: .92rem; line-height: 1.25;
  color: var(--muted);
  margin: 0 0 .8rem;
}
.member-num {
  display: block;
  font-size: 2.6rem; font-weight: 700; line-height: 1;
  color: var(--olive);
}
.member-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem; color: var(--olive-deep);
  margin: 0;
}
.member-amount { font-size: 1.9rem; font-weight: 700; }
.member-unit {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: .8rem; color: var(--muted); letter-spacing: .02em;
  margin-top: .2rem;
}
/* "works out at £47 a day" under each monthly fee */
.member-daily {
  margin: .9rem 0 0;
  padding-top: .8rem;
  border-top: 1px solid #E4E8DA;
  font-size: .85rem; color: var(--muted);
}
.member-daily strong { color: var(--olive-deep); font-size: 1rem; }

/* explains how the "works out at" figures are calculated */
.member-basis {
  text-align: center;
  margin: 1.4rem 0 0;
  font-size: .88rem; color: var(--muted); font-style: italic;
}

/* ad hoc day rate, sitting under the tiers */
.adhoc-strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(1.2rem, 4vw, 3rem); flex-wrap: wrap;
  background: var(--white);
  border-left: 5px solid var(--olive);
  border-radius: var(--radius);
  padding: 1.6rem clamp(1.3rem, 3vw, 2.2rem);
  margin-top: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.adhoc-strip h3 { margin-bottom: .35em; }
.adhoc-strip p  { margin: 0; color: var(--muted); max-width: 62ch; font-size: .97rem; }
.adhoc-price {
  flex: 0 0 auto; text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem; color: var(--olive-deep);
}
.adhoc-num { font-size: 2.3rem; font-weight: 700; }

/* the two "what's included / good to know" columns */
.included-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.included-grid .sub-head { text-align: left; }

/* ===== Collar app band ========================================= */
.collar-band { text-align: center; }
.collar-band > p { max-width: 62ch; margin-inline: auto; color: rgba(255,255,255,.92); }
.collar-band .page-eyebrow { color: var(--sage); }
.collar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  margin: 2.5rem 0 .5rem; text-align: left;
}
.collar-item {
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
}
.collar-item h4 {
  color: #fff; font-size: 1rem; margin-bottom: .45em;
}
.collar-item p { color: rgba(255,255,255,.85); font-size: .92rem; margin: 0; }

/* ===== pricing ================================================== */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.price-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin-inline: auto; }

.price-card {
  position: relative;
  display: flex; flex-direction: column;   /* keeps every button level */
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.price-card .btn { margin-top: auto; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--olive); }

.price-badge {
  position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%);
  background: var(--olive); color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .08em;
  padding: .3rem 1rem; border-radius: 100px; white-space: nowrap;
}
.price-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem; color: var(--olive-deep);
  margin: .4rem 0 .1rem;
}
.price-num { font-size: 2.8rem; font-weight: 700; line-height: 1; }
.price-from {
  font-size: .85rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin-right: .15rem;
}
/* used where there's no single figure — e.g. "Membership packages" */
.price-varies {
  display: block;
  font-size: 1.6rem; font-weight: 600; line-height: 1.15;
  color: var(--olive-deep);
}
.price-unit { font-size: .95rem; color: var(--muted); margin-left: .2rem; }
.price-alt { color: var(--olive); font-weight: 700; font-size: .92rem; margin-bottom: 1.2rem; }

.price-feats { list-style: none; margin: 0 0 1.6rem; padding: 0; text-align: left; flex: 1 0 auto; }
.price-feats li {
  position: relative; padding: .38rem 0 .38rem 1.6rem;
  font-size: .95rem; color: var(--muted);
}
.price-feats li::before {
  content: '✔'; position: absolute; left: 0;
  color: var(--olive); font-weight: 700;
}
.price-note { text-align: center; margin: 2.2rem 0 0; color: var(--muted); font-size: .92rem; font-style: italic; }

/* ===== crew gallery ============================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 4px;
  margin-top: 2.5rem;
}
.g-item {
  border: 0; padding: 0; margin: 0; cursor: pointer;
  aspect-ratio: 1; overflow: hidden; background: var(--sage-pale);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .3s; }
.g-item:hover img { transform: scale(1.08); filter: brightness(1.05); }

/* ===== reviews ================================================== */
.review-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }

.review {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3.2rem 1.7rem 1.8rem;
  margin: 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.review-avatar {
  position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 56px; display: grid; place-items: center;
  background: var(--olive-deep); color: #fff;
  border: 3px solid var(--white);
  border-radius: 50%; overflow: hidden;
  font-family: 'Oswald', sans-serif; font-size: 1.2rem;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review .stars { color: var(--gold); letter-spacing: .12em; margin-bottom: .7rem; }
.review blockquote {
  margin: 0 0 1rem; padding: 0;
  font-style: italic; color: var(--ink); font-size: .98rem;
}
.review figcaption { font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: .9rem; color: var(--olive-deep); }
/* "5.0 ★★★★★ from 27 Google reviews" under the heading */
.rating-line {
  display: flex; align-items: center; justify-content: center;
  gap: .55rem; flex-wrap: wrap;
  margin: .2rem 0 0;
}
.rating-score {
  font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700;
  line-height: 1; color: #fff;
}
.rating-line .stars { color: var(--gold); font-size: 1.25rem; letter-spacing: .1em; }
.rating-count { color: rgba(255,255,255,.85); font-size: .95rem; }

.review-note { text-align: center; margin: 2.2rem 0 0; font-size: .95rem; }
.review-note a {
  color: #fff; text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,.45);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.review-note a:hover { border-bottom-color: #fff; }

/* ===== contact ================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }

.contact-list { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.1rem; }
.ci-ic {
  flex: 0 0 auto; width: 2.6rem; height: 2.6rem;
  display: grid; place-items: center;
  background: var(--olive); border-radius: 50%; font-size: 1.05rem;
}
.contact-list strong {
  display: block;
  font-family: 'Oswald', sans-serif; font-weight: 500;
  text-transform: uppercase; font-size: .82rem; letter-spacing: .06em;
  color: var(--muted);
}
.contact-list a, .contact-list span { color: var(--ink); text-decoration: none; }
.contact-list a:hover { color: var(--olive-deep); text-decoration: underline; }

.contact-socials { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.soc {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem 1rem;
  background: var(--white); border-radius: var(--radius);
  color: var(--ink); text-decoration: none; font-size: .9rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: background .2s, color .2s, transform .2s;
}
.soc svg { width: 18px; height: 18px; fill: var(--olive-deep); transition: fill .2s; }
.soc:hover { background: var(--olive); color: #fff; transform: translateY(-2px); }
.soc:hover svg { fill: #fff; }

.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map iframe { width: 100%; height: 250px; border: 0; display: block; }

.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  align-content: start;
}
.field { display: flex; flex-direction: column; }
.field.full, .contact-form .btn, .form-hint { grid-column: 1 / -1; }

/* breed / age / gender sit three across on one row */
.field-row-3 {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.field label {
  font-family: 'Oswald', sans-serif; font-weight: 500;
  text-transform: uppercase; font-size: .78rem; letter-spacing: .06em;
  color: var(--muted); margin-bottom: .35rem;
}
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 1rem;
  padding: .75rem .9rem;
  border: 1.5px solid #DEE2D4;
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--olive); background: #fff;
}
/* keep the dropdown looking like the text boxes, with our own arrow */
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%236B7264' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: .7rem;
  padding-right: 2.3rem;
  cursor: pointer;
}
.field textarea { resize: vertical; }
.form-hint { font-size: .85rem; color: var(--muted); margin: .4rem 0 0; text-align: center; }

/* ===== footer =================================================== */
.site-footer { background: var(--charcoal); color: var(--on-dark); padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 2.5rem; }
.footer-logo { height: 99px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: #B9BFAE; font-size: .95rem; max-width: 34ch; }

.footer-socials { display: flex; gap: .6rem; }
.footer-socials a {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: rgba(255,255,255,.09); border-radius: 50%;
  transition: background .2s;
}
.footer-socials a:hover { background: var(--olive); }
.footer-socials svg { width: 17px; height: 17px; fill: #fff; }

.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links h5 {
  color: var(--sage); font-size: .95rem; margin: 0 0 .4rem;
}
.footer-links a, .footer-links span { color: #B9BFAE; text-decoration: none; font-size: .93rem; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2.5rem; padding-top: 1.3rem;
}
.footer-bottom p { margin: 0; font-size: .82rem; color: #98A08D; }

/* ===== back to top ============================================== */
.to-top {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 70;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--olive); color: #fff;
  border-radius: 50%; text-decoration: none; font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--olive-deep); }

/* ===== lightbox ================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(25,28,20,.94);
  display: none; place-items: center;
  padding: 2rem;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(92vw, 900px); max-height: 86vh; border-radius: var(--radius); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,.14); color: #fff;
  border: 0; cursor: pointer; border-radius: 50%;
  width: 46px; height: 46px; font-size: 1.5rem; line-height: 1;
  display: grid; place-items: center;
  transition: background .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--olive); }
.lb-close { top: 1.2rem; right: 1.2rem; font-size: 1.1rem; }
.lb-prev  { left: 1.2rem;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.2rem; top: 50%; transform: translateY(-50%); }

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

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
.floaty { animation: floaty 5s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  /* visitors who ask for less motion get the still photo, not the video */
  .hero-video { display: none; }
}

/* ===== responsive =============================================== */
@media (max-width: 1100px) {
  .member-grid { grid-template-columns: repeat(3, 1fr); }
  .collar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .about-cards   { grid-template-columns: repeat(2, 1fr); }
  .service-grid  { grid-template-columns: repeat(2, 1fr); }
  .price-grid    { grid-template-columns: repeat(2, 1fr); }
  .price-grid-3  { grid-template-columns: repeat(2, 1fr); }
  .how-grid      { grid-template-columns: 1fr; }
  .review-track  { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  /* stack the split bands: photo on top, copy below */
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 300px; grid-row: 1 !important; grid-column: 1 !important; }
  .split-copy  { grid-row: 2 !important; grid-column: 1 !important; }

  .bus-promo { grid-template-columns: 1fr; }
  .bus-promo-media { min-height: 260px; grid-row: 1; }

  .member-grid   { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: 1fr; }

  .about-grid   { grid-template-columns: 1fr; }
  .about-aside  { display: none; }
  .about-facts  { grid-template-columns: 1fr; }
  .about-facts .about-mascot { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-grid   { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

  /* mobile nav */
  .nav-toggle { display: block; }
  .nav-inner  { justify-content: flex-end; }
  .main-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch;
    background: var(--olive-deep);
    padding: .5rem 1.5rem 1.2rem;
    box-shadow: 0 12px 24px rgba(0,0,0,.2);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .8rem .2rem; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav-cta { margin: .8rem 0 0; text-align: center; }

  /* no hover on touch — show the sub-items inline, slightly indented */
  .has-sub { position: static; }
  .sub-menu {
    display: block; position: static;
    background: none; box-shadow: none; padding: 0; min-width: 0;
  }
  .sub-menu a { padding-left: 1.4rem; font-size: .88rem; opacity: .85; }
  .sub-menu a:hover { background: none; }

  .brand-logo { height: 75px; }
  .hero-logo  { height: 109px; }
  /* smaller logo up here, so the header is shorter than on desktop */
  .hero {
    min-height: max(420px, calc(100vh - 145px));
    min-height: max(420px, calc(100svh - 145px));
  }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .service-grid, .price-grid, .price-grid-3, .contact-form { grid-template-columns: 1fr; }
  .member-grid, .collar-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .btn { width: 100%; text-align: center; }
}
