/* ==========================================================================
   MAKOYA GOLDEN RETRIEVERS — "Golden Hour" design system
   Shared stylesheet for all pages
   ========================================================================== */

:root {
  /* Palette — drawn from the Makoya brand */
  --gold:        #c9a227;   /* yellow gold — primary accent */
  --gold-bright: #e8c040;   /* bright yellow gold */
  --gold-soft:   #f3e7d3;   /* wheat */
  --cream:       #fdf9f2;   /* page ground */
  --cocoa:       #1c1b3a;   /* deep navy — ink */
  --cocoa-soft:  #484776;   /* muted navy — secondary text */
  --white:       #ffffff;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', 'Helvetica Neue', Arial, sans-serif;

  /* Rhythm */
  --space-section: clamp(5rem, 12vw, 9rem);
  --radius-lg: 28px;
  --radius-md: 16px;
  --ease-out: cubic-bezier(.22,1,.36,1);
  --shadow-soft: 0 18px 50px -18px rgba(46,32,19,.25);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--cream);
  color: var(--cocoa);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold-bright); color: var(--cocoa); }

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .25s var(--ease-out); }
a:hover { color: var(--cocoa); }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { width: min(1180px, 92vw); margin-inline: auto; }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.1;
  color: var(--cocoa);
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); font-variation-settings: "SOFT" 60, "WONK" 1; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
p  { margin: 0 0 1.25em; }
.lead { font-size: clamp(1.15rem, 2vw, 1.35rem); color: var(--cocoa-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
}

.gold-text {
  background: linear-gradient(105deg, var(--gold) 20%, var(--gold-bright) 55%, var(--gold) 85%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  padding-right: .08em; padding-bottom: .08em;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out),
              padding .4s var(--ease-out), backdrop-filter .4s;
  padding: 1.1rem 0;
}
.site-header.is-scrolled {
  background: rgba(253,249,242,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -16px rgba(46,32,19,.25);
  padding: .55rem 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: .9rem; text-decoration: none; }
.brand img.brand-mark {
  width: clamp(120px, 14vw, 160px); height: auto;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  display: block;
  flex-shrink: 0;
  border: none;
  box-shadow: none;
  transition: opacity .3s;
}
.brand:hover img.brand-mark { transform: none; opacity: .88; }
.brand-name { display: none; }

.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.main-nav a.nav-link {
  position: relative; font-weight: 500; font-size: .95rem; color: var(--cocoa);
  padding: .35rem 0;
}
.main-nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.main-nav a.nav-link:hover::after,
.main-nav a.nav-link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.main-nav a.nav-link[aria-current="page"] { color: var(--gold); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .5rem;
  width: 46px; height: 46px; position: relative; z-index: 210;
}
.nav-toggle span {
  display: block; width: 26px; height: 2.5px; background: var(--cocoa);
  margin: 5px auto; border-radius: 2px; transition: transform .35s var(--ease-out), opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: 0; left: auto;
    height: 100%; height: 100dvh;
    width: min(300px, 85vw);
    flex-direction: column; justify-content: flex-start; align-items: flex-start;
    background: linear-gradient(160deg, var(--cream) 0%, var(--gold-soft) 100%);
    gap: 1.2rem;
    padding: 5rem 2rem 2.5rem;
    transform: translateX(105%);
    transition: transform .45s var(--ease-out);
    z-index: 200;
    box-shadow: -8px 0 40px -10px rgba(46,32,19,.25);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    isolation: isolate;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a.nav-link {
    font-size: 1.2rem; font-family: var(--font-display);
    width: 100%; padding: .4rem 0;
  }
  .main-nav a.nav-link[aria-current="page"] {
    color: var(--gold);
    padding-left: 1rem;
    border-left: 3px solid var(--gold);
  }
  .main-nav a.nav-link[aria-current="page"]::after { display: none; }
  .main-nav .btn { margin-top: .6rem; align-self: flex-start; }
  /* Dim overlay behind the panel */
  .main-nav.is-open::before {
    content: '';
    position: fixed; inset: 0; right: min(300px, 85vw);
    background: rgba(28,27,58,.45);
    z-index: -1;
  }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.7rem; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out),
              background .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: var(--white);
  box-shadow: 0 12px 28px -10px rgba(200,146,42,.6);
}
.btn-gold:hover { color: var(--white); transform: translateY(-3px); box-shadow: 0 18px 36px -10px rgba(200,146,42,.7); }
.btn-ghost { background: transparent; border-color: var(--gold); color: var(--cocoa); }
.btn-ghost:hover { background: var(--gold); color: var(--white); }
.btn .paw { transition: transform .35s var(--ease-out); display: inline-flex; align-items: center; }
.btn:hover .paw { transform: rotate(-18deg) scale(1.15); }
/* Strip red from 🐾 emoji — desaturate then tint gold */
.paw { display: inline-flex; align-items: center; }
.paw-icon { fill: currentColor; }
.btn-gold .paw-icon { color: var(--white); }
.btn-ghost .paw-icon { color: var(--gold); }
.btn-ghost:hover .paw-icon { color: var(--white); }
.cta-band .btn-ghost .paw-icon { color: var(--cocoa); }
.cta-band .btn-ghost:hover .paw-icon { color: var(--cocoa); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 9rem 0 6rem;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 78% 12%, rgba(227,178,91,.28), transparent 60%),
    radial-gradient(900px 540px at 8% 88%, rgba(200,146,42,.16), transparent 60%),
    var(--cream);
}
#gold-dust { position: absolute; inset: 0; z-index: 0; pointer-events: none; width: 100%; height: 100%; }
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .18em; margin-bottom: -.18em; padding-top: .06em; }
.hero h1 .line > span { display: inline-block; padding-bottom: .02em; }
.hero-copy p.lead { max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 2.6rem; }
.hero-badges span {
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cocoa-soft); display: inline-flex; align-items: center; gap: .5rem;
}
.hero-badges span::before { content: "🐾"; font-size: .85rem; }

