/*
Theme Name:        Gentle Paw Labradors
Theme URI:         https://gentlepawlabradors.com
Author:            Gentle Paw Labradors
Description:       A premium WordPress theme for Gentle Paw Labradors — an ethical, family-run AKC Labrador Retriever breeding programme. Built on the Pawfect visual framework with rich breed content, health transparency, and a warm family tone.
Version:           2.0.0
Requires at least: 6.2
Tested up to:      6.5
Requires PHP:      8.0
License:           GNU General Public License v2 or later
License URI:       http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       gentle-paw-v2
Tags:              custom-logo, custom-menu, featured-images, full-width-template
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ============================================================
   DESIGN TOKENS — Gentle Paw Labradors
   Richer, warmer than adoption theme: deep forest, antique gold,
   warm cream, river-stone grey. Feels like quality + family.
   ============================================================ */
:root {
  /* Core palette */
  --forest:        #1B3A2D;
  --forest-mid:    #274D3C;
  --forest-soft:   #3A6B55;
  --gold:          #C8973A;
  --gold-light:    #DDB86A;
  --gold-pale:     #FDF4E3;
  --stone:         #7A8878;
  --stone-light:   #B2BDB0;
  --cream:         #FAF7F0;
  --cream-dark:    #F0EAE0;
  --charcoal:      #252525;
  --text-body:     #3A3A3A;
  --text-muted:    #696969;
  --text-light:    #9A9A9A;
  --white:         #FFFFFF;
  --navy:          #0F2036;

  /* Status */
  --status-available: #16A34A;
  --status-reserved:  #C97D30;
  --status-sold:      #6B6B6B;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Sizing */
  --section-gap:  7rem;
  --card-radius:  16px;
  --pill-radius:  999px;

  /* Motion */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:   0.28s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ── Layout ── */
.container        { max-width: 1180px; margin-inline: auto; padding-inline: 2rem; }
.container-narrow { max-width: 800px;  margin-inline: auto; padding-inline: 2rem; }
.text-center { text-align: center; }

/* ── Typography ── */
.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.kicker--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--forest);
  letter-spacing: -0.015em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title--light { color: var(--white); }

.section-lead {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 600px;
}
.section-lead--center { margin-inline: auto; text-align: center; }

.body-text {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
}
.body-text p { margin-bottom: 1rem; }
.body-text p:last-child { margin-bottom: 0; }

/* Paw pip divider */
.paw-divider {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.3rem 0 1.8rem;
}
.paw-divider::before, .paw-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}
.paw-divider--center { justify-content: center; }
.paw-divider--center::before,
.paw-divider--center::after { max-width: 70px; }
.paw-divider--light::before,
.paw-divider--light::after { background: rgba(255,255,255,0.12); }
.paw-pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.paw-pip + .paw-pip { margin-left: -2px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: var(--pill-radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #B5842A;
  border-color: #B5842A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,151,58,0.35);
}
.btn-forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-forest:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,58,45,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-sm { font-size: 0.78rem; padding: 0.6rem 1.4rem; }

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.2rem 0;
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(27,58,45,0.09);
  padding: 0.65rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--transition);
}
.nav-logo:hover .nav-logo-icon { transform: rotate(-6deg) scale(1.05); }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
#navbar.scrolled .nav-logo-name { color: var(--forest); }
#navbar.scrolled .nav-logo-sub  { color: var(--text-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}
.nav-links li a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.85rem;
  border-radius: var(--pill-radius);
  transition: background var(--transition), color var(--transition);
  display: block;
}
.nav-links li a:hover { background: rgba(255,255,255,0.15); color: var(--white); }
#navbar.scrolled .nav-links li a { color: var(--forest); }
#navbar.scrolled .nav-links li a:hover { background: var(--cream-dark); }
.nav-cta { margin-left: 0.5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--forest); }
.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); }

.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(27,58,45,0.55);
  z-index: 980;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(310px, 85vw);
  height: 100%;
  background: var(--white);
  z-index: 990;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  padding: 5rem 1.8rem 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.drawer.open { transform: translateX(0); }
.drawer a {
  display: block;
  padding: 0.85rem 1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 10px;
  transition: background var(--transition);
}
.drawer a:hover { background: var(--cream); }
.drawer .drawer-cta {
  margin-top: 1rem;
  text-align: center;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--pill-radius);
  padding: 0.9rem;
  font-weight: 600;
}

