/* ================================================================
   SPAW DAY — Main Stylesheet
   Premium Dog Grooming Website
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --teal:         #0D7377;
  --teal-light:   #14A3A8;
  --teal-dark:    #0a5860;
  --teal-xlight:  #e8f6f6;
  --gold:         #D4A853;
  --gold-light:   #e8c070;
  --gold-dark:    #b8893a;
  --blush:        #F4C2C2;
  --sage:         #7CB69D;

  /* Backgrounds */
  --bg-white:     #FAF9F6;
  --bg-cream:     #F5F0EB;
  --bg-dark:      #0D2B2C;

  /* Text */
  --text-dark:    #2D2D2D;
  --text-mid:     #4a4a4a;
  --text-gray:    #6B6B6B;
  --text-light:   #9a9a9a;
  --white:        #FFFFFF;

  /* Shadows */
  --shadow-xs:    0 1px 4px  rgba(0,0,0,0.06);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.14);
  --shadow-teal:  0 8px 32px rgba(13,115,119,0.25);
  --shadow-gold:  0 4px 20px rgba(212,168,83,0.30);

  /* Radii */
  --r-sm:    8px;
  --r-md:    16px;
  --r-lg:    24px;
  --r-xl:    32px;
  --r-pill:  50px;
  --r-full:  9999px;

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:       0.18s;
  --t-base:       0.30s;
  --t-slow:       0.50s;

  /* Spacing */
  --section-py:   5rem;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* ----------------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--text-dark);
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Dancing Script', cursive;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: .5rem;
  font-weight: 600;
}

/* Inner-page section eyebrow badge */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--teal-xlight);
  border: 1px solid rgba(13,115,119,0.2);
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .38rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: .75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  margin-bottom: .75rem;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1.05rem;
  max-width: 560px;
}

.section-subtitle.center {
  margin: 0 auto;
  text-align: center;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
}

/* ----------------------------------------------------------------
   4. LAYOUT
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--section-py) 0;
  position: relative;
}

.bg-white  { background-color: var(--bg-white); }
.bg-cream  { background-color: var(--bg-cream); }
.bg-teal   { background-color: var(--teal); }
.bg-dark   { background-color: var(--bg-dark); }

/* ----------------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--r-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}
.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(13,115,119,0.35);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-teal,
.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline-teal:hover,
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.4rem;
  font-size: 1rem;
}

.btn--sm {
  padding: .6rem 1.4rem;
  font-size: .875rem;
}

/* ----------------------------------------------------------------
   6. NAVBAR
   ---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              padding var(--t-base) var(--ease);
  padding: 1.25rem 0;
}

/* Transparent on hero */
.is-home .navbar:not(.navbar--scrolled) {
  background: transparent;
}

.is-home .navbar:not(.navbar--scrolled) .navbar__links a {
  color: rgba(255,255,255,0.9);
}

.is-home .navbar:not(.navbar--scrolled) .navbar__logo-text {
  color: var(--white);
}

.is-home .navbar:not(.navbar--scrolled) .navbar__logo-icon {
  color: var(--gold);
}

.is-home .navbar:not(.navbar--scrolled) .hamburger span {
  background: var(--white);
}

/* Scrolled state */
.navbar--scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  padding: .85rem 0;
}

/* Non-home pages always have bg */
body:not(.is-home) .navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.navbar__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: background var(--t-base);
  flex-shrink: 0;
}

.navbar--scrolled .navbar__logo-icon,
body:not(.is-home) .navbar__logo-icon { background: var(--teal); }

.navbar__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--t-base);
  line-height: 1;
}

.navbar__logo-text em {
  font-style: italic;
  color: var(--teal);
}

