/* ============================================
   BUYK9DOG — style.css
   California K9 Training & Working Dogs
   ============================================ */

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

:root {
  /* Color Palette */
  --color-bg: #0d0d0d;
  --color-surface: #141414;
  --color-card: #1a1a1a;
  --color-border: #2a2a2a;
  --color-accent: #c8a96e;
  /* warm gold */
  --color-accent-dark: #a8893e;
  --color-accent-light: #e0c98a;
  --color-text: #e8e4dd;
  --color-muted: #8a8480;
  --color-white: #ffffff;
  --color-overlay: rgba(0, 0, 0, 0.72);

  /* Typography */
  --font-heading: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Tahoma, sans-serif;

  /* Spacing */
  --section-gap: 100px;
  --container: 1200px;

  /* Transitions */
  --transition: 0.3s ease;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* -------------------------------------------
   2. GOOGLE FONTS
------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* -------------------------------------------
   3. UTILITY CLASSES
------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.section-title span {
  color: var(--color-accent);
}

.section-desc {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.75;
  max-width: 580px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--color-accent);
  color: #0d0d0d;
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.35);
}

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

.btn-outline:hover {
  background: var(--color-accent);
  color: #0d0d0d;
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: #0d0d0d;
}

.btn-white:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.35);
}

/* -------------------------------------------
   4. HEADER / NAVIGATION
------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 32px;
  max-width: var(--container);
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  width: 54px;
  height: 54px;
  transition: transform var(--transition);
}

.logo:hover .logo__img {
  transform: scale(1.08) rotate(-2deg);
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

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

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.78rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger__line {
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
  display: block;
  border-radius: 2px;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 85vw);
  height: 100vh;
  background: #111111;
  z-index: 1050;
  padding: 90px 32px 40px;
  flex-direction: column;
  gap: 0;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid var(--color-border);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav__close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--color-border);
  border: none;
  color: var(--color-text);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.mobile-nav__close:hover {
  background: var(--color-accent);
  color: #0d0d0d;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}

.mobile-nav__link:hover {
  color: var(--color-accent);
  padding-left: 8px;
}

.mobile-nav__cta {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}

/* Backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.nav-backdrop.visible {
  opacity: 1;
}

/* -------------------------------------------
   5. HERO SECTION
------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 76px;
}

@media (max-width: 640px) {
  .hero {
    flex-direction: column;
    height: auto;
    min-height: unset;
    align-items: stretch;
  }
}

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

@media (max-width: 640px) {
  .hero__bg {
    position: relative;
    height: auto;
    width: 100%;
  }
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

@media (max-width: 640px) {
  .hero__bg img {
    height: auto;
    object-fit: contain;
    /* 100% visibility, no cropping */
  }
}

/* gradient overlays */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(8, 8, 8, 0.4) 0%,
      rgba(8, 8, 8, 0.8) 100%);
  z-index: 1;
}

@media (max-width: 640px) {
  .hero::after {
    display: none;
    /* No overlay needed for stacked layout */
  }
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 0 32px 100px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(200, 169, 110, 0.4);
  background: rgba(200, 169, 110, 0.08);
  border-radius: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 22px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 22px;
  max-width: 700px;
}

.hero__title .accent {
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(232, 228, 221, 0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Hero stats bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
  background: rgba(14, 14, 14, 0.9);
  border-top: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.hero__stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 80px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-stat__num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.hero-stat__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.hero__stats-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}

/* -------------------------------------------
   6. ABOUT SECTION
------------------------------------------- */
.about {
  padding: var(--section-gap) 0;
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: 'ABOUT';
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  letter-spacing: 0.1em;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.about__image-frame {
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1.5px solid var(--color-accent);
  border-radius: 2px;
  z-index: 0;
  opacity: 0.4;
}

.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--color-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 2px;
}

.about__badge-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1;
}

.about__badge-text {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(13, 13, 13, 0.75);
  text-align: center;
  line-height: 1.3;
}


.about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.about__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text);
}

.about__list-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* -------------------------------------------
   7. SERVICES SECTION
------------------------------------------- */
.services {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
}

.services__header {
  text-align: center;
  margin-bottom: 60px;
}

.services__header .section-desc {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  background: var(--color-card);
  padding: 44px 36px;
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), transform var(--transition);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition), border-color var(--transition);
}

