:root{
  /* Warm, calm palette */
  --bg:#fbf7f0;
  --bg2:#f6efe4;
  --surface: rgba(255,255,255,.55);
  --text:#161616;
  --muted:#5f5a52;
  --accent:#b08d57;
  --accent2:#6f7b67;
  --line: rgba(22,22,22,.08);

  --radius:22px;
  --shadow: 0 10px 30px rgba(22,22,22,.06);
  --shadow2: 0 8px 22px rgba(22,22,22,.05);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(176,141,87,.12), transparent 55%),
    radial-gradient(900px 700px at 90% 0%, rgba(111,123,103,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  line-height:1.6;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.site-loader{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  pointer-events:none;
  opacity:0;
  visibility:hidden;
  transition:opacity .22s ease, visibility .22s ease;
  z-index:1200;
}

.site-loader__inner{
  display:grid;
  place-items:center;
  width:min(140px, 34vw);
  padding:10px;
  border-radius:20px;
  background:rgba(255,255,255,.06);
}

.site-loader__image{
  display:block;
  width:100%;
  height:auto;
  filter:drop-shadow(0 8px 18px rgba(240,24,130,.18));
  transform-origin:center;
}

body.is-loading .site-loader{
  opacity:1;
  visibility:visible;
}

body.is-loading .site-loader__image{
  animation:loaderPulse 1.1s ease-in-out infinite;
}

@keyframes loaderPulse{
  0%, 100%{ transform:scale(.96); opacity:.9; }
  50%{ transform:scale(1); opacity:1; }
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

.wrap{width:min(1120px, calc(100% - 34px)); margin:0 auto}
main.wrap{padding:0}

/* Type helpers */
.h1{font-size:36px;letter-spacing:-.03em;margin:0 0 10px}
.h2{font-size:22px;letter-spacing:-.02em;margin:0 0 10px}
.h3{font-size:16px;letter-spacing:-.01em;margin:16px 0 6px;font-weight:800}
.lead{font-size:16px;color:var(--muted);max-width:62ch}
.muted{color:var(--muted)}
.kicker{font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--accent2)}

/* =====================================================
   HEADER / NAV
===================================================== */

.topbar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(251,247,240,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.topbar__inner{
  width: min(1120px, calc(100% - 34px));
  margin: 0 auto;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 6px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 120px;
}

.brand__logo{
  height: 105px;
  width: auto;
}

/* Burger */
.navbtn{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.40);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  padding: 10px;
}

.navbtn span{
  display:block;
  height:2px;
  background: rgba(0,0,0,.78);
  border-radius: 999px;
}

/* Mobile-first nav (hidden until opened) */
.nav{
  display:none;
  flex-direction:column;
  align-items:stretch;
  gap:6px;
}

/* Mobile open */
.nav.is-open{
  display:flex;
  position:absolute;
  left:16px;
  right:16px;
  top:calc(100% + 10px);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 12px 34px rgba(0,0,0,.10);
}

/* Mobile link sizing */
.nav a,
.nav .nav-dd__btn{
  width:100%;
  justify-content:flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  color: rgba(0,0,0,.72);
}

/* Active underline */
.nav a.is-active{
  color: rgba(0,0,0,.92);
}
.nav a.is-active::after{
  content:"";
  display:block;
  height:2px;
  width:18px;
  margin: 6px 0 0;
  background: rgba(176,141,87,.92);
  border-radius:999px;
}

/* CTA */
.nav a.cta{
  background: rgba(176,141,87,.92);
  color:#fff;
  border:1px solid transparent;
}

/* Dropdown */
.nav-dd{ position:relative; display:inline-flex; align-items:center; width:100%; }
.nav-dd__btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:0;
  background:transparent;
  font:inherit;
  cursor:pointer;
  opacity:.95;
}
.nav-dd__chev{ font-size:12px; opacity:.7; }

/* Mobile dropdown: inline */
.nav-dd__menu{
  position:static;
  display:none;
  margin-top:6px;
  padding:8px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:none;
}
.nav-dd__menu a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  white-space:nowrap;
}
.nav-dd__menu a:hover{ background:rgba(0,0,0,.04); }
.nav-dd.is-open .nav-dd__menu{ display:block; }

