/* ============================================================
   MUUS K9 KENNELS — Main Stylesheet
   Fonts loaded via <link> in index.html (Google Fonts)
   Icons via Tabler Icons CDN
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --primary:       #8B4513;
  --secondary:     #3E2723;
  --cream:         #FAF7F2;
  --warm-gray:     #8D7B6D;
  --charcoal:      #2C2C2C;
  --accent:        #A0522D;
  --accent-light:  #C47A3A;
  --border:        rgba(139, 69, 19, 0.18);
  --shadow:        0 4px 24px rgba(62, 39, 35, 0.10);
  --shadow-md:     0 8px 40px rgba(62, 39, 35, 0.15);
  --r:             10px;
  --ff-head:       'Cormorant Garamond', Georgia, serif;
  --ff-body:       'Source Sans 3', sans-serif;
  --ff-script:     'Alex Brush', cursive;
  --nav-h:         68px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── LOADING SCREEN ──────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#loader img {
  width: 480px;
  height: 480px;
  object-fit: contain;
  animation: pulse 1.8s ease-in-out infinite;
}
#loader-text {
  font-family: var(--ff-script);
  color: var(--cream);
  font-size: 4rem;
  opacity: 0.85;
  letter-spacing: 0.01em;
}
#loader-bar {
  width: 260px;
  height: 2px;
  background: rgba(250, 247, 242, 0.2);
  border-radius: 2px;
  overflow: hidden;
}
#loader-bar-inner {
  height: 100%;
  width: 0;
  background: var(--accent-light);
  border-radius: 2px;
  animation: loadbar 1.8s ease forwards;
}

@keyframes loadbar { to { width: 100%; } }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .75; transform: scale(.96); }
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  height: var(--nav-h);
  background: rgba(250, 247, 242, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.nav-brand-name {
  font-family: var(--ff-script);
  font-size: 1.5rem;
  color: var(--secondary);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--primary);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  padding: 9px 22px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(139, 69, 19, 0.3);
}
.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(139, 69, 19, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 790;
  background: var(--cream);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .nav-cta {
  text-align: center;
  margin-top: 0.5rem;
  display: block;
}

/* ── UTILITY ─────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 6rem 0; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 3rem;
}

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--secondary) 0%, #5D3A1A 50%, var(--primary) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196, 122, 58, 0.12) 0%, transparent 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 247, 242, 0.1);
  border: 1px solid rgba(250, 247, 242, 0.2);
  border-radius: 30px;
  padding: 6px 16px;
  margin-bottom: 1.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.8);
  font-weight: 500;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
}

.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-h1 em { color: var(--accent-light); font-style: italic; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--cream);
  color: var(--secondary);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  padding: 13px 30px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
  background: var(--accent-light);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid rgba(250, 247, 242, 0.45);
  border-radius: 40px;
  padding: 13px 30px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover {
  background: rgba(250, 247, 242, 0.1);
  border-color: rgba(250, 247, 242, 0.7);
  transform: translateY(-2px);
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 122, 58, 0.08) 0%, transparent 70%);
}
.hero-logo-wrap img {
  width: 580px;
  height: 580px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* ── TRUST / DIFFERENCE ──────────────────────────────────── */
