/* ============================================================
   EVERWOOD FAMILY DOODLES — PREMIUM STYLESHEET
   Inspired by: Apple · Airbnb · Stripe
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand palette — warm, premium, trustworthy */
  --brand-50:  #fbf8f3;
  --brand-100: #f5efe4;
  --brand-200: #ead9bd;
  --brand-300: #d9bc8c;
  --brand-400: #c89a63;
  --brand-500: #b07c42;
  --brand-600: #8f6030;
  --brand-700: #6d4622;
  --brand-800: #4a2f16;
  --brand-900: #2a1a0c;

  --accent: #4a7a5c;       /* sage green — nature/trust */
  --accent-dark: #345441;

  --ink-900: #0f1419;
  --ink-800: #1f2937;
  --ink-700: #374151;
  --ink-600: #4b5563;
  --ink-500: #6b7280;
  --ink-400: #9ca3af;
  --ink-300: #d1d5db;
  --ink-200: #e5e7eb;
  --ink-100: #f3f4f6;
  --ink-50:  #f9fafb;

  --bg:        #fdfcfa;
  --surface:   #ffffff;
  --surface-2: #faf7f2;

  --success: #16a34a;
  --warning: #d97706;
  --danger:  #dc2626;

  /* Typography */
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15,20,25,.04);
  --shadow-sm: 0 1px 3px rgba(15,20,25,.06), 0 1px 2px rgba(15,20,25,.04);
  --shadow-md: 0 4px 12px rgba(15,20,25,.06), 0 2px 4px rgba(15,20,25,.04);
  --shadow-lg: 0 12px 28px rgba(15,20,25,.08), 0 4px 10px rgba(15,20,25,.05);
  --shadow-xl: 0 24px 48px rgba(15,20,25,.10), 0 8px 16px rgba(15,20,25,.05);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 32px;
  --r-full: 999px;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-32: 128px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.3,1);
  --dur-fast: .18s;
  --dur-mid: .32s;
  --dur-slow: .6s;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-600); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--brand-700); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); font-weight: 600; letter-spacing: -.02em; color: var(--ink-900); margin: 0 0 .6em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.08; letter-spacing: -.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.15; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.3; }
p { margin: 0 0 1em; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.section { padding: var(--s-24) 0; }
.section--tint { background: var(--surface-2); }
.section--dark { background: linear-gradient(160deg, var(--brand-800), var(--brand-900)); color: #f5efe4; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

/* ---------- TOP TRUST BAR ---------- */
.trust-bar {
  background: var(--brand-900);
  color: var(--brand-100);
  font-size: 13px;
  padding: 8px 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-bar__sep { opacity: .4; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 250, .82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--dur-mid) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-900);
  font-family: var(--font-serif);
}
.brand__mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
.brand__sub { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-500); font-family: var(--font-sans); font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > ul { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 10px 14px;
  color: var(--ink-700);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--r-sm);
  transition: all var(--dur-fast) var(--ease);
}
.main-nav > ul > li > a:hover { background: var(--ink-100); color: var(--ink-900); }

