/* ==========================================================================
   ROYAL TEDDY PUPPIES — Design tokens
   Palette: warm, earthy, farm-and-timber — not the generic cream/terracotta duo.
   ========================================================================== */

:root{
  /* --- color --- */
  --cream:      #F7EEDD; /* page background, warm ivory */
  --paper:      #EFE0C4; /* card / raised surface */
  --paper-dark: #E3D0A8; /* deeper card surface, borders */
  --ink:        #2B2116; /* near-black warm coffee — primary text */
  --ink-soft:   #5B4B38; /* secondary text */
  --clay:       #A64B2A; /* burnt rust — primary accent / CTA */
  --clay-dark:  #7E3A20; /* clay hover */
  --moss:       #5C6B3F; /* sage/moss — secondary accent */
  --moss-dark:  #46512F;
  --gold:       #C98A2B; /* warm gold — highlight */
  --line:       #DCC79E; /* hairline dividers */
  --white:      #FFFBF2;

  /* --- type --- */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Karla", "Segoe UI", sans-serif;

  /* --- scale --- */
  --radius-tag: 6px 22px 6px 22px;
  --radius: 10px;
  --shadow-soft: 0 6px 18px rgba(43, 33, 22, 0.10);
  --shadow-lift: 0 14px 34px rgba(43, 33, 22, 0.18);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}