/* Nav Links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.navbar__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: .4rem .75rem;
  border-radius: var(--r-pill);
  transition: all var(--t-fast) var(--ease);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease);
}

.navbar--scrolled .navbar__links a,
body:not(.is-home) .navbar__links a { color: var(--text-mid); }

.navbar__links a:hover { color: var(--teal); }
.navbar__links a:hover::after,
.navbar__links a.active::after { transform: translateX(-50%) scaleX(1); }
.navbar__links a.active { color: var(--teal); font-weight: 600; }

/* Right Side */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__cta { padding: .6rem 1.4rem; font-size: .875rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.hamburger:hover { background: rgba(13,115,119,0.08); }
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--t-base) var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1010;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.nav-overlay.is-visible { display: block; opacity: 1; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--white);
  z-index: 1020;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
  box-shadow: -8px 0 48px rgba(0,0,0,0.15);
}
.nav-drawer.is-open { transform: translateX(0); }

.nav-drawer__close {
  align-self: flex-end;
  width: 36px; height: 36px;
  background: var(--bg-cream);
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
  margin-bottom: 1.5rem;
}
.nav-drawer__close:hover { background: var(--blush); }

.nav-drawer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 2rem;
}

.nav-drawer__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 2rem;
}
.nav-drawer__links a {
  padding: .8rem 1rem;
  border-radius: var(--r-md);
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--t-fast);
  font-size: 1.05rem;
}
.nav-drawer__links a:hover {
  background: var(--teal-xlight);
  color: var(--teal);
  padding-left: 1.3rem;
}

.nav-drawer__cta {
  display: flex; justify-content: center;
  margin-bottom: 1.5rem;
}

.nav-drawer__contact a {
  display: flex; align-items: center; gap: .5rem;
  color: var(--text-gray);
  font-size: .9rem;
  justify-content: center;
}
.nav-drawer__contact a:hover { color: var(--teal); }

/* ----------------------------------------------------------------
   7. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* No background-color — video fills immediately, no dark flash */
}

/* Video Background */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient Overlay — dark enough for text, light enough to see video */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.50) 0%,
    rgba(0,0,0,0.25) 45%,
    rgba(0,0,0,0.60) 100%
  );
}

/* Paw pattern hidden — keep video fully visible */
.hero__paw-pattern { display: none; }

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  max-width: 860px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(212,168,83,0.18);
  border: 1px solid rgba(212,168,83,0.4);
  backdrop-filter: blur(8px);
  padding: .45rem 1.2rem;
  border-radius: var(--r-pill);
  color: var(--gold-light);
  font-family: 'Dancing Script', cursive;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown .8s var(--ease) both;
}

.hero__title {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.85), 0 1px 6px rgba(0,0,0,1);
  animation: fadeInDown .8s .15s var(--ease) both;
}

.hero__title-accent {
  color: var(--gold);
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero__divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal-light));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
  animation: scaleIn .8s .3s var(--ease) both;
}

.hero__tagline {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
  animation: fadeInUp .8s .3s var(--ease) both;
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.90);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  animation: fadeInUp .8s .4s var(--ease) both;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp .8s .5s var(--ease) both;
}

.hero__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(255,255,255,0.75);
  font-size: .95rem;
  animation: fadeInUp .8s .6s var(--ease) both;
}
.hero__phone a {
  color: var(--gold-light);
  font-weight: 600;
  transition: color var(--t-fast);
}
.hero__phone a:hover { color: var(--gold); }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,0.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1.2s var(--ease) both;
}

.hero__scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll-dot::after {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

/* ----------------------------------------------------------------
   8. SECTION WAVE DIVIDERS
   ---------------------------------------------------------------- */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 2;
}
.wave-divider svg {
  display: block;
  width: 100%;
}
.wave-divider--flip { transform: rotate(180deg); }

/* ----------------------------------------------------------------
   9. TRUST BADGES
   ---------------------------------------------------------------- */
.trust-badges {
  padding: 0;
  position: relative;
  z-index: 5;
}

.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-cream);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin: 0;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  transition: background var(--t-base) var(--ease);
  position: relative;
}
.trust-badge + .trust-badge {
  border-left: 1px solid rgba(0,0,0,0.06);
}
.trust-badge:hover { background: var(--teal-xlight); }

.trust-badge__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,115,119,0.3);
  transition: transform var(--t-base) var(--ease);
}
.trust-badge:hover .trust-badge__icon-wrap { transform: scale(1.08) rotate(-4deg); }

