/* ============================================
   THE PETS FATHER — Premium Design System
   Aesthetic: Refined editorial, warm luxury
   ============================================ */

@font-face {
  font-family: 'Montserrat';
  src: url('../Assets/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* — Tokens — */
:root {
  --color-bg: #FAFAFA;
  --color-surface: #E6E6D4;
  --color-text: #212121;
  --color-text-light: #555;
  --color-green: #279A2F;
  --color-green-dark: #1e7a25;
  --color-green-glow: rgba(39, 154, 47, 0.15);
  --color-dark: #3A3937;
  --color-dark-deep: #1a1918;
  --color-white: #FFFFFF;
  --color-cream: #f5f3eb;
  --color-border: rgba(33, 33, 33, 0.08);

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-section: clamp(5rem, 10vw, 9rem);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-subtle: 0 2px 20px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 12px 48px rgba(0, 0, 0, 0.1);
  --shadow-green: 0 4px 24px rgba(39, 154, 47, 0.2);

  --transition-fast: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  --container-max: 1280px;
  --container-narrow: 960px;
}

/* — Reset & Base — */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  font-weight: 500;
}

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

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

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* — Utility — */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green);
  display: inline-flex;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  background: var(--color-green-glow);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(250, 244, 244, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

@media (min-width: 768px) {
  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    padding: 0.4rem 1.25rem;
    gap: 0.75rem;
  }
}

.eyebrow::before {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-green);
  color: var(--color-white);
  box-shadow: var(--shadow-green);
}

.btn--primary:hover {
  background: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(39, 154, 47, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--secondary:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

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

.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border: 1.5px solid var(--color-border);
}

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

/* Focus states */
.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 3px;
}

/* — Scroll Reveal — */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal-delay-4 {
  transition-delay: 400ms;
}

.reveal-delay-5 {
  transition-delay: 500ms;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-smooth);
}

.header.scrolled {
  background: rgba(26, 25, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 48px;
  width: auto;
  transition: height var(--transition-smooth);
}

.header.scrolled .header__logo img {
  height: 38px;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.header__nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-green);
  transition: width var(--transition-smooth);
}

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

.header__nav-link:hover::after {
  width: 100%;
}

.header__cta {
  display: none;
}

.header__cta .btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.8rem;
}

/* Mobile menu toggle */
.header__menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.header__menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.header__menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(26, 25, 24, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover {
  color: var(--color-green);
}

/* ============================================
   SECTION 01 — HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg .hero__bg-desktop {
  display: none;
}

.hero__bg .hero__bg-mobile {
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top,
      rgba(26, 25, 24, 0.92) 0%,
      rgba(26, 25, 24, 0.7) 35%,
      rgba(26, 25, 24, 0.3) 65%,
      rgba(26, 25, 24, 0.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__eyebrow {
  margin-bottom: var(--space-md);
  color: var(--color-white);
  font-weight: bold;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero__body {
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 540px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: var(--space-lg);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.hero__benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero__benefit-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__benefit-icon svg {
  width: 12px;
  height: 12px;
  color: white;
}

.hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
  width: 100%;
}

.hero__actions .btn {
  flex: 1;
  padding: 0.75rem 0.5rem;
  font-size: 0.75rem;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero__actions {
    flex-wrap: wrap;
    gap: 1rem;
    width: auto;
  }

  .hero__actions .btn {
    flex: none;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }
}

.hero__social {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(3rem, 8vw, 6rem);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
}

.hero__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.hero__social-link:hover {
  border-color: var(--color-green);
  color: var(--color-green);
  transform: translateY(-2px);
}

.hero__social-link svg {
  width: 18px;
  height: 18px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SECTION 1.2 — DAYCARE DEPORTIVO
   ============================================ */
.daycare {
  padding: var(--space-section) 0;
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.daycare__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.daycare__header .eyebrow {
  margin-bottom: var(--space-md);
}

.daycare__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

.daycare__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

/* Grid */
.daycare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .daycare__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Cards */
.daycare__card {
  background: rgba(39, 154, 47, 0.06);
  border: 1px solid rgba(39, 154, 47, 0.18);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: border-color var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
}

.daycare__card:hover {
  border-color: var(--color-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* Wide (5th) card — spans full row */
.daycare__card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .daycare__card--wide {
    flex-direction: row;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl);
  }
}

/* Icon */
.daycare__card-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--color-green-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
}

.daycare__card-icon--lg {
  width: 68px;
  height: 68px;
}

.daycare__card-icon svg { display: block; }

/* Content */
.daycare__card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.daycare__card-title {
  font-family: var(--font-display);
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.daycare__card--wide .daycare__card-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.daycare__card-desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.daycare__card--wide .daycare__card-desc {
  font-size: 1rem;
  max-width: 680px;
}

/* ============================================
   SECTION 02 — ABOUT
   ============================================ */
.about {
  padding: var(--space-section) 0;
  background-color: var(--color-bg);
  background-image: url('../Assets/paws BG mobile.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .about {
    background-image: url('../Assets/paws BG desktop.jpg');
  }
}

.about__grid {
  display: grid;
  gap: var(--space-xl);
}

.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-elevated);
}