/* Desktop */
@media (min-width: 980px){
  .navbtn{ display:none; }

  .nav{
    display:flex !important;
    flex-direction:row;
    align-items:center;
    justify-content:flex-end;
    gap:14px;
    flex-wrap:nowrap;
    white-space:nowrap;
  }

  .nav a,
  .nav .nav-dd__btn{
    width:auto;
    padding: 10px 12px;
    border-radius: 999px;
  }

  .nav-dd{ width:auto; }
  .nav-dd__menu{
    position:absolute;
    top:100%;
    left:0;
    margin-top:6px;
    min-width:220px;
    display:none;
    z-index:999;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
  }
  .nav-dd__menu::before{
    content:"";
    position:absolute;
    left:0; right:0;
    top:-8px; height:8px;
  }

  /* Hover + keyboard */
  @media (hover:hover){
    .nav-dd:hover .nav-dd__menu{ display:block; }
  }
  .nav-dd:focus-within .nav-dd__menu{ display:block; }
}

/* Mid-width tightening */
@media (min-width: 980px) and (max-width: 1120px){
  .nav{ gap:10px; }
  .nav a, .nav .nav-dd__btn{ font-size:14px; padding:9px 10px; }
}

/* =====================================================
   GENERAL UI
===================================================== */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(22,22,22,.10);
  background: rgba(255,255,255,.55);
}

.btn.primary{
  background: linear-gradient(180deg, rgba(176,141,87,.92), rgba(176,141,87,.78));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow2);
}

.section{padding:28px 0}

.form{display:grid;gap:10px;max-width:640px}
.input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(22,22,22,.10);
  background: rgba(255,255,255,.70);
  font: inherit;
}
textarea{min-height:150px;resize:vertical}

/* =====================================================
   HOME HERO (background image + dark overlay panel)
===================================================== */

.home-hero{
  min-height: 80vh;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.home-hero__overlay{
  width:100%;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.78) 0%,
    rgba(0,0,0,.60) 36%,
    rgba(0,0,0,.28) 62%,
    rgba(0,0,0,0) 86%
  );
}

.home-hero__inner{
  max-width:1100px;
  margin:auto;
  padding: 90px 20px;
  color:#fff;
}

.home-kicker{
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:14px;
  font-weight:600;
  color:#fff;
}

.home-hero h1{
  font-family: 'Playfair Display', serif;
  font-size:64px;
  font-weight:700;
  line-height:1.05;
  margin:0 0 18px;
  color:#fff;
  text-shadow: 0 4px 18px rgba(0,0,0,.35);
}

.home-hero p{
  max-width:60ch;
  font-size:18px;
  line-height:1.6;
  margin:0 0 26px;
  color:#fff;
  text-shadow: 0 3px 14px rgba(0,0,0,.30);
}

.home-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.home-actions a{
  padding:14px 22px;
  border-radius:999px;
  font-weight:600;
  transition:.25s ease;
}