.trust-badge__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
  margin-bottom: .3rem;
  line-height: 1.3;
}

.trust-badge__text {
  font-size: .82rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   10. WELCOME SECTION
   ---------------------------------------------------------------- */
.welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.welcome__image-wrap {
  position: relative;
}

.welcome__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

/* Decorative frame */
.welcome__image-wrap::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold);
  border-radius: var(--r-xl);
  z-index: -1;
  opacity: .6;
}

/* Gold badge */
.welcome__badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
  min-width: 120px;
}
.welcome__badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.welcome__badge-label {
  font-size: .75rem;
  opacity: .9;
  display: block;
  line-height: 1.3;
  font-weight: 500;
}

.welcome__text { }
.welcome__text .section-label { margin-bottom: .5rem; }
.welcome__text .section-title { margin-bottom: 1.25rem; }
.welcome__text p {
  color: var(--text-gray);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}

.welcome__highlights {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.75rem 0;
}
.welcome__highlight {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-mid);
}
.welcome__highlight i {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: var(--teal-xlight);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   11. SERVICES PREVIEW
   ---------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background: var(--teal-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 1.25rem;
  transition: all var(--t-base) var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.08);
}

.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--text-dark);
}

.service-card__desc {
  color: var(--text-gray);
  font-size: .9rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--teal);
  font-weight: 600;
  font-size: .875rem;
  transition: gap var(--t-fast);
}
.service-card:hover .service-card__link { gap: .7rem; }

.services__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ----------------------------------------------------------------
   12. WHY CHOOSE US
   ---------------------------------------------------------------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
  transition: all var(--t-base) var(--ease);
  border: 1px solid transparent;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-xlight);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--teal-xlight), #d4eaea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: all var(--t-base) var(--ease);
}
.why-card:hover .why-card__icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
}

.why-card__body h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .4rem;
  color: var(--text-dark);
}
.why-card__body p {
  font-size: .875rem;
  color: var(--text-gray);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   13. GALLERY PREVIEW
   ---------------------------------------------------------------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
}