.about__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.about__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__eyebrow {
  margin-bottom: var(--space-md);
}

.about__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: var(--space-md);
}

.about__intro {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.about__body {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  max-width: 520px;
}

.about__body strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Decorative leaf accent */
.about__accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-green), transparent);
  border-radius: 2px;
  margin-top: var(--space-lg);
}

/* ============================================
   SECTION 03 — METHOD
   ============================================ */
.method {
  padding: var(--space-section) 0;
  background: var(--color-surface);
  position: relative;
}

.method__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.method__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  max-width: 600px;
  margin: 0 auto;
}

.method__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.method__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

/* Last (5th) card spans full width on mobile 2-col */
.method__grid > .method__card:last-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

.method__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.method__card:hover .method__card-img {
  transform: scale(1.06);
}

.method__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(26, 25, 24, 0.85) 0%,
      rgba(26, 25, 24, 0.2) 50%,
      transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  transition: background var(--transition-smooth);
}

.method__card:hover .method__card-overlay {
  background: linear-gradient(to top,
      rgba(39, 154, 47, 0.85) 0%,
      rgba(39, 154, 47, 0.15) 50%,
      transparent 100%);
}

.method__card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.2;
  transform: translateY(0);
  transition: transform var(--transition-smooth);
}

.method__card:hover .method__card-title {
  transform: translateY(-4px);
}

.method__card-number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.method__card:hover .method__card-number {
  border-color: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   SECTION 04 — SERVICES
   ============================================ */
.services {
  padding: var(--space-section) 0;
  background-color: var(--color-bg);
  background-image: url('../Assets/paws BG mobile.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .services {
    background-image: url('../Assets/paws BG desktop.jpg');
  }
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.services__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
}

.services__grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--color-green);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.service-card--featured {
  border-color: var(--color-green);
  box-shadow: 0 0 0 1px var(--color-green);
}

.service-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-green), var(--color-green-dark));
}

.service-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green);
  background: var(--color-green-glow);
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 900;
  margin-bottom: 0.375rem;
  line-height: 1.2;
}

.service-card__subtitle {
  font-size: 0.85rem;
  color: var(--color-green);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.service-card__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.service-card__actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-green);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--transition-fast);
}

.service-card__link:hover {
  gap: 0.625rem;
}

.service-card__link svg {
  width: 14px;
  height: 14px;
}

.service-card__price {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0.25rem 0 0.75rem;
}

.service-card__price strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-green);
}

/* Grooming featured block */
.grooming {
  background: var(--color-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  gap: 0;
}

.grooming__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.grooming__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grooming__content {
  padding: var(--space-lg);
  color: var(--color-white);
}

.grooming__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.grooming__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.grooming__includes-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: var(--space-sm);
}

.grooming__includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.grooming__includes li {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.grooming__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  border-left: 2px solid var(--color-green);
  padding-left: var(--space-sm);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.grooming__cta .btn {
  width: 100%;
}

/* ============================================
   SECTION 05 — WHY CHOOSE US
   ============================================ */
.why {
  padding: var(--space-section) 0;
  background: var(--color-surface);
}

.why__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.why__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-section);
}

.why__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.why__item:hover {
  border-color: var(--color-green);
  box-shadow: var(--shadow-subtle);
}

.why__item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why__item-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-green);
}

.why__item-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

/* Promise block */
.promise {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.promise__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promise__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promise__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 25, 24, 0.9) 0%,
      rgba(26, 25, 24, 0.75) 50%,
      rgba(26, 25, 24, 0.85) 100%);
}

.promise__content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 640px;
}

.promise__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-green);
  margin-bottom: var(--space-md);
}

.promise__text {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: var(--space-lg);
}

