/* ============================================
   Bonnie Brae Collies - Kiana Creek Ranch Style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark:        #1c2826;
  --dark-alt:    #263330;
  --green:       #4a6741;
  --green-light: #6b8f5e;
  --tan:         #c8b99a;
  --cream:       #f7f3ee;
  --white:       #ffffff;
  --text:        #2d2d2d;
  --text-light:  #5a5a5a;
  --border:      #e0d8ce;
  --gold:        #9e7b3f;
  --heather:     #b06a86;
  --heather-light: #d6a6bb;
}

::selection { background: var(--heather); color: var(--white); }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ── HEADER / NAV ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 80px;
  background: rgba(28, 40, 38, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 185, 154, 0.15);
  transition: background 0.3s ease;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.logo span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  margin-top: 2px;
}

/* Logo crest in the header (footer logo stays text-only) */
header .logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  height: 54px;
  width: 54px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--cream);
  padding: 4px;
  object-fit: contain;
}

.logo-words {
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover { color: var(--tan); }
nav a.active { color: var(--heather-light); }

.nav-cta {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--tan);
  border-radius: 2px;
  color: var(--tan) !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--tan);
  color: var(--dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Morph into an X when the menu is open (aria-expanded is toggled in JS) */
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,40,38,0.3) 0%,
    rgba(28,40,38,0.55) 60%,
    rgba(28,40,38,0.75) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 5vw;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74,103,65,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-heather {
  border-color: var(--heather-light);
  color: #fff;
}
.btn-heather:hover {
  background: var(--heather);
  border-color: var(--heather);
  color: #fff;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-alt);
  transform: translateY(-1px);
}

.btn-tan {
  background: var(--tan);
  color: var(--dark);
}
.btn-tan:hover {
  background: var(--gold);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ── SPLIT HERO (puppies | boarding) ── */
.split-hero {
  display: flex;
  min-height: 100vh;
  background: var(--dark);
  padding: 0;
}

.split-hero__half {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2.5rem;
  overflow: hidden;
}

.split-hero__half > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-hero__half::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(28,40,38,0.5), rgba(28,40,38,0.68));
  transition: background 0.35s ease;
}

.split-hero__half:hover::after {
  background: linear-gradient(rgba(28,40,38,0.34), rgba(28,40,38,0.58));
}

.split-hero__half + .split-hero__half {
  border-left: 1px solid rgba(255,255,255,0.16);
}

.split-hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 440px;
}

.split-hero__content .eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1rem;
}

.split-hero__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.split-hero__content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 1.85rem;
}

/* ── ANNOUNCE BANNER ── */
.announce {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 1rem 5vw;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announce a {
  color: var(--heather-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── SECTIONS ── */
section {
  padding: 6rem 5vw;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: var(--white);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-dark .section-label { color: var(--tan); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-dark .section-title { color: var(--white); }

.section-body {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.8;
}

.section-dark .section-body { color: rgba(255,255,255,0.72); }

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.feature-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-card-img {
  transform: scale(1.04);
}

.feature-card-body {
  padding: 2rem 2rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  flex: 1;
}

.feature-card a {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--green);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.feature-card a:hover { opacity: 0.65; }

/* ── SPLIT SECTION ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5vw;
}

.split-content .btn { margin-top: 2rem; }

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.section-dark .stat {
  border-color: rgba(255,255,255,0.1);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-dark .stat-number { color: var(--tan); }

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.section-dark .stat-label { color: rgba(255,255,255,0.55); }

/* ── PHOTO GALLERY ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
}

.gallery-item {
  overflow: hidden;
  background: var(--dark);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s;
  opacity: 0.9;
}

.gallery-item img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* ── TESTIMONIAL / QUOTE ── */
.quote-section {
  text-align: center;
  padding: 7rem 5vw;
  background: var(--dark);
  color: var(--white);
}

blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  max-width: 750px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}

blockquote::before { content: '\201C'; }
blockquote::after  { content: '\201D'; }

cite {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan);
  font-style: normal;
}

/* ── BOARDING FEATURES ── */
.boarding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.boarding-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.boarding-icon {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.boarding-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.boarding-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.boarding-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── PRICING CARD ── */
.price-card {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 3.5rem;
  max-width: 480px;
  border-radius: 2px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--tan);
  line-height: 1;
}

.price-period {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  margin-bottom: 2rem;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.price-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding-left: 1.5rem;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-info-list li {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-light);
  align-items: flex-start;
}

.contact-info-list li strong {
  color: var(--text);
  font-weight: 700;
  min-width: 70px;
  display: inline-block;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--green);
  color: var(--white);
  padding: 4rem 5vw;
  text-align: center;
}

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.newsletter p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  outline: none;
}

/* ── SOCIAL ROW ── */
.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.social-icon { width: 18px; height: 18px; display: block; }

.social-row-dark .social-link {
  border-color: rgba(28,40,38,0.25);
  color: var(--dark);
}

.social-row-dark .social-link:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 5vw 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 240px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--heather-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.footer-badges img {
  height: 60px;
  width: auto;
  display: block;
}

.footer-crest {
  height: 96px;
  width: 96px;
  display: block;
  margin-bottom: 1.25rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 0 5vw 4rem;
  background: var(--dark);
  margin-top: 80px;
  overflow: hidden;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,40,38,0.9) 0%, rgba(28,40,38,0.2) 100%);
}

