/* ============================================================
   THE WHITE RANCH — Design System
   Style: Rustic Western Americana
   Colors: Dark Navy #2d3a4a, Cream #f5ede0, Gold #c9a96e
   Fonts: Sancreek (display), MJGranada (accent), Georgia (body)
   Converted from React/Tailwind to Vanilla CSS for WordPress
   PRESERVED EXACTLY where possible
   ============================================================ */

/* ---- Fonts ---- */
@font-face {
  font-family: 'Sancreek';
  src: url('../fonts/Sancreek-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MJGranada';
  src: url('../fonts/MJGranada.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- Variables ---- */
:root {
  --wr-navy: #2d3a4a;
  --wr-navy-dark: #1e2a38;
  --wr-cream: #f5ede0;
  --wr-cream-light: #faf6f0;
  --wr-gold: #c9a96e;
  --wr-gold-dark: #a8854a;
  --wr-tan: #e8d5b0;
  --wr-text: #1a1a1a;
  --wr-text-light: #4a4a4a;
  --wr-radius: 0.5rem;
  --wr-shadow: 0 4px 12px rgba(0,0,0,0.08);
  --wr-shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --wr-container: 1280px;
}

/* ---- Reset / Base ---- */
*,
*::before,
*::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--wr-text);
  background: var(--wr-cream-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--wr-gold); outline-offset: 2px; }

/* WordPress Admin Bar Offset */
body.admin-bar .sticky-nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .sticky-nav { top: 46px; } }

/* ---- Layout Utilities (vanilla replacements for Tailwind) ---- */
.wr-container {
  width: 100%;
  max-width: var(--wr-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) { .wr-container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .wr-container { padding-left: 2rem; padding-right: 2rem; } }

.wr-grid { display: grid; gap: 1.5rem; }
.wr-grid-2 { grid-template-columns: 1fr; }
.wr-grid-3 { grid-template-columns: 1fr; }
.wr-grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .wr-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .wr-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .wr-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .wr-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.wr-flex { display: flex; }
.wr-flex-col { flex-direction: column; }
.wr-items-center { align-items: center; }
.wr-justify-between { justify-content: space-between; }
.wr-justify-center { justify-content: center; }
.wr-gap-2 { gap: 0.5rem; }
.wr-gap-4 { gap: 1rem; }
.wr-gap-6 { gap: 1.5rem; }
.wr-gap-8 { gap: 2rem; }

.wr-section { padding: 3.5rem 0; }
@media (min-width: 768px) { .wr-section { padding: 4.5rem 0; } }
.wr-section-sm { padding: 2rem 0; }

.wr-text-center { text-align: center; }
.wr-text-left { text-align: left; }
.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; }

/* Preserve original .container for backward compat */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; max-width: 1280px; } }

/* ---- Ranch Typography ---- */
.font-sancreek { font-family: 'Sancreek', serif; letter-spacing: 0.05em; }
.font-granada { font-family: 'MJGranada', serif; }
.wr-heading-xl { font-family: 'Sancreek', serif; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; text-transform: uppercase; color: var(--wr-navy); letter-spacing: 0.05em; }
.wr-heading-lg { font-family: 'Sancreek', serif; font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2; text-transform: uppercase; }

/* ---- Section Banner ---- */
.section-banner {
  background-color: var(--wr-navy);
  color: white;
  text-align: center;
  padding: 0.9rem 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
.section-banner h2 {
  font-family: 'Sancreek', serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.1em;
  color: white;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
}
.section-banner .star-icon { color: var(--wr-gold); font-size: 1.25rem; line-height: 1; }
.section-banner p {
  color: #d1d5db;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.section-banner-inner { text-align: center; }

/* ---- Buttons ---- */
.btn-ranch {
  display: inline-block;
  border: 2px solid var(--wr-gold);
  color: var(--wr-navy);
  background: transparent;
  font-family: 'Sancreek', serif;
  letter-spacing: 0.1em;
  padding: 0.6rem 2rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.3;
  text-align: center;
}
.btn-ranch:hover { background: var(--wr-gold); color: white; }
.btn-ranch-white { border-color: white; color: white; }
.btn-ranch-white:hover { background: white; color: var(--wr-navy); }
.btn-ranch-sm { padding: 0.4rem 1.25rem; font-size: 0.8rem; }
.btn-ranch-lg { padding: 0.8rem 2.5rem; font-size: 1.05rem; }
.btn-ranch:disabled { opacity: 0.6; pointer-events: none; }

/* ---- Puppy Card (home) ---- */
.puppy-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  display: block;
  background: white;
  box-shadow: var(--wr-shadow);
}
.puppy-card img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.4s ease; }
.puppy-card:hover img { transform: scale(1.05); }
.puppy-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(45,58,74,0.92) 0%, transparent 100%);
  padding: 1.5rem 1rem 1rem;
  color: white;
}
.puppy-card-age {
  font-family: 'Sancreek', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--wr-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}