/* Make some items taller for masonry effect */
.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.gallery-item:hover .gallery-item__img { transform: scale(1.08); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,115,119,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__label {
  color: var(--white);
  font-size: .875rem;
  font-weight: 500;
}

.gallery__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ----------------------------------------------------------------
   14. TESTIMONIALS
   ---------------------------------------------------------------- */
.testimonials {
  overflow: hidden;
}

.testimonials-swiper {
  padding-bottom: 3.5rem !important;
  overflow: hidden;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
  height: auto;
}

.testimonial-card__quote {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  color: var(--teal-xlight);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__stars {
  display: flex;
  gap: .25rem;
}
.testimonial-card__stars i {
  color: var(--gold);
  font-size: .95rem;
}

.testimonial-card__text {
  font-size: .975rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
}
.testimonial-card__location {
  font-size: .8rem;
  color: var(--text-gray);
}

/* Swiper nav */
.testimonials .swiper-pagination-bullet {
  background: var(--teal);
  opacity: .3;
  width: 8px; height: 8px;
}
.testimonials .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
  transition: width var(--t-base);
}

/* ----------------------------------------------------------------
   15. STATS BAR
   ---------------------------------------------------------------- */
.stats-bar {
  background: var(--teal);
  padding: 3rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  color: var(--white);
}
.stat-item__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-item__label {
  font-size: .9rem;
  opacity: .85;
  font-weight: 500;
}

/* ----------------------------------------------------------------
   16. CTA BANNER
   ---------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cellipse cx='20' cy='16' rx='5' ry='6'/%3E%3Cellipse cx='36' cy='10' rx='4' ry='5'/%3E%3Cellipse cx='50' cy='14' rx='4' ry='5'/%3E%3Cellipse cx='62' cy='22' rx='5' ry='6'/%3E%3Cpath d='M14 36 Q18 24 36 28 Q54 32 58 36 Q62 50 52 58 Q46 64 40 62 Q28 64 22 56 Q14 50 14 36Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px;
  pointer-events: none;
}

.cta-banner__paw-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cellipse cx='20' cy='16' rx='5' ry='6'/%3E%3Cellipse cx='36' cy='10' rx='4' ry='5'/%3E%3Cellipse cx='50' cy='14' rx='4' ry='5'/%3E%3Cellipse cx='62' cy='22' rx='5' ry='6'/%3E%3Cpath d='M14 36 Q18 24 36 28 Q54 32 58 36 Q62 50 52 58 Q46 64 40 62 Q28 64 22 56 Q14 50 14 36Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px;
  pointer-events: none;
  z-index: 0;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner__icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: .8; }
.cta-banner__title {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: .75rem;
}
.cta-banner__text {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ----------------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  position: relative;
}

.footer__wave {
  line-height: 0;
  background: var(--bg-cream);
}
.footer__wave svg { display: block; }

.footer__main { padding: 4rem 0 3rem; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 3rem;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 1rem;
}
.footer__logo i { color: var(--gold); }
.footer__logo em { font-style: italic; color: var(--teal-light); }

.footer__tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: .75rem;
}

.footer__desc {
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: .75rem;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all var(--t-fast);
  border: 1px solid rgba(255,255,255,.1);
}
.footer__social a:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links li + li { margin-top: .5rem; }
.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: all var(--t-fast);
  display: flex; align-items: center; gap: .5rem;
}
.footer__links a i { font-size: .65rem; color: var(--teal-light); transition: transform var(--t-fast); }
.footer__links a:hover { color: var(--white); padding-left: .25rem; }
.footer__links a:hover i { transform: translateX(3px); }

.footer__contact-list {
  display: flex; flex-direction: column; gap: .9rem;
}
.footer__contact-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .875rem; color: rgba(255,255,255,.55);
}
.footer__contact-list i {
  color: var(--teal-light);
  width: 16px; text-align: center; margin-top: .2rem; flex-shrink: 0;
}
.footer__contact-list a { color: rgba(255,255,255,.55); transition: color var(--t-fast); }
.footer__contact-list a:hover { color: var(--white); }

.footer__hours {
  display: flex; flex-direction: column; gap: .5rem;
}
.footer__hours li {
  display: flex; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.5);
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__hours li span:last-child { color: var(--sage); font-weight: 500; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer__bottom-tagline { color: rgba(255,255,255,.35) !important; }
.footer__bottom-tagline i { color: var(--gold); }

/* ----------------------------------------------------------------
   18. KEYFRAME ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: .4; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ----------------------------------------------------------------
   19. RESPONSIVE — TABLET (≤ 1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-py: 4rem; }

  .navbar__links { display: none; }
  .hamburger { display: flex; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .gallery__grid  {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

/* ----------------------------------------------------------------
   20. RESPONSIVE — MOBILE (≤ 640px)
   ---------------------------------------------------------------- */
@media (max-width: 640px) {
  :root { --section-py: 3rem; }

  .trust-badges__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badge + .trust-badge:nth-child(3) { border-left: none; border-top: 1px solid rgba(0,0,0,0.06); }
  .trust-badge + .trust-badge:nth-child(2) { }
  .trust-badge + .trust-badge:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.06); }

  .welcome__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .welcome__badge { right: 0; }
  .welcome__image-wrap::before { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .why__grid      { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item--tall { grid-row: span 1; }

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

  .hero__ctas { flex-direction: column; align-items: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__col--brand { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ----------------------------------------------------------------
   21. PAGE HERO BANNER (inner pages)
   ---------------------------------------------------------------- */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 7rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cellipse cx='40' cy='30' rx='18' ry='20'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title { color: var(--white); margin-bottom: .75rem; }
.page-hero__sub {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  font-family: 'Dancing Script', cursive;
}

/* ----------------------------------------------------------------
   22. UTILITY CLASSES
   ---------------------------------------------------------------- */
.text-center { text-align: center; }
.text-teal   { color: var(--teal); }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.mt-1  { margin-top: .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mb-0  { margin-bottom: 0; }

/* ----------------------------------------------------------------
   23. SCROLL TO TOP BUTTON
   ---------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: var(--r-full);
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-teal);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--t-base) var(--ease);
  z-index: 900;
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
}

/* ----------------------------------------------------------------
   24. ABOUT PAGE
   ---------------------------------------------------------------- */

/* Story Section */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story__text .section-eyebrow { margin-bottom: 1rem; }
.story__text h2 { margin-bottom: 1.5rem; }
.story__text p {
  color: var(--text-mid);
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  line-height: 1.85;
}
.story__text p:last-child { margin-bottom: 0; }

.story__image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story__image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.story__image-wrap:hover img { transform: scale(1.04); }

.story__image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: .85rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.story__image-badge i {
  font-size: 1.6rem;
  color: var(--gold);
}
.story__image-badge strong {
  display: block;
  font-size: .95rem;
  color: var(--text-dark);
  font-weight: 700;
}
.story__image-badge span {
  font-size: .78rem;
  color: var(--text-gray);
}

/* Values Cards */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
  border-top: 4px solid transparent;
  text-align: center;
}
.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-top-color: var(--teal);
}
.value-card__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--teal-xlight), rgba(212,168,83,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: transform var(--t-base) var(--ease);
}
.value-card:hover .value-card__icon { transform: scale(1.1) rotate(-5deg); }
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: .75rem;
}
.value-card p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Comparison Table */
.comparison {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.comparison-table thead tr {
  background: transparent;
}
.comparison-table th {
  padding: 1rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.comparison-table th:first-child { text-align: left; color: var(--text-gray); }
.comparison-table th.col-typical {
  background: rgba(0,0,0,0.04);
  color: var(--text-gray);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  text-align: center;
}
.comparison-table th.col-spaw {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  text-align: center;
}
.comparison-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--t-fast) var(--ease);
}
.comparison-table tbody tr:hover { background: var(--bg-cream); }
.comparison-table td {
  padding: 1rem 1.5rem;
  font-size: .95rem;
  vertical-align: middle;
}
.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}
.comparison-table td.col-typical {
  color: var(--text-gray);
  background: rgba(0,0,0,0.02);
  text-align: center;
}
.comparison-table td.col-spaw {
  color: var(--teal-dark);
  font-weight: 600;
  background: rgba(13,115,119,0.05);
  text-align: center;
}
.comparison-table td.col-spaw i {
  color: var(--teal);
  margin-right: .4rem;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:last-child td:nth-child(2) {
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.comparison-table tbody tr:last-child td:nth-child(3) {
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}

/* Breeds Section */
.breeds__intro {
  max-width: 640px;
  margin: 1rem auto 2.5rem;
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
}
.breeds__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.breed-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--white);
  border: 1.5px solid rgba(13,115,119,0.25);
  color: var(--teal-dark);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem 1.1rem;
  border-radius: var(--r-pill);
  transition: all var(--t-fast) var(--ease);
  box-shadow: var(--shadow-xs);
}
.breed-tag:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
.breed-tag i { font-size: .75rem; opacity: .7; }

