﻿/* ============================================================
   DIGGITY DOG RESORT â€” style.css
   Mobile-first at 375px. Desktop breakpoint: 1024px.
   No !important. No unused rules.
============================================================ */

/* ============================================================
   CUSTOM PROPERTIES
============================================================ */
:root {
  --navy:       #1E2B6B;
  --slate:      #7B8CB8;
  --gray-light: #D4D7E2;
  --white:      #FFFFFF;
  --body-text:  #3A3A3A;
  --gold:       #FFC845;

  --font-display: 'Fraunces', serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;

  --nav-height: 76px;
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.6;
  background: var(--white);
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================================
   FOCUS STYLES
   Visible on all interactive elements. Never removed without replacement.
============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================================
   SHARED SECTION UTILITIES
============================================================ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-inner--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--navy);
  line-height: 1.15;
  margin-top: 8px;
}

.section-title--light {
  color: var(--white);
}

.services-pricing-cta {
  text-align: center;
  margin-top: 24px;
}


/* Shared text-link CTA â€” used below gallery, pricing summary, etc. */
.section-text-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s;
}

.section-text-link:hover {
  opacity: 1;
}

.section-text-link--light {
  color: rgba(255, 255, 255, 0.9);
}
.section-text-link--light:hover {
  color: #ffffff;
  opacity: 1;
}

/* ============================================================
   EYEBROW
   text-transform and letter-spacing locked per brand.
============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* Navy on light backgrounds */
.eyebrow--on-light {
  color: var(--navy);
}

/* Slate on navy backgrounds â€” acceptable at this size/weight per brand rules */
.eyebrow--on-navy {
  color: var(--slate);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  width: 100%;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}

/* White bg, navy text â€” primary CTA */
.btn--primary {
  background: var(--white);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--gray-light);
}

/* Transparent, white border â€” on navy backgrounds */
.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Ghost outline â€” requirements CTA, on navy bg */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 14px 28px;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   S0 â€” ANNOUNCEMENT BAR
   Fixed top. Z-index 100. Dismissible.
============================================================ */
#ann-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 44px;
  z-index: 100;
  min-height: 36px;
}

.ann-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
}

.ann-link {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ann-link:hover {
  color: var(--white);
}

@media (min-width: 1024px) {
  .ann-text { font-size: 16px; }
}

.ann-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 14px;
  color: var(--white);
  opacity: 0.5;
  cursor: pointer;
}

.ann-close:hover {
  opacity: 1;
}

.ann-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 6px;
  flex-shrink: 0;
}

.ann-dot--open {
  background: #4ade80;
  animation: ann-pulse 2s ease-in-out infinite;
}

.ann-dot--closed {
  background: rgba(255, 255, 255, 0.35);
}

@keyframes ann-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70%  { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ============================================================
   S1 â€” STICKY NAVIGATION
   Fixed below ann-bar (top set by JS). Z-index 99.
============================================================ */
#site-nav {
  position: fixed;
  top: 0; /* JS overrides this to ann-bar height */
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  z-index: 99;
  height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 76px;
  width: auto;
  display: block;
  transform-origin: top center;
  animation: logo-swing 1.4s ease-in-out 1s 1 both;
}

@keyframes logo-swing {
  0%   { transform: rotate(0deg); }
  15%  { transform: rotate(-14deg); }
  30%  { transform: rotate(11deg); }
  45%  { transform: rotate(-7deg); }
  60%  { transform: rotate(4deg); }
  75%  { transform: rotate(-2deg); }
  90%  { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

/* Mobile: tap-to-call */
.nav-phone {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-phone:hover {
  color: var(--slate);
}

/* Mobile: hamburger â€” 44Ã—44px tap target */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
}

/* Desktop nav links â€” hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--slate);
}

.nav-link--active {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Desktop Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
}

.nav-dropdown-chevron {
  font-size: 10px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(30, 43, 107, 0.12);
  min-width: 180px;
  list-style: none;
  padding: 14px 0 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.nav-dropdown-link:hover {
  background: var(--gray-light);
}

/* Mobile services accordion */
.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  padding: 0;
}

.mobile-services-icon {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}

.mobile-services-toggle[aria-expanded="true"] .mobile-services-icon {
  transform: rotate(45deg);
}

.mobile-services-sub {
  list-style: none;
}

.mobile-services-list {
  list-style: none;
  padding: 4px 0;
}

.mobile-link--sub {
  font-size: 17px;
  padding-left: 16px;
  opacity: 0.8;
}

/* Desktop Book Now CTA in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #f5bc00;
}

/* ============================================================
   MOBILE MENU OVERLAY
   Full-screen, slides in from right.
============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 72px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
}

.mobile-menu-close:hover {
  opacity: 1;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
}

.mobile-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-link:hover {
  color: var(--gray-light);
}

.mobile-menu-book {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  min-height: 52px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-menu-book:hover {
  background: #f5bc00;
}

/* ============================================================
   S2 â€” HERO SECTION
   Full-bleed video background with overlay. Mobile-first.
============================================================ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-anim {
  opacity: 0;
  animation: heroFadeUp 0.65s ease forwards;
  animation-delay: var(--delay, 0s);
}

.hero {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px) center / 22px 22px,
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(90, 130, 255, 0.32) 0%, transparent 65%),
    linear-gradient(rgba(15, 20, 60, 0.88), rgba(15, 20, 60, 0.88)),
    url('Assets/Images/hero-mural-mobile.png') center / cover no-repeat,
    #1E2B6B;
  overflow: hidden;
}

/* Video panel â€” top on mobile, right on desktop */
.hero-video-wrap {
  width: 100%;
  padding: 14px 16px 0;
  flex-shrink: 0;
}

.hero-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

/* Content panel â€” navy, below video on mobile */
.hero-content {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 18px;
  padding: 36px 24px 44px;
  width: 100%;
  background: transparent;
}

/* Film grain over the content panel */
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23g)'/></svg>");
  opacity: 0.20;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

/* Top edge highlight â€” light catching the card edge */
.hero-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 25%,
    rgba(255, 255, 255, 0.30) 50%,
    rgba(255, 255, 255, 0.18) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Keep all content above grain */
.hero-content > * {
  position: relative;
  z-index: 1;
}

/* Bullet list */
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.hero-bullet strong {
  color: var(--white);
  font-weight: 700;
}