.home-actions a.primary{ background:#b08d57; color:#fff; }
.home-actions a.primary:hover{ background:#9a7847; }
.home-actions a:not(.primary){ background:#fff; color:#111; }
.home-actions a:not(.primary):hover{ background:#f2f2f2; }

@media (max-width: 768px){
  .home-hero{ min-height:70vh; }
  .home-hero__overlay{ background: rgba(0,0,0,.65); }
  .home-hero h1{ font-size:42px; }
}

/* =====================================================
   PAGE / PROSE
===================================================== */

.page{ padding:44px 0; }
.prose{ max-width:74ch; }
.section-head{ margin-bottom:18px; }
.section-head .h1, .section-head .h2{ margin-bottom:10px; }

/* =====================================================
   ABOUT
===================================================== */

.about-hero{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:60px;
  align-items:center;
  margin-bottom:80px;
}
.about-hero-media img{
  width:100%;
  height:auto;
  border-radius:24px;
  display:block;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}
.about-hero-content .h1{ margin-bottom:20px; }

@media (max-width: 900px){
  .about-hero{ grid-template-columns:1fr; gap:30px; }
  .about-hero-media{ order:-1; }
}

.about-block{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  align-items:center;
  padding:26px 0;
  border-top:1px solid rgba(0,0,0,.08);
}
.about-block:first-of-type{ border-top:0; padding-top:0; }

.about-media{
  border-radius:26px;
  overflow:hidden;
  background: rgba(255,255,255,.45);
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow2);
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media img.bottom-focus {
  object-position: bottom;
}

.about-copy p{ margin:0 0 12px; color:var(--muted); }
.about-copy p:last-child{ margin-bottom:0; }

.about-cta{
  margin-top:22px;
  padding-top:22px;
  border-top:1px solid rgba(0,0,0,.08);
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

@media (min-width: 900px){
  .about-block{ grid-template-columns: 1.05fr .95fr; gap:26px; }
  .about-block.reverse{ grid-template-columns: .95fr 1.05fr; }
  .about-block.reverse .about-media{ order:1; }
  .about-block.reverse .about-copy{ order:2; }
  .about-media img{ height:360px; }
}

/* =====================================================
   PARENTS PAGE (Our Dogs)
===================================================== */

.parents-head{ width:100%; max-width:none; }
.parents-head .lead{ max-width:74ch; }

.parents-wrap{
  display:grid;
  gap:18px;
  margin-top:18px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px){
  .parents-wrap{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items:start;
  }
}

.parents-group{
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 26px;
  box-shadow: var(--shadow2);
  padding: 16px;
}

.parents-group__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.parents-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
@media (min-width: 900px){
  .parents-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.parent-card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 14px 28px rgba(0,0,0,.06);
}
.parent-media{
  display:block;
  width:100%;
  aspect-ratio: 4 / 3;
  background: rgba(27,27,27,.04);
  overflow:hidden;
}
.parent-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: top;
  display:block;
}

.parent-body{ padding:14px 14px 16px; }
.parent-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
.parent-name{ margin:0; font-size:20px; letter-spacing:-.01em; line-height:1.15; }
.parent-meta{ margin-top:6px; font-size:13px; color: var(--muted); font-weight:650; }

.parent-block{ margin-top:12px; color: rgba(27,27,27,.78); font-weight:650; line-height:1.6; }
.parent-label{ font-weight:900; color: rgba(27,27,27,.78); }

.pill{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(176,141,87,.10);
  border: 1px solid rgba(176,141,87,.22);
  font-weight:900;
  font-size:12px;
  color: rgba(27,27,27,.78);
  white-space:nowrap;
}

.empty{ margin-top:10px; color: var(--muted); }

/* =====================================================
   AVAILABLE PUPPIES (grid cards)
===================================================== */

.puppy-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

@media (min-width: 900px){
  .puppy-grid{ grid-template-columns: repeat(3, 1fr); }
}

.puppy-card{
  border:1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.28);
  border-radius:26px;
  overflow:hidden;
  box-shadow: var(--shadow2);
}

.puppy-media{ position:relative; display:block; background: rgba(255,255,255,.35); }
.puppy-media img{ width:100%; height:280px; object-fit:cover; object-position: top; display:block; }
@media (min-width: 900px){ .puppy-media img{ height:240px; } }

.puppy-status{
  position:absolute; left:14px; top:14px;
  padding:8px 12px; border-radius:999px;
  font-size:12px; font-weight:600;
  backdrop-filter: blur(8px);
  border:1px solid rgba(255,255,255,.22);
}
.puppy-status.is-available{ background: rgba(176,141,87,.92); color:#fff; }
.puppy-status.is-reserved{ background: rgba(0,0,0,.50); color:#fff; }

.puppy-body{ padding:16px 16px 18px; }
.puppy-name{ margin:0 0 6px; font-size:20px; letter-spacing:-.01em; }
.puppy-meta{ font-size:14px; color:var(--muted); margin-bottom:8px; }
.puppy-price{ font-size:14px; font-weight:600; color: rgba(0,0,0,.72); margin-bottom:8px; }
.puppy-blurb{ margin:0 0 10px; color:var(--muted); }
.puppy-empty{ border:1px solid rgba(0,0,0,.06); background: rgba(255,255,255,.22); border-radius:26px; padding:18px; }
.puppy-bottom-cta{ margin-top:22px; padding-top:18px; border-top:1px solid rgba(0,0,0,.08); }

/* =====================================================
   PUPPY PAGE (single)
===================================================== */

.puppy-page{ padding-top:34px; }
.puppy-top{ display:grid; grid-template-columns:1fr; gap:18px; align-items:start; }
@media (min-width: 980px){
  .puppy-top{ grid-template-columns: 1.05fr .95fr; gap:26px; }
}

.puppy-hero{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.25);
  box-shadow: var(--shadow2);
}
.puppy-hero img{ width:100%; height:360px; object-fit:cover; object-position: top; display:block; }
@media (min-width: 980px){ .puppy-hero img{ height:420px; } }

.puppy-badge{
  position:absolute; left:14px; top:14px;
  padding:8px 12px; border-radius:999px;
  font-size:12px; font-weight:600;
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.20);
}
.puppy-badge.is-available{ background: rgba(176,141,87,.92); color:#fff; }
.puppy-badge.is-reserved{ background: rgba(0,0,0,.55); color:#fff; }
.puppy-badge.is-other{ background: rgba(0,0,0,.35); color:#fff; }

.puppy-facts{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:12px; }
.puppy-pill{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.35);
  border:1px solid rgba(0,0,0,.06);
  font-size:13px;
  color: rgba(0,0,0,.72);
}

.puppy-desc{ margin-top:10px; color:var(--muted); max-width:74ch; }
.puppy-litter{ margin-top:12px; color:var(--muted); }
.puppy-cta{ margin-top:16px; display:flex; gap:12px; flex-wrap:wrap; }
.puppy-note{ margin-top:12px; font-size:13px; color: rgba(0,0,0,.52); }

/* Gallery */
.puppy-gallery{ margin-top:34px; padding-top:22px; border-top:1px solid rgba(0,0,0,.08); }
.puppy-gallery-grid{ margin-top:14px; display:grid; grid-template-columns:1fr; gap:12px; }
@media (min-width: 980px){ .puppy-gallery-grid{ grid-template-columns: repeat(3, 1fr); } }
.puppy-thumb{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.25);
  box-shadow: var(--shadow2);
  display:block;
}
.puppy-thumb img{ width:100%; height:240px; object-fit:cover; object-position: top; display:block; }
@media (min-width: 980px){ .puppy-thumb img{ height:210px; } }

/* =====================================================
   LITTERS (list + single)
===================================================== */

.litter-grid{ display:grid; grid-template-columns:1fr; gap:18px; }
@media (min-width: 900px){ .litter-grid{ grid-template-columns: repeat(3, 1fr); } }

.litter-card{
  border:1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.28);
  border-radius:26px;
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.litter-media img{ width:100%; height:280px; object-fit:cover; object-position: top; display:block; }
@media (min-width: 900px){ .litter-media img{ height:240px; } }

.litter-body{ padding:16px 16px 18px; }
.litter-title{ margin:0 0 6px; font-size:20px; letter-spacing:-.01em; }
.litter-meta{ font-size:14px; color:var(--muted); margin-bottom:8px; }
.litter-summary{ margin:0 0 10px; color:var(--muted); }

.litter-top{ display:grid; grid-template-columns:1fr; gap:18px; align-items:start; }
@media (min-width: 900px){ .litter-top{ grid-template-columns: 1.05fr .95fr; gap:26px; } }

.litter-hero{
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.25);
  box-shadow: var(--shadow2);
}
.litter-hero img{ width:100%; height:360px; object-fit:cover; object-position: top; display:block; }
@media (min-width: 900px){ .litter-hero img{ height:420px; } }

.litter-desc{ margin-top:10px; color:var(--muted); max-width:74ch; }
.litter-cta{ margin-top:16px; display:flex; gap:12px; flex-wrap:wrap; }
.litter-section{ margin-top:34px; padding-top:22px; border-top:1px solid rgba(0,0,0,.08); }

.litter-gallery{ margin-top:14px; display:grid; grid-template-columns:1fr; gap:12px; }
@media (min-width: 900px){ .litter-gallery{ grid-template-columns: repeat(3, 1fr); } }
.litter-thumb{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.25);
  box-shadow: var(--shadow2);
  display:block;
}
.litter-thumb img{ width:100%; height:240px; object-fit:cover; object-position: top; display:block; }
@media (min-width: 900px){ .litter-thumb img{ height:210px; } }

/* =====================================================
   PROCESS (with images)
===================================================== */

.process{ display:grid; grid-template-columns:1fr; gap:18px; margin-top:12px; }
.process-step{ border-top:1px solid rgba(0,0,0,.08); padding-top:16px; }
.process-step:first-child{ border-top:0; padding-top:0; }
.process-text{ margin:0 0 12px; color:var(--muted); max-width:74ch; }

.process-image-wide{ margin-top:10px; }
.process-image-wide img{
  width:100%;
  height:420px;
  object-fit:cover;
  object-position: top;
  border-radius:26px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow2);
  display:block;
}

.process-grid{ display:grid; grid-template-columns:1fr; gap:24px; margin-top:20px; }
@media (min-width: 980px){
  .process-grid{ grid-template-columns: 1.1fr .9fr; align-items:start; }
}
.process-image-col img{
  width:100%;
  height:380px;
  object-fit:cover;
  object-position: top;
  border-radius:26px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow2);
  display:block;
}