.puppy-card-name {
  font-family: 'Sancreek', serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: white;
  text-transform: uppercase;
}

/* ---- Puppy Detailed Card (shop) ---- */
.puppy-detailed-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--wr-shadow);
  border: 1px solid var(--wr-tan);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.puppy-detailed-card:hover { box-shadow: var(--wr-shadow-lg); transform: translateY(-2px); }
.puppy-detailed-card .puppy-image-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.puppy-detailed-card .puppy-image-wrap img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}
.puppy-detailed-card:hover .puppy-image-wrap img { transform: scale(1.05); }
.puppy-status-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  font-family: 'Sancreek', serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}
.puppy-status-badge.available { background: var(--wr-gold); }
.puppy-status-badge.reserved { background: #6b7280; }
.puppy-status-badge.sold { background: #374151; }
.puppy-detailed-card .puppy-content { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.puppy-detailed-card .puppy-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.puppy-detailed-card .puppy-header h3 { font-family: 'Sancreek', serif; font-size: 1.5rem; color: var(--wr-navy); letter-spacing: 0.05em; text-transform: uppercase; }
.puppy-detailed-card .puppy-gender { font-size: 0.85rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.05em; }
.puppy-detailed-card .puppy-age { font-size: 0.85rem; font-weight: 700; color: var(--wr-gold); margin-bottom: 0.5rem; }
.puppy-detailed-card .puppy-desc { color: #4b5563; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; flex: 1; }

/* ---- Testimonial Card ---- */
.testimonial-card {
  background: rgba(45, 58, 74, 0.85);
  border: 1px solid var(--wr-gold);
  border-radius: 0.5rem;
  padding: 2rem;
  color: white;
  position: relative;
}
.testimonial-card .quote-mark { color: var(--wr-gold); font-size: 3rem; font-family: Georgia, serif; line-height: 0.8; margin-bottom: 0.75rem; }
.testimonial-card blockquote { color: #e5e7eb; font-style: italic; line-height: 1.6; margin-bottom: 1.25rem; }
.testimonial-card .author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card .author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--wr-gold); }
.testimonial-card .author-name { font-family: 'Sancreek', serif; color: white; letter-spacing: 0.05em; }
.testimonial-card .author-location { color: #9ca3af; font-size: 0.85rem; }
.testimonial-card .stars { display: flex; gap: 2px; margin-top: 0.25rem; }
.testimonial-card .stars svg { width: 14px; height: 14px; color: var(--wr-gold); fill: currentColor; }

/* ---- Nav Link ---- */
.nav-link {
  font-family: 'Sancreek', serif;
  letter-spacing: 0.1em;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--wr-gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after, .nav-link.current::after { width: 100%; }
.nav-link:hover { color: var(--wr-gold); }

/* ---- Utility bar ---- */
.utility-bar {
  background-color: var(--wr-navy-dark);
  color: white;
  font-size: 0.8rem;
  padding: 0.45rem 0;
}
.utility-bar a { color: white; transition: color 0.2s; }
.utility-bar a:hover { color: var(--wr-gold); }

/* ---- Feature bar ---- */
.feature-bar {
  background-color: var(--wr-navy);
  padding: 1.25rem 0;
}
.feature-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .feature-bar-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-align: center;
  padding: 0.5rem 0;
}
.feature-item svg, .feature-item img { width: 44px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); }
.feature-item span {
  font-family: 'Sancreek', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
}
@media (min-width: 768px) { .feature-item span { font-size: 0.8rem; } }

/* ---- Page Hero ---- */
.page-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--wr-navy);
}
.page-hero img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.page-hero-badge {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wr-navy);
  color: white;
  padding: 0.75rem 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Sancreek', serif;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
  line-height: 1.2;
}
.page-hero-badge svg { width: 28px; height: 28px; color: var(--wr-gold); flex-shrink: 0; }