.hero-bullet-paw {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

/* Responsive line-break spans — mobile shows, desktop hides (flips at 1024px) */
.hero-br-mo { display: inline; }
.hero-br-dt { display: none; }

/* Social proof strip */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.75);
  margin-left: -6px;
  flex-shrink: 0;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-proof-label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-proof-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}
.hero-star-partial {
  position: relative;
  display: inline-block;
  color: rgba(255, 200, 69, 0.28);
}
.hero-star-partial::after {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--gold);
  white-space: nowrap;
}

.hero-proof-score {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.hero-proof-g {
  display: block;
  flex-shrink: 0;
}

.hero-proof-verified {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Subtext */
.hero-subtext {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.65;
  max-width: 460px;
}

/* CTA row */
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 14px;
  margin-top: 4px;
}

/* Gold primary button */
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  width: auto;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 3px 3px 0 rgba(30,43,107,0.7);
}

.btn--gold:hover {
  background: #f5bc00;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 200, 69, 0.45);
}

/* Text-link secondary CTA */
.hero-text-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.hero-text-link:hover {
  color: var(--white);
}

/* Hero â€” desktop: side-by-side grid (content left, video right) */
@media (min-width: 1024px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 580px;
    background: var(--navy); /* mural is desktop-only on .hero-content, not needed here */
  }
  .hero-content {
    order: 1;
    width: auto;
    padding: 64px 48px;
    align-self: stretch; /* fill full grid row height so bg image covers edge-to-edge */
    background:
      linear-gradient(rgba(30,43,107,0.88), rgba(30,43,107,0.88)),
      url('Assets/Images/hero-mural-desktop.png') center / cover no-repeat,
      #1E2B6B; /* flat navy â€” remove dot/ellipse gradient on desktop */
    align-items: center; /* center content block within the blue column */
  }
  .hero-content::before,
  .hero-content::after {
    display: none; /* suppress grain + top highlight on desktop */
  }
  .hero-content {
    overflow: hidden;
  }
  .hero-video-wrap {
    order: 2;
    width: auto;
    padding: 20px 20px 20px 0;
    display: flex;
    align-items: center;
  }
  .hero-video {
    aspect-ratio: 5 / 4;
    border: 1px solid rgba(255,255,255,0.15); /* visible container against navy bg */
  }
  .hero-headline {
    font-size: 64px;
    text-align: center;
  }
  .hero-br-mo { display: none; }
  .hero-br-dt { display: inline; }
  .hero-bullet {
    font-size: 17px;
  }
}

/* ============================================================
   S2.5 â€” TRUST BAR
   Slate bg. 40px height. Centered single line.
============================================================ */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-bar {
  background: var(--gray-light);
  min-height: 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

/* Pause on hover/focus for accessibility */
.trust-bar:hover .marquee-track,
.trust-bar:focus-within .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.trust-bar-item {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 18px;
}

.trust-bar-dot {
  font-size: 7px;
  color: rgba(30, 43, 107, 0.45);
  flex-shrink: 0;
}

/* ============================================================
   S3 â€” SERVICES SECTION
   White bg. 4 portrait image cards â€” 2Ã—2 mobile, 4-col desktop.
============================================================ */
.services {
  background: var(--white);
  padding: 48px 20px 48px;
}


.service-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}

/* Individual card â€” mobile: horizontal, image left / copy right */
.sci {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid var(--navy);
  display: flex;
  flex-direction: row;
}

/* Image panel */
.sci-bg {
  position: relative;
  width: 40%;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.sci:hover .sci-bg {
  transform: scale(1.05);
}

.sci-bg--daycare  { background-image: url('Assets/Images/Service-card-daycare.webp'); }
.sci-bg--boarding { background-image: url('Assets/Images/Service-card-boarding.webp'); }
.sci-bg--grooming { background-image: url('Assets/Images/Service-card-grooming.webp'); }
.sci-bg--walks    { background-image: url('Assets/Images/walks-sq.png'); }

/* Gradient overlay â€” not used on mobile horizontal layout */
.sci-overlay {
  display: none;
}

/* Copy panel */
.sci-content {
  position: relative;
  flex: 1;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: var(--navy);
}

.sci-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.sci-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  margin-top: 4px;
}

.sci-price {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.sci-link {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  background: var(--gold);
  text-decoration: none;
  margin-top: 16px;
  padding: 12px 28px;
  border-radius: 6px;
  box-shadow: 3px 3px 0 rgba(30,43,107,0.5);
  transition: opacity 0.2s;
}

.sci-link:hover {
  opacity: 0.9;
}

/* Pass Callout â€” full-width navy strip inside S3 */
.pass-callout {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 24px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pass-callout-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  line-height: 1.15;
}

.pass-callout-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.6;
}

.pass-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.pass-pill {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
}

.pass-cta-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
  align-self: flex-start;
}

.pass-cta-link:hover {
  opacity: 1;
}


/* ============================================================
   S4 â€” WHY US / DIFFERENTIATORS
   Navy bg. 2-col grid, gold accent lines.
============================================================ */
.why-us {
  background: var(--navy);
  padding: 88px 20px;
  position: relative;
}

.why-us-wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
}

.why-us-wave--top {
  top: -1px;
}

.why-us-wave--bottom {
  bottom: -1px;
}

.why-us-wave svg {
  display: block;
  width: 100%;
  height: 50px;
}

.why-us .section-title {
  text-align: center;
}

.why-us .eyebrow {
  text-align: center;
  display: block;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 20px 28px 0;
  border-top: 2px solid var(--gold);
  margin-top: -2px;
}

.pillar-card:nth-child(even) {
  padding-left: 24px;
  padding-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.pillar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  line-height: 1.2;
}

.pillar-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.why-us-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.why-us-cta .btn--primary {
  width: auto;
  padding: 14px 28px;
}

.why-us-about-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.why-us-about-link:hover {
  color: var(--white);
}

/* ============================================================
   PRICING SUMMARY
   Gray-light bg. 2Ã—2 mobile, 4-col desktop.
============================================================ */
.pricing-summary {
  background: var(--white);
  padding: 48px 20px;
  margin-top: 16px;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}

.ps-service {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 16px;
}

.ps-prices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ps-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.ps-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
}

