/* =============================================
   GUARD DOG TRAINING — style.css
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables / Design Tokens --- */
:root {
  --color-dark: #1a1a1a;
  --color-top-bar: #2c2c2c;
  --color-nav-bg: #ffffff;
  --color-green: #2d5016;
  --color-green-mid: #3a6b1e;
  --color-green-light: #4a8026;
  --color-olive: #6b7c3a;
  --color-cream: #f5f0e8;
  --color-tan: #d4c4a0;
  --color-white: #ffffff;
  --color-off-white: #fafaf8;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #888888;
  --color-border: #e0ddd5;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 72px;
  --topbar-height: 36px;

  --max-w: 1200px;
  --max-w-md: 960px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-align: center;
}

.btn--outline {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}

.btn--outline:hover {
  background: var(--color-text);
  color: var(--color-white);
}

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

.btn--dark:hover {
  background: var(--color-green-mid);
  border-color: var(--color-green-mid);
}

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

.btn--white:hover {
  background: var(--color-cream);
  border-color: var(--color-cream);
}

.btn--bone {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
  font-size: .75rem;
  padding: 10px 22px;
  border-radius: 30px;
}

.btn--bone:hover {
  background: var(--color-white);
  color: var(--color-green);
}

.btn--full {
  width: 100%;
  display: block;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--color-top-bar);
  color: #cccccc;
  font-size: .78rem;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: var(--topbar-height);
  letter-spacing: .03em;
}

.top-bar__phone {
  font-weight: 500;
  color: var(--color-white);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav__logo:hover .nav__logo-img {
  transform: rotate(-5deg) scale(1.1);
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav__flags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 40px;
  margin-right: auto;
  padding-left: 20px;
  border-left: 1px solid var(--color-border);
}

.nav__flag {
  height: 20px;
  width: auto;
  display: block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav__flag:hover {
  transform: translateY(-2px) scale(1.15);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green);
  transition: width .3s ease;
}

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

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

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

.hamburger__line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hamburger open state */
.nav__hamburger.is-open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.is-open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 999;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  /* Full-bleed background photo */
  background-image: url('images/hero-dogs.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;

  /* Vertical rhythm */
  padding: 130px 32px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  /* Ensure min height for impact */
  min-height: 88vh;
  justify-content: center;
}

/* Dark gradient overlay — rich charcoal-green fade for readability */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(15, 25, 10, 0.82) 0%,
      rgba(20, 40, 15, 0.72) 40%,
      rgba(26, 45, 18, 0.55) 70%,
      rgba(10, 18, 5, 0.70) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle vignette ring for cinematic depth */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
      transparent 40%,
      rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
  z-index: 0;
}

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

.hero__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(212, 196, 160, 0.90);
  /* warm golden tan */
  margin-bottom: 18px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 22px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .55);
}

.hero__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}

/* Hero CTA — white outline on dark bg */
.hero .btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
  padding: 14px 36px;
  font-size: .8rem;
  letter-spacing: .16em;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

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

/* Hide the floating image — it's now the background */
.hero__image-wrap {
  display: none;
}

.hero__img {
  display: none;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats {
  background: var(--color-cream);
  border-top: 3px solid var(--color-tan);
  border-bottom: 3px solid var(--color-tan);
  padding: 28px 32px;
}

.stats__container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stats__value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
}

.stats__label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
  background: var(--color-green);
  padding: 80px 32px;
  color: var(--color-white);
}

.services__container {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.services__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 14px;
}

.services__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--color-white);
}

