/*
Theme Name: CorksCritterCare
Theme URI: https://corkscrittercare.com
Author: CorksCritterCare
Description: Pet sitting and dog walking WordPress theme.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: corkscrittercare
*/

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

:root {
  --navy:        #1a3a8a;
  --navy-dark:   #102060;
  --navy-deep:   #0a1540;
  --navy-mid:    #2952b3;
  --navy-tint:   #eef1fb;
  --navy-soft:   #dce8ff;
  --orange:      #f07030;
  --orange-dk:   #d45e20;
  --orange-soft: #fff0e8;
  --white:       #ffffff;
  --bg:          #fffdf9;
  --bg-alt:      #f4f7fd;
  --border:      #dce3f5;
  --text:        #0f1a2e;
  --text-mid:    #374869;
  --text-soft:   #647a9e;
  --shadow-xs:  0 1px 4px rgba(10,21,64,0.07);
  --shadow-sm:  0 4px 18px rgba(26,58,138,0.09);
  --shadow:     0 8px 32px rgba(26,58,138,0.13);
  --shadow-lg:  0 20px 56px rgba(26,58,138,0.18);
  --shadow-or:  0 8px 26px rgba(240,112,48,0.32);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --max:       1160px;
}

/* ============================================================
   2. BASE
   ============================================================ */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text-mid);
  line-height: 1.68;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

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

/* ============================================================
   3. TOP STRIP
   ============================================================ */
.top-strip {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  letter-spacing: 0.015em;
}
.top-strip-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  flex-wrap: wrap;
  padding: 5px 0;
}
.top-strip .sep { color: rgba(255,255,255,0.22); }
.top-strip a { color: var(--orange); font-weight: 600; }
.top-strip a:hover { text-decoration: underline; }

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 80px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.nav-brand { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; gap: 3px; line-height: 1; }
.brand-logo {
  height: 50px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: brightness(1.35) saturate(1.2);
}

.brand-tagline {
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.855rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
  background: var(--navy-tint);
}
.btn-nav {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-or);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}
.btn-nav:hover {
  background: var(--orange-dk) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(240,112,48,0.40) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--navy);
  padding: 6px;
  line-height: 1;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-or);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(240,112,48,0.42);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--orange-soft);
  border-color: var(--orange);
  color: var(--orange-dk);
  transform: translateY(-2px);
}
.btn-lg { font-size: 1rem; padding: 14px 32px; }

/* ============================================================
   6. EYEBROW & SECTION HEADER
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--orange);
  margin-bottom: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.section-header .eyebrow { justify-content: center; }
.section-header .eyebrow::before { display: none; }
.section-header h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header .section-sub {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}
.section-header .service-note {
  margin-top: 10px;
  font-size: 0.87rem;
  color: var(--text-soft);
  font-style: italic;
}

/* ============================================================
   7. SECTION WRAPPERS
   ============================================================ */
.section      { padding: 90px 0; }
.section-alt  { padding: 90px 0; background: var(--bg-alt); }
.section-navy { padding: 90px 0; background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-dark) 100%); }

/* ============================================================
   8. HERO (index)
   ============================================================ */
.hero {
  background: linear-gradient(130deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  padding: 80px 0 72px;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(240,112,48,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--orange);
  background: rgba(240,112,48,0.13);
  border: 1px solid rgba(240,112,48,0.28);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 34px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 26px;
}
.hero-stat { flex: 1; padding-right: 20px; border-right: 1px solid rgba(255,255,255,0.12); margin-right: 20px; }
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.85rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.hero-image { position: relative; }
.hero-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 26px;
  left: -22px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  min-width: 170px;
}
.hero-badge .badge-icon { font-size: 1.8rem; line-height: 1; }
.hero-badge strong { display: block; font-size: 0.85rem; color: var(--text); font-weight: 700; }
.hero-badge span { font-size: 0.75rem; color: var(--text-soft); }

