/* Mickey's Mobile Dog Running — Dark Mode · Purple & Gold
   Palette: Purple (#9B5DE5), Gold (#FDE047), Black bg (#0A0A0A), Card (#141414)
   Typography: Fredoka (headings) + Inter (body) */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #9B5DE5;
  --primary-hover: #7C3AED;
  --primary-light: #1e1033;
  --accent: #6B21A8;
  --accent-hover: #581C87;
  --gold: #FDE047;
  --ink: #F9FAFB;
  --body: #D1D5DB;
  --muted: #9CA3AF;
  --line: #2A2A2A;
  --bg-meadow: #111111;
  --bg-cream: #0A0A0A;
  --bg-card: #141414;
  --radius: 24px;
  --radius-sm: 14px;
  --maxw: 1180px;
  --font-sans: 'Inter', sans-serif;
  --font-title: 'Fredoka', sans-serif;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
  scroll-behavior: smooth;
  background: var(--bg-cream);
}

body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--bg-cream);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

.section--soft {
  background: var(--bg-meadow);
}

.section--paw {
  background: var(--bg-meadow);
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--muted);
}

.lead {
  font-size: 1.18rem;
  color: var(--ink);
  font-weight: 600;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 28px;
  border-radius: 99px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--pink {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(112, 26, 117, 0.25);
}

.btn--pink:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 12px 24px rgba(112, 26, 117, 0.35);
}

.btn--grad {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

.btn--grad:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.35);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn--outline {
  background: #fff;
  color: var(--accent);
  border-color: var(--line);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid var(--line);
  height: 72px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand span:last-child {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
  line-height: 1.1;
}

.brand span:last-child small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
}