/* ── Hero ── */
.site-hero {
  min-height: 100vh;
  background: var(--forest);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.hero-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-blob-1 { width: 550px; height: 550px; background: rgba(200,151,58,0.16); right: -80px; top: -100px; }
.hero-blob-2 { width: 380px; height: 380px; background: rgba(122,136,120,0.18); left: -60px; bottom: -60px; }
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); display: block; }
.hero-subtitle {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-credentials {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-cred {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.hero-cred-icon { font-size: 1rem; }
.hero-cred-text { letter-spacing: 0.02em; }

/* Hero illustration — puppy card stack */
.hero-illustration {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.hero-puppy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-puppy-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 1.5rem 1.3rem;
  backdrop-filter: blur(10px);
  transition: transform var(--transition), background var(--transition);
}
.hero-puppy-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); }
.hero-puppy-card:nth-child(2) { margin-top: 1.5rem; }
.hero-puppy-card:nth-child(4) { margin-top: -1.5rem; }
.hero-card-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.hero-card-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; }
.hero-card-detail { font-size: 0.72rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.hero-card-status {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.22rem 0.75rem;
  border-radius: var(--pill-radius);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-chip-avail { background: rgba(22,163,74,0.2); color: #4ADE80; }
.status-chip-res   { background: rgba(201,125,48,0.2); color: #FCD34D; }

/* ── Section utilities ── */
.section         { padding: var(--section-gap) 0; }
.section-cream   { background: var(--cream); }
.section-white   { background: var(--white); }
.section-forest  { background: var(--forest); }
.section-gold    { background: var(--gold-pale); }
.section-dark    { background: var(--navy); }
.section-header  { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-lead { margin-inline: auto; }

/* ── Feature / Value cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(27,58,45,0.10);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.feature-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--forest); margin-bottom: 0.45rem; }
.feature-text { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

/* ── Puppy Cards ── */
.puppies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.8rem;
}
.puppy-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.puppy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(27,58,45,0.12);
}
.puppy-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  overflow: hidden;
}
.puppy-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.puppy-card:hover .puppy-card-img img { transform: scale(1.06); }
.puppy-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  background: linear-gradient(135deg, var(--cream-dark), var(--stone-light) 120%);
}
.puppy-status-badge {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  padding: 0.28rem 0.9rem;
  border-radius: var(--pill-radius);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.status-available { background: rgba(22,163,74,0.85); color: #fff; }
.status-reserved  { background: rgba(201,125,48,0.85); color: #fff; }
.status-sold      { background: rgba(80,80,80,0.75); color: #fff; }

.puppy-colour-badge {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--pill-radius);
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(255,255,255,0.88);
  color: var(--forest);
}
.puppy-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.puppy-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--forest); }
.puppy-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.puppy-meta-pill {
  padding: 0.18rem 0.72rem;
  border-radius: var(--pill-radius);
  background: var(--cream-dark);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
}
.puppy-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.72; font-weight: 300; flex: 1; }
.puppy-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  border-top: 1px solid var(--cream-dark);
}
.puppy-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--forest); }
.puppy-price span { font-family: var(--font-body); font-size: 0.68rem; font-weight: 400; color: var(--text-light); display: block; margin-top: -0.1rem; }

/* Puppy filter */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.52rem 1.35rem;
  border-radius: var(--pill-radius);
  border: 1.5px solid var(--cream-dark);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* ── Breed Insight — special layouts ── */
.breed-trait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.breed-trait-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.5rem 1.3rem;
  text-align: center;
}
.breed-trait-score {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.breed-trait-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.breed-trait-bar {
  margin-top: 0.8rem;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
}
.breed-trait-bar-fill {
  height: 4px;
  border-radius: 2px;
  background: var(--gold);
  transition: width 1.2s var(--ease);
}

.colour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}
.colour-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  background: var(--white);
}
.colour-swatch {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.colour-info { padding: 1rem 1.1rem; }
.colour-name { font-family: var(--font-display); font-size: 0.98rem; font-weight: 600; color: var(--forest); margin-bottom: 0.2rem; }
.colour-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

.health-test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.health-test-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid var(--cream-dark);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.health-test-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.health-test-title { font-size: 0.84rem; font-weight: 600; color: var(--forest); margin-bottom: 0.25rem; }
.health-test-text { font-size: 0.78rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
.health-test-badge {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.18rem 0.65rem;
  border-radius: var(--pill-radius);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(22,163,74,0.1);
  color: var(--status-available);
}

/* Milestone timeline */
.milestone-list { display: flex; flex-direction: column; gap: 0; }
.milestone-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
}
.milestone-item:last-child { border-bottom: none; }
.milestone-week {
  min-width: 72px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  padding-top: 0.1rem;
}
.milestone-title { font-size: 0.88rem; font-weight: 600; color: var(--forest); margin-bottom: 0.25rem; }
.milestone-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ── Two-col info split ── */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.info-split--reversed { direction: rtl; }
.info-split--reversed > * { direction: ltr; }

.illustration-panel {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-soft) 100%);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
}