/* About responsive */
@media (max-width: 1024px) {
  .story__grid { grid-template-columns: 1fr; gap: 3rem; }
  .story__image-wrap img { height: 380px; }
  .values__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 640px) {
  .values__grid { grid-template-columns: 1fr; }
  .comparison-table th, .comparison-table td { padding: .75rem 1rem; font-size: .88rem; }
}

/* ----------------------------------------------------------------
   25. SERVICES PAGE
   ---------------------------------------------------------------- */
.service-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
}
.service-intro p + p { margin-top: .85rem; }

/* Feature service cards */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 3rem;
  transition: box-shadow var(--t-base) var(--ease);
}
.service-feature:hover { box-shadow: var(--shadow-lg); }
.service-feature--reverse { direction: rtl; }
.service-feature--reverse > * { direction: ltr; }

.service-feature__img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.service-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.service-feature:hover .service-feature__img img { transform: scale(1.06); }
.service-feature__img-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: .85rem;
  padding: .45rem 1rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.service-feature--reverse .service-feature__img-badge { left: auto; right: 1.5rem; }

.service-feature__content {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-feature__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.service-feature__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.service-feature__tagline {
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.service-feature__includes {
  list-style: none;
  margin-bottom: 1.75rem;
}
.service-feature__includes li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  color: var(--text-mid);
  padding: .35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.service-feature__includes li:last-child { border-bottom: none; }
.service-feature__includes li i {
  color: var(--teal);
  margin-top: .2rem;
  flex-shrink: 0;
  font-size: .85rem;
}
.service-feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}
.service-feature__meta-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-gray);
  background: var(--bg-cream);
  padding: .35rem .85rem;
  border-radius: var(--r-pill);
}
.service-feature__meta-tag i { color: var(--teal); }