.ps-amount {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.ps-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 16px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.ps-link:hover {
  opacity: 1;
}

.ps-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================================
   S5 â€” SOCIAL PROOF
   Gray-light bg. Horizontal scroll strip on mobile, 4-col grid desktop.
============================================================ */
.social-proof {
  background: var(--gray-light);
  padding: 48px 20px;
}

.reviews-aggregate {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: rgba(58, 58, 58, 0.85);
  margin-top: 8px;
}

/* Horizontal scroll strip â€” bleeds to section edges on mobile */
.reviews-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: 32px;
  margin-left: -20px;
  margin-right: -20px;
  padding: 4px 20px 12px;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 82vw;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

/* Review image â€” fills top of card */
.review-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  background-size: cover;
  background-position: center top;
}

.review-img--placeholder { background: var(--gray-light); }

/* â”€â”€ Service page review grid â€” static 2-up â”€â”€ */
.svc-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.svc-reviews-grid .review-card {
  flex: none;
  width: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
  .svc-reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.review-img--daycare-1 { background-image: url('Assets/Images/daycare-review-1.jpg'); }
.review-img--daycare-2 { background-image: url('Assets/Images/daycare-review-2.jpg'); }

.review-img--1 { background-image: url('Assets/Images/review-1.jpg'); }
.review-img--2 { background-image: url('Assets/Images/review-2.jpg'); }
.review-img--3 { background-image: url('Assets/Images/review-3.jpg'); }
.review-img--4 { background-image: url('Assets/Images/review-4.jpg'); }
.review-img--5 { background-image: url('Assets/Images/review-5.jpg'); }
.review-img--6 { background-image: url('Assets/Images/review-6.jpg'); }
.review-img--7 { background-image: url('Assets/Images/review-7.jpg'); }
.review-img--8 { background-image: url('Assets/Images/review-8.jpg'); }

.review-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  flex: 1;
}

.review-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 1;
}

.review-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.65;
  flex: 1;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.review-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3px 8px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-light);
  margin-top: auto;
}

.review-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  grid-column: 1;
  grid-row: 1;
}

.review-dog {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(58, 58, 58, 0.75);
  grid-column: 1;
  grid-row: 2;
}

.review-source {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: rgba(58, 58, 58, 0.5);
}

.review-source::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('Assets/Icons/google.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* Scroll position dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
}

.reviews-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(30, 43, 107, 0.2);
  transition: background 0.25s, transform 0.25s;
}

.reviews-dot.is-active {
  background: var(--navy);
  transform: scale(1.4);
}

@media (min-width: 1024px) {
  .reviews-dots { display: none; }
}

/* ============================================================
   S7 â€” GALLERY
   White bg. 2-col mobile, 4-col desktop. 8 square images.
============================================================ */
.gallery {
  background: var(--white);
  padding: 48px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 32px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-light);
  border-radius: 4px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

@media (min-width: 1024px) {
  .gallery { padding: 80px 40px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
  }
}

/* ============================================================
   S6 â€” REQUIREMENTS CTA
   Navy bg. Wave breaks top/bottom. 2-col desktop.
============================================================ */
.requirements-cta {
  background: var(--navy);
  padding: 80px 20px;
  position: relative;
}

.req-wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
}

.req-wave--top { top: -1px; }
.req-wave--bottom { bottom: -1px; }

.req-wave svg {
  display: block;
  width: 100%;
  height: 50px;
}

.req-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.req-lead {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.req-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 440px;
}

.req-cta {
  width: auto;
  align-self: flex-start;
}

.req-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.req-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.req-check {
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.req-item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.req-item-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.req-item-note {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.req-bottom-cta {
  display: flex;
  justify-content: center;
  padding: 28px 0 4px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   S7 â€” HOURS & LOCATION
   Light gray bg. Stacked mobile, 50/50 desktop.
============================================================ */
.hours-location {
  background: var(--gray-light);
  padding: 48px 20px;
}

.hours-location-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}


.hours-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hours-row {
  background: var(--white);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hours-day {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.hours-time {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--body-text);
}

.hours-holiday-note {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.5;
  padding: 8px 4px 0;
}

.map-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-map {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 10px;
  display: block;
}

.location-address {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  text-align: center;
  text-decoration: none;
  display: block;
}

.location-address:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.map-nav-links {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.map-nav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.map-nav-btn:hover {
  background: #162056;
}

@media (min-width: 1024px) {
  .map-nav-links { display: none; }
}

/* ============================================================
   S9 â€” FOOTER
   Navy bg. Wave top. 4-col centered desktop.
============================================================ */
.site-footer {
  background: var(--navy);
  padding: 0 20px 24px;
  text-align: center;
  position: relative;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.footer-cols-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-contact-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-link:hover {
  color: var(--white);
}

.footer-contact-addr {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  justify-content: center;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  min-height: 36px;
}

.social-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 32px auto 20px;
  max-width: 1200px;
  width: calc(100% - 40px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.footer-legal {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-legal-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: var(--white);
}

/* ============================================================
   MOBILE STICKY CTA BAR
   Floating card. Slides up from bottom after hero leaves view.
   Hidden on desktop. Safe-area aware for notched iPhones.
============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  padding-bottom: env(safe-area-inset-bottom);
  pointer-events: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta-inner {
  background: var(--navy);
  border-radius: 16px 16px 0 0;
  padding: 14px 16px 18px;
  box-shadow: 0 -8px 40px rgba(30, 43, 107, 0.4);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
}

.sticky-cta-call {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s;
}

.sticky-cta-call:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

.sticky-cta-book {
  flex: 1;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-cta-book:hover {
  background: #f5bc00;
}

@media (min-width: 1024px) {
  .sticky-cta { display: none; }
}

/* ============================================================
/* ============================================================
   PRICING PAGE
============================================================ */

/* Hero */
.pricing-hero {
  background: var(--navy);
  padding: 60px 20px 52px;
  text-align: center;
}

.pricing-hero-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pricing-hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  line-height: 1.12;
}

.pricing-hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 440px;
}

/* Tab bar â€” sticky, top set by pricing.js */
.pricing-tabs-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
}

.pricing-tabs {
  display: flex;
  gap: 4px;
  background: var(--gray-light);
  border-radius: 100px;
  padding: 5px;
  width: fit-content;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: rgba(30, 43, 107, 0.5);
  padding: 9px 14px;
  background: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.tab-btn:hover:not(.tab-btn--active) {
  color: var(--navy);
  background: rgba(30, 43, 107, 0.07);
}

.tab-btn--active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(30, 43, 107, 0.25);
}

/* Panels */
.pricing-panel {
  background: var(--white);
  padding: 40px 20px 60px;
}

.pricing-panel--gray {
  background: var(--gray-light);
}

.pricing-section-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Pricing block */
.pricing-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-block-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-block-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.15;
}

.pricing-block-sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--body-text);
}