/* ── Testimonials ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--card-radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.testi-stars { color: var(--gold-light); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.testi-quote { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 0.5; margin-bottom: 1rem; opacity: 0.45; }
.testi-text { font-size: 0.88rem; color: rgba(255,255,255,0.62); font-weight: 300; line-height: 1.82; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: 0.86rem; color: var(--white); }
.testi-sub { font-size: 0.73rem; color: rgba(255,255,255,0.38); margin-top: 0.1rem; }

/* ── Reserve Modal ── */
.reserve-overlay {
  position: fixed; inset: 0;
  background: rgba(15,32,54,0.75);
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(6px);
}
.reserve-overlay.open { opacity: 1; pointer-events: all; }
.reserve-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 500px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s var(--ease);
  position: relative;
}
.reserve-overlay.open .reserve-modal { transform: translateY(0) scale(1); }
.reserve-modal-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  background: var(--cream-dark);
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.reserve-modal-close:hover { background: var(--cream); }
.reserve-modal-title { font-family: var(--font-display); font-size: 1.45rem; color: var(--forest); margin-bottom: 0.25rem; }
.reserve-puppy-name { color: var(--gold); font-style: italic; }
.reserve-success { text-align: center; padding: 2rem 0; }
.reserve-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.reserve-success-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest); margin-bottom: 0.5rem; }
.reserve-success-text { font-size: 0.86rem; color: var(--text-muted); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--gold);
  border-radius: 24px;
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner-title { font-family: var(--font-display); font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 700; color: var(--white); line-height: 1.2; }
.cta-banner-title em { font-style: italic; opacity: 0.82; }
.cta-banner-sub { font-size: 0.88rem; color: rgba(255,255,255,0.72); font-weight: 300; margin-top: 0.5rem; max-width: 420px; }

/* ── Page Hero ── */
.page-hero { padding: 9rem 0 5rem; position: relative; overflow: hidden; }
.page-hero-forest { background: var(--forest); }
.page-hero-forest .kicker { color: var(--gold-light); }
.page-hero-forest .section-title { color: var(--white); }
.page-hero-forest p { color: rgba(255,255,255,0.52); }
.page-hero-cream { background: var(--cream-dark); }
.page-hero-gold  { background: var(--gold-pale); }
.page-hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.page-hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px; pointer-events: none;
}

/* ── Schedule / Guarantee Table ── */
.schedule-table { border-radius: 12px; overflow: hidden; }
.schedule-table th {
  background: var(--forest);
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1rem 1.2rem; text-align: left;
}
.schedule-table td {
  padding: 0.95rem 1.2rem;
  font-size: 0.86rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--cream-dark);
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:nth-child(even) td { background: var(--cream); }

/* ── Contact Form ── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.contact-form-wrap { background: var(--white); border-radius: 20px; padding: 3rem; border: 1px solid var(--cream-dark); }
.form-title { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: var(--forest); margin-bottom: 0.3rem; }
.form-subtitle { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.15rem; }
.form-label { display: block; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em; color: var(--forest); margin-bottom: 0.4rem; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.82rem 1.05rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-family: var(--font-body); font-size: 0.88rem;
  color: var(--charcoal); background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,58,0.12);
  background: var(--white);
}
.form-textarea { min-height: 125px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  background: rgba(22,163,74,0.07);
  border: 1px solid rgba(22,163,74,0.25);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 0.86rem;
  color: #166534;
  margin-top: 1rem;
  display: none;
}
.form-error-msg { font-size: 0.78rem; color: #DC2626; margin-top: 0.35rem; }

.contact-info-panel { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info-card { background: var(--cream-dark); border-radius: 16px; padding: 1.8rem; }
.contact-info-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--forest); margin-bottom: 1.2rem; }
.contact-info-item { display: flex; gap: 1rem; padding: 0.65rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.86rem; }
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon { font-size: 1.1rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.2rem; }
.contact-info-val { color: var(--text-body); font-weight: 500; }
.map-placeholder { background: var(--cream-dark); border-radius: 16px; height: 190px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 0.78rem; color: var(--text-light); padding: 1rem; }

/* ── FAQ Accordion ── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--white); border-radius: 12px; border: 1px solid var(--cream-dark); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.15rem 1.4rem; text-align: left;
  font-size: 0.92rem; font-weight: 600; color: var(--forest);
  background: none; border: none; gap: 1rem; cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold-pale); color: var(--gold);
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-answer {
  padding: 0 1.4rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.3s;
  font-size: 0.86rem; color: var(--text-muted); line-height: 1.82; font-weight: 300;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.4rem; }

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 2rem; left: 10%; right: 10%;
  height: 1px; background: var(--cream-dark); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 16px rgba(200,151,58,0.35);
}
.process-step-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--forest); margin-bottom: 0.45rem; }
.process-step-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ── Footer ── */
footer { background: var(--charcoal); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.footer-brand-desc { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.78; font-weight: 300; margin-top: 0.7rem; margin-bottom: 1.5rem; }
.footer-col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.46); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 0.55rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.28); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { 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; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-illustration { display: none; }
  .info-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .info-split--reversed { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 700px) {
  :root { --section-gap: 4.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-credentials { flex-direction: column; gap: 0.8rem; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── WP core ── */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.alignleft { float: left; margin: 0 2rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 2rem; }
.aligncenter { display: block; margin-inline: auto; }