.services__sub {
  font-size: .9rem;
  color: rgba(255, 255, 255, .75);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Service Cards Grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.services__grid--second {
  margin-bottom: 0;
}

.service-card {
  background: var(--color-green-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.service-card__img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-green-light);
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__num {
  opacity: .6;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.service-card__text {
  font-size: .84rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  background: var(--color-white);
  padding: 90px 32px;
}

.about__container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image-col {
  position: relative;
}

.about__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Decorative accent */
.about__image-col::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 3px solid var(--color-green);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 14px;
}

.about__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about__text {
  font-size: .93rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__list {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__list-item {
  font-size: .88rem;
  color: var(--color-text);
  font-weight: 500;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how {
  background: var(--color-off-white);
  padding: 80px 32px;
}

.how__container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.how__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 52px;
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.how__step {
  text-align: center;
  padding: 0 8px;
}

.how__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.how__step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.how__step-text {
  font-size: .85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why {
  background: var(--color-white);
  padding: 80px 32px;
}

.why__container {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.why__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 14px;
}

.why__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 50px;
  line-height: 1.3;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why__card {
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: left;
  transition: var(--transition);
}

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

.why__card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.why__card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.why__card-text {
  font-size: .85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-mid) 60%, var(--color-green-light) 100%);
  padding: 72px 32px;
  text-align: center;
  color: var(--color-white);
}

.cta-banner__container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-banner__sub {
  font-size: .93rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq {
  background: var(--color-white);
  padding: 100px 32px;
}

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

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

.faq__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 14px;
}

.faq__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
}

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

.faq__item {
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq__item:hover {
  border-color: var(--color-green-mid);
  box-shadow: var(--shadow-sm);
}

.faq__item.is-active {
  background: var(--color-white);
  border-color: var(--color-green);
  box-shadow: var(--shadow-md);
}

.faq__question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: var(--transition);
}

.faq__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-green);
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* Horizontal line */
.faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

/* Vertical line */
.faq__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq__item.is-active .faq__icon {
  transform: rotate(180deg);
}

.faq__item.is-active .faq__icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq__item.is-active .faq__answer {
  max-height: 1000px;
  transition: max-height 1s ease-in-out;
}

.faq__answer-content {
  padding: 0 32px 32px;
  font-size: .95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.faq__footer {
  margin-top: 50px;
  text-align: center;
  padding: 30px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
}

.faq__footer-text {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 16px;
  font-weight: 500;
}

/* --- Responsive FAQ --- */
@media (max-width: 768px) {
  .faq {
    padding: 70px 20px;
  }

  .faq__question-btn {
    padding: 20px 24px;
    font-size: 1rem;
  }

  .faq__answer-content {
    padding: 0 24px 24px;
  }
}

/* =============================================
   CONTACT SECTION (Replaced by FAQ)
   ============================================= */
/* Keeping class name for compatibility if needed, but styles are now empty or removed */
.contact {
  display: none;
}


.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .9rem;
  color: var(--color-text-light);
}

.contact__info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact__link {
  color: var(--color-green);
  font-weight: 500;
}

.contact__link:hover {
  text-decoration: underline;
}

.contact__areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.contact__areas-list li {
  font-size: .88rem;
  color: var(--color-text-light);
  padding: 4px 0;
  border-bottom: 1px solid var(--color-border);
}

.contact__areas-list li::before {
  content: '📍 ';
  font-size: .75rem;
}

/* Contact Form */
.contact__form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color .3s ease, box-shadow .3s ease;
  outline: none;
  appearance: none;
}

.form__input:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, .1);
}

.form__input::placeholder {
  color: var(--color-text-muted);
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-dark);
  padding: 80px 32px 40px;
  color: rgba(255, 255, 255, .65);
  border-top: 4px solid var(--color-green);
}

.footer__container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  /* filter: brightness(0) invert(1); make it white for dark footer */
  opacity: 0.9;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: .06em;
}

.footer__tagline {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
  max-width: 320px;
}

.footer__flags {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer__flag {
  height: 24px;
  width: auto;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  filter: grayscale(20%);
  transition: var(--transition);
}

.footer__flag:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.footer__social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer__social-link {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-link:hover {
  color: var(--color-white);
  background: var(--color-green);
  border-color: var(--color-green);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.footer__social-icon {
  width: 22px;
  height: 22px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer__col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-green);
}

.footer__links,
.footer__cities {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.footer__link,
.footer__city-link {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
}

.footer__link:hover,
.footer__city-link:hover {
  color: var(--color-white);
  padding-left: 6px;
}

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

.footer__copy {
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 30px;
  text-align: center;
  width: 100%;
}


/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .how__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }

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

  .about__container {
    gap: 40px;
  }

  .contact__grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 36px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {

  /* Top bar */
  .top-bar {
    padding: 0 20px;
    font-size: .72rem;
  }

  .top-bar__address {
    display: none;
  }

  /* Nav */
  .nav__container {
    padding: 0 20px;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    z-index: 1050;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -4px 0 30px rgba(0, 0, 0, .15);
  }

  .nav__links.is-open {
    right: 0;
  }

  .nav__overlay.is-open {
    display: block;
  }

  .nav__link {
    font-size: 1rem;
    padding: 4px 0;
    width: 100%;
  }

  /* Hero */
  .hero {
    padding: 48px 20px 0;
  }

  .hero__img {
    height: 220px;
  }

  /* Stats */
  .stats {
    padding: 24px 20px;
  }

  .stats__container {
    gap: 16px 32px;
    justify-content: center;
  }

  .stats__item {
    min-width: 120px;
  }

  /* Services */
  .services {
    padding: 60px 20px;
  }

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

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

  /* About */
  .about {
    padding: 60px 20px;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about__image-col::before {
    display: none;
  }

  .about__img {
    height: 300px;
  }

  /* How It Works */
  .how {
    padding: 60px 20px;
  }

  .how__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Why Us */
  .why {
    padding: 60px 20px;
  }

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

  /* CTA Banner */
  .cta-banner {
    padding: 52px 20px;
  }

  /* Contact */
  .contact {
    padding: 60px 20px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact__form {
    padding: 28px 20px;
  }

  /* Footer */
  .footer {
    padding: 60px 24px 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: left;
  }

  .footer__brand {
    text-align: left;
    align-items: flex-start;
  }

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

/* =============================================
   TRUST STRIP
   ============================================= */
.trust {
  background: var(--color-white);
  padding: 28px 32px;
  border-bottom: 1px solid var(--color-border);
}

.trust__container {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.trust__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.trust__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 40px;
  transition: var(--transition);
}

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

.trust__badge-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.trust__badge-text {
  font-size: .72rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.4;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.trust__divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* =============================================
   TRAINING GALLERY
   ============================================= */
.gallery {
  background: var(--color-off-white);
  padding: 80px 32px;
}

.gallery__container {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.gallery__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 14px;
}

.gallery__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.gallery__sub {
  font-size: .93rem;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Mosaic grid: large item left, 4 small items right (2x2) */
.gallery__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--color-tan);
}

/* Large item spans both rows */
.gallery__item--large {
  grid-row: 1 / 3;
}


/* stack the 4 small items on the right into a 2x2 */
.gallery__grid {
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 260px 260px;
}

.gallery__item--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery__item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.gallery__item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.gallery__item:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.gallery__item:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.07);
}

.gallery__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(30, 55, 10, .88) 0%, rgba(30, 55, 10, 0) 100%);
  padding: 24px 20px 18px;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery__caption {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.gallery__caption-sub {
  font-size: .78rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.4;
}

.gallery__cta {
  text-align: center;
}

/* =============================================
   BREED SPOTLIGHT
   ============================================= */
.breeds {
  background: var(--color-white);
  padding: 90px 32px;
}

.breeds__container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.breeds__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-green);
  text-align: center;
  margin-bottom: 14px;
}

.breeds__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.breeds__intro {
  font-size: .93rem;
  color: var(--color-text-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  line-height: 1.75;
}

/* Each breed row: 2 columns, image + text */
.breed-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--color-border);
}