/* =====================================================
   FAQ (details/summary)
===================================================== */

.faq-list{ display:grid; gap:12px; margin-top:16px; }
.faq-item{
  background: rgba(255,255,255,.75);
  border:1px solid rgba(27,27,27,.10);
  border-radius:18px;
  padding:16px;
  box-shadow:0 12px 24px rgba(0,0,0,.06);
}
.faq-item summary{
  font-weight:900;
  cursor:pointer;
  list-style:none;
  position:relative;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+";
  position:absolute;
  right:0;
  font-size:18px;
  opacity:.6;
}
.faq-item[open] summary::after{ content:"−"; }
.faq-answer{ margin-top:12px; line-height:1.6; color: rgba(27,27,27,.75); }

/* =====================================================
   POLICY PAGES
===================================================== */

.policy{ max-width:820px; }
.policy h2{ margin-top:28px; }
.policy p{ color:var(--muted); margin:8px 0 14px; }

/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox{
  position:fixed; inset:0; background:rgba(0,0,0,.82);
  display:none; align-items:center; justify-content:center;
  padding:18px; z-index:9999;
}
.lightbox.is-open{ display:flex; }
.lightbox img{
  max-width:min(980px, 96vw);
  max-height:86vh;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}
.lightbox-close{
  position:absolute; top:14px; right:14px;
  background:#fff; border:0; border-radius:999px;
  padding:10px 12px; font-weight:900; cursor:pointer;
}