/* ---- Home Hero Slider ---- */
.home-hero {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 100px);
  min-height: 500px;
  max-height: 750px;
  background: var(--wr-navy-dark);
}
.home-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.home-hero-slide.active { opacity: 1; }
.home-hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.home-hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.home-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  z-index: 2;
}
@media (min-width: 768px) { .home-hero-content { padding-left: 4rem; padding-right: 4rem; } }
@media (min-width: 1024px) { .home-hero-content { padding-left: 6rem; padding-right: 6rem; } }
.home-hero-content .eyebrow {
  font-family: 'MJGranada', serif;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.home-hero-content h1 {
  font-family: 'Sancreek', serif;
  color: white;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 650px;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.home-hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.home-hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.home-hero-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.2s;
  z-index: 3;
}
.home-hero-arrows button:hover { background: rgba(0,0,0,0.55); }
.home-hero-arrows .prev { left: 1rem; }
.home-hero-arrows .next { right: 1rem; }

/* ---- Scroll animations ---- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; transition: none; } }

/* ---- Footer ---- */
.footer-section {
  position: relative;
  background-color: var(--wr-navy-dark);
  color: white;
  overflow: hidden;
}
.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}
.footer-bottom {
  background-color: var(--wr-tan);
  color: var(--wr-navy);
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-family: Georgia, serif;
  letter-spacing: 0.02em;
}

/* ---- Gallery ---- */
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 0.5rem;
  background: #e5e7eb;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,58,74,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 40px; height: 40px; color: white; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 0.5rem; }