.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-radius: var(--r-md);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all var(--dur-fast) var(--ease);
  border: 1px solid var(--ink-100);
}
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.has-dropdown .dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: var(--ink-700);
  font-size: 14.5px;
}
.has-dropdown .dropdown a:hover { background: var(--brand-50); color: var(--brand-700); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink-800); transition: all var(--dur-fast) var(--ease); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.btn--primary {
  background: var(--ink-900);
  color: #fff;
}
.btn--primary:hover {
  background: var(--brand-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  border-color: var(--ink-800);
  color: var(--ink-900);
}
.btn--outline:hover { background: var(--ink-900); color: #fff; }
.btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn--outline-light:hover { background: #fff; color: var(--ink-900); border-color: #fff; }
.btn--ghost { background: var(--ink-100); color: var(--ink-900); }
.btn--ghost:hover { background: var(--ink-200); }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 100px;
  background: linear-gradient(135deg, var(--brand-50) 0%, var(--surface-2) 60%, #f0e8d7 100%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(176,124,66,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(74,122,92,.08) 0%, transparent 60%);
}
.hero__spline,
.hero__art {
  position: absolute;
  right: -5%;
  top: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.hero__spline {
  opacity: .55;
  /* Safety net: if spline-viewer fails (private scene, network error, AWS
     AccessDenied XML body), hide any stray text that would otherwise render. */
  font-size: 0;
  color: transparent;
  user-select: none;
}
.hero__spline spline-viewer,
.hero__spline iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}
.hero__art {
  opacity: .95;
}
.hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
}
.hero__orb--lg {
  right: 12%;
  top: 16%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.72), rgba(176,124,66,.20) 45%, rgba(176,124,66,.06) 70%, transparent 76%);
}
.hero__orb--sm {
  right: 3%;
  bottom: 14%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.75), rgba(74,122,92,.18) 48%, rgba(74,122,92,.06) 72%, transparent 78%);
}
.hero__glass {
  position: absolute;
  right: 16%;
  top: 18%;
  width: min(320px, 42vw);
  padding: 22px 22px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.38));
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 28px 70px rgba(20, 24, 31, .12);
  backdrop-filter: blur(18px);
}
.hero__glass--secondary {
  right: 4%;
  top: auto;
  bottom: 14%;
  width: min(280px, 34vw);
}
.hero__glass-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero__glass strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-900);
  font-size: 1.3rem;
  line-height: 1.15;
}
.hero__glass small {
  display: block;
  color: var(--ink-600);
  font-size: .95rem;
  line-height: 1.5;
}

.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 680px; }
.hero__eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-700);
  margin-bottom: 24px;
  border: 1px solid rgba(176,124,66,.2);
}
.hero__title {
  font-size: clamp(2.8rem, 6.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin-bottom: 24px;
  font-weight: 600;
}
.hero__sub {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--ink-600);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(0,0,0,.08); }
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--brand-700);
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero__trust-item span { font-size: 13px; color: var(--ink-500); letter-spacing: .04em; }

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero__scroll span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid var(--ink-400);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: var(--ink-400);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite var(--ease);
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translate(-50%, 0); }
  50% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; transform: translate(-50%, 0); }
}

/* ---------- TRUST STRIP ---------- */
.trust-strip { padding: 40px 0; background: var(--surface); border-bottom: 1px solid var(--ink-100); }
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.trust-item { display: flex; gap: 14px; align-items: center; }
.trust-icon { font-size: 26px; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 14px; color: var(--ink-900); font-family: var(--font-sans); font-weight: 600; }
.trust-item p { font-size: 12.5px; color: var(--ink-500); margin: 2px 0 0; }

/* ---------- SECTION HEADS ---------- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-head--light { color: #f5efe4; }
.section-head--light .eyebrow { color: var(--brand-300); }
.section-head--light .section-sub { color: rgba(245,239,228,.75); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 16px;
}
.section-title { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--ink-500); line-height: 1.6; }

/* ---------- PAGE HERO (interior pages) ---------- */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--brand-50), var(--bg));
  text-align: center;
}
.page-hero__title { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 16px; }
.page-hero__sub { font-size: 18px; color: var(--ink-600); max-width: 680px; margin: 0 auto; }