#difference { background: var(--secondary); }
#difference .section-label { color: var(--accent-light); }
#difference .section-h2  { color: var(--cream); }
#difference .section-sub { color: rgba(250, 247, 242, 0.65); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.pillar-card {
  background: rgba(250, 247, 242, 0.05);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: var(--r);
  padding: 2rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.pillar-card:hover {
  background: rgba(250, 247, 242, 0.09);
  border-color: rgba(196, 122, 58, 0.35);
  transform: translateY(-4px);
}
.pillar-icon {
  font-size: 2rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.pillar-title {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.pillar-desc {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.65;
}

.pull-quote {
  border-left: 3px solid var(--accent-light);
  padding: 1.5rem 2rem;
  background: rgba(250, 247, 242, 0.04);
  border-radius: 0 var(--r) var(--r) 0;
}
.pull-quote p {
  font-family: var(--ff-script);
  font-size: 1.75rem;
  color: var(--cream);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* ── BREEDS ──────────────────────────────────────────────── */
#breeds { background: var(--cream); }

.breeds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.breed-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}
.breed-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.breed-img-wrap {
  height: 220px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  position: relative;
  overflow: hidden;
}
.breed-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder shown when no real photo is set */
.breed-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.breed-silhouette { font-size: 5rem; opacity: 0.35; }
.breed-img-label {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(250, 247, 242, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breed-body { padding: 1.75rem; }
.breed-tag-pill {
  display: inline-block;
  background: rgba(139, 69, 19, 0.08);
  color: var(--primary);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.breed-name {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.breed-motto {
  font-style: italic;
  font-family: var(--ff-head);
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.breed-desc {
  font-size: 0.925rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── SERVICES ─────────────────────────────────────────────── */
#services { background: #F2EDE6; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 69, 19, 0.35);
  transform: translateY(-3px);
}
.coming-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 3px 10px;
}
.service-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.service-title {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.6rem;
}
.service-desc {
  font-size: 0.925rem;
  color: var(--warm-gray);
  line-height: 1.7;
}
.service-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-list li {
  font-size: 0.9rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

/* ── CONTACT ──────────────────────────────────────────────── */
#contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(139, 69, 19, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.c-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  margin-bottom: 2px;
  font-weight: 600;
}
.c-val { font-size: 0.95rem; color: var(--charcoal); }
.c-val a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.c-val a:hover { color: var(--accent); text-decoration: underline; }

.form-group { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--charcoal);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  padding: 11px 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--cream); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--warm-gray); }

.btn-submit {
  background: var(--primary);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  padding: 14px;
  cursor: pointer;
  letter-spacing: 0.03em;
  width: 100%;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(139, 69, 19, 0.3);
}
.btn-submit:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.35);
}

/* ── MODAL ───────────────────────────────────────────────── */
/* ── Modal Overlay ─────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(62, 39, 35, 0);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: 
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.4s ease,
    backdrop-filter 0.4s ease;
  pointer-events: none;
}

.modal-overlay.active {
  opacity: 1;
  background: rgba(62, 39, 35, 0.75);
  backdrop-filter: blur(4px);
  pointer-events: all;
}

/* ── Modal Box ─────────────────────────────────── */
.modal-content {
  background: #F5F1EB;
  border-radius: 8px;
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 32px 64px rgba(62, 39, 35, 0.15);
  transform: scale(0.92) translateY(16px);
  opacity: 0;
  transition: 
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* ── Staggered Inner Elements ──────────────────── */
.modal-logo,
.modal-title,
.modal-text,
.modal-btn,
.modal-btn-secondary {
  opacity: 0;
  transform: translateY(12px);
  transition: 
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.active .modal-logo  { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.modal-overlay.active .modal-title { transition-delay: 0.22s; opacity: 1; transform: translateY(0); }
.modal-overlay.active .modal-text  { transition-delay: 0.29s; opacity: 1; transform: translateY(0); }
.modal-overlay.active .modal-btn   { transition-delay: 0.36s; opacity: 1; transform: translateY(0); }
.modal-overlay.active .modal-btn-secondary { transition-delay: 0.43s; opacity: 1; transform: translateY(0); }

/* ── Close Button ──────────────────────────────── */
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #8C7B6B;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.modal-close:hover {
  color: #3E2723;
  background: rgba(200, 169, 126, 0.15);
  transform: rotate(90deg);
}

/* ── Content Styling ───────────────────────────── */
.modal-logo {
  max-width: 72px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: #3E2723;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.modal-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5D4037;
  line-height: 1.7;
  margin-bottom: 32px;
}

.modal-btn {
  display: inline-block;
  margin-bottom: 12px;
  width: 100%;
}

.modal-btn-secondary {
  display: inline-block;
  width: 100%;
  background: transparent;
  border: 1px solid #C8A97E;
  color: #3E2723;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.modal-btn-secondary:hover {
  background: #C8A97E;
  color: #F5F1EB;
}

/* ── Body Lock ─────────────────────────────────── */
body.modal-open {
  overflow: hidden;
}


/* ── Submit Button Loading State ───────────────── */
.btn-submit.is-loading {
  position: relative;
  color: transparent;           /* hides text, keeps layout */
  pointer-events: none;         /* prevents double-submit */
}

.btn-submit.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;        /* dead-center */
  border: 2px solid rgba(245, 241, 235, 0.25);  /* cream, faint */
  border-top-color: #F5F1EB;    /* cream, solid — the spinner */
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--secondary);
  color: rgba(250, 247, 242, 0.65);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.footer-brand-name {
  font-family: var(--ff-script);
  font-size: 1.75rem;
  color: var(--cream);
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.5);
}

.footer-links-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-links-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.6);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--cream); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(250, 247, 242, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 247, 242, 0.7);
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--cream);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(250, 247, 242, 0.35);
}

/* ── BACK TO TOP ──────────────────────────────────────────── */
#btt {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 700;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(139, 69, 19, 0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
#btt.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#btt:hover { background: var(--accent); }

/* ── MOBILE WHATSAPP STICKY ───────────────────────────────── */
#wa-sticky {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 700;
  background: #25D366;
  color: #fff;
  border-radius: 40px;
  padding: 13px 28px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  align-items: center;
  gap: 8px;
}
#wa-sticky i { font-size: 1.2rem; }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-logo-wrap { order: -1; }
  .hero-logo-wrap::before { width: 260px; height: 260px; }
  .hero-logo-wrap img { width: 240px; height: 240px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }

  .pillars-grid   { grid-template-columns: 1fr; gap: 1rem; }
  .breeds-grid    { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .form-row       { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; }
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  #wa-sticky { display: flex; }
  #btt { bottom: 5.5rem; }
}
@media (max-width: 600px) {
  section           { padding: 4rem 0; }
  .section-h2       { font-size: 2rem; }
  .hero-h1          { font-size: 2.2rem; }
  .pull-quote p     { font-size: 1.35rem; }
  nav               { padding: 0 1rem; }
  .container        { padding: 0 1rem; }
}