/* Price table */
.price-table-wrap {
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead tr {
  background: var(--navy);
}

.price-table thead th {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 16px;
  text-align: left;
}

.pt-col {
  text-align: right;
  width: 25%;
}

/* Override thead's text-align:left so price column headers match cell alignment */
.price-table thead th.pt-col {
  text-align: right;
}

.pt-label-col {
  width: 50%;
}

/* Grooming has 4 columns â€” redistribute widths */
.price-table--grooming .pt-label-col { width: 28%; }
.price-table--grooming .pt-col        { width: 24%; }

.price-table tbody tr {
  border-top: 1px solid var(--gray-light);
}

.price-table tbody tr:first-child {
  border-top: none;
}

.price-table tbody tr:nth-child(even) {
  background: #F8F9FC;
}

.pt-service {
  padding: 14px 16px;
  vertical-align: middle;
}

.pt-service-name {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.pt-service-note {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--body-text);
  margin-top: 2px;
}

.pt-price {
  padding: 14px 16px;
  text-align: right;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  white-space: nowrap;
}

/* Footnote */
.pricing-footnote {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(58, 58, 58, 0.6);
  line-height: 1.5;
}

/* Panel CTA */
.pricing-panel-cta {
  display: flex;
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  width: auto;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn--navy:hover {
  background: #162056;
}

/* Walk list */
.walk-list {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
}

.walk-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}

.walk-row:last-child { border-bottom: none; }
.walk-row:nth-child(even) { background: rgba(30, 43, 107, 0.03); }

.walk-badge {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.walk-row-desc {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.5;
}

.walk-row-price {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .walk-row { padding: 1.5rem 2rem; gap: 2rem; }
  .walk-badge { font-size: 13px; padding: 6px 16px; }
  .walk-row-desc { font-size: 15px; }
  .walk-row-price { font-size: 28px; }
}

/* Boarding: rate row price + note */
.boarding-rate-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  white-space: nowrap;
  margin-left: 1rem;
}

.boarding-rate-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--slate);
  margin-left: 2px;
}

.holiday-date-val {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  white-space: nowrap;
  margin-left: 1rem;
}

.boarding-rate-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(58, 58, 58, 0.65);
  margin-top: 2px;
}

/* Boarding: rate cards grid â€” legacy, no longer used */

/* Boarding: holiday pill grid */
.holiday-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}

.holiday-pill {
  background: var(--white);
  border: 1.5px solid rgba(30, 43, 107, 0.12);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.holiday-pill-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--navy);
  line-height: 1.3;
}

.holiday-pill-dates {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(58, 58, 58, 0.7);
}

/* Holiday list */
.holiday-list {
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
}

.holiday-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid var(--gray-light);
}

.holiday-item:first-child {
  border-top: none;
}

.holiday-item:nth-child(even) {
  background: #F8F9FC;
}

.holiday-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.holiday-dates {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--body-text);
  white-space: nowrap;
}

/* Grooming service cards */
.grooming-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.grooming-service-card {
  background: var(--gray-light);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.grooming-service-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.grooming-service-includes {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.55;
}

/* Walk cards */
.walks-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.walk-card {
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.walk-duration {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
}

.walk-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 40px;
  color: var(--navy);
  line-height: 1;
}

.walk-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.55;
}

/* ============================================================
   DESKTOP â€” 1024px BREAKPOINT
============================================================ */
@media (min-width: 1024px) {

  :root {
    --nav-height: 88px;
  }

  /* Typography scale-up */
  .section-title { font-size: 40px; }
  .eyebrow { font-size: 14px; }

  /* Nav: show desktop links, hide mobile controls */
  .nav-phone { display: none; }
  .nav-hamburger { display: none; }
  .nav-links { display: flex; }

  /* Hero: full-bleed video, content pushed right */
  .hero {
    flex-direction: row;
    min-height: 640px;
  }

  /* Copy left on desktop */
  .hero-content {
    order: -1;
    flex: 0 0 52%;
    padding: 64px 48px 64px 80px;
    justify-content: center;
    max-width: none;
  }

  /* Video right on desktop */
  .hero-video-wrap {
    flex: 0 0 48%;
    padding: 0;
    align-self: stretch;
  }

  .hero-video {
    aspect-ratio: unset;
    height: 100%;
    border-radius: 0;
  }

  .hero-headline { font-size: 62px; }

  .hero-ctas {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: auto;
  }

  /* Services: 3-col image card grid */
  .services { padding: 80px 40px; }

  .service-cards-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Desktop: vertical card â€” square photo top, navy copy bottom */
  .sci {
    display: flex;
    flex-direction: column;
    aspect-ratio: unset;
  }

  .sci-bg {
    position: relative;
    inset: unset;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .sci-overlay {
    display: none;
  }

  .sci-content {
    position: relative;
    bottom: unset;
    left: unset;
    right: unset;
    flex: 1;
    background: var(--navy);
    justify-content: flex-start;
    padding: 18px 20px;
    gap: 5px;
  }

  /* daycare + boarding use base ibb.co images on all breakpoints */
  .sci-bg--grooming { background-image: url('Assets/Images/Service-card-grooming.webp'); }
  .sci-bg--walks    { background-image: url('Assets/Images/dog%20walking.png'); }

  .sci-eyebrow { font-size: 34px; }

  /* Why Us */
  .why-us { padding: 100px 40px; }
  .why-us-wave { display: none; }

  .pillars-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .pillar-card:nth-child(3n+1) {
    padding-left: 0;
    border-left: none;
  }

  .pillar-card:nth-child(3n+2),
  .pillar-card:nth-child(3n+3) {
    padding-left: 40px;
    padding-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pillar-title { font-size: 20px; }

  /* Pricing Summary */
  .pricing-summary { padding: 80px 40px; }

  .ps-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
  }

  .ps-col {
    padding: 0 40px;
    border-left: 1px solid rgba(30, 43, 107, 0.15);
  }

  .ps-col:first-child {
    padding-left: 0;
    border-left: none;
  }

  .ps-service { font-size: 22px; }

  /* Social Proof: 4-col grid */
  .social-proof { padding: 80px 40px; }

  .reviews-track {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    overflow: visible;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    margin-top: 32px;
    scroll-snap-type: none;
  }

  .review-card {
    flex: none;
    width: auto;
  }

  /* Requirements CTA */
  .requirements-cta { padding: 100px 80px; }
  .req-wave { display: none; }

  .req-grid {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .req-lead { flex: 0 0 50%; }

  .req-list { flex: 1; }

  /* Hours & Location: 50/50 */
  .hours-location { padding: 80px 40px; }

  .hours-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    min-height: 440px;
  }

  .map-block {
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }

  .location-map {
    flex: 1;
    height: auto;
    min-height: 380px;
  }

  /* Footer: 3-col on desktop (brand / services+company / contact) */

  .footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1fr;
    gap: 60px;
    align-items: start;
    text-align: center;
  }

  .footer-cols-row {
    gap: 40px;
  }

  .footer-nav-list { align-items: center; }
  .footer-contact { align-items: center; }

  /* Pricing tabs â€” larger on desktop */
  .pricing-tabs-wrap {
    padding: 16px 40px;
  }

  .pricing-tabs {
    padding: 6px;
    gap: 6px;
  }

  .tab-btn {
    font-size: 16px;
    padding: 13px 36px;
  }

  /* Holiday pills â€” 4 col on desktop */
  .holiday-pill-grid { grid-template-columns: repeat(4, 1fr); }
  .holiday-pill-name { font-size: 13px; }
  .holiday-pill-dates { font-size: 13px; }

  /* Pricing page */
  .pricing-hero { padding: 80px 40px 72px; }
  .pricing-hero-headline { font-size: 48px; }
  .pricing-block-title { font-size: 24px; }
  .pricing-panel { padding: 60px 40px 80px; }

  .grooming-services {
    flex-direction: row;
    gap: 16px;
  }

  .grooming-service-card { flex: 1; }

  .walks-grid {
    flex-direction: row;
    gap: 20px;
  }

  .walk-card { flex: 1; }

}