.page-hero-content {
  position: relative;
  color: var(--white);
}

.page-hero-content .section-label { color: var(--tan); }

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--cream);
  padding: 0.85rem 5vw;
  border-bottom: 1px solid var(--border);
}

.breadcrumb a, .breadcrumb span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--heather); }
.breadcrumb span { color: var(--green); }
.breadcrumb .sep { margin: 0 0.5rem; color: var(--border); }

/* ── DIVIDER ── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--heather);
  margin: 1.25rem 0;
}

.section-dark .divider { background: var(--heather-light); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-center .section-body { margin: 0 auto; }
.text-center .divider { margin: 1.25rem auto; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── HERO DUAL CTA (co-headline) ── */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.hero-path {
  background: var(--white);
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-path .feature-card-label { margin-bottom: 0.75rem; }

.hero-path h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-path p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 380px;
}

.hero-path .btn { margin-top: auto; }

/* ── NEWBORN vs GROWN COMPARISON ── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 3.5rem auto 0;
}

.compare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin: 0;
}

.compare-pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.compare-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--dark);
}

.compare-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.compare-card:hover .compare-photo img { transform: scale(1.04); }

.compare-stage {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: rgba(28,40,38,0.82);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
}

.compare-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.compare-card figcaption {
  padding: 1rem 1.25rem 1.25rem;
  text-align: center;
}

.compare-card figcaption strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.15rem;
}

.compare-card figcaption span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── TESTIMONIALS (past families) ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 3.5rem auto 0;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--heather);
  border-radius: 2px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
}

.testimonial-card .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--heather);
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-card cite {
  color: var(--green);
  font-size: 0.72rem;
}

/* ── BOOKING EMBED ── */
.booking-embed {
  max-width: 900px;
  margin: 3rem auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.booking-embed iframe {
  width: 100%;
  min-height: 660px;
  border: none;
  display: block;
}

.booking-placeholder {
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-light);
}

.booking-placeholder h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

/* ── CTA BUTTON GROUPS ── */
.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PRICING GRID ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1150px;
  margin: 0 auto;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(28,40,38,0.12);
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--dark);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.blog-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-card-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.blog-card-body .read-more {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

/* Full article (prose) */
.blog-article {
  max-width: 760px;
  margin: 0 auto;
  scroll-margin-top: 100px;
}

.blog-article + .blog-article {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid var(--border);
}

.blog-article-meta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.blog-article h2.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
}

.prose h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin: 2rem 0 0.75rem;
  color: var(--green);
}

.prose p {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.prose ul, .prose ol {
  margin: 0 0 1.25rem 1.5rem;
  color: var(--text-light);
  line-height: 1.85;
}

.prose li { margin-bottom: 0.5rem; }

.prose strong { color: var(--text); }

.prose blockquote {
  font-size: 1.15rem;
  text-align: left;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--heather);
  color: var(--text);
  max-width: none;
}

.prose blockquote::before,
.prose blockquote::after { content: ''; }

.prose .photo-credit {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-light);
  margin-top: 2rem;
}