.hero-visual { position: relative; }
.hero-photo {
  width: 100%; aspect-ratio: 4/4.6; object-fit: cover;
  border-radius: 46% 54% 52% 48% / 56% 46% 54% 44%;
  box-shadow: var(--shadow-soft);
  animation: blobDrift 14s ease-in-out infinite alternate;
}
@keyframes blobDrift {
  0%   { border-radius: 46% 54% 52% 48% / 56% 46% 54% 44%; }
  100% { border-radius: 54% 46% 44% 56% / 46% 56% 44% 56%; }
}
.hero-swirl {
  position: absolute; right: -8%; bottom: -10%;
  width: clamp(110px, 16vw, 180px); height: auto;
  border-radius: 50%; box-shadow: var(--shadow-soft);
  border: 6px solid var(--cream);
  animation: slowSpin 36s linear infinite;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }



@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin-inline: auto; width: 100%; }
}

/* Page hero (sub-pages) */
.page-hero {
  position: relative; padding: 9rem 0 5rem;
  background:
    radial-gradient(1200px 600px at 78% 0%, rgba(227,178,91,.32), transparent 60%),
    radial-gradient(900px 540px at 5% 100%, rgba(200,146,42,.18), transparent 60%),
    var(--cream);
}
.page-hero h1 { max-width: 16ch; line-height: 1.2; padding-bottom: .05em; }
.page-hero .lead { max-width: 60ch; }

/* --------------------------------------------------------------------------
   Swirl divider — echo of the circular Makoya logo
   -------------------------------------------------------------------------- */
.swirl-divider { display: block; width: 100%; height: 70px; color: var(--gold-soft); }
.swirl-divider.flip { transform: scaleY(-1); }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: var(--space-section) 0; position: relative; }
.section.tinted { background: linear-gradient(180deg, var(--gold-soft) 0%, var(--cream) 100%); }
.section-head { max-width: 62ch; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }

.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* Pillars (home: why Makoya) */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.2rem 1.9rem; box-shadow: 0 12px 32px -18px rgba(46,32,19,.22);
  border: 1px solid rgba(200,146,42,.14);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.pillar:hover { transform: translateY(-8px); box-shadow: 0 26px 44px -18px rgba(46,32,19,.3); }
.pillar .pillar-icon {
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  border: 1px solid rgba(200,146,42,.25);
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}
.pillar .pillar-icon svg { display: block; }
.pillar h3 { font-size: 1.25rem; }
.pillar p { color: var(--cocoa-soft); font-size: .98rem; margin: 0; }

/* --------------------------------------------------------------------------
   Gallery — masonry grid + lightbox
   -------------------------------------------------------------------------- */
.gallery-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; flex-wrap: wrap; margin-bottom: .5rem;
}
.masonry {
  columns: 3; column-gap: 1.1rem; margin-top: 2.4rem;
}
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 540px) { .masonry { columns: 1; } }

.tile {
  break-inside: avoid; margin-bottom: 1.1rem;
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  cursor: zoom-in; background: var(--gold-soft);
  border: 0; padding: 0; width: 100%; display: block;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.tile img {
  width: 100%; display: block;
  transition: transform .8s var(--ease-out), filter .8s var(--ease-out);
}
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(46,32,19,.45));
  opacity: 0; transition: opacity .5s;
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -16px rgba(46,32,19,.35); }
.tile:hover img { transform: scale(1.06); }
.tile:hover::after { opacity: 1; }
.tile .zoom {
  position: absolute; right: .85rem; bottom: .85rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(253,249,242,.92); display: grid; place-items: center;
  color: var(--cocoa); opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
  z-index: 2; pointer-events: none;
}
.tile:hover .zoom { opacity: 1; transform: translateY(0); }

/* Masonry lightbox */
.masonry-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(46,32,19,.92);
  display: none; align-items: center; justify-content: center;
  padding: 3.5rem 1.2rem;
  opacity: 0; transition: opacity .35s;
}
.masonry-lightbox.open { display: flex; opacity: 1; }
.masonry-lightbox img {
  max-width: min(1100px, 94vw); max-height: 84vh;
  border-radius: var(--radius-md); box-shadow: 0 30px 90px rgba(0,0,0,.5);
  transition: opacity .3s;
}
.mlb-btn {
  position: absolute; background: rgba(253,249,242,.14);
  border: 1px solid rgba(253,249,242,.35); color: var(--cream);
  width: 50px; height: 50px; border-radius: 50%; font-size: 1.3rem;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .3s;
}
.mlb-btn:hover { background: rgba(253,249,242,.3); }
.mlb-close { top: 1.4rem; right: 1.4rem; font-size: 1.6rem; }
.mlb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.mlb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   Dog profiles (Our Girls)
   -------------------------------------------------------------------------- */
.dog-profile { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.dog-profile.reverse > .dog-media { order: 2; }
@media (max-width: 880px) {
  .dog-profile, .dog-profile.reverse > .dog-media { grid-template-columns: 1fr; order: initial; }
}
.dog-media { position: relative; }
.dog-media img.primary {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  width: 100%; aspect-ratio: 4/4.4; object-fit: cover;
}
.dog-media img.secondary {
  position: absolute; right: -6%; bottom: -10%; width: 46%;
  border-radius: var(--radius-md); border: 6px solid var(--cream);
  box-shadow: var(--shadow-soft); aspect-ratio: 1; object-fit: cover;
}
@media (max-width: 880px) { .dog-media img.secondary { right: 4%; } }
.dog-name-tag {
  display: inline-block; font-family: var(--font-display); font-style: italic;
  color: var(--cocoa-soft); font-size: 1.05rem; margin-bottom: 1.2rem;
}
.fact-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.4rem 0; padding: 0; list-style: none; }
.fact-chips li {
  font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  background: transparent; border: 2px solid var(--gold);
  color: var(--cocoa-soft); padding: .42rem .95rem; border-radius: 999px;
  transition: transform .3s var(--ease-out), background .3s, color .3s;
}
.fact-chips li:hover { transform: translateY(-3px); background: var(--gold); color: #fff; }

/* --------------------------------------------------------------------------
   Litters
   -------------------------------------------------------------------------- */
.litter-status {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent; border: 2px solid var(--gold);
  padding: .85rem 1.7rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  white-space: normal; text-align: left; max-width: 100%;
}
.litter-status .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(200,146,42,.45);} 60% { box-shadow: 0 0 0 9px rgba(200,146,42,0);} }