/* =====================================================
   404
===================================================== */

.page-404{ padding:80px 0; text-align:center; }
.error-card{
  max-width:720px;
  margin:0 auto;
  padding:40px 30px;
  border-radius:28px;
  background: rgba(255,255,255,.65);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}
.error-code{
  font-family:'Playfair Display', serif;
  font-size:90px;
  font-weight:700;
  color: rgba(176,141,87,.9);
  letter-spacing:-.03em;
  margin-bottom:10px;
}
.error-actions{
  margin-top:26px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.error-actions .btn{ min-width:180px; }
.home-link{
  display:inline-flex;
  margin-top:10px;
  font-weight:700;
  color: rgba(0,0,0,.72);
}
.home-link:hover{ color: var(--accent); }

/* =====================================================
   FOOTER (single clean version)
===================================================== */

.site-footer{
  margin-top:60px;
  padding:50px 0 30px;
  background: rgba(255,255,255,.25);
  border-top:1px solid rgba(0,0,0,.06);
}

.footer-top{
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
}

.footer-logo{ height:90px; width:auto; margin-bottom:12px; }
.footer-tagline{ max-width:36ch; color:var(--muted); margin:0; }

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px 18px;
  font-size:14px;
}
.footer-links a{ color:var(--muted); }

.footer-contact p{
  margin:0 0 6px;
  font-size:14px;
  color:var(--muted);
}