/* ============================================================
   SUBPAGE COMPONENTS
   Shared across all service/info subpages.
============================================================ */

/* â”€â”€ Page hero CTA row â”€â”€ */
.page-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

/* â”€â”€ Daycare pricing section â”€â”€ */
.daycare-pricing {
  background: var(--white);
  padding: 72px 20px 56px;
}

.dc-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.dc-price-card {
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
}

.dc-price-card--featured {
  background: var(--navy);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 200, 69, 0.12);
  padding-top: 32px;
}

.dc-price-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 20px;
}

.dc-price-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 6px;
}

.dc-price-card--featured .dc-price-label {
  color: rgba(255, 255, 255, 0.80);
}

.dc-price-amount {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 52px;
  color: var(--navy);
  line-height: 1;
}

.dc-price-card--featured .dc-price-amount {
  color: var(--white);
}

.dc-price-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(30, 43, 107, 0.75);
  margin-top: 6px;
}

.dc-price-card--featured .dc-price-note {
  color: rgba(255, 255, 255, 0.85);
}

.dc-price-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(30, 43, 107, 0.75);
  margin-top: 20px;
  line-height: 1.6;
}

.dc-pricing-cta {
  display: block;
  width: fit-content;
  margin: 24px auto 0;
}

/* â”€â”€ Split section layout â”€â”€ */
.split-section {
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.split-section--gray {
  background: var(--gray-light);
}

.split-copy {
  padding: 48px 20px 40px;
}

.split-body-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
  margin-top: 12px;
}

.split-image {
  order: -1;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* â”€â”€ Feature check navy variant â”€â”€ */
.feature-check--navy {
  background: var(--navy);
}

/* â”€â”€ Walks grid stacked variant (inside split-copy) â”€â”€ */
.walks-grid--stacked {
  flex-direction: column;
  gap: 12px;
}

.walks-grid--stacked .walk-card {
  padding: 20px 18px;
  gap: 4px;
}

.walks-grid--stacked .walk-price {
  font-size: 32px;
}

/* â”€â”€ Page hero (copy + contained image) â”€â”€ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 55%, #263483 0%, var(--navy) 68%);
}

/* Scattered paw prints â€” positioned in hero HTML as .hero-paw spans */
.hero-paw {
  position: absolute;
  background: url('Assets/Images/dog-paw-print.png') center / contain no-repeat;
  filter: invert(1);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero-paw--desktop { display: none; }
.hero-paw--mobile { display: block; }

@media (min-width: 1024px) {
  .hero-paw--desktop { display: block; }
  .hero-paw--mobile { display: none; }
}

/* Film grain overlay â€” soft-light blend adds depth without obscuring copy */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23g)'/></svg>");
  opacity: 0.08;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

/* Mobile: copy then 16:9 full-bleed image */
.page-hero-content {
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.page-hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-hero-subtext {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.6;
  max-width: 480px;
}

.page-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.page-hero-img,
.page-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* â”€â”€ Subpage section base â”€â”€ */
.subpage-section {
  padding: 56px 20px;
}

.subpage-section--gray  { background: var(--gray-light); }
.subpage-section--navy  { background: var(--navy); }
.subpage-section--white { background: var(--white); }

/* â”€â”€ Day timeline â”€â”€ */
.day-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  position: relative;
}

.day-step {
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-light);
  position: relative;
}

.day-step:last-child { border-bottom: none; }

.day-step-time {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 6px;
}

.day-step-body {}

.day-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}

.day-step-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.6;
}

/* â”€â”€ Grouping cards â”€â”€ */
.group-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.group-card {
  background: var(--white);
  border-radius: 10px;
  border: 1.5px solid rgba(30, 43, 107, 0.12);
  padding: 28px 24px;
}

.group-card-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 8px;
}

.group-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.group-card-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.65;
}