.lightbox-caption { text-align: center; color: white; margin-top: 0.75rem; font-family: 'Sancreek', serif; letter-spacing: 0.05em; }
.lightbox-counter { text-align: center; color: #9ca3af; font-size: 0.85rem; margin-top: 0.25rem; }
.lightbox button.close,
.lightbox button.nav {
  position: absolute;
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  transition: color 0.2s;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
}
.lightbox button.close { top: 1rem; right: 1.5rem; font-size: 2.2rem; }
.lightbox button.nav { top: 50%; transform: translateY(-50%); font-size: 3rem; padding: 1rem; }
.lightbox button.nav.prev { left: 0.5rem; }
.lightbox button.nav.next { right: 0.5rem; }
.lightbox button:hover { color: var(--wr-gold); }

/* ---- Contact form ---- */
.contact-input {
  width: 100%;
  border: 1px solid var(--wr-gold);
  background: white;
  padding: 0.75rem 1rem;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: var(--wr-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 2px;
}
.contact-input:focus { border-color: var(--wr-navy); box-shadow: 0 0 0 2px rgba(45,58,74,0.15); }
.contact-input::placeholder { color: #9ca3af; }

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wr-navy);
  color: white;
  border: 2px solid var(--wr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--wr-gold); }

/* ---- Mobile menu ---- */
.mobile-menu {
  background: var(--wr-navy);
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  padding: 2rem;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: 'Sancreek', serif; color: white; font-size: 1.6rem; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.mobile-menu a:hover, .mobile-menu a:focus { color: var(--wr-gold); }

/* ---- Slider dots ---- */
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}
.slider-dot.active { background: white; transform: scale(1.2); }

/* ---- Additional Ranch Components ---- */
.wr-watermark {
  position: relative;
}
.wr-watermark::before {
  content: '';
  position: absolute;
  top: 50%; left: 10%;
  width: 200px; height: 200px;
  background-image: url('../images/logo-watermark.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
  transform: translateY(-50%);
}

/* Checklist */
.wr-checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.wr-checklist li { display: flex; align-items: center; gap: 0.75rem; color: #374151; }
.wr-checklist li svg { width: 20px; height: 20px; color: var(--wr-gold); flex-shrink: 0; }

/* Feature values grid */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  border: 1px solid var(--wr-tan);
  box-shadow: var(--wr-shadow);
}
.value-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.value-card h3 { font-family: 'Sancreek', serif; font-size: 1.2rem; color: var(--wr-navy); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.value-card p { color: #4b5563; font-size: 0.9rem; line-height: 1.5; }

/* Services cards */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--wr-tan);
  box-shadow: var(--wr-shadow);
  background: white;
}
.service-card img { width: 100%; height: 208px; object-fit: cover; }
.service-card .content { padding: 1.5rem; }
.service-card h3 { font-family: 'Sancreek', serif; font-size: 1.25rem; color: var(--wr-navy); margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.service-card p { color: #4b5563; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }

/* Newsletter */
.newsletter-input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 0.875rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--wr-gold);
  color: white;
  outline: none;
  transition: background 0.2s;
}
.newsletter-input::placeholder { color: #9ca3af; }
.newsletter-input:focus { background: rgba(255,255,255,0.2); }

/* Directions */
.directions-steps { display: flex; flex-direction: column; gap: 1rem; color: #4b5563; }
.directions-steps .step { display: flex; gap: 0.75rem; }
.directions-steps .step-number { font-family: 'Sancreek', serif; color: var(--wr-gold); font-size: 1.1rem; width: 2rem; flex-shrink: 0; }

/* Forms messages */
.wr-form-message { padding: 1.5rem; text-align: center; border-radius: 0.5rem; margin: 1rem 0; }
.wr-form-message.success { background: var(--wr-cream); border: 2px solid var(--wr-gold); }
.wr-form-message.error { background: #fef2f2; border: 2px solid #f87171; color: #991b1b; }

/* Puppy Kit card overlay variant */
.puppy-kit-card .puppy-card-overlay {
  background: linear-gradient(to top, rgba(45,58,74,0.95) 0%, rgba(45,58,74,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  top: 0;
}
.puppy-kit-card .puppy-card-overlay p { color: #d1d5db; font-size: 0.85rem; margin-bottom: 0.75rem; line-height: 1.5; }

/* CTA sections */
.cta-section { padding: 5rem 1.5rem; text-align: center; }
.cta-section.cream { background: var(--wr-cream); }
.cta-section.navy { background: var(--wr-navy); color: white; }
.cta-section h2 { font-family: 'Sancreek', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; }
.cta-section.cream h2 { color: var(--wr-navy); }
.cta-section.navy h2 { color: white; }
.cta-section p { max-width: 42rem; margin: 0 auto 2rem; color: #4b5563; line-height: 1.7; }
.cta-section.navy p { color: #d1d5db; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Info Card (Contact) */
.info-card { border-radius: 0.5rem; overflow: hidden; border: 2px solid var(--wr-gold); background: white; }
.info-card-header { background: var(--wr-navy); padding: 1.5rem; text-align: center; color: white; }
.info-card-header img { width: 7rem; height: 7rem; object-fit: contain; margin: 0 auto; }
.info-card-header h3 { font-family: 'Sancreek', serif; font-size: 1.25rem; margin-top: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; }
.info-card-header p { color: var(--wr-gold); font-size: 0.9rem; margin-top: 0.25rem; }
.info-card-body { background: var(--wr-cream); padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }

/* Filter Bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2rem; }
.filter-btn {
  font-family: 'Sancreek', serif;
  font-size: 0.85rem;
  padding: 0.4rem 1.25rem;
  border: 2px solid var(--wr-gold);
  background: transparent;
  color: var(--wr-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active { background: var(--wr-gold); color: white; border-color: var(--wr-gold); }

/* Intro Split */
.intro-split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .intro-split { grid-template-columns: 1fr 1fr; } }
.intro-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.intro-photo-grid .main { grid-row: span 2; }
.intro-photo-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 0.5rem; }
.intro-photo-grid .main img { max-height: 420px; }
.intro-photo-grid .side img { height: 12rem; }

/* Editable content area (WYSIWYG) */
.wr-content p { margin-bottom: 1rem; line-height: 1.7; color: #374151; }
.wr-content h2, .wr-content h3 { font-family: 'Sancreek', serif; color: var(--wr-navy); margin: 1.5rem 0 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.wr-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.wr-content a { color: var(--wr-gold-dark); text-decoration: underline; }
.wr-content a:hover { color: var(--wr-navy); }

/* WordPress image alignment */
.aligncenter { display: block; margin: 1rem auto; }
.alignleft { float: left; margin: 0 1rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1rem; }

/* Helpers for original React class names retained */
.max-w-\[1280px\] { max-width: 1280px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-10 { padding-top: 2.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
@media (min-width: 768px) { .md\:flex { display: flex; } .md\:hidden { display: none; } .md\:grid-cols-2 { grid-template-columns: repeat(2,1fr); } .md\:grid-cols-3 { grid-template-columns: repeat(3,1fr); } .md\:grid-cols-4 { grid-template-columns: repeat(4,1fr); } }

/* Print */
@media print {
  .utility-bar, .feature-bar, .back-to-top, .mobile-menu, .home-hero-arrows, .home-hero-dots { display: none !important; }
  body { background: white; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