.nav-links a {
  padding: 6px 10px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-mobile-phone,
.nav-mobile-cta {
  display: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta .btn {
  padding: 8px 16px;
  font-size: 0.92rem;
}

.nav-phone {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 24px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  color: #fff;
  padding: clamp(80px, 12vw, 142px) 0;
  background: linear-gradient(120deg, rgba(76, 29, 149, 0.92), rgba(112, 26, 117, 0.72)), url('../img/Mickeys_mobile_dog_running_web-1.webp') no-repeat center center/cover;
  overflow: hidden;
}

.hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero .badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.hero .badge .stars {
  color: var(--gold);
}

.hero h1 {
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}

.hero-stats > div {
  flex: 1;
}

.hero-stats .num {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stats .lbl {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Trust Band */
.trust {
  background: var(--accent);
  color: #fff;
  padding: 20px 0;
}

.trust ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
}

.trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.trust svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Split Columns */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
  color: var(--ink);
}

.checklist svg {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Grid & Card Systems */
.grid {
  display: grid;
  gap: 30px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px dashed var(--primary);
  border-radius: calc(var(--radius) + 2px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.card:hover::before {
  opacity: 0.6;
}

.card .ic {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card h3 {
  color: var(--ink);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 0;
}

/* Service Card (Image) */
.svc-card {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.svc-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.svc-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px dashed var(--accent);
  border-radius: calc(var(--radius) + 2px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 10;
}

.svc-card:hover::before {
  opacity: 0.6;
}

.svc-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.svc-card .body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.svc-card h3 {
  margin-bottom: 8px;
}

.svc-card p {
  margin-bottom: 0;
}

/* Benefits / Price Panel (Dark Green) */
.price-panel {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(34px, 5vw, 60px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.price-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 70%);
}

.price-panel .eyebrow {
  color: var(--primary);
}

.price-panel h2 {
  color: #fff;
}

.price-panel > p {
  color: rgba(255, 255, 255, 0.9);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.price-grid h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.price-grid p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0;
}

.price-grid .dot {
  color: var(--primary);
  font-size: 1.3rem;
}

/* Steps Section */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.step {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.step .n {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.3);
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  margin: 0;
}

/* Pricing Tiers (Membership Page) */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.ptier {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.ptier:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.ptier.featured {
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box, linear-gradient(135deg, var(--primary), var(--primary-hover)) border-box;
  position: relative;
}

.ptier .tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--primary-light);
  color: var(--primary-hover);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
  font-family: var(--font-title);
}

.ptier h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.ptier .blurb {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.ptier .rows {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.ptier .rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 12px;
  background: var(--bg-cream);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

.ptier .rows li .amt {
  color: var(--primary-hover);
  font-weight: 800;
}

.ptier .rows li.lead-row {
  background: var(--primary);
  color: #fff;
}

.ptier .rows li.lead-row .amt {
  color: #fff;
}

.price-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-weight: 700;
  color: var(--primary-hover);
}

.price-note svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Services Tier Cards */
.svc-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-tier-card {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 34px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.svc-tier-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.svc-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
  font-family: var(--font-title);
}

.svc-tier-card h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  margin-bottom: 12px;
}

.svc-blurb {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.price-rows {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.price-rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--bg-cream);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

.price-rows li .amt {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.02rem;
}

/* Price List Banner */
.pricelist-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.pricelist-img {
  max-width: min(480px, 90%);
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
}

/* ── Gold Button ─────────────────────────────────────── */
.btn--gold {
  background: var(--gold);
  color: #1a1000;
  border-color: var(--gold);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(253, 224, 71, 0.35);
}

.btn--gold:hover {
  background: #ffd700;
  border-color: #ffd700;
  box-shadow: 0 12px 32px rgba(253, 224, 71, 0.5);
  transform: translateY(-3px);
}

/* ── Membership Page Layout ──────────────────────────── */
.membership-section {
  padding-top: clamp(40px, 6vw, 72px);
}

/* Portal CTA card — above the flyer */
.membership-portal-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, #1a0a2e, #2a0d4a);
  border: 1.5px solid rgba(155, 93, 229, 0.4);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 48px) clamp(24px, 5vw, 48px);
  margin-bottom: 48px;
  box-shadow: 0 0 0 1px rgba(155, 93, 229, 0.12), var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.membership-portal-card::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 224, 71, 0.08), transparent 60%);
  pointer-events: none;
}

.membership-portal-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(253, 224, 71, 0.12);
  border: 1.5px solid rgba(253, 224, 71, 0.3);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}

.membership-portal-text {
  flex: 1;
  min-width: 0;
}

.membership-portal-text h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.membership-portal-text p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.membership-portal-btn {
  flex-shrink: 0;
  font-size: 1.1rem;
  padding: 16px 32px;
  white-space: nowrap;
}

/* Flyer section */
.membership-flyer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.membership-flyer-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.membership-flyer {
  max-width: min(600px, 100%);
  width: 100%;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.membership-portal-btn-bottom {
  font-size: 1.05rem;
  padding: 15px 36px;
}

/* Responsive */
@media (max-width: 768px) {
  .membership-portal-card {
    flex-direction: column;
    text-align: center;
    gap: 22px;
  }

  .membership-portal-text h2 {
    font-size: 1.5rem;
  }

  .membership-portal-btn {
    width: 100%;
    justify-content: center;
  }

  .membership-portal-btn-bottom {
    width: 100%;
    justify-content: center;
  }
}

/* Photo column inside .svc-tiers 3-col grid */
.svc-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-lg);
  align-self: stretch;
  display: flex;
}

.svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  min-height: 280px;
}

/* Services split (image + card side-by-side) */
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.svc-split figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.svc-split figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  min-height: 320px;
}

/* Info text blocks in 2-col grid */
.svc-info p:last-child {
  margin-bottom: 0;
}

/* Reviews Screen Grids */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.review-shot {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--line);
  cursor: zoom-in;
}

.review-shot img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.review-shot:hover img {
  transform: scale(1.03);
}

.rating-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  max-width: 460px;
  margin: 0 auto 48px;
}

.rating-banner .score {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  font-family: var(--font-title);
}

.rating-banner .stars {
  color: var(--primary);
  font-size: 1.5rem;
  letter-spacing: 3px;
}

.rating-banner .meta {
  color: var(--muted);
  font-weight: 700;
}

/* Customer wall & Gallery */
.customer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.customer {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  cursor: zoom-in;
}

.customer img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.customer:hover img {
  transform: scale(1.05);
}

.customer figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 16px 14px;
  background: linear-gradient(to top, rgba(20, 83, 45, 0.9), transparent);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.customer figcaption .stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.gallery-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-photos figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-photos img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-photos figure:hover img {
  transform: scale(1.05);
}

/* Reels player for gallery page */
.reels-panel {
  max-width: 640px;
  margin: 0 auto 50px;
}

.reels-player {
  margin-bottom: 18px;
}

.reels-player video {
  width: 100%;
  max-height: min(72vh, 560px);
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.reels-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.reels-thumb {
  position: relative;
  border: 2.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #111;
  aspect-ratio: 9/16;
  transition: var(--transition);
}

.reels-thumb:hover {
  border-color: var(--primary-light);
}

.reels-thumb.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.24);
}