/* ============================================================
   9. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
}
.trust-icon {
  width: 30px; height: 30px;
  background: var(--navy-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============================================================
   10. FEATURE CARDS (Three Cs)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--navy-tint);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card p { color: var(--text-soft); font-size: 0.9rem; line-height: 1.6; }

/* ============================================================
   11. SERVICE CARDS
   ============================================================ */
.service-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card.featured {
  border-color: var(--navy);
  border-width: 2px;
}
.service-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: 999px;
}
.svc-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
}
.service-card p { color: var(--text-soft); font-size: 0.87rem; line-height: 1.55; margin-bottom: 12px; }
.service-card ul { border-top: 1px solid var(--border); padding-top: 12px; margin-top: auto; }
.service-card li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.service-card li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   12. PETS SECTION
   ============================================================ */
.pets-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.pets-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.pets-img img { width: 100%; height: auto; }
.pets-text h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}
.pets-text p { color: var(--text-soft); line-height: 1.7; margin-bottom: 20px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  background: var(--navy-tint);
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.pill:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   13. ABOUT SECTION
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-float-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  border: 2px solid var(--navy-tint);
  text-align: center;
  min-width: 130px;
  text-decoration: none;
  transition: transform 0.2s;
}
.about-float-badge:hover { transform: scale(1.04); }
.about-float-badge .be { font-size: 2rem; line-height: 1; }
.about-float-badge strong { display: block; color: var(--navy); font-size: 0.8rem; margin-top: 6px; font-weight: 700; }