/* ---------- PUPPY GRID / CARDS ---------- */
.puppy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}
.puppy-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  transition: all var(--dur-mid) var(--ease);
  display: flex;
  flex-direction: column;
}
.puppy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(176,124,66,.2);
}
.puppy-card__img {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--brand-50);
}
.puppy-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.puppy-card:hover .puppy-card__img img { transform: scale(1.06); }
.puppy-card__placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-size: 64px;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
}
.puppy-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #fff;
  color: var(--ink-800);
  box-shadow: var(--shadow-sm);
}
.puppy-card__badge--available { background: var(--success); color: #fff; }
.puppy-card__badge--reserved { background: var(--warning); color: #fff; }
.puppy-card__badge--sold { background: var(--ink-600); color: #fff; }
.puppy-card__badge--upcoming { background: var(--accent); color: #fff; }

.puppy-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.puppy-card__body h3 { margin: 0 0 6px; font-size: 1.3rem; }
.puppy-card__meta { font-size: 13.5px; color: var(--ink-500); margin: 0 0 4px; }
.puppy-card__dob { font-size: 13px; color: var(--ink-400); margin: 0 0 16px; }
.puppy-card__actions { display: flex; gap: 8px; margin-top: auto; }
.puppy-card__actions .btn { flex: 1; }

/* ---------- PARENT GRID ---------- */
.parent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}
.parent-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  transition: all var(--dur-mid) var(--ease);
}
.parent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.parent-card__img { display: block; aspect-ratio: 1/1; overflow: hidden; background: var(--brand-50); }
.parent-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.parent-card:hover .parent-card__img img { transform: scale(1.06); }
.parent-card__body { padding: 20px; text-align: center; }
.parent-card__role {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 10px;
  font-weight: 600;
}
.parent-card__body h3 { margin: 0 0 4px; font-size: 1.35rem; }
.parent-card__meta { font-size: 13.5px; color: var(--ink-500); margin-bottom: 16px; }

/* ---------- TWO COLUMN ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col__media { position: relative; }
.story-img {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--brand-200), var(--brand-400));
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- VISIT SECTION ---------- */
.visit-section { background: var(--surface-2); }
.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visit-card__text { padding: 60px 50px; }
.visit-address {
  padding: 16px 20px;
  background: var(--brand-50);
  border-left: 3px solid var(--brand-500);
  border-radius: var(--r-sm);
  margin: 20px 0 24px;
  font-size: 15px;
}
.visit-card__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.visit-card__map { min-height: 440px; }
.visit-card__map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-grid--all { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.testimonial-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all var(--dur-mid) var(--ease);
}
.section--dark .testimonial-card { color: rgba(245,239,228,.92); }
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.2); }
.testimonial-card__stars { color: #f7b955; font-size: 20px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card__text { font-size: 15.5px; line-height: 1.65; margin-bottom: 22px; font-style: italic; }
.testimonial-card__author { display: flex; gap: 14px; align-items: center; }
.testimonial-card__author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.avatar-fallback {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand-500); color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 18px;
}
.testimonial-card__author strong { display: block; font-size: 14.5px; color: #fff; font-family: var(--font-sans); }
.section:not(.section--dark) .testimonial-card__author strong { color: var(--ink-900); }
.testimonial-card__author span { font-size: 12.5px; opacity: .7; }
.testimonial-card__puppy { margin-top: 16px; border-radius: var(--r-md); aspect-ratio: 16/9; object-fit: cover; width: 100%; }

/* Testimonials on light bg */
.section:not(.section--dark) .testimonial-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
  color: var(--ink-700);
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--dur-fast) var(--ease);
}
.faq-item[open] { border-color: var(--brand-300); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-900);
  list-style: none;
  position: relative;
  padding-right: 60px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--brand-600);
  font-weight: 300;
  transition: transform var(--dur-fast) var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 24px 20px; color: var(--ink-600); line-height: 1.7; }

/* ---------- CTA CARDS ---------- */
.cta-section { padding-bottom: var(--s-24); }
.cta-card {
  background: linear-gradient(135deg, var(--ink-900), var(--brand-900));
  color: #fff;
  border-radius: var(--r-2xl);
  padding: 70px 50px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.cta-card h2 { color: #fff; margin-bottom: 14px; }
.cta-card p { color: rgba(255,255,255,.8); max-width: 580px; margin: 0 auto 28px; font-size: 17px; }
.cta-card__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-card .btn--ghost { background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(10px); }
.cta-card .btn--ghost:hover { background: rgba(255,255,255,.2); }
.cta-card--tint {
  background: var(--brand-50);
  color: var(--ink-800);
  border: 1px solid var(--brand-200);
  box-shadow: none;
}
.cta-card--tint h2 { color: var(--ink-900); }
.cta-card--tint p { color: var(--ink-600); }

/* ---------- PUPPY DETAIL ---------- */
.puppy-detail { padding: 50px 0 100px; }
.breadcrumb { margin-bottom: 30px; font-size: 14px; }
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--brand-700); }