/* â”€â”€ Feature list â”€â”€ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--white);
  margin-top: 1px;
}

.feature-text {}

.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 3px;
}

.feature-title--dark { color: var(--navy); }

.feature-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.55;
}

.feature-body--dark { color: var(--body-text); }

/* Light variants â€” for use on navy backgrounds */
.feature-title--light { color: var(--white); }
.feature-body--light  { color: rgba(255, 255, 255, 0.80); }
.feature-check--gold  { background: var(--gold); color: var(--navy); }

.feature-paw {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 1px;
}

/* â”€â”€ Navy split section â”€â”€ */
.split-section--navy {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Navy split sections â€” extra bottom clearance before the wave */
#why-us,
#daycare-diff,
#boarding-diff {
  padding-bottom: 56px;
}

#dog-walking,
#boarding-bring {
  padding-top: 40px;
}

/* Waves: absolutely positioned SVGs that blend into adjacent sections */
.split-wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
.split-wave--top    { top: -1px; }
.split-wave--bottom { bottom: -1px; }
.split-wave svg     { display: block; width: 100%; height: 50px; }

/* Content sits above the waves */
.split-section--navy .split-copy,
.split-section--navy .split-image { position: relative; z-index: 2; }

/* Navy section image â€” contained with navy breathing room above */
.split-section--navy .split-image {
  aspect-ratio: unset;
  height: 300px;
  padding: 56px 20px 0;
}

.split-section--navy .split-img {
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* â”€â”€ Dog walking callout strip â”€â”€ */
.walking-callout {
  background: rgba(30, 43, 107, 0.04);
  border: 1.5px solid rgba(30, 43, 107, 0.1);
  border-left: 5px solid var(--navy);
  border-radius: 14px;
  padding: 20px 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.walking-callout-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-top: 4px;
}

.walking-callout-sub {
  font-size: 14px;
  color: var(--body-text);
  margin-top: 3px;
}

.walking-callout-prices {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.walking-price-item {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: var(--white);
  border: 1.5px solid rgba(30, 43, 107, 0.12);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 9px;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.walking-price-item strong {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
}

.walking-callout-sep {
  display: none;
}

@media (min-width: 1024px) {
  .walking-callout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px 28px 30px;
  }
  .walking-callout-prices { gap: 12px; }
  .walking-price-item {
    padding: 10px 16px;
    font-size: 11px;
  }
  .walking-price-item strong { font-size: 20px; }
}

/* â”€â”€ Boarding: pricing layout â”€â”€ */
.boarding-pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.boarding-rate-breakdown {
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
}

.boarding-rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-light);
}

.boarding-rate-row:last-child { border-bottom: none; }

.boarding-rate-label {
  font-size: 14px;
  color: var(--body-text);
}

.boarding-rate-val {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  white-space: nowrap;
}

.boarding-rate-val small {
  font-size: 12px;
  font-weight: 400;
  color: var(--slate);
  margin-left: 2px;
}

.boarding-rate-note {
  font-size: 13px;
  color: var(--body-text);
}

.boarding-rate-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .boarding-pricing-wrap {
    max-width: 740px;
    flex-direction: row;
    align-items: stretch;
  }
  .boarding-pricing-wrap .dc-price-card--featured {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .boarding-rate-breakdown { flex: 1; }
}

/* â”€â”€ Boarding: What to Bring checklist â”€â”€ */
.bring-checklist {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 28px rgba(30, 43, 107, 0.09);
  overflow: hidden;
  margin-top: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.bring-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--gray-light);
}

.bring-item:last-child { border-bottom: none; }

.bring-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.bring-item-text { flex: 1; }

.bring-item-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

.bring-item-desc {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.55;
}

@media (min-width: 1024px) {
  .bring-checklist { max-width: none; }
  .bring-item { padding: 24px 32px; gap: 20px; }
  .bring-check { width: 32px; height: 32px; font-size: 14px; }
}

/* â”€â”€ Daycare walking compact strip â”€â”€ */
.walking-strip-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body-text);
  margin-top: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* â”€â”€ Daycare walking section â”€â”€ */
.walking-section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--gray-light);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* â”€â”€ FAQ section â”€â”€ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid rgba(30, 43, 107, 0.12);
  padding: 24px 0;
}

.faq-item:first-child { border-top: 1px solid rgba(30, 43, 107, 0.12); }

.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}

.faq-a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
}

/* â”€â”€ Pricing teaser strip â”€â”€ */
.pricing-strip {
  background: var(--navy);
  padding: 40px 20px;
  text-align: center;
}

.pricing-strip-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 20px;
}

.pricing-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 24px;
}

.pricing-strip-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px 12px;
}

.pricing-strip-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.pricing-strip-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}

/* â”€â”€ CTA band (bottom of subpages) â”€â”€ */
.cta-band {
  background: var(--navy);
  padding: 80px 24px 56px;
  text-align: center;
  position: relative;
}

.cta-band-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}

.cta-band-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn--gold {
  display: inline-flex;
  width: auto;
  margin: 0 auto;
}

/* â”€â”€ Internal link strip (cross-links to other services) â”€â”€ */
.service-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  align-items: center;
}

.service-link-item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 10px 22px;
  min-width: 180px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.service-link-item:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SUBPAGE DESKTOP â€” 1024px