.breed-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Reverse layout (image on right) */
.breed-row--reverse {
  direction: rtl;
}

.breed-row--reverse>* {
  direction: ltr;
}

/* Image column */
.breed-row__img-col {
  position: relative;
}

.breed-row__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.breed-row__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.breed-row__img-wrap:hover .breed-row__img {
  transform: scale(1.04);
}

.breed-row__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--color-green);
  color: var(--color-white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

/* Text column */
.breed-row__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 18px;
}

.breed-row__text {
  font-size: .93rem;
  color: var(--color-text-light);
  line-height: 1.78;
  margin-bottom: 14px;
}

.breed-row__features {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.breed-row__features li {
  font-size: .88rem;
  color: var(--color-text);
  font-weight: 500;
  padding-left: 22px;
  position: relative;
}

.breed-row__features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-size: .8rem;
  top: 1px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--color-cream);
  padding: 80px 32px;
}

.testimonials__container {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.testimonials__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 14px;
}

.testimonials__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 14px;
}

.testimonials__sub {
  font-size: .93rem;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

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

.testi-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
}

.testi-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-green);
  opacity: .12;
  position: absolute;
  top: 12px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-tan);
}

.testi-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testi-card__img-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-olive);
  border: 2px solid var(--color-tan);
}

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

.testi-card__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testi-card__name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-dark);
}

.testi-card__location {
  font-size: .78rem;
  color: var(--color-text-muted);
}

.testi-card__stars {
  color: #d4a40a;
  font-size: .85rem;
  letter-spacing: .06em;
}

.testi-card__quote {
  font-size: .9rem;
  color: var(--color-text-light);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 0;
  border-left: none;
}

.testi-card__service {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-green);
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero {
    padding: 80px 20px 80px;
    min-height: 75vh;
  }

  .hero__headline {
    font-size: 1.7rem;
  }

  .stats__value {
    font-size: 1.4rem;
  }

  .services__heading {
    font-size: 1.5rem;
  }

  .contact__areas-list {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   NEW SECTIONS RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .gallery__item--large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .gallery__item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery__item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery__item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .breed-row {
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

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

  .trust__badge {
    padding: 0 24px;
  }
}

/* =============================================
   NEW SECTIONS RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  .nav__flags {
    display: none;
  }

  /* Trust Strip */
  .trust {
    padding: 24px 20px;
  }

  .trust__badge {
    padding: 8px 16px;
  }

  .trust__divider {
    display: none;
  }

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

  /* Gallery */
  .gallery {
    padding: 60px 20px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
    gap: 10px;
  }

  .gallery__item--large {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery__item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery__item:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery__item:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }

  .gallery__item:nth-child(5) {
    grid-column: 1;
    grid-row: 5;
  }

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

  /* Breeds */
  .breeds {
    padding: 60px 20px;
  }

  .breed-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
    padding-bottom: 48px;
  }

  .breed-row--reverse {
    direction: ltr;
  }

  .breed-row__img {
    height: 260px;
  }

  .breeds__intro {
    margin-bottom: 40px;
  }

  /* Testimonials */
  .testimonials {
    padding: 60px 20px;
  }

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

  .testi-card {
    padding: 24px 20px;
  }
}