.about-text h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
}
.about-text p { color: var(--text-soft); margin-bottom: 14px; line-height: 1.7; }
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0 28px; }
.about-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.87rem; font-weight: 600; color: var(--text-mid);
}
.about-check .ck {
  width: 24px; height: 24px;
  background: var(--orange-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  color: var(--orange-dk);
  font-weight: 700;
}

/* ============================================================
   14. PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.popular {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-color: var(--navy);
  color: var(--white);
}
.pricing-card.popular h3 { color: var(--white); border-bottom-color: rgba(255,255,255,0.15); }
.pricing-card.popular li { color: rgba(255,255,255,0.84); }
.pricing-card.popular li::before { background: var(--orange); }
.pop-label {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pricing-card ul { flex: 1; margin-bottom: 26px; }
.pricing-card li {
  font-size: 0.9rem; color: var(--text-mid);
  padding: 6px 0;
  display: flex; align-items: center; gap: 8px;
}
.pricing-card li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--navy); border-radius: 50%; flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.87rem;
  color: var(--text-soft);
}
.pricing-note a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote-mark {
  font-size: 3.8rem;
  line-height: 0.8;
  color: var(--orange);
  font-family: Georgia, serif;
  opacity: 0.5;
  margin-bottom: 10px;
}
.testimonial > p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}
.stars { color: var(--orange); font-size: 0.87rem; letter-spacing: 2px; margin-bottom: 12px; }
.reviewer {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
  color: var(--text-mid);
}
.reviewer strong { font-size: 0.87rem; color: var(--text); display: block; }
.reviewer small { font-size: 0.77rem; color: var(--text-soft); }

/* ============================================================
   16. PROCESS / ONBOARDING
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; counter-reset: steps; }
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  counter-increment: steps;
  transition: transform 0.25s;
}
.process-card:hover { transform: translateY(-4px); }
.process-card::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 22px; right: 22px;
  font-size: 2rem;
  font-family: "Fraunces", Georgia, serif;
  color: var(--navy);
  opacity: 0.10;
  font-weight: 700;
  line-height: 1;
}
.process-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem; color: var(--text); margin-bottom: 10px;
}
.process-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.6; }
.payment-box {
  margin-top: 36px;
  background: var(--navy-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
  text-align: center;
}
.payment-box h3 { font-family: "Fraunces", Georgia, serif; color: var(--navy); margin-bottom: 8px; }
.payment-box p { font-size: 0.9rem; color: var(--text-soft); }

/* ============================================================
   17. CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 60px 0;
}
.cta-band-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-band h2, .cta-band h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: 8px;
}
.cta-band p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }

/* ============================================================
   18. CONTACT / BOOKING FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 2.5vw, 2.1rem);
  color: var(--text);
  margin-bottom: 12px;
}
.contact-info > p { color: var(--text-soft); margin-bottom: 30px; line-height: 1.65; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.cd {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--text-mid);
}
.cd-icon {
  width: 36px; height: 36px;
  background: var(--navy-tint);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.booking-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 0.81rem; font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,138,0.12);
}
.form-group input.error,
.form-group select.error { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,0.10); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  appearance: auto;
  -webkit-appearance: auto;
  accent-color: var(--navy);
  border: none;
  background: transparent;
  box-shadow: none;
}
.full-btn { width: 100%; justify-content: center; font-size: 1rem; padding: 14px; }
.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  background: #d1fae5;
  color: #065f46;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
}
.form-status.error { background: #fee2e2; color: #991b1b; }

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(160deg, var(--navy-deep) 0%, #080e2a 100%);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-brand .brand-logo {
  height: 50px; width: auto; max-width: 270px;
  filter: brightness(1.5) saturate(1.1);
  margin-bottom: 6px;
}
.footer-brand p {
  color: rgba(255,255,255,0.52);
  font-size: 0.87rem; line-height: 1.65;
  max-width: 270px; margin-bottom: 20px;
  text-align: center;
}
.footer-brand .brand-tagline {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 12px;
  max-width: none;
  line-height: 1.2;
}
.footer-social-row { display: flex; gap: 9px; }
.footer-social-row a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.84rem; font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social-row a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-col h4 {
  font-size: 0.79rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--white); margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.87rem; color: rgba(255,255,255,0.52); transition: color 0.18s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-col ul li.plain { font-size: 0.87rem; color: rgba(255,255,255,0.52); }
.footer-bottom {
  text-align: center;
  padding: 18px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.30);
}

/* ============================================================
   20. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(130deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 60px 0 52px;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
.page-hero .eyebrow { color: var(--orange); }
.page-hero .eyebrow::before { background: var(--orange); }
.page-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--white); line-height: 1.17;
  margin-bottom: 14px;
}
.page-hero .lead {
  color: rgba(255,255,255,0.73);
  font-size: 1.0rem; line-height: 1.68;
  max-width: 540px;
}
.page-hero .pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.page-hero .pill {
  background: rgba(255,255,255,0.11);
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.18);
  font-size: 0.77rem;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem; color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.check-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.87rem; color: var(--text-mid);
  padding: 5px 0;
}
.check-list li::before {
  content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ============================================================
   21. PORTAL / QUAL / CERT / FAQ (inner pages)
   ============================================================ */
.portal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.portal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.portal-card:hover { transform: translateY(-3px); }
.portal-card h3 { font-family: "Fraunces", Georgia, serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.portal-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.6; }
.portal-list li {
  font-size: 0.85rem; color: var(--text-mid);
  padding: 4px 0; display: flex; align-items: flex-start; gap: 7px;
}
.portal-list li::before { content: '›'; color: var(--orange); font-weight: 700; flex-shrink: 0; font-size: 1.1rem; line-height: 1.2; }

.qual-grid { margin-top: 4px; }
.qual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.qual-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
.qual-card li {
  font-size: 0.88rem; color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5;
}
.qual-card li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.cert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cert-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.cert-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.cert-card p {
  font-size: 0.77rem; color: var(--text-soft);
  padding: 9px 12px; line-height: 1.4; text-align: center;
}

.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-xs);
}
.faq-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.45; }
.faq-item p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; }