.footer-bottom{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-top:20px;
  border-top:1px solid rgba(0,0,0,.06);
  font-size:13px;
  color:var(--muted);
}

.footer-legal{ display:flex; align-items:center; gap:10px; }
.footer-legal .dot{ opacity:.5; }

.credit{ margin:0; font-size:12px; color:rgba(0,0,0,.45); }
.credit a{ color:rgba(0,0,0,.65); font-weight:500; }
.credit a:hover{ color: var(--accent); }

@media (min-width: 900px){
  .footer-top{ grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-bottom{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }
}

@media (min-width: 860px){
  .h1{ font-size:48px; }
}

/* Parents page: let the top intro span full width */
.parents-head{
  max-width: none !important;
  width: 100% !important;
  grid-column: 1 / -1; /* safety if any parent is a grid */
}

.parents-head .lead{
  max-width: none !important; /* overrides .lead global max-width */
}

/* Available Puppies: let the top intro span full width */
.puppies-head{
  max-width:none !important;
  width:100% !important;
  grid-column: 1 / -1;
}

.puppies-head .lead{
  max-width:none !important;
}

/* Available Puppies - empty state full width */
.puppy-empty{
  width:100%;
}

.puppy-empty .lead{
  max-width:none !important;
}

/* =====================================================
   PUPPY PROCESS — SLIDER CARD (RESTORE)
===================================================== */

.home-section{
  padding: 36px 0 10px;
}

.process-slider-section{
  padding: 10px 0 30px;
}

.process-slider{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
}

.process-card-wrapper{
  width:100%;
  max-width:760px;
  position:relative;
}

.process-card{
  position:relative;
  min-height:240px;
}

/* One card, one slide visible */
.process-slide{
  display:none;
  text-align:left;
  padding:34px 30px;
  border-radius:30px;
  background: rgba(255,255,255,.65);
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  position:relative;
  overflow:hidden;
}

.process-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(700px 240px at 20% 0%, rgba(176,141,87,.12), transparent 55%);
  pointer-events:none;
}

.process-slide.active{
  display:block;
  animation: processFade .25s ease;
}

@keyframes processFade{
  from{ opacity:0; transform: translateY(6px); }
  to{ opacity:1; transform: translateY(0); }
}

.process-slide h2{
  margin:0 0 12px;
  font-size:22px;
  letter-spacing:-.02em;
}

.process-slide p{
  margin:0;
  color: var(--muted);
  line-height:1.7;
  max-width: 65ch;
  font-weight:650;
}

/* Arrows */
.process-arrow{
  width:52px;
  height:52px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.55);
  cursor:pointer;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: all .2s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.process-arrow:hover{
  background: rgba(176,141,87,.92);
  color:#fff;
  border-color:transparent;
}

.process-arrow:active{
  transform: translateY(1px);
}

/* Mobile: put arrows over the card so layout stays tight */
@media (max-width: 768px){
  .process-slider{
    gap:0;
  }

  .process-arrow{
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    z-index:5;
    width:48px;
    height:48px;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(8px);
  }

  .process-arrow.left{ left:10px; }
  .process-arrow.right{ right:10px; }

  .process-slide{
    padding:32px 20px;
    border-radius:26px;
  }
}

/* Certifications page: let the intro + empty state span full width */
.cert-head{
  max-width:none !important;
  width:100% !important;
  grid-column: 1 / -1;
}