/* Add-ons */
.addons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.addon-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid rgba(0,0,0,0.07);
  transition: all var(--t-base) var(--ease);
}
.addon-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
  transform: translateY(-4px);
}
.addon-card__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: block;
  line-height: 1;
}
.addon-card__name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.addon-card__desc {
  font-size: .82rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Pricing note */
.pricing-note {
  background: linear-gradient(135deg, var(--teal-xlight), rgba(212,168,83,0.08));
  border-left: 4px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 2.5rem 3rem;
  max-width: 760px;
  margin: 3rem auto 0;
}
.pricing-note__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.pricing-note__title i { color: var(--gold); }
.pricing-note p {
  color: var(--text-mid);
  font-size: .98rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.pricing-note__list {
  list-style: none;
  margin-bottom: 1.25rem;
}
.pricing-note__list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  color: var(--text-mid);
  padding: .3rem 0;
}
.pricing-note__list li i { color: var(--teal); font-size: .8rem; }
.pricing-note__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.pricing-note__contact a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: color var(--t-fast);
}
.pricing-note__contact a:hover { color: var(--teal); }

/* Services responsive */
@media (max-width: 1024px) {
  .service-feature { grid-template-columns: 1fr; }
  .service-feature--reverse { direction: ltr; }
  .service-feature__img { min-height: 300px; }
  .service-feature__content { padding: 2.5rem 2rem; }
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .service-feature__content { padding: 2rem 1.5rem; }
  .service-feature__title { font-size: 1.4rem; }
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-note { padding: 2rem 1.5rem; }
}

/* ----------------------------------------------------------------
   26. GALLERY PAGE
   ---------------------------------------------------------------- */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin: 2.5rem 0;
}
.gallery-filter__btn {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.12);
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 600;
  padding: .5rem 1.25rem;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.gallery-filter__btn:hover,
.gallery-filter__btn.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.full-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.full-gallery__item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--bg-cream);
}
.full-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.full-gallery__item:hover img { transform: scale(1.08); }
.full-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,43,44,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.full-gallery__item:hover .full-gallery__overlay { opacity: 1; }
.full-gallery__label {
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}
.full-gallery__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: all var(--t-base) var(--ease);
}
.full-gallery__item:hover .full-gallery__zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Before/After cards */
.before-after__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ba-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-card__half { position: relative; }
.ba-card__half img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.ba-card__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  padding: .3rem .8rem;
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 700;
}
.ba-card__badge--before { background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.8); }
.ba-card__badge--after  { background: var(--gold); color: var(--bg-dark); }
.ba-card__caption {
  background: var(--white);
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-dark);
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Social CTA band */
.social-cta {
  background: var(--bg-cream);
  border-radius: var(--r-xl);
  padding: 3rem;
  text-align: center;
  margin-top: var(--section-py);
}
.social-cta__icon { font-size: 3rem; color: #1877F2; margin-bottom: 1rem; }
.social-cta h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: .75rem; }
.social-cta p { color: var(--text-mid); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Gallery responsive */
@media (max-width: 1024px) {
  .full-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .before-after__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .full-gallery__grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .ba-card__half img { height: 180px; }
}

/* ----------------------------------------------------------------
   27. CONTACT PAGE
   ---------------------------------------------------------------- */
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--t-base) var(--ease);
}
.contact-option:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
  transform: translateY(-5px);
}
.contact-option__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(13,115,119,0.3);
}
.contact-option__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: .3rem;
}
.contact-option__detail {
  font-size: .92rem;
  color: var(--teal);
  font-weight: 600;
}