.prose a { color: var(--green); }

.prose .dog-stats {
  background: var(--cream);
  border-radius: 2px;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.9;
}

/* Back-to-top / TOC anchor links list */
.blog-toc {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.blog-toc a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
}

.blog-toc a:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* ── FOCUS STATES (accessibility) ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 2px;
}

/* ── MOTION / ANIMATIONS ── */
/* Scroll-reveal: JS adds .reveal (so no-JS users still see everything),
   then .is-revealed once the element scrolls into view. */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-revealed { opacity: 1; transform: none; }

/* Slow Ken Burns drift on interior page-hero and single-hero images */
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.page-hero-img,
.hero-img { animation: kenburns 20s ease-out forwards; }

/* Split-hero images ease in slightly on hover (paired with the overlay lighten) */
.split-hero__half > img { transition: transform 0.7s ease; }
.split-hero__half:hover > img { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-revealed { opacity: 1 !important; transform: none !important; transition: none !important; }
  .page-hero-img,
  .hero-img { animation: none !important; }
  .split-hero__half:hover > img { transform: none !important; }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-paths { grid-template-columns: 1fr; }
  .split-hero { flex-direction: column; min-height: 0; }
  .split-hero__half { min-height: 62vh; padding: 4rem 1.75rem; }
  /* first panel sits under the fixed 80px header: add top room so content stays centered in the visible area */
  .split-hero__half:first-child { padding-top: calc(4rem + 80px); }
  .split-hero__half + .split-hero__half { border-left: none; border-top: 1px solid rgba(255,255,255,0.16); }
  .logo-mark { height: 44px; width: 44px; }

  /* On mobile the fixed menu must be viewport-relative. The header's
     backdrop-filter makes it the containing block for fixed children,
     which collapsed the open menu's background. Drop it on mobile and
     keep the header fully opaque. */
  header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--dark); }

  /* Hero breathing room on mobile: grow with content, drop the Scroll cue */
  .hero { height: auto; min-height: 100vh; padding: 6.5rem 5vw 4rem; }
  .hero-eyebrow { display: none; }
  .hero h1 { white-space: normal; font-size: clamp(1.6rem, 7vw, 2.3rem); margin-bottom: 1.1rem; }
  .hero p { margin-bottom: 1.75rem; font-size: 0.95rem; }
  .hero-scroll { display: none; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .footer-crest { height: 80px; width: 80px; }
  /* Mobile menu: always present so it can slide in/out (display:none can't animate) */
  nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 80px 0 0;
    background: var(--dark);
    padding: 2rem 5vw;
    gap: 1.5rem;
    z-index: 999;
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  }

  nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  /* Links fade/slide in, gently staggered, once the menu opens */
  nav a {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  nav.open a { transform: translateY(0); opacity: 1; }
  nav.open a:nth-child(1) { transition-delay: 0.06s; }
  nav.open a:nth-child(2) { transition-delay: 0.10s; }
  nav.open a:nth-child(3) { transition-delay: 0.14s; }
  nav.open a:nth-child(4) { transition-delay: 0.18s; }
  nav.open a:nth-child(5) { transition-delay: 0.22s; }
  nav.open a:nth-child(6) { transition-delay: 0.26s; }
  nav.open a:nth-child(7) { transition-delay: 0.30s; }
  nav.open a:nth-child(8) { transition-delay: 0.34s; }

  .hamburger { display: flex; }

  .feature-grid { grid-template-columns: 1fr; }

  .split {
    grid-template-columns: 1fr;
  }

  .split-img { height: 300px; }

  .stats-row { grid-template-columns: 1fr; }
  .stat { padding: 2.25rem 1.5rem; }

  .boarding-grid { grid-template-columns: 1fr; }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .newsletter-form { flex-direction: column; }

  .form-row { grid-template-columns: 1fr; }

  /* Tighten vertical whitespace on mobile */
  section { padding: 3.5rem 5vw; }

  /* Stack the pricing layout so the dark card no longer overflows */
  .pricing-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* CTA button rows: stack and match widths */
  .cta-group { flex-direction: column; align-items: stretch; }
  .cta-group .btn { width: 100%; }
}

@media (max-width: 600px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-card { padding: 2rem; }
}