.puppy-detail__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
}
.puppy-detail__gallery {
  position: sticky; top: 100px;
}
.gallery-main {
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--brand-50);
  box-shadow: var(--shadow-lg);
  margin-bottom: 14px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all var(--dur-fast) var(--ease);
  padding: 0;
  cursor: pointer;
}
.gallery-thumb.active { border-color: var(--brand-500); }
.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.puppy-status {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.puppy-status--available { background: #dcfce7; color: #15803d; }
.puppy-status--reserved { background: #fef3c7; color: #92400e; }
.puppy-status--sold { background: var(--ink-200); color: var(--ink-700); }
.puppy-status--upcoming { background: #dbeafe; color: #1e40af; }

.puppy-detail__info h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.puppy-detail__lead { font-size: 17px; color: var(--ink-500); margin-bottom: 30px; }

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0 0 32px;
  padding: 24px;
  background: var(--surface-2);
  border-radius: var(--r-lg);
}
.spec-list > div { padding: 8px 0; }
.spec-list dt { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-500); margin-bottom: 4px; font-weight: 600; }
.spec-list dd { margin: 0; font-size: 15px; color: var(--ink-900); font-weight: 500; }
.spec-list dd a { color: var(--brand-700); }

.puppy-detail__desc { margin-bottom: 28px; }
.puppy-detail__desc h3 { font-size: 1.2rem; margin-bottom: 10px; }
.puppy-detail__desc p { color: var(--ink-600); line-height: 1.75; }

.puppy-detail__docs { margin-bottom: 28px; }
.puppy-detail__docs h3 { font-size: 1.2rem; margin-bottom: 14px; }

.doc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.doc-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  color: var(--ink-900);
  transition: all var(--dur-fast) var(--ease);
}
.doc-list a:hover { border-color: var(--brand-400); background: var(--brand-50); transform: translateX(4px); }
.doc-list .doc-icon { font-size: 22px; }
.doc-list strong { display: block; font-size: 14.5px; font-weight: 600; }
.doc-list small { display: block; font-size: 12px; color: var(--ink-500); margin-top: 2px; }
.doc-list .doc-download { margin-left: auto; font-size: 13px; color: var(--brand-600); font-weight: 600; }

.cta-stack { margin-top: 30px; }
.cta-stack__note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 12px;
}
.info-box {
  padding: 16px 20px;
  background: var(--brand-50);
  border-left: 3px solid var(--brand-500);
  border-radius: var(--r-sm);
  font-size: 14.5px;
  color: var(--ink-700);
}

/* ---------- DOC GROUP ---------- */
.doc-group { margin-bottom: 40px; }
.doc-group h2 { font-size: 1.4rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--brand-200); }
.health-intro {
  padding: 30px;
  background: var(--brand-50);
  border-radius: var(--r-lg);
  margin-bottom: 40px;
  font-size: 16.5px;
  line-height: 1.7;
}

/* ---------- PROCESS STEPS ---------- */
.process-steps { display: flex; flex-direction: column; gap: 24px; }
.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: 36px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: all var(--dur-mid) var(--ease);
}
.process-step:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--brand-300); }
.process-step__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-500);
  line-height: 1;
  letter-spacing: -.04em;
}
.process-step__content h3 { margin-bottom: 8px; }
.process-step__content p { color: var(--ink-600); margin: 0; line-height: 1.7; }