/* Contact two-col layout */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: .6rem;
  color: var(--text-dark);
}
.contact-form-wrap .form-intro {
  color: var(--text-mid);
  font-size: .95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .45rem;
}
.form-label .required { color: #e53e3e; margin-left: 2px; }
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,115,119,0.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-error {
  display: block;
  font-size: .82rem;
  color: #e53e3e;
  margin-top: .3rem;
}
.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .25rem;
}
.form-radio-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  cursor: pointer;
  font-size: .92rem;
  color: var(--text-mid);
  padding: .5rem .9rem;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: var(--r-pill);
  transition: all var(--t-fast);
}
.form-radio-label:has(input:checked),
.form-radio-label.is-checked {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.form-radio-label input[type="radio"] { display: none; }
.form-honeypot { display: none !important; }
.form-alerts { margin-bottom: 1.5rem; }
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: .95rem;
  margin-bottom: .75rem;
}
.alert--error { background: #fff5f5; border-left: 4px solid #e53e3e; color: #c53030; }
.alert--success { background: #f0fff4; border-left: 4px solid #38a169; color: #276749; }

/* Contact info sidebar */
.contact-info-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.contact-info-card__header {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 2rem 2rem 1.75rem;
  color: var(--white);
}
.contact-info-card__header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: .25rem;
}
.contact-info-card__header p { font-size: .88rem; opacity: .8; }
.contact-info-card__body { padding: 2rem; }
.contact-info-list { list-style: none; margin-bottom: 1.75rem; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: .93rem;
  color: var(--text-mid);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list li i {
  color: var(--teal);
  margin-top: .15rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.contact-info-list a { color: var(--teal-dark); font-weight: 600; text-decoration: none; }
.contact-info-list a:hover { color: var(--teal); }
.contact-expect { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 1.5rem; }
.contact-expect h4 {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.contact-expect ul { list-style: none; }
.contact-expect li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  color: var(--text-mid);
  padding: .35rem 0;
  line-height: 1.5;
}
.contact-expect li i { color: var(--teal); margin-top: .15rem; flex-shrink: 0; }

/* Mini FAQ */
.contact-faq { margin-top: var(--section-py); }
.contact-faq__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.contact-faq__card {
  background: var(--bg-cream);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
}
.contact-faq__card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--teal-dark);
  margin-bottom: .75rem;
  line-height: 1.4;
}
.contact-faq__card p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

/* Contact responsive */
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .contact-options { grid-template-columns: 1fr; }
  .contact-faq__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-options { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   28. FAQ PAGE
   ---------------------------------------------------------------- */
.faq-categories {
  max-width: 820px;
  margin: 0 auto;
}
.faq-category {
  margin-bottom: 3rem;
}
.faq-category__title {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--teal-dark);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--teal-xlight);
}
.faq-category__title i { color: var(--gold); font-size: 1rem; }

.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.accordion-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: .98rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--t-fast);
}
.accordion-toggle:hover { color: var(--teal); }
.accordion-toggle.is-open { color: var(--teal); }
.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: var(--teal-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: .8rem;
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-base) var(--ease);
}
.accordion-toggle.is-open .accordion-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}
.accordion-body {
  display: none;
  padding: 0 0 1.5rem 0;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
  border-left: 3px solid var(--teal-xlight);
  padding-left: 1.25rem;
  margin-left: .25rem;
}
.accordion-body.is-open { display: block; }
.accordion-body ul {
  margin: .75rem 0 .75rem 1rem;
}
.accordion-body li {
  padding: .2rem 0;
}
.accordion-body strong { color: var(--text-dark); }

.faq-still-questions {
  background: linear-gradient(135deg, var(--teal-xlight), rgba(212,168,83,0.1));
  border-radius: var(--r-xl);
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}
.faq-still-questions h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: .75rem; }
.faq-still-questions p { color: var(--text-mid); margin-bottom: 1.5rem; }
.faq-contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.faq-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: color var(--t-fast);
}
.faq-contact-links a:hover { color: var(--teal); }