.mission-quote {
  background: var(--orange);
  border-radius: var(--radius);
  padding: 30px 28px;
  text-align: center;
}
.mission-quote blockquote {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.12rem;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 8px;
}
.mission-quote cite { font-size: 0.78rem; color: rgba(255,255,255,0.75); font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

.cork-bio-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 48px;
}
.cork-photo { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

/* ============================================================
   22. SCROLL ANIMATIONS
   ============================================================ */
.anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}
.anim.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   23. MOBILE NAV + RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hamburger { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    gap: 2px;
    box-shadow: var(--shadow);
    z-index: 800;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; font-size: 0.94rem; }
  .btn-nav { margin-top: 6px; justify-content: center; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-img-frame img { height: 300px; }
  .hero-badge { left: 10px; }

  .about-split, .pets-split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-float-badge { right: 8px; bottom: -10px; }
  .about-checks { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .service-cards { grid-template-columns: repeat(2,1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; }
  .qual-card ul { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cork-bio-grid { grid-template-columns: 1fr; text-align: center; }
  .cork-photo { max-width: 200px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .section, .section-alt, .section-navy { padding: 60px 0; }
  .hero { padding: 50px 0 44px; }
  .feature-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 24px 18px; }
  .cert-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar-inner { gap: 8px 18px; }
}
/* ============================================================
   24. FANCY UPGRADES — gradients, motion, decorative shapes
   ============================================================ */

/* ----- Paw-print pattern (used over hero) ----- */
.paw-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255,255,255,0.06) 0 6px, transparent 7px),
    radial-gradient(circle at 80% 12%, rgba(255,255,255,0.05) 0 4px, transparent 5px),
    radial-gradient(circle at 30% 80%, rgba(240,112,48,0.07) 0 5px, transparent 6px),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.05) 0 7px, transparent 8px);
  background-size: 380px 380px;
  opacity: 0.7;
  pointer-events: none;
  animation: drift 28s linear infinite;
}
@keyframes drift {
  0%   { background-position: 0 0, 60px 30px, 120px 80px, 200px 50px; }
  100% { background-position: 380px 380px, 440px 410px, 500px 460px, 580px 430px; }
}

/* ----- Floating decorative blobs ----- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  animation: float 14s ease-in-out infinite;
}
.blob.b1 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(240,112,48,0.55), transparent 70%); top: -60px; left: -40px; animation-delay: -3s; }
.blob.b2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(41,82,179,0.65), transparent 70%); bottom: -100px; right: -90px; }
.blob.b3 { width: 220px; height: 220px; background: radial-gradient(circle, rgba(240,112,48,0.42), transparent 70%); top: 38%; right: 10%; animation-delay: -7s; }
@keyframes float {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(20px,-26px,0) scale(1.08); }
}

/* ----- Hero polish ----- */
.hero { isolation: isolate; }
.hero .hero-grid { position: relative; z-index: 2; }
.hero h1 {
  letter-spacing: -0.012em;
}
.hero h1 .accent {
  background: linear-gradient(105deg, #ffb070 0%, var(--orange) 45%, #ffd9a8 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: shimmer 6s ease-in-out infinite;
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  display: block;
  width: 62%;
  height: 6px;
  margin-top: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0.8;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Glassy hero badge */
.hero-badge {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.65);
}

/* Hero stat counter pop */
.hero-stat strong {
  background: linear-gradient(180deg, #ffd49a 0%, var(--orange) 90%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* ----- Wave divider ----- */
.wave-divider {
  display: block;
  width: 100%;
  height: 70px;
  margin-top: -1px;
  line-height: 0;
}
.wave-divider svg { display: block; width: 100%; height: 100%; }

/* ----- Marquee announcement strip ----- */
.marquee {
  background: linear-gradient(90deg, var(--orange), #ff8a4a, var(--orange));
  color: var(--white);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  padding: 11px 0;
  animation: scroll-x 38s linear infinite;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.marquee-track .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.7); display: inline-block; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----- Trust bar refinement ----- */
.trust-bar {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-alt) 100%);
}
.trust-icon {
  background: linear-gradient(135deg, var(--navy-tint), #fff);
  box-shadow: 0 4px 12px rgba(26,58,138,0.10), inset 0 0 0 1px rgba(255,255,255,0.6);
  transition: transform 0.25s, box-shadow 0.25s;
}
.trust-item:hover .trust-icon {
  transform: translateY(-2px) scale(1.07);
  box-shadow: 0 10px 22px rgba(26,58,138,0.15);
}

/* ----- Service cards: hover glow + gradient hairline ----- */
.service-card {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, transparent 60%, rgba(240,112,48,0.0) 100%) border-box;
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px 220px at var(--mx, 50%) var(--my, 0%), rgba(240,112,48,0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  clip-path: inset(0 round var(--radius));
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(26,58,138,0.18); }
.service-card:hover::after { opacity: 1; }
.svc-icon {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--orange) 140%);
  box-shadow: 0 10px 22px rgba(26,58,138,0.22);
  transition: transform 0.4s cubic-bezier(.4,1.4,.5,1);
}
.service-card:hover .svc-icon { transform: rotate(-6deg) scale(1.06); }

/* Home-care service card — special accent */
.service-card.home-care {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--navy) 0%, var(--orange) 100%) border-box;
  border: 2px solid transparent;
}
.service-card.home-care .svc-icon {
  background: linear-gradient(135deg, var(--orange), #ffb070);
}

/* ----- Feature card refinements (Three Cs etc.) ----- */
.feature-card {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--navy-tint), #fff 60%, var(--orange-soft)) border-box;
  border: 1px solid transparent;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(26,58,138,0.16);
}
.feature-icon {
  background: linear-gradient(135deg, var(--navy-tint), var(--orange-soft));
  position: relative;
}
.feature-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}