============================================================ */
@media (min-width: 1024px) {

  .page-hero {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 560px;
  }

  .page-hero-content {
    flex: 0 0 50%;
    padding: 88px 64px 88px 80px;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .page-hero--full {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 440px;
  }

  .page-hero--full.page-hero--sm {
    min-height: 0;
  }

  .page-hero--full.page-hero--sm .page-hero-content {
    padding: 52px 64px;
  }

  .page-hero--full .page-hero-content {
    flex: 0 0 auto;
    width: 100%;
    max-width: 900px;
    padding: 80px 64px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .page-hero--full .page-hero-h1 { font-size: 80px; }

  .page-hero-image {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    padding: 80px 40px 80px 0;
    box-sizing: border-box;
    min-height: 560px;
  }

  .page-hero-img {
    flex: 1;
    width: 100%;
    min-height: 0;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 4px 16px rgba(0, 0, 0, 0.25);
  }

  .page-hero-ctas {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .page-hero-h1 { font-size: 62px; }
  .page-hero-subtext { font-size: 20px; }

  /* Daycare pricing */
  .daycare-pricing { padding: 96px 40px 80px; }

  .dc-price-grid {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 760px;
    gap: 20px;
  }

  .dc-price-amount { font-size: 64px; }

  /* Waves â€” mobile only, hide on desktop */
  .split-wave { display: none; }

  /* Flipped split â€” image left, copy right */
  .split-section--flip .split-image {
    order: 1;
    padding: 40px 0 40px 40px;
  }

  /* Navy section â€” contained image with gutters on all sides */
  .split-section--navy .split-image {
    height: auto;
    padding: 56px 40px 56px 40px;
  }

  /* Navy + flip combined â€” highest specificity wins, no cascade fighting */
  .split-section--navy.split-section--flip .split-image {
    order: 1;
    padding: 56px 40px 56px 40px;
    overflow: visible;
    aspect-ratio: auto;
  }

  .split-section--flip .split-copy {
    order: 2;
  }

  /* Split section */
  .split-section {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 560px;
  }

  .split-copy {
    flex: 0 0 50%;
    padding: 72px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
  }

  .split-image {
    order: 2;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    padding: 40px 40px 40px 0;
    box-sizing: border-box;
    overflow: visible;
    aspect-ratio: auto;
    width: auto;
    height: auto;
  }

  .split-img {
    flex: 1;
    width: 100%;
    min-height: 0;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }

  .subpage-section { padding: 80px 40px; }

  .day-timeline { max-width: 760px; }

  .day-step-time { font-size: 17px; }

  .day-step-title { font-size: 22px; }

  .day-step-desc { font-size: 15px; }

  .group-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* Feature list inside a split panel â€” already at 50% width, keep single column */
  .split-copy .feature-list {
    grid-template-columns: 1fr;
  }

  .faq-q { font-size: 22px; }

  .faq-a { font-size: 17px; }

  .pricing-strip { padding: 60px 40px; }

  .pricing-strip-title { font-size: 26px; }

  .pricing-strip-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 600px;
  }

  .pricing-strip-amount { font-size: 36px; }

  .cta-band { padding: 96px 40px 72px; }

  .cta-band-title { font-size: 40px; }

  .service-links { flex-direction: row; gap: 12px; justify-content: center; }

  .walks-grid { flex-direction: row; gap: 20px; }
  .walk-card { flex: 1; }
}

/* ==========================================================
   GROOMING PAGE
   ========================================================== */

.groom-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

.groom-card {
  position: relative;
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  background: #fff;
}

.groom-card--featured {
  background: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}

.groom-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.groom-card-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.groom-card--featured .groom-card-label {
  color: rgba(255,255,255,0.65);
}

.groom-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.groom-card--featured .groom-card-name {
  color: #fff;
}

.groom-card-from {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.groom-card--featured .groom-card-from {
  color: var(--gold);
}

.groom-card-includes {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(58,58,58,0.90);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

.groom-card--featured .groom-card-includes {
  color: rgba(255,255,255,0.92);
  border-bottom-color: rgba(255,255,255,0.15);
}

.groom-size-table { width: 100%; }

.groom-size-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-family: var(--font-body);
  font-size: 13px;
}

.groom-size-row:last-child { border-bottom: none; }

.groom-card--featured .groom-size-row {
  border-bottom-color: rgba(255,255,255,0.08);
}

.groom-size-label { color: var(--body-text); }

.groom-card--featured .groom-size-label {
  color: rgba(255,255,255,0.85);
}

.groom-size-price {
  font-weight: 700;
  color: var(--navy);
}

.groom-card--featured .groom-size-price {
  color: var(--gold);
}

.groom-disclaimers {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.groom-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(58,58,58,0.85);
  background: rgba(30,43,107,0.04);
  border-left: 3px solid rgba(30,43,107,0.25);
  border-radius: 0 6px 6px 0;
  padding: 0.65rem 1rem;
  line-height: 1.55;
  margin-top: 0;
}

/* Extras â€” single card table */
.groom-extras-card {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.groom-extras-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-light);
  font-family: var(--font-body);
  font-size: 14px;
}

.groom-extras-row:nth-child(even) { background: rgba(30,43,107,0.03); }
.groom-extras-row:last-child { border-bottom: none; }

.groom-extra-name { color: var(--body-text); }

.groom-extra-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  white-space: nowrap;
  margin-left: 1rem;
}

/* Gallery grid */
.groom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.groom-gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Matted dog policy callout */
.groom-policy-note {
  margin-top: 1.5rem;
  background: #fff;
  border-left: 4px solid var(--navy);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

@media (min-width: 1024px) {
  .groom-grid { grid-template-columns: repeat(2, 1fr); }
  .groom-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================
   NEW CUSTOMERS PAGE
   ========================================================== */

/* Requirements at a glance cards */
.req-card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: stretch;
}

.req-card {
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  background: #fff;
}

.req-card-check {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.req-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.req-card-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(58,58,58,0.80);
  line-height: 1.6;
}

/* Section intro text */
.req-section-intro {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(58,58,58,1);
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 600px;
}

/* Spay/neuter policy card */
.req-policy-card {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  margin-top: 2rem;
  max-width: 600px;
}

.req-policy-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.req-policy-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(58,58,58,0.75);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .req-card-grid { grid-template-columns: repeat(3, 1fr); }
  .req-policy-card { max-width: 560px; }
  .req-section-intro { max-width: 600px; }
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */

.contact-split {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--navy);
  margin: 0.25rem 0 1.5rem;
}

/* Form column */
.contact-form-col {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: 16px;
  padding: 2rem 1.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.form-label span { color: var(--navy); opacity: 0.5; }

.form-input {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  padding: 13px 16px;
  width: 100%;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--navy);
}

.form-input::placeholder { color: rgba(58,58,58,0.35); }

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.contact-submit {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 16px 28px;
}

/* Success state */
.contact-success {
  background: rgba(30,43,107,0.05);
  border: 1.5px solid var(--navy);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.contact-success-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-success-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
}

/* Info column */
.contact-info-col { display: flex; flex-direction: column; gap: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-detail-item { display: flex; flex-direction: column; gap: 0.25rem; }

.contact-detail-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
}

.contact-detail-value {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

.contact-detail-link {
  text-decoration: none;
  transition: opacity 0.15s;
}

.contact-detail-link:hover { opacity: 0.75; }

/* Map */
.contact-map-section {
  display: block;
  line-height: 0;
}

@media (min-width: 1024px) {
  .contact-split {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .contact-form-col {
    flex: 0 0 58%;
    padding: 2.5rem;
  }

  .contact-info-col { flex: 1; }

  .form-row { flex-direction: row; gap: 1.25rem; }
  .form-row .form-group { flex: 1; }

  .contact-submit { width: auto; }

  /* Map â€” contained + rounded on desktop */
  .contact-map-section {
    padding: 64px 80px 72px;
    background: var(--gray-light);
    line-height: 0;
  }

  .contact-map-section iframe {
    border-radius: 16px;
    height: 500px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
  }

  /* Address bar below map is redundant on desktop â€” info col has it */
  .contact-map-section .map-block { display: none; }
}

/* ==========================================================
   LEGAL PAGES (Privacy + Accessibility)
   ========================================================== */

.legal-content {
  max-width: 760px;
}

.legal-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(58, 58, 58, 0.55);
  margin-bottom: 2rem;
}

.legal-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin: 2.5rem 0 0.6rem;
  line-height: 1.2;
}

.legal-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-list {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.75;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 43, 107, 0.25);
  transition: border-color 0.15s;
}