.eyebrow::before{
  content: "";
  width: 22px;
  height: 2px;
  background: var(--clay);
  display: inline-block;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section{
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.section-head{
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head h2{
  font-size: clamp(30px, 4vw, 44px);
  margin-top: 14px;
  line-height: 1.12;
}
.section-head p{
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 18px;
}
.section-head.center{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-primary{
  background: var(--clay);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover{
  background: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.btn-ghost{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover{
  background: var(--ink);
  color: var(--cream);
}
.btn-ghost.on-dark{
  border-color: var(--cream);
  color: var(--cream);
}
.btn-ghost.on-dark:hover{
  background: var(--cream);
  color: var(--moss-dark);
}

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 238, 221, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.brand .mark{ width: 34px; height: 34px; color: var(--clay); }
.brand small{
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--moss-dark);
  text-transform: uppercase;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a{
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover{ color: var(--clay); }
.nav-links a.current{ color: var(--clay); }
.nav-cta{ display: flex; align-items: center; gap: 14px; }

.nav-toggle{
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span{ width: 22px; height: 2px; background: var(--ink); display: block; }

@media (max-width: 1250px){
  .nav-links{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
    display: none;
  }
  .nav-links.open{ display: flex; }
  .nav-toggle{ display: flex; }
  .nav-cta .btn-ghost{ display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  padding: 76px 0 100px;
  overflow: hidden;
  background: var(--cream);
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--paper-dark) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
  opacity: 0.55;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.hero .wrap{
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1{
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
}
.hero h1 em{
  font-style: italic;
  color: var(--clay);
}
.hero-lede{
  margin-top: 22px;
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions{
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats{
  margin-top: 46px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-stats div strong{
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
}
.hero-stats div span{
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

.hero-visual{
  position: relative;
  height: 460px;
}
.photo-frame{
  position: absolute;
  border: 8px solid var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-lift);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: 13px;
  padding: 10px;
}
.photo-frame.f1{
  width: 62%; height: 68%;
  top: 0; right: 0;
  background: linear-gradient(150deg, #E7CFA0, #C98A2B 120%);
  transform: rotate(3deg);
  z-index: 2;
}
.photo-frame.f2{
  width: 46%; height: 46%;
  bottom: 0; left: 0;
  background: linear-gradient(150deg, #C7CFA6, #5C6B3F 130%);
  transform: rotate(-6deg);
  z-index: 3;
}
.photo-frame .icon-dog{
  width: 64px; height: 64px;
  color: rgba(255,251,242,0.85);
}
.hero-tape{
  position: absolute;
  top: 34%;
  left: 6%;
  width: 90px;
  height: 28px;
  background: rgba(201, 138, 43, 0.55);
  transform: rotate(-8deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  z-index: 4;
}

@media (max-width: 900px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-visual{ height: 320px; order: -1; }
}

/* ==========================================================================
   Breeds — signature "kennel tag" cards
   ========================================================================== */
.breeds-section{ background: var(--paper); }
.tag-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.kennel-tag{
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-tag);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-soft);
  transform: rotate(var(--tilt, -1.2deg));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--line);
}
.kennel-tag:nth-child(2n){ --tilt: 1.4deg; }
.kennel-tag:nth-child(3n){ --tilt: -0.6deg; }
.kennel-tag:hover{
  transform: rotate(0deg) translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.kennel-tag .grommet{
  position: absolute;
  top: 16px;
  right: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--paper-dark);
}
.kennel-tag .icon-dog{
  width: 46px;
  height: 46px;
  color: var(--clay);
}
.kennel-tag h3{
  font-size: 22px;
  margin-top: 14px;
}
.kennel-tag p{
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.kennel-tag .tag-meta{
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  font-size: 13px;
  font-weight: 700;
}
.tag-meta .avail{ color: var(--moss-dark); }
.tag-meta .avail.none{ color: var(--ink-soft); font-weight: 700; }
.tag-meta a{ color: var(--clay); }

@media (max-width: 920px){
  .tag-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .tag-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   Available puppies — polaroid gallery
   ========================================================================== */
.puppy-filters{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-chip{
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink-soft);
  transition: all 0.16s ease;
}
.filter-chip:hover{ border-color: var(--clay); color: var(--clay); }
.filter-chip.active{
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.polaroid-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 26px;
}
.polaroid{
  background: var(--white);
  padding: 12px 12px 20px;
  box-shadow: var(--shadow-soft);
  transform: rotate(var(--tilt, -2deg));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.polaroid:nth-child(3n+1){ --tilt: -2deg; }
.polaroid:nth-child(3n+2){ --tilt: 1.6deg; }
.polaroid:nth-child(3n+3){ --tilt: -0.8deg; }
.polaroid:hover{ transform: rotate(0) translateY(-5px); box-shadow: var(--shadow-lift); z-index: 2; }
.polaroid .shot{
  aspect-ratio: 1;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,251,242,0.8);
  text-align: center;
  font-size: 12px;
  padding: 8px;
}
.polaroid .shot .icon-dog{ width: 40px; height: 40px; }
.polaroid figcaption{
  margin-top: 12px;
  text-align: center;
}
.polaroid .pup-name{
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
}
.polaroid .pup-meta{
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.status-pill{
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.status-pill.available{ background: var(--moss); color: var(--white); }
.status-pill.reserved{ background: var(--gold); color: var(--ink); }

@media (max-width: 980px){ .polaroid-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .polaroid-grid{ grid-template-columns: 1fr 1fr; gap: 22px 16px; } }

/* ==========================================================================
   Benefits
   ========================================================================== */
.benefits-section{ background: var(--moss-dark); border-bottom-color: rgba(255,255,255,0.12); }
.benefits-section .eyebrow{ color: var(--gold); }
.benefits-section .eyebrow::before{ background: var(--gold); }
.benefits-section h2, .benefits-section p{ color: var(--cream); }
.benefits-section .section-head p{ color: rgba(247,238,221,0.78); }

.benefit-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(247,238,221,0.14);
  border-radius: var(--radius);
  overflow: hidden;
}
.benefit{
  background: var(--moss-dark);
  padding: 32px 26px;
}
.benefit .icon-dog{ width: 34px; height: 34px; color: var(--gold); }
.benefit h4{ color: var(--cream); font-size: 18px; margin-top: 16px; }
.benefit p{ color: rgba(247,238,221,0.72); font-size: 14.5px; margin-top: 8px; }

@media (max-width: 900px){ .benefit-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .benefit-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Process — real sequence, so numbering is justified here
   ========================================================================== */
.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.step{
  position: relative;
  padding: 0 26px 0 0;
}
.step:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 22px;
  right: -13px;
  width: 26px;
  height: 1px;
  background: var(--line);
  background-image: linear-gradient(to right, var(--clay) 0 6px, transparent 6px 12px);
}
.step .num{
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--clay);
  width: 44px; height: 44px;
  border: 2px solid var(--clay);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step .num::before{ content: counter(step, decimal-leading-zero); }
.step h4{ margin-top: 18px; font-size: 19px; }
.step p{ margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; }

@media (max-width: 900px){
  .process-grid{ grid-template-columns: repeat(2, 1fr); gap: 40px 26px; }
  .step:nth-child(2)::after{ display: none; }
  .step:not(:last-child)::after{ display: none; }
}
@media (max-width: 560px){ .process-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-section{ background: var(--paper); }
.testi-track{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card{
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}
.testi-stars{ color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.testi-card p{
  margin-top: 14px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.6;
}
.testi-who{
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.testi-who strong{ font-size: 14px; display: block; }
.testi-who span{ font-size: 12.5px; color: var(--ink-soft); }

.testi-rating-banner{
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 14px;
}
.testi-rating-banner strong{ font-family: var(--font-display); font-size: 26px; color: var(--ink); }

@media (max-width: 900px){ .testi-track{ grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list{ max-width: 780px; }
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-q{
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
}
.faq-q .plus{
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--clay);
  color: var(--clay);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform 0.22s ease;
}
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-a p{
  padding: 0 0 22px;
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 62ch;
}

/* ==========================================================================
   Contact / CTA band
   ========================================================================== */
.cta-band{
  background: var(--clay);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-band h2{ color: var(--white); font-size: clamp(26px, 3.4vw, 36px); }
.cta-band p{ color: rgba(255,251,242,0.85); margin-top: 12px; }
.cta-band .btn-primary{ background: var(--ink); }
.cta-band .btn-primary:hover{ background: #17120b; }
.cta-form{
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  gap: 12px;
}
.cta-form input, .cta-form select{
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--cream);
  color: var(--ink);
}
.cta-form label{ font-size: 12.5px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }

@media (max-width: 860px){ .cta-band{ grid-template-columns: 1fr; padding: 34px; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--ink);
  color: rgba(247,238,221,0.75);
  padding: 64px 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(247,238,221,0.14);
}
.footer-brand .brand{ color: var(--cream); }
.footer-brand .mark{ color: var(--gold); }
.footer-brand p{ margin-top: 14px; font-size: 14px; max-width: 32ch; color: rgba(247,238,221,0.6); }
.footer-col h5{
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a, .footer-col li{ font-size: 14.5px; margin-bottom: 10px; color: rgba(247,238,221,0.75); }
.footer-col a:hover{ color: var(--cream); }
.footer-bottom{
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(247,238,221,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-socials{ display: flex; gap: 14px; }
.footer-socials a{
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(247,238,221,0.3);
  display: flex; align-items: center; justify-content: center;
}
.footer-socials svg{ width: 16px; height: 16px; }

.no-scroll{ overflow: hidden; }

/* ==========================================================================
   Interior pages — page hero, prose (policy pages), breed detail, misc
   ========================================================================== */
.page-hero{
  padding: 56px 0 52px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.breadcrumb{
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.breadcrumb a{ color: var(--clay); font-weight: 700; }
.page-hero h1{ font-size: clamp(32px, 4.4vw, 50px); line-height: 1.08; }
.page-hero p{ margin-top: 14px; color: var(--ink-soft); font-size: 17.5px; max-width: 62ch; }

.prose{ max-width: 760px; }
.prose .updated{ display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 34px; }
.prose h2{ margin-top: 42px; font-size: 24px; }
.prose h2:first-child{ margin-top: 0; }
.prose h3{ margin-top: 26px; font-size: 18.5px; font-family: var(--font-display); }
.prose p{ margin-top: 12px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; }
.prose ul{ margin-top: 12px; padding-left: 20px; list-style: disc; color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; }
.prose li{ margin-bottom: 8px; }
.prose a{ color: var(--clay); font-weight: 700; }

.breed-hero{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}
.breed-hero .photo-frame{ position: static; transform: rotate(-1.6deg); width: 100%; height: 360px; }
.stat-row{ display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.stat-chip{
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 20px;
  min-width: 128px;
}
.stat-chip strong{ display: block; font-family: var(--font-display); font-size: 21px; color: var(--ink); }
.stat-chip span{ font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }

.two-col-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.two-col-grid h3{ font-family: var(--font-display); font-size: 20px; }
.two-col-grid p{ margin-top: 10px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

.info-card-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card{
  background: var(--paper);
  border-radius: var(--radius);
  padding: 26px;
}
.info-card .icon-dog{ width: 30px; height: 30px; color: var(--clay); }
.info-card h4{ margin-top: 14px; font-size: 17px; }
.info-card p{ margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; }

.testi-grid-full{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (max-width: 900px){
  .breed-hero{ grid-template-columns: 1fr; }
  .two-col-grid{ grid-template-columns: 1fr; }
  .info-card-grid{ grid-template-columns: 1fr 1fr; }
  .testi-grid-full{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){ .info-card-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Hero v2 — full-bleed photo hero (replaces the small collage frames)
   ========================================================================== */
.hero-photo{
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-photo img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-photo::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,15,9,0.86) 0%, rgba(20,15,9,0.55) 32%, rgba(20,15,9,0.12) 60%, rgba(20,15,9,0.28) 100%);
}
.hero-photo .wrap{
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  padding-top: 120px;
  width: 100%;
}
.hero-photo .eyebrow{ color: var(--gold); }
.hero-photo .eyebrow::before{ background: var(--gold); }
.hero-photo h1{
  color: var(--white);
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.05;
  max-width: 16ch;
}
.hero-photo h1 em{ color: #F2C879; font-style: italic; }
.hero-photo .hero-lede{ color: rgba(255,251,242,0.88); max-width: 48ch; }
.hero-photo .hero-stats div strong{ color: var(--white); }
.hero-photo .hero-stats div span{ color: rgba(255,251,242,0.75); }
.hero-photo .btn-ghost{ border-color: rgba(255,251,242,0.7); color: var(--white); }
.hero-photo .btn-ghost:hover{ background: var(--white); color: var(--ink); }

@media (max-width: 700px){
  .hero-photo{ min-height: 560px; }
  .hero-photo .wrap{ padding-top: 90px; padding-bottom: 44px; }
}

/* Breed-page hero photo (single large image instead of placeholder frame) */
.breed-hero .hero-img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lift);
  transform: rotate(-1.2deg);
}

/* ==========================================================================
   Life-at-Royal Teddy strip — small tilted photo pair (real photos)
   ========================================================================== */
.life-strip{ background: var(--paper); }
.life-strip .wrap{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.life-photos{
  position: relative;
  height: 380px;
}
.life-photos img{
  position: absolute;
  border: 8px solid var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-lift);
  object-fit: cover;
}
.life-photos .lp1{
  width: 62%; height: 82%;
  top: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}
.life-photos .lp2{
  width: 52%; height: 60%;
  bottom: 0; right: 0;
  transform: rotate(4deg);
  z-index: 3;
}
@media (max-width: 900px){
  .life-strip .wrap{ grid-template-columns: 1fr; }
  .life-photos{ height: 320px; }
}

/* ==========================================================================
   Individual puppy profile page — gallery + video
   ========================================================================== */
.puppy-profile{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: start;
}
.gallery-main{
  width: 100%;
  aspect-ratio: 4/3.1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  background: var(--paper);
}
.gallery-thumbs{
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.gallery-thumbs img{
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.gallery-thumbs img:hover{ opacity: 1; }
.gallery-thumbs img.active{ border-color: var(--clay); opacity: 1; }

.puppy-video{
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-top: 18px;
  background: #000;
}

.puppy-name-row{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.puppy-name-row h1{ font-size: clamp(32px, 4vw, 46px); }

.puppy-desc{ margin-top: 18px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }

/* Shared "Litter in Motion" video grid */
.video-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-grid video{
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: #000;
}
@media (max-width: 900px){
  .puppy-profile{ grid-template-columns: 1fr; }
  .video-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){ .video-grid{ grid-template-columns: 1fr 1fr; gap: 14px; } }

/* Real-photo puppy card thumbnail (used in place of the gradient placeholder) */
.polaroid .shot img{ width: 100%; height: 100%; object-fit: cover; }
.polaroid a.polaroid-link{ display: block; color: inherit; }

/* ==========================================================================
   "What's included" checklist card on puppy profile pages
   ========================================================================== */
.included-card{
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 26px;
  border: 1px solid var(--line);
}
.included-card h3{
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 14px;
}
.included-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.included-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.included-list li::before{
  content: "\2714";
  color: var(--moss);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(92, 107, 63, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Velvet Paw logo integration */
.brand{
  flex: 0 0 auto;
  line-height: 1;
}
.brand-logo{
  display: block;
  width: clamp(110px, 9vw, 142px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}
.site-header .wrap{
  min-height: 78px;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: clamp(10px, 1.4vw, 18px);
}
.nav-links{
  gap: clamp(10px, 1.4vw, 18px);
  margin-left: auto;
}
.nav-links a{
  font-size: clamp(11.5px, 0.95vw, 13px);
  white-space: nowrap;
}
.nav-cta{
  gap: 8px;
  flex: 0 0 auto;
}
.site-header .btn{
  padding: 10px clamp(10px, 1vw, 14px);
  font-size: clamp(11.5px, 0.95vw, 12.5px);
  white-space: nowrap;
}
.footer-brand .brand-logo{
  width: 180px;
  max-height: 68px;
}
@media (max-width: 1250px){
  .site-header .wrap{ min-height: 72px; }
  .brand-logo{ width: 128px; max-height: 46px; }
  .site-header .nav-cta .btn-primary{ padding: 10px 14px; font-size: 12.5px; }
}
@media (max-width: 400px){
  .brand-logo{ width: 108px; max-height: 40px; }
  .site-header .wrap{ flex-wrap: wrap; row-gap: 8px; }
}