/* ---------- GUARANTEE GRID ---------- */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.guarantee-card {
  padding: 36px 30px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: all var(--dur-mid) var(--ease);
}
.guarantee-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-300); }
.guarantee-card__icon { font-size: 40px; margin-bottom: 18px; }
.guarantee-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.guarantee-card p { color: var(--ink-600); margin: 0; font-size: 14.5px; line-height: 1.65; }

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: all var(--dur-mid) var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__img { display: block; aspect-ratio: 16/10; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__body { padding: 26px; }
.blog-card__cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-600);
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-card h2 { font-size: 1.4rem; margin-bottom: 10px; line-height: 1.25; }
.blog-card h2 a { color: var(--ink-900); }
.blog-card h2 a:hover { color: var(--brand-700); }
.blog-card__body p { color: var(--ink-600); font-size: 14.5px; margin-bottom: 16px; }
.blog-card__meta { font-size: 13px; color: var(--ink-500); display: flex; gap: 8px; }

/* ---------- POST (single) ---------- */
.post { padding-bottom: 100px; }
.post__header { padding: 60px 0 40px; text-align: center; }
.post__title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.post__meta { font-size: 14.5px; color: var(--ink-500); }
.post__cover { max-width: 1100px; margin: 0 auto 50px; padding: 0 24px; }
.post__cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.post__content { font-size: 17.5px; line-height: 1.8; color: var(--ink-700); }
.post__content h2, .post__content h3 { margin-top: 1.4em; }
.post__content img { border-radius: var(--r-md); margin: 1.5em 0; }
.post__content a { color: var(--brand-700); text-decoration: underline; }
.post__content blockquote {
  border-left: 3px solid var(--brand-500);
  padding: 8px 24px;
  margin: 28px 0;
  color: var(--ink-700);
  font-style: italic;
}

/* ---------- CONTACT / INQUIRY FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap {
  background: #fff;
  padding: 48px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
}
.inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-800);
}
.form-field label small { font-weight: 400; color: var(--ink-500); }
.form-field input,
.form-field textarea,
.form-field select {
  padding: 13px 16px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: #fff;
  transition: all var(--dur-fast) var(--ease);
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(176,124,66,.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.honeypot { position: absolute !important; left: -9999px !important; top: -9999px !important; opacity: 0; }
.form-note { font-size: 12.5px; color: var(--ink-500); text-align: center; margin: 0; }

.selected-puppy-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  border: 1px solid var(--brand-300);
  border-radius: var(--r-md);
  font-size: 15px;
}
.selected-puppy-banner strong { color: var(--brand-700); }

.error-box {
  padding: 14px 18px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--r-md);
  color: #991b1b;
  font-size: 14px;
  margin-bottom: 20px;
}
.error-box ul { margin: 8px 0 0; padding-left: 20px; }

.success-card {
  text-align: center;
  padding: 30px 10px;
}
.success-card__icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #0e7a38);
  color: #fff;
  display: grid; place-items: center;
  font-size: 36px;
  box-shadow: var(--shadow-md);
}

.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.contact-card address { font-style: normal; color: var(--ink-700); line-height: 1.7; margin-bottom: 10px; }
.contact-card p { color: var(--ink-700); margin: 4px 0; font-size: 14.5px; }
.contact-card a { color: var(--brand-700); }
.contact-card--trust { background: linear-gradient(135deg, var(--brand-50), var(--surface-2)); border-color: var(--brand-200); }
.contact-card--trust ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.contact-card--trust li { font-size: 14px; color: var(--ink-700); }

/* ---------- MASONRY GALLERY ---------- */
.masonry-grid {
  columns: 4 280px;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-mid) var(--ease);
}
.masonry-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.masonry-item img { width: 100%; display: block; }
.masonry-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff;
  font-size: 13px;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.masonry-item:hover figcaption { opacity: 1; }