.cert-head .lead{
  max-width:none !important;
}

.cert-empty .muted,
.cert-empty .lead{
  max-width:none !important;
}

/* FAQ page: allow full-width intro */
.faq-head{
  max-width:none !important;
  width:100% !important;
  grid-column: 1 / -1;
}

.faq-head .lead{
  max-width:none !important;
}

.faq-empty .muted{
  max-width:none !important;
}

/* Contact page polish */
.contact-form{
  max-width: 760px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow2);
}

.form-group label{
  font-size: 14px;
  font-weight: 750;
  color: rgba(0,0,0,.70);
}

.contact-success,
.contact-errors{
  max-width: 760px;
}

/* Contact page – full width intro */
.contact-head{
  max-width:none !important;
  width:100% !important;
  grid-column: 1 / -1;
}

.contact-head .lead{
  max-width:none !important;
}

/* =====================================================
   PREVIOUS LITTERS — smaller tiles + show full image
===================================================== */

.prev-litters-page .litters-grid{
  display:grid;
  gap:14px;
  margin-top:14px;
  grid-template-columns: 1fr;
}

@media (min-width: 760px){
  .prev-litters-page .litters-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (min-width: 1060px){
  .prev-litters-page .litters-grid{
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

/* Tile image area: keep a neat frame but don't crop */
.prev-litters-page .litter-media{
  aspect-ratio: 16 / 10;
  background: rgba(0,0,0,.03);
}

.prev-litters-page .litter-media img{
  object-fit: contain;          /* <-- key: show full image */
  background: rgba(0,0,0,.03);  /* fills empty space */
  transform: none;              /* remove any zoom */
}

/* Make the boxes feel smaller/tighter */
.prev-litters-page .litter-body{
  padding: 12px 12px 12px;
}

.prev-litters-page .litter-title{
  font-size: 16px;
}

.prev-litters-page .litter-summary{
  margin-top: 8px;
  font-size: 14px;
}

.prev-litters-page .litter-actions{
  margin-top: 10px;
}

/* ===============================
   SH KENNELS — PREMIUM HOME UPGRADE
   (warm + trust + mobile-first)
================================= */

.home { background: var(--bg, #fbfaf7); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  text-decoration:none;
  font-weight:700;
  line-height:1;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn--full{ width:100%; }
.btn--primary{
  background: var(--accent, #c98a5b);
  border-color: transparent;
  color:#fff;
  box-shadow:0 14px 32px rgba(0,0,0,.12);
}
.btn--primary:hover{ box-shadow:0 18px 42px rgba(0,0,0,.16); }
.btn--ghost{
  background: rgba(255,255,255,.72);
  color: var(--ink, #1f1b16);
}
.btn--soft{
  background: rgba(201,138,91,.12);
  border-color: rgba(201,138,91,.25);
  color: var(--ink, #1f1b16);
}

.lead{
  font-size: clamp(1rem, 2.6vw, 1.12rem);
  color: rgba(31,27,22,.78);
  line-height:1.6;
}
.muted{ color: rgba(31,27,22,.62); }

/* HERO */
.hero-premium{
  position:relative;
  min-height: 72vh;
  display:flex;
  align-items:stretch;
  overflow:hidden;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.hero-premium__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05);
  transform: scale(1.03);
}
.hero-premium__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(255,255,255,.65), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(17,14,12,.25), rgba(17,14,12,.55));
}
.hero-premium__inner{
  position:relative;
  padding: 44px 0 34px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items:end;
}
.hero-premium__content{
  max-width: 720px;
  padding: 18px 0;
}
.hero-premium__kicker{
  display:inline-flex;
  gap:.5rem;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.72);
  border:1px solid rgba(0,0,0,.08);
  font-weight:800;
  font-size: .92rem;
  color: rgba(31,27,22,.86);
}
.hero-premium__title{
  margin: 14px 0 8px;
  color:#fff;
  letter-spacing:-.02em;
  font-size: clamp(2.05rem, 5.6vw, 3.2rem);
  line-height:1.05;
  text-shadow:0 10px 40px rgba(0,0,0,.25);
}
.hero-premium__sub{
  margin: 0;
  max-width: 54ch;
  color: rgba(255,255,255,.90);
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  line-height:1.6;
  text-shadow:0 10px 40px rgba(0,0,0,.22);
}
.hero-premium__actions{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* Trust pills */
.trust-pills{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pill{
  background: rgba(255,255,255,.70);
  border:1px solid rgba(0,0,0,.08);
  border-radius:999px;
  padding:9px 12px;
  font-weight:700;
  color: rgba(31,27,22,.85);
  backdrop-filter: blur(10px);
}

/* Side card (desktop only) */
.hero-premium__side{ display:none; }
.glass-card{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}
.glass-card__title{
  font-weight:900;
  color: rgba(31,27,22,.92);
  margin-bottom: 10px;
}
.ticklist{
  list-style:none;
  padding:0; margin:0;
  display:grid;
  gap:8px;
  color: rgba(31,27,22,.78);
}
.ticklist li{
  position:relative;
  padding-left: 24px;
}
.ticklist li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  font-weight:900;
  opacity:.9;
}
.glass-card__actions{
  margin-top: 12px;
  display:grid;
  gap:10px;
}

/* Sections */
.section-premium{ padding: 26px 0; }
.panel-premium{
  background: #fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}
.panel-premium--glow{
  background: linear-gradient(180deg, rgba(201,138,91,.10), rgba(255,255,255,1));
  border-color: rgba(201,138,91,.18);
  box-shadow: 0 22px 70px rgba(201,138,91,.12);
}
.panel-actions{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* Welcome grid */
.panel-premium__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.mini-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini-card{
  border-radius: 18px;
  border:1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.88);
  padding: 14px;
}
.mini-card__top{ font-weight:900; margin-bottom:6px; color: rgba(31,27,22,.92); }
.mini-card__body{ color: rgba(31,27,22,.74); line-height:1.5; }

/* Section head */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}
.section-head__actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Puppies */
.puppy-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.puppy-card{
  display:block;
  text-decoration:none;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  background:#fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
  transition: transform .12s ease, box-shadow .12s ease;
}
.puppy-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(0,0,0,.10);
}
.puppy-card__media{
  position:relative;
  aspect-ratio: 16 / 11;
  background: #f3f0ea;
}
.puppy-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.badge{
  position:absolute;
  left:12px;
  top:12px;
  padding:8px 11px;
  border-radius:999px;
  background: rgba(255,255,255,.82);
  border:1px solid rgba(0,0,0,.10);
  font-weight:900;
  color: rgba(31,27,22,.88);
  backdrop-filter: blur(10px);
}
.puppy-card__body{
  padding: 14px 14px 16px;
}
.puppy-card__title{
  font-weight: 950;
  letter-spacing:-.01em;
  color: rgba(31,27,22,.92);
  font-size: 1.1rem;
}
.puppy-card__meta{
  margin-top: 6px;
  color: rgba(31,27,22,.70);
  font-weight:700;
  font-size: .95rem;
}
.puppy-card__sub{
  margin-top: 8px;
  color: rgba(31,27,22,.72);
  line-height:1.55;
}
.puppy-card__cta{
  margin-top: 10px;
  font-weight: 900;
  color: rgba(201,138,91,.98);
}

/* Process CTA */
.cta-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.steps{
  display:grid;
  gap: 10px;
}
.step{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
}
.step__num{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  background: rgba(201,138,91,.18);
  border:1px solid rgba(201,138,91,.30);
}

/* Desktop enhancements */
@media (min-width: 980px){
  .hero-premium__inner{
    grid-template-columns: 1.2fr .8fr;
    align-items:center;
    padding: 64px 0 54px;
  }
  .hero-premium__side{ display:block; }
  .panel-premium{ padding: 22px; }
  .panel-premium__grid{
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: start;
  }
  .puppy-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .cta-grid{
    grid-template-columns: 1.15fr .85fr;
    align-items:center;
  }
}