.litter-block { padding: var(--space-section) 0; }
.litter-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; color: var(--cocoa-soft); font-weight: 500; font-size: .95rem; margin-bottom: 1.2rem; align-items: center; }
.litter-meta span { display: inline-flex; align-items: center; gap: .45rem; }

.litter-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.4rem; }
@media (max-width: 880px) { .litter-gallery { grid-template-columns: repeat(2, 1fr); } }
.litter-gallery a {
  display: block; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 1; box-shadow: 0 10px 26px -14px rgba(46,32,19,.3);
  position: relative; cursor: zoom-in;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.litter-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.litter-gallery a:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -16px rgba(46,32,19,.35); }
.litter-gallery a:hover img { transform: scale(1.06); }
.litter-gallery a .zoom {
  position: absolute; bottom: .6rem; right: .6rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(28,27,58,.55); backdrop-filter: blur(4px);
  display: grid; place-items: center; color: #fff;
  opacity: 0; transform: translateY(4px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.litter-gallery a:hover .zoom { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(46,32,19,.86); backdrop-filter: blur(6px);
  padding: 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius-md); box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox button.close {
  position: absolute; top: 1.4rem; right: 1.6rem; background: none; border: 0;
  color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-shell {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(200,146,42,.18);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.6rem, 4vw, 3rem);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block; font-weight: 600; font-size: .9rem; margin-bottom: .45rem; color: var(--cocoa);
}
.field label .req, .field legend .req { color: var(--gold); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field select, .field textarea {
  width: 100%; font: inherit; color: var(--cocoa);
  background: var(--cream); border: 1.5px solid rgba(200,146,42,.28);
  border-radius: 12px; padding: .8rem 1rem;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 4px rgba(200,146,42,.16);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .options { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; padding-top: .2rem; }
.field .options label { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; margin: 0; cursor: pointer; }
.field input[type="radio"], .field input[type="checkbox"] { accent-color: var(--gold); width: 1.1rem; height: 1.1rem; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field .error-msg { display: none; color: #c0392b; font-size: .82rem; margin-top: .35rem; }
.field.invalid .error-msg { display: block; }

fieldset.field { border: 0; padding: 0; margin: 0; }
fieldset.field legend { font-weight: 600; font-size: .9rem; margin-bottom: .45rem; padding: 0; }

.form-note { font-size: .88rem; color: var(--cocoa-soft); }
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success.visible { display: block; }
.form-success .big-paw { font-size: 3rem; display: block; margin-bottom: 1rem; animation: pawPop .6s var(--ease-out); }
@keyframes pawPop { 0% { transform: scale(.4) rotate(-20deg); opacity: 0;} 100% { transform: scale(1) rotate(0); opacity: 1;} }

/* Contact cards */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 880px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  text-align: center; border: 1px solid rgba(200,146,42,.16);
  box-shadow: 0 12px 32px -18px rgba(46,32,19,.22);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.contact-card:hover { transform: translateY(-7px); box-shadow: 0 24px 44px -18px rgba(46,32,19,.3); }
.contact-card .icon {
  width: 58px; height: 58px; border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  border: 1px solid rgba(200,146,42,.25);
  display: grid; place-items: center;
  color: var(--gold);
  margin: 0 auto .9rem;
  flex-shrink: 0;
}
.contact-card .icon svg { display: block; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.contact-card p { margin: 0; color: var(--cocoa-soft); font-size: .95rem; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(135deg, #b8922a 0%, #c9a227 50%, #a07d20 100%);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.cta-band h2 { color: #1c1b3a; }
.cta-band .lead { color: rgba(28,27,58,.85); max-width: 52ch; margin-inline: auto; }
.cta-band .eyebrow { color: rgba(28,27,58,.7); }
.cta-band .eyebrow::before { background: rgba(28,27,58,.4); }
.cta-band .btn-gold { background: #1c1b3a; color: var(--cream); box-shadow: 0 16px 40px -10px rgba(0,0,0,.4); }
.cta-band .btn-gold:hover { background: #2a2952; color: var(--cream); }
.cta-band .btn-ghost { border-color: var(--cream); color: var(--cocoa); }
.cta-band .btn-ghost:hover { background: var(--cream); color: var(--cocoa); }
.cta-paws { position: absolute; inset: 0; pointer-events: none; opacity: .08; font-size: 2rem; }
.cta-paws span { position: absolute; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #1e1608; color: var(--gold-soft);
  padding: 4rem 0 2rem; position: relative;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand-name, .site-footer h4 { color: #fff; }
.site-footer h4 { font-size: 1.05rem; margin-bottom: 1rem; }
.site-footer a { color: var(--gold-soft); }
.site-footer a:hover { color: var(--gold-bright); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid rgba(243,231,211,.4);
  color: rgba(243,231,211,.85);
  transition: background .3s, transform .3s var(--ease-out), border-color .3s, color .3s;
}
.footer-social a svg { display: block; flex-shrink: 0; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-4px); color: #fff; }
.footer-base {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(243,231,211,.18);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .85rem; color: rgba(243,231,211,.7);
}

/* --------------------------------------------------------------------------
   Reveal helpers (GSAP targets)
   -------------------------------------------------------------------------- */
/* reveal initial states set by JS to avoid flash before scripts load */
html.no-js .reveal, html.no-js .reveal-img { opacity: 1; transform: none; clip-path: none; }

/* Paw cursor trail */
.paw-trail { position: fixed; z-index: 90; pointer-events: none; font-size: 1rem; user-select: none; }

/* Back to top */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 95;
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: #fff;
  font-size: 1.2rem; box-shadow: 0 14px 30px -10px rgba(200,146,42,.7);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .4s, transform .4s var(--ease-out);
}
.to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-img { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

/* --------------------------------------------------------------------------
   Stats bar — 2 Litters Raised / 14 Puppies Homed / 100% Heart, Always
   -------------------------------------------------------------------------- */
.stats-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.6rem, 4vw, 3.5rem);
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,146,42,.18);
  box-shadow: 0 12px 40px -18px rgba(46,32,19,.15);
}
.stat {
  flex: 1 1 160px; text-align: center;
  padding: .8rem 1rem;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -.02em;
  margin-bottom: .45rem;
}
.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cocoa-soft);
}
.stat-divider {
  width: 1px; align-self: stretch;
  background: rgba(200,146,42,.25);
  margin: .5rem 0;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stats-bar { gap: .5rem; }
  .stat { flex-basis: 100%; border-bottom: 1px solid rgba(200,146,42,.15); padding: 1rem; }
  .stat:last-child { border-bottom: none; }
}

/* --------------------------------------------------------------------------
   Quote band
   -------------------------------------------------------------------------- */
.quote-band {
  background: linear-gradient(135deg, var(--gold-soft) 0%, #ecdfc4 100%);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.quote-band blockquote {
  max-width: 52ch;
  margin-inline: auto;
}
.quote-band blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  color: var(--cocoa);
  margin-bottom: 1.4rem;
}
.quote-band blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Pedigree grid — text + photo side by side, stacks on mobile */
@media (max-width: 700px) {
  .form-shell [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* --------------------------------------------------------------------------
   Heartbeat word — uppercase emphasis
   -------------------------------------------------------------------------- */
.heartbeat {
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Litter meta icons — match pillar icon style
   -------------------------------------------------------------------------- */
.litter-meta span { display: inline-flex; align-items: center; gap: .6rem; }
.litter-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  border: 1px solid rgba(200,146,42,.25);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  overflow: hidden;
  padding: 5px;
  box-sizing: border-box;
}
.litter-icon svg {
  display: block;
  margin: auto;
}
.litter-icon svg[viewBox="0 0 24 24"] {
  width: 100%; height: 100%;
}

/* --------------------------------------------------------------------------
   Puppy Journey section
   -------------------------------------------------------------------------- */
.journey-section {
  background: var(--cocoa);
  color: var(--cream);
  border-radius: 0 0 38px 38px;
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.journey-section .eyebrow { color: var(--gold-bright); }
.journey-section .eyebrow::before { background: var(--gold-bright); }
.journey-section h2 { color: var(--cream); }
.journey-head p { color: rgba(253,249,242,.65); max-width: 46ch; margin-top: .9rem; }

.steps {
  margin-top: clamp(3rem, 6vw, 5rem);
  position: relative;
}
.steps::before {
  content: ""; position: absolute; left: 25px; top: 0; bottom: 0; width: 1.5px;
  background: rgba(253,249,242,.16);
}
.steps-line {
  position: absolute; left: 25px; top: 0; width: 1.5px; height: 100%;
  background: var(--gold); transform: scaleY(0); transform-origin: top;
}
.journey-step {
  position: relative;
  display: grid; grid-template-columns: 52px 140px 1fr;
  gap: clamp(1rem, 3vw, 2.8rem);
  padding: 2.1rem 0;
  align-items: start;
}
.journey-step + .journey-step { border-top: 1px solid rgba(253,249,242,.08); }
.step-dot {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cocoa); border: 1.5px solid rgba(253,249,242,.3);
  display: grid; place-items: center; z-index: 1;
  transition: background .4s, border-color .4s, transform .4s var(--ease-out);
}
.step-dot svg { transition: stroke .4s, color .4s; }
.journey-step:hover .step-dot {
  background: var(--gold); border: 2.5px solid #fff; transform: scale(1.12);
}
.journey-step:hover .step-dot svg { stroke: #fff; color: #fff; }
.step-week {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold-bright); font-size: 1.1rem; padding-top: .7rem;
}
.journey-step h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 500;
  padding-top: .6rem; color: var(--cream);
}
.journey-step p { color: rgba(253,249,242,.66); margin-top: .5rem; max-width: 54ch; }

@media (max-width: 760px) {
  .journey-step {
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    gap: .8rem 1rem;
    padding: 1.6rem 0;
  }
  .step-dot {
    grid-column: 1; grid-row: 1;
    width: 44px; height: 44px;
  }
  .step-week {
    grid-column: 2; grid-row: 1;
    padding-top: .6rem; font-size: .9rem; align-self: center;
  }
  /* The content div spans full width below the dot row */
  .journey-step > div:last-child {
    grid-column: 1 / -1;
    padding-left: calc(44px + 1rem);
  }
  .journey-step h3 {
    font-size: 1.15rem; padding-top: 0;
  }
  .journey-step p { font-size: .9rem; }
}

/* --------------------------------------------------------------------------
   Admin nav link — subtle, sits after Contact Us
   -------------------------------------------------------------------------- */
.nav-admin {
  font-size: .78rem !important;
  color: var(--cocoa-soft) !important;
  opacity: .6;
  letter-spacing: .06em;
}
.nav-admin:hover { opacity: 1; color: var(--gold) !important; }
.nav-admin::after { display: none !important; }