.promise__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  border-left: 2px solid var(--color-green);
  padding-left: var(--space-md);
}

/* ============================================
   SECTION 06 — SOCIAL CAROUSEL
   ============================================ */
.social {
  padding: var(--space-section) 0;
  background: var(--color-bg);
  overflow: hidden;
}

.social__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.social__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.social__ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-green);
  transition: gap var(--transition-fast);
}

.social__ig-link:hover {
  gap: 0.75rem;
}

.social__carousel {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-sm) clamp(1.25rem, 4vw, 3rem);
  scrollbar-width: none;
  cursor: grab;
}

.social__carousel:active {
  cursor: grabbing;
}

.social__carousel::-webkit-scrollbar {
  display: none;
}

.social__reel {
  flex: 0 0 200px;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  background: var(--color-dark);
}

.social__reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.social__reel:hover video {
  transform: scale(1.05);
}

.social__reel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 25, 24, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.social__reel:hover .social__reel-overlay {
  opacity: 0;
}

.social__reel-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social__reel-play svg {
  width: 20px;
  height: 20px;
  color: white;
  margin-left: 2px;
}

/* ============================================
   SECTION 07 — TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--space-section) 0;
  background: var(--color-surface);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.testimonials__eyebrow {
  margin-bottom: var(--space-sm);
  justify-content: center;
}

.testimonials__eyebrow::before {
  display: none;
}

.testimonials__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.testimonials__subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials__grid {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
}

.testimonials__grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 85%;
  scroll-snap-align: center;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  color: #E8B931;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-green);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card__role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-green);
  text-transform: uppercase;
}

/* ============================================
   FOOTER — FINAL CTA + BOTTOM
   ============================================ */
.final-cta {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  text-align: center;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta__bg img,
.final-cta__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(26, 25, 24, 0.88) 0%,
      rgba(26, 25, 24, 0.92) 100%);
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.final-cta .btn--primary {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}

/* Footer bottom */
.footer {
  background: var(--color-white);
  background-image: url('../Assets/paws BG mobile.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .footer {
    background-image: url('../Assets/paws BG desktop.jpg');
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer__logo img {
  height: 56px;
  width: auto;
  opacity: 0.9;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(33, 33, 33, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(33, 33, 33, 0.5);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(33, 33, 33, 0.45);
  letter-spacing: 0.04em;
}

/* ============================================
   RESPONSIVE — TABLET (768px)
   ============================================ */
@media (min-width: 768px) {
  .hero__benefits {
    flex-direction: row;
    gap: 1.5rem;
  }

  .hero__social {
    display: flex;
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }

  .about__media {
    aspect-ratio: auto;
    min-height: 500px;
  }

  .method__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .method__card:last-child {
    grid-column: 1 / -1;
  }

  .method__grid > .method__card:last-child {
    aspect-ratio: 16/9;
  }

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

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

  .grooming__image {
    aspect-ratio: auto;
  }

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

  .social__reel {
    flex: 0 0 220px;
  }

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

  .testimonials__grid .testimonial-card {
    flex: none;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px)
   ============================================ */
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }

  .header__cta {
    display: block;
  }

  .header__menu-toggle {
    display: none;
  }

  .hero__bg .hero__bg-desktop {
    display: block;
  }

  .hero__bg .hero__bg-mobile {
    display: none;
  }

  .about__grid {
    grid-template-columns: 5fr 6fr;
    gap: var(--space-3xl);
  }

  .about__media {
    min-height: 580px;
  }

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

  .method__card:nth-child(4),
  .method__card:nth-child(5) {
    grid-column: auto;
  }

  .method__card:last-child {
    grid-column: auto;
  }

  /* 5-card layout: 3 on top, 2 larger on bottom */
  .method__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .method__card:nth-child(1) {
    grid-column: span 2;
  }

  .method__card:nth-child(2) {
    grid-column: span 2;
  }

  .method__card:nth-child(3) {
    grid-column: span 2;
  }

  .method__card:nth-child(4) {
    grid-column: span 3;
  }

  .method__card:nth-child(5) {
    grid-column: span 3;
  }

  .method__grid > .method__card:last-child {
    aspect-ratio: 3/4;
  }

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

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

  .social__reel {
    flex: 0 0 240px;
  }

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

/* ============================================
   RESPONSIVE — WIDE (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .hero__title {
    font-size: 5rem;
  }

  .about__grid {
    gap: 6rem;
  }
}