/* ----- Pricing card popular: subtle paw stamp ----- */
.pricing-card.popular { position: relative; }
.pricing-card.popular::after {
  content: '🐾';
  position: absolute;
  font-size: 7rem;
  bottom: 6px;
  right: 6px;
  opacity: 0.08;
  transform: rotate(-12deg);
  pointer-events: none;
  line-height: 1;
  clip-path: inset(0 round var(--radius));
}

.ccc-shop-grid {
  display: grid;
  gap: 28px;
}

.ccc-shop-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1.8fr) minmax(260px, 0.9fr);
  gap: 28px;
  background: #fff;
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 45px rgba(11, 61, 46, 0.08);
}
.ccc-shop-img {
  display: flex;
  align-items: flex-start;
}
.ccc-shop-img img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  display: block;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ccc-shop-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.26);
}

.ccc-shop-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(196, 137, 56, 0.14);
  color: var(--orange-dk);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ccc-shop-card h3 {
  margin: 16px 0 14px;
  font-size: clamp(1.65rem, 2vw, 2.2rem);
}

.ccc-shop-copy p + p {
  margin-top: 14px;
}

.ccc-shop-points {
  margin: 22px 0 0;
  padding-left: 18px;
}

.ccc-shop-points li + li {
  margin-top: 10px;
}

.ccc-shop-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(11, 61, 46, 0.06), rgba(196, 137, 56, 0.12));
}

.ccc-shop-actions .btn {
  justify-content: center;
}

.ccc-shop-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .ccc-shop-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .ccc-shop-img img {
    max-width: 220px;
    margin: 0 auto;
  }
}

.ccc-blog-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ccc-blog-card {
  background: #fff;
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 36px rgba(11, 61, 46, 0.07);
}

.ccc-blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 0.82rem;
  flex-wrap: wrap;
}

.ccc-blog-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(196, 137, 56, 0.14);
  color: var(--orange-dk);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ccc-blog-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-bottom: 12px;
}

.ccc-blog-card h3 a:hover,
.ccc-blog-link:hover,
.ccc-archive-list a:hover {
  color: var(--orange);
}

.ccc-blog-card p {
  color: var(--text-soft);
  margin-bottom: 18px;
}

.ccc-blog-link {
  font-weight: 700;
  color: var(--navy);
}

.ccc-archive-year {
  background: #fff;
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 36px rgba(11, 61, 46, 0.05);
}

.ccc-archive-year + .ccc-archive-year {
  margin-top: 22px;
}

.ccc-archive-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.ccc-archive-head h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.ccc-archive-head span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--navy-tint);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.ccc-archive-list {
  list-style: none;
}

.ccc-archive-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(11, 61, 46, 0.08);
}