.reels-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* FAQ Accordion details */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  outline: none;
  font-family: var(--font-title);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--primary-hover);
}

.faq-item .answer {
  padding: 0 28px 24px;
  color: var(--body);
}

/* CTA peeking dogs */
.cta-peek {
  position: relative;
  z-index: 2;
}

.cta-peek__dogs {
  background: var(--bg-cream);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(24px, 10vw, 100px);
  padding: 0 24px;
  line-height: 0;
}

.cta-peek__dogs img {
  width: auto;
  height: auto;
  max-height: clamp(76px, 13vw, 112px);
  max-width: min(220px, 40vw);
}

/* CTA Band Section */
.cta-band {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1.12rem;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Form Page layouts */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.form-card {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-meadow);
  color: var(--ink);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-line {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-of-type {
  border-bottom: 0;
}

.contact-line .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  display: grid;
  place-items: center;
  color: var(--primary);
  flex: none;
}

.contact-line h4 {
  margin-bottom: 2px;
}

.contact-line a,
.contact-line p {
  color: var(--body);
  margin: 0;
}

.contact-line a:hover {
  color: var(--primary-hover);
}

/* Static Booking Card (Contact Page) */
.book-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.book-card h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.book-card-lead {
  color: var(--muted);
  margin-bottom: 24px;
}

.book-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}

.book-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
  background: var(--primary-light);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-hover);
}

.book-note svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Interior Page Hero */
.page-hero {
  background: linear-gradient(120deg, var(--accent), var(--accent-hover));
  color: #fff;
  padding: clamp(54px, 8vw, 90px) 0;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  font-size: 1.12rem;
  margin: 0;
}

.crumb {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.crumb a:hover {
  color: #fff;
}

/* Footer Section */
.site-footer {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 42px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  object-fit: contain;
  background: #fff;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #fff;
  font-size: 1.15rem;
  margin-top: 6px;
}

.footer-phone svg {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.86rem;
  align-items: center;
}

.footer-credit {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-credit a {
  color: var(--gold);
  font-weight: 700;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Lightbox Modal */
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-inner {
  max-width: min(92vw, 1200px);
  width: 100%;
}

.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 85vh;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin: 14px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.lightbox-caption[hidden] {
  display: none;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
  display: grid;
  place-items: center;
  padding: 0;
}

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

.lightbox-close {
  top: 18px;
  right: 18px;
  font-size: 2.4rem;
}

.lightbox-prev {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsiveness Media Queries */
@media (min-width: 1151px) and (max-width: 1300px) {
  .brand span:last-child small {
    display: none;
  }
  .nav-links a {
    padding: 6px 6px;
    font-size: 0.85rem;
  }
  .nav-cta {
    gap: 8px;
  }
  .nav-phone {
    font-size: 0.88rem;
  }
}

@media (max-width: 1150px) {
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .brand span:last-child small {
    display: none;
  }
  .brand > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-links, .nav-phone {
    display: none;
  }
  .nav-cta > .btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-cream);
    border-bottom: 1.5px solid var(--line);
    padding: 14px 24px;
    gap: 4px;
    box-shadow: var(--shadow);
    z-index: 60;
  }
  .nav-links.open a {
    padding: 12px;
    display: block;
  }
  .nav-links.open .nav-mobile-phone,
  .nav-links.open .nav-mobile-cta {
    display: block;
    width: 100%;
    list-style: none;
  }
  .nav-links.open .nav-mobile-phone {
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 10px;
  }
  .nav-links.open .nav-mobile-phone a {
    display: block;
    padding: 12px;
    font-weight: 800;
    color: var(--primary);
  }
  .nav-links.open .nav-mobile-cta {
    padding: 6px 0 4px;
  }
  .nav-links.open .nav-mobile-cta .btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 900px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split, .form-wrap, .svc-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .steps, .pricing, .svc-tiers {
    grid-template-columns: 1fr;
  }
  .gallery-photos {
    grid-template-columns: repeat(2, 1fr);
  }
  .customer-grid, .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .price-grid {
    grid-template-columns: 1fr;
  }
  .gallery-photos {
    grid-template-columns: 1fr;
  }
  .customer-grid, .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reels-thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 16px;
  }
  body {
    font-size: 16px;
  }
}