.service-card:hover .service-card__icon {
  background: rgba(200, 169, 110, 0.15);
  border-color: rgba(200, 169, 110, 0.5);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 14px;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.75;
}

.service-card__num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

/* -------------------------------------------
   8. AVAILABLE DOGS / K9 SALES
------------------------------------------- */
.dogs {
  padding: var(--section-gap) 0;
  background: var(--color-surface);
  overflow: hidden;
}

.dogs__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}


.dogs__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}

.dogs__tag {
  padding: 6px 16px;
  border: 1px solid var(--color-border);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-radius: 2px;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition);
}

.dogs__tag:hover {
  background: rgba(200, 169, 110, 0.1);
  border-color: var(--color-accent);
}

.dogs__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.dogs__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dogs__feature-icon {
  width: 38px;
  height: 38px;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 3px;
}

.dogs__feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dogs__feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 3px;
}

.dogs__feature-text span {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.dogs__image-wrap {
  position: relative;
}

.dogs__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}

.dogs__breed-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--color-accent);
  color: #0d0d0d;
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* -------------------------------------------
   9. TRAINING APPROACH / K9 SOLUTIONS
------------------------------------------- */
.approach {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
}

.approach__header {
  text-align: center;
  margin-bottom: 64px;
}

.approach__header .section-desc {
  margin: 0 auto;
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.approach-step {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.approach-step:hover {
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-4px);
}

.approach-step__num {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.approach-step__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 12px;
}

.approach-step__desc {
  font-size: 0.825rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Full-width CTA band */
.approach__band {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
}

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

.approach__band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.approach__band-content {
  position: relative;
  z-index: 1;
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.approach__band-text .section-title {
  margin-bottom: 10px;
}

.approach__band-text p {
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* -------------------------------------------
   10. WHY CHOOSE US
------------------------------------------- */
.why {
  padding: var(--section-gap) 0;
  background: var(--color-accent);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.why__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.why__heading .section-tag {
  color: rgba(13, 13, 13, 0.6);
}

.why__heading .section-title {
  color: #0d0d0d;
}

.why__heading .section-desc {
  color: rgba(13, 13, 13, 0.7);
  max-width: 360px;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 28px 24px;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition);
}

.why-card:hover {
  background: rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.why-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 13, 13, 0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: #0d0d0d;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0d0d0d;
  margin-bottom: 10px;
}

.why-card__desc {
  font-size: 0.82rem;
  color: rgba(13, 13, 13, 0.7);
  line-height: 1.65;
}

/* -------------------------------------------
   10. DOGS FOR SALE GALLERY (Replaced Why Us)
------------------------------------------- */
.dogs-gallery {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
}

.dogs-gallery__header {
  text-align: center;
  margin-bottom: 60px;
}

.dogs-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .dogs-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .dogs-gallery__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.dog-card {
  display: block;
  text-decoration: none;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.dog-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.dog-card__image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.dog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dog-card:hover .dog-card__image {
  transform: scale(1.05);
}

.dog-card__content {
  padding: 24px;
  text-align: center;
}

.dog-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.dog-card__breed {
  font-size: 0.85rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* -------------------------------------------
   11. TESTIMONIALS
------------------------------------------- */
.testimonials {
  padding: var(--section-gap) 0;
  background: var(--color-surface);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: block;
  text-decoration: none;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  padding: 48px 36px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.service-card:hover {
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  font-size: 3rem;
  line-height: 0.8;
  color: var(--color-accent);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.15);
  border: 1.5px solid rgba(200, 169, 110, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
}

.author-info__name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
}

.author-info__loc {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.star {
  color: var(--color-accent);
  font-size: 0.85rem;
}

/* -------------------------------------------
   12. CALL TO ACTION SECTION
------------------------------------------- */
.cta-section {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 18px;
  line-height: 1.05;
}

.cta-section__title span {
  color: var(--color-accent);
}

.cta-section__desc {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* -------------------------------------------
   13. FAQ SECTION (Replaced Contact)
------------------------------------------- */
.faq {
  padding: var(--section-gap) 0;
  background: var(--color-surface);
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 50px;
}

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

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(200, 169, 110, 0.3);
}

.faq-item__question {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-item__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color var(--transition);
}

.faq-item:hover .faq-item__title {
  color: var(--color-accent);
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.faq-item__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2.5;
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-item__answer {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}

.faq-item__answer-inner {
  padding: 0 32px 32px;
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.faq-item__answer-inner p {
  margin-bottom: 0;
}

/* -------------------------------------------
   14. FOOTER
------------------------------------------- */
.footer {
  background: #090909;
  border-top: 1px solid var(--color-border);
}

.footer__top {
  padding: 80px 0 60px;
}

.footer__top-inner {
  display: grid;
  grid-template-columns: 1.6fr 2.2fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin: 18px 0 28px;
  max-width: 320px;
  font-weight: 400;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 42px;
  height: 42px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--color-text);
}

.footer__social-link:hover svg {
  fill: #0d0d0d;
}

/* Middle Section: Company + Areas Served grouped together */
.footer__middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col--contact {
  padding-top: 0;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links--areas {
  gap: 12px;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: all var(--transition);
  cursor: pointer;
}

.footer__link:hover {
  color: var(--color-accent);
  padding-left: 8px;
}

.footer__link--phone,
.footer__link--email {
  color: var(--color-text);
  font-weight: 500;
}

.footer__link--phone:hover,
.footer__link--email:hover {
  color: var(--color-accent);
  padding-left: 8px;
}

.footer__link--hours {
  color: var(--color-muted);
  cursor: default;
}

.footer__link--hours:hover {
  color: var(--color-accent);
  padding-left: 0;
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 28px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.footer__copy a {
  color: var(--color-accent);
  transition: all var(--transition);
}

.footer__copy a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__divider {
  color: var(--color-border);
  font-size: 0.7rem;
}

.footer__legal-link {
  font-size: 0.82rem;
  color: var(--color-muted);
  transition: all var(--transition);
}

.footer__legal-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__social-link {
  font-size: 0.82rem;
  color: var(--color-muted);
  transition: all var(--transition);
}

.footer__social-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer__top-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__middle {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .footer__top {
    padding: 60px 0 40px;
  }

  .footer__top-inner {
    gap: 40px;
  }

  .footer__middle {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer__top {
    padding: 48px 0 32px;
  }

  .footer__top-inner {
    gap: 32px;
  }

  .footer__middle {
    /* grid-template-columns: 1fr; */
    gap: 32px;
  }

  .footer__col-title {
    font-size: 0.82rem;
    margin-bottom: 16px;
  }

  .footer__brand-desc {
    font-size: 0.85rem;
    max-width: none;
  }

  .footer__link {
    font-size: 0.85rem;
  }

  .footer__copy {
    font-size: 0.78rem;
  }

  .footer__legal-link {
    font-size: 0.78rem;
  }
}

/* -------------------------------------------
   15. ANIMATIONS / SCROLL REVEAL
------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* -------------------------------------------
   16. RESPONSIVE — TABLET (≤ 1024px)
------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --section-gap: 80px;
  }

  /* Nav */
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image-wrap {
    max-width: 480px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Dogs */
  .dogs__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dogs__image-wrap {
    max-width: 480px;
  }

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

  /* Why */
  .why__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer__top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* Hero stats */
  .hero__stats-inner {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 24px;
    height: auto;
  }

  .hero__stats-divider {
    display: none;
  }
}

/* -------------------------------------------
   17. RESPONSIVE — MOBILE (≤ 640px)  
------------------------------------------- */
@media (max-width: 640px) {
  :root {
    --section-gap: 64px;
  }

  .header__inner {
    height: 64px;
    padding: 0 20px;
  }

  .hero {
    min-height: auto;
    /* Allow height to be based on content */
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
  }

  .hero__content {
    padding: 40px 20px 60px;
    /* Clean spacing below image */
    text-align: left;
    position: relative;
    z-index: 2;
    background: var(--color-bg);
  }

  .hero__badge {
    margin-bottom: 20px;
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.3);
  }

  .hero__title {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 100% !important;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
    color: var(--color-muted);
    max-width: 100% !important;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }

  .hero__scroll {
    display: none;
  }

  .hero__stats {
    position: relative;
    /* Sit naturally at the bottom of the section */
    background: var(--color-surface);
  }

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .approach__band-content {
    padding: 40px 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__top-inner {
    grid-template-columns: 1fr;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about__badge {
    bottom: -16px;
    right: -10px;
    width: 100px;
    height: 100px;
  }

  .container {
    padding: 0 18px;
  }

  .contact__form {
    padding: 32px 24px;
  }
}