.ccc-archive-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.ccc-archive-list span {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.ccc-archive-list a {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 860px) {
  .ccc-blog-featured-grid {
    grid-template-columns: 1fr;
  }

  .ccc-archive-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.coupon-offer {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, rgba(26,58,138,0.06), rgba(240,112,48,0.12));
  border: 1px solid rgba(26,58,138,0.12);
  border-radius: 28px;
  padding: 56px;
}

.coupon-copy h2 {
  margin: 10px 0 14px;
}

.coupon-copy {
  max-width: 100%;
}

.coupon-art {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.coupon-art a {
  display: block;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.coupon-art img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(11, 61, 46, 0.14);
}

.coupon-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 5;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  box-shadow: 0 10px 20px rgba(240, 112, 48, 0.3);
  transform: rotate(8deg);
  border: 2px solid var(--white);
}

.coupon-badge strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.coupon-badge span {
  display: block;
  margin-top: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.coupon-note {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .coupon-offer {
    padding: 22px;
  }

  .coupon-mask {
    min-width: 54%;
    max-width: 72%;
    bottom: 12%;
    padding: 10px 12px;
  }

  .coupon-mask strong {
    font-size: 0.88rem;
  }

  .coupon-mask span {
    font-size: 0.74rem;
  }
}

/* ----- Testimonials: gradient edge + lift ----- */
.testimonial {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--orange-soft), #fff 60%, var(--navy-tint)) border-box;
  border: 1px solid transparent;
}

/* ----- Counter animation prep ----- */
.counter { font-variant-numeric: tabular-nums; }

/* ----- Process cards big number gradient ----- */
.process-card::before {
  background: linear-gradient(135deg, var(--navy), var(--orange));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  opacity: 0.35;
}

/* ----- Booking form: floating sheen ----- */
.booking-form {
  position: relative;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--navy-tint), #fff 60%, var(--orange-soft)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 24px 60px rgba(26,58,138,0.12), 0 4px 12px rgba(26,58,138,0.06);
}
.booking-form::before {
  content: '🐾';
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.2rem;
  opacity: 0.32;
}

/* ----- Section header: gradient underline ----- */
.section-header h2 { position: relative; }
.section-header h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 99px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, var(--navy), var(--orange));
}
.section-header h2 a {
  color: inherit;
  text-decoration: none;
  background: linear-gradient(90deg, var(--orange), var(--orange)) 0 100% / 0% 2px no-repeat;
  transition: color 0.2s, background-size 0.3s ease;
  padding-bottom: 2px;
}
.section-header h2 a:hover {
  color: var(--navy);
  background-size: 100% 2px;
}

/* ----- Page hero polish ----- */
.page-hero { position: relative; overflow: hidden; isolation: isolate; }
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(240,112,48,0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.page-hero-inner { position: relative; z-index: 1; }
.hero-card {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--orange), var(--navy)) border-box;
  border: 2px solid transparent;
}

/* ----- Pets-section image: layered frame ----- */
.pets-img {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange-soft), var(--navy-tint));
  padding: 14px;
}
.pets-img img {
  border-radius: calc(var(--radius-lg) - 6px);
  box-shadow: var(--shadow);
}

/* ----- Pill upgrade ----- */
.pill {
  background: linear-gradient(180deg, var(--navy-tint), #fff);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.pill:hover {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  transform: translateY(-2px);
  border-color: var(--navy);
  box-shadow: 0 8px 18px rgba(26,58,138,0.22);
}

/* ----- Buttons: shine on hover ----- */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 130%; }

/* ----- Reveal animation enhancement ----- */
.anim { transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.2,.8,.2,1); }

/* Scroll-to-top floating button */
.to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-or);
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, box-shadow 0.2s;
  z-index: 950;
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { box-shadow: 0 14px 30px rgba(240,112,48,0.5); transform: translateY(-3px); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .paw-pattern, .blob, .hero h1 .accent, .marquee-track,
  .anim, .service-card, .feature-card, .btn-primary::before {
    animation: none !important;
    transition: none !important;
  }
}