/* ---------- FILTER BAR ---------- */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink-100);
  flex-wrap: wrap;
  gap: 14px;
}
.filter-bar > span { font-size: 14px; color: var(--ink-500); }
.filter-tabs { display: inline-flex; background: var(--ink-100); padding: 4px; border-radius: var(--r-full); gap: 2px; }
.filter-tab {
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-600);
  transition: all var(--dur-fast) var(--ease);
  border: 0;
  background: none;
  cursor: pointer;
  text-decoration: none;
}
.filter-tab:hover { color: var(--ink-900); }
.filter-tab.active { background: #fff; color: var(--ink-900); box-shadow: var(--shadow-sm); }

/* ---------- EMPTY STATES ---------- */
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-500); font-size: 16px; }
.empty-state-card {
  text-align: center;
  padding: 70px 30px;
  background: var(--surface-2);
  border-radius: var(--r-xl);
  border: 2px dashed var(--ink-200);
}
.empty-state-card h3 { margin-bottom: 10px; }
.empty-state-card p { color: var(--ink-500); margin-bottom: 24px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.75);
  padding: 80px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__sub { color: rgba(255,255,255,.5); }
.footer-text { margin: 20px 0 24px; color: rgba(255,255,255,.6); font-size: 14.5px; line-height: 1.65; max-width: 340px; }
.footer-label { font-size: 12px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.5); margin-bottom: 12px; font-weight: 600; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  padding: 8px 14px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-full);
  font-size: 13px;
  color: rgba(255,255,255,.9);
  transition: all var(--dur-fast) var(--ease);
  border: 1px solid rgba(255,255,255,.1);
}
.social-link:hover { background: var(--brand-500); color: #fff; border-color: var(--brand-500); transform: translateY(-2px); }

.footer-col h4 { color: #fff; font-size: 15px; font-family: var(--font-sans); font-weight: 600; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,.65); font-size: 14.5px; transition: color var(--dur-fast) var(--ease); }
.footer-col ul a:hover { color: var(--brand-300); }
.footer-address { font-style: normal; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 14px; font-size: 14.5px; }
.footer-contact { font-size: 14.5px; line-height: 1.8; margin-bottom: 16px; }
.footer-contact a { color: rgba(255,255,255,.8); }
.footer-contact a:hover { color: var(--brand-300); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.footer-bottom p { margin: 4px 0; }
.footer-small { color: rgba(255,255,255,.35); letter-spacing: .05em; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 90;
  transition: all var(--dur-mid) var(--ease);
  animation: wappulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
@keyframes wappulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .site-header__inner { padding: 12px 20px; }
  .hero__spline,
  .hero__art { width: 70%; }
  .hero__spline { opacity: .35; }
  .two-col { gap: 50px; }
  .visit-card { grid-template-columns: 1fr; }
  .visit-card__map { min-height: 320px; }
  .trust-strip__grid { grid-template-columns: repeat(3, 1fr); row-gap: 20px; }
  .puppy-detail__grid { grid-template-columns: 1fr; gap: 40px; }
  .puppy-detail__gallery { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; max-width: 360px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    box-shadow: -8px 0 24px rgba(0,0,0,.15);
    transition: right var(--dur-mid) var(--ease);
    overflow-y: auto;
    z-index: 99;
  }
  .main-nav.open { right: 0; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 14px 0; border-bottom: 1px solid var(--ink-100); border-radius: 0; font-size: 16px; }
  .has-dropdown .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding: 0 0 0 16px;
    border: 0;
    background: transparent;
  }
  .nav-cta { margin-top: 20px; }
  .nav-cta .btn { width: 100%; }

  .trust-bar { font-size: 12px; }
  .trust-bar__inner { gap: 8px; }
  .trust-bar__sep { display: none; }

  .hero { padding: 60px 0 80px; min-height: auto; }
  .hero__spline,
  .hero__art { display: none; }
  .hero__trust { gap: 24px; }
  .hero__cta .btn { flex: 1; min-width: 140px; }

  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .visit-card__text { padding: 40px 28px; }

  .cta-card { padding: 50px 30px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-step { grid-template-columns: 1fr; gap: 14px; padding: 28px; }

  .masonry-grid { columns: 2 150px; }

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

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .hero__title { font-size: 2.4rem; }
  .puppy-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 40px 24px; }
  .cta-card__buttons { flex-direction: column; }
  .cta-card__buttons .btn { width: 100%; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}

/* ---------- PRINT ---------- */
@media print {
  .site-header, .site-footer, .whatsapp-float, .nav-toggle, .trust-bar { display: none !important; }
}