.legal-link:hover {
  border-bottom-color: var(--navy);
}

code {
  font-family: monospace;
  font-size: 13px;
  background: rgba(30, 43, 107, 0.06);
  color: var(--navy);
  padding: 1px 5px;
  border-radius: 3px;
}

kbd {
  font-family: monospace;
  font-size: 12px;
  background: var(--gray-light);
  color: var(--navy);
  padding: 1px 6px;
  border-radius: 3px;
  border: 1px solid rgba(30, 43, 107, 0.15);
}

@media (min-width: 1024px) {
  .legal-h3 { font-size: 22px; }
  .legal-body { font-size: 16px; }
  .legal-list { font-size: 16px; }
}

/* ==========================================================
   GALLERY PAGE
   ========================================================== */

/* Gallery hero â€” overflow:hidden clips the marquee track */
.page-hero--gallery {
  overflow: hidden;
}

/* Scrolling photo marquee */
.gallery-marquee {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 48px;
  align-self: stretch;
}

.gallery-marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: gallery-scroll 32s linear infinite;
}

/* Pause on hover/focus for accessibility */
.gallery-marquee:hover .gallery-marquee-track,
.gallery-marquee:focus-within .gallery-marquee-track {
  animation-play-state: paused;
}

.gallery-marquee-track img {
  height: 150px;
  width: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
}

@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-marquee-track { animation: none; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.gallery-item {
  display: block;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox[hidden] { display: none; }

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 1.375rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 10000;
  line-height: 1;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 10000;
  line-height: 1;
}

.lightbox-prev { left: 0.75rem; }
.lightbox-next { right: 0.75rem; }

.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.2); }

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .lightbox-prev { left: 2rem; }
  .lightbox-next { right: 2rem; }

  /* Desktop marquee: bigger tiles, more bottom breathing room */
  .gallery-marquee {
    padding: 16px 0 64px;
  }
  .gallery-marquee-track img {
    height: 220px;
    width: auto;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }
}

/* =============================================================
   CTA SERVICE CARDS (replaces ghost pill links in CTA band)
============================================================= */

.cta-service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.cta-sc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.cta-sc:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.cta-sc-icon {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.72);
  flex-shrink: 0;
  margin-bottom: 2px;
}

.cta-sc-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cta-sc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.cta-sc-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.60);
  margin: 0;
  line-height: 1.45;
}

.cta-sc-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-top: 3px;
}

.cta-sc--entry {
  border-left: 3px solid var(--gold);
}


@media (min-width: 1024px) {
  .cta-service-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 36px;
    max-width: 760px;
  }

  .cta-sc {
    padding: 18px 14px;
  }
}

/* =============================================================
   ABOUT PAGE
============================================================= */

.about-owner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.about-owner-img-wrap {
  flex-shrink: 0;
}

.about-owner-img-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 3px solid var(--navy);
}

.about-owner-body {
  text-align: center;
}

.about-owner-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 0.2rem;
}

.about-owner-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--slate);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-owner-bio {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
  margin: 0 0 0.75rem;
}

.about-mission-copy {
  max-width: 680px;
  padding-bottom: 72px;
}

@media (min-width: 1024px) {
  .about-owner {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .about-owner-body {
    text-align: left;
  }

  .about-owner-img-placeholder {
    width: 140px;
    height: 140px;
  }

  .about-mission-copy {
    max-width: 600px;
  }
}

/* ==========================================================
   GET STARTED PAGE
   ========================================================== */

.gs-member-banner {
  background: var(--gold);
  padding: 15px 20px;
  text-align: center;
}

.gs-member-banner-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.5;
}

.gs-member-banner-link {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 5px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-left: 8px;
  vertical-align: middle;
  transition: opacity 0.15s;
}

.gs-member-banner-link:hover { opacity: 0.85; }

.gs-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.gs-step-card {
  background: #fff;
  border: 1.5px solid rgba(30,43,107,0.1);
  border-top: 3px solid var(--navy);
  border-radius: 0 0 12px 12px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.gs-step-num {
  display: inline-block;
  align-self: flex-start;
  background: var(--navy);
  color: var(--gold);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  line-height: 1;
  margin-bottom: 14px;
}

.gs-step-content { flex: 1; }

.gs-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.gs-step-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(58,58,58,0.85);
  line-height: 1.65;
  margin: 0;
}

.gs-step-desc--spaced { margin-top: 10px; }

.gs-vaccine-list {
  margin: 10px 0 0 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gs-vaccine-list li {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(58,58,58,0.85);
  line-height: 1.55;
}

.gs-step-phone {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  text-decoration: none;
}

.gs-step-phone--sm { font-size: 15px; }

.gs-cta-note {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-top: 20px;
}

.gs-cta-note-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .gs-member-banner { padding: 16px 40px; }
  .gs-member-banner-text { font-size: 16px; }
  .gs-member-banner-link { font-size: 14px; }

  .gs-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .gs-step-card { padding: 30px 26px; }
  .gs-step-title { font-size: 21px; }
  .gs-step-desc { font-size: 16px; }
  .gs-vaccine-list li { font-size: 16px; }
}