/* ----------------------------------------------------------------
   29. REVIEWS PAGE
   ---------------------------------------------------------------- */
.rating-summary {
  background: linear-gradient(135deg, var(--teal-xlight), rgba(212,168,83,0.1));
  border-radius: var(--r-xl);
  padding: 3rem;
  text-align: center;
  margin-bottom: 4rem;
}
.rating-summary__stars {
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: .5rem;
}
.rating-summary__headline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}
.rating-summary__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 560px;
  margin: 0 auto;
}
.rating-stat {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.25rem 1rem;
  box-shadow: var(--shadow-xs);
}
.rating-stat__icon { font-size: 1.5rem; margin-bottom: .4rem; }
.rating-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: .2rem;
}
.rating-stat__label { font-size: .8rem; color: var(--text-gray); font-weight: 500; }

/* Featured review cards */
.featured-review-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t-base) var(--ease);
}
.featured-review-card:hover { box-shadow: var(--shadow-lg); }
.featured-review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: rgba(13,115,119,0.07);
  line-height: 1;
  pointer-events: none;
}
.featured-review-card--gold { border-left: 5px solid var(--gold); }
.featured-review-card--teal { border-left: 5px solid var(--teal); }
.featured-review-card__stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1rem;
}
.featured-review-card__stars i { color: var(--gold); font-size: 1rem; }
.featured-review-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.1rem;
}
.featured-review-card__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.featured-review-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.featured-review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.featured-review-card__name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
}
.featured-review-card__location {
  font-size: .82rem;
  color: var(--text-gray);
}

/* Grid reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.mini-review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-bottom: 3px solid transparent;
  transition: all var(--t-base) var(--ease);
}
.mini-review-card:nth-child(odd)  { border-bottom-color: var(--teal); }
.mini-review-card:nth-child(even) { border-bottom-color: var(--gold); }
.mini-review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mini-review-card__stars {
  display: flex;
  gap: .2rem;
  margin-bottom: .75rem;
}
.mini-review-card__stars i { color: var(--gold); font-size: .85rem; }
.mini-review-card__text {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1rem;
}
.mini-review-card__author {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-gray);
}

/* Leave review CTA */
.leave-review {
  background: var(--bg-cream);
  border-radius: var(--r-xl);
  padding: 4rem 3rem;
  text-align: center;
  margin-top: var(--section-py);
}
.leave-review__icon { font-size: 3.5rem; margin-bottom: 1rem; }
.leave-review h3 { font-family: 'Playfair Display', serif; font-size: 1.75rem; margin-bottom: .75rem; }
.leave-review p { color: var(--text-mid); max-width: 520px; margin: 0 auto 2rem; line-height: 1.8; }

/* Reviews responsive */
@media (max-width: 1024px) {
  .rating-summary__stats { grid-template-columns: 1fr; max-width: 280px; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .featured-review-card { padding: 2rem 1.5rem; }
  .leave-review { padding: 3rem 1.5rem; }
}

/* ----------------------------------------------------------------
   30. THANK-YOU PAGE
   ---------------------------------------------------------------- */
.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 5rem;
  background: var(--bg-white);
}
.thank-you-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 4rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 620px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.thank-you-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal-light));
}
.thank-you-card__icon {
  width: 90px;
  height: 90px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-teal);
  animation: float 3s ease-in-out infinite;
}
.thank-you-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: .75rem;
}
.thank-you-card__sub {
  font-family: 'Dancing Script', cursive;
  font-size: 1.2rem;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.thank-you-card p {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.thank-you-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.thank-you-card__next-steps {
  background: var(--teal-xlight);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin: 1.75rem 0;
  text-align: left;
}
.thank-you-card__next-steps h4 {
  font-weight: 700;
  font-size: .9rem;
  color: var(--teal-dark);
  margin-bottom: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.thank-you-card__next-steps ul { list-style: none; }
.thank-you-card__next-steps li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--text-mid);
  padding: .3rem 0;
}
.thank-you-card__next-steps li i { color: var(--teal); margin-top: .15rem; flex-shrink: 0; }
