/* ===== NEW BRAND PALETTE - Soft, Friendly, Family-Focused ===== */
:root {
  /* Primary Colors - Warm Coral */
  --color-primary: #e8836b;
  --color-primary-dark: #d96b52;
  --color-primary-light: #f4a896;
  --color-primary-rgb: 232, 131, 107;

  /* Backgrounds - Soft Cream */
  --color-bg-warm: #fff8f5;
  --color-bg-cream: #fffaf7;
  --color-bg-accent: #ffe8e0;
  --color-bg-light: #fff5f0;

  /* Accent Colors */
  --color-accent-pink: #f9e4df;
  --color-accent-peach: #ffeee8;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.1);

  /* Text Colors */
  --color-text-dark: #1a1a1a;
  --color-text-medium: #555;
  --color-text-light: #767676;

  /* Accessible coral — use for text on light backgrounds, and primary buttons (5.5:1 on white) */
  --color-primary-text: #b5441e;
  --color-primary-text-rgb: 181, 68, 30;
}

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

body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--color-text-dark);
  background: var(--color-bg-warm);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

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

/* Header */
.site-header {
  background: white;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 96px;
  width: auto;
}

.nav a {
  margin: 0 1.3rem;
  color: var(--color-text-medium);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
}

/* Hamburger toggle — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.btn {
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  padding: 0.9rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn.primary {
  background: var(--color-primary-text);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(var(--color-primary-text-rgb), 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--color-primary-text-rgb), 0.4);
}

.btn.outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary-text);
  background: transparent;
}

.btn.outline:hover {
  background: var(--color-accent-peach);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  justify-content: center;
}

/* Breed Type Selector */
.breed-type-selector {
  margin: 1.5rem 0;
}

.breed-type-selector .selector-label {
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.selector-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.selector-btn {
  padding: 0.75rem 1.25rem;
  border: 2px solid #ddd;
  border-radius: 2rem;
  background: white;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.selector-btn:hover {
  border-color: var(--color-primary);
  background: var(--color-accent-peach);
}

.selector-btn.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: white;
}

.hero-btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.35);
}

/* Hero subtitle styling */
.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.hero-text .trust {
  font-size: 0.95rem;
  color: var(--color-text-medium);
  margin-top: 1rem;
}

/* ===== HERO SECTION - REDESIGNED ===== */
.hero {
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-cream) 100%);
  padding: 4rem 0 8rem;
  overflow: visible;
  position: relative;
}

/* Decorative floating paw prints - keeping for continuity */
.hero::before {
  content: "🐾";
  position: absolute;
  top: 15%;
  left: 5%;
  font-size: 2rem;
  opacity: 0.08;
  animation: float 6s ease-in-out infinite;
}

/* Curved bottom arch */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-cream) 100%);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #495057;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-text p {
  margin-bottom: 1rem;
  color: #555;
}

.hero-text .trust {
  font-size: 0.9rem;
  color: #777;
}

.hero-cta {
  margin: 2.5rem 0 0;
}

.hero-trust {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.8;
  padding-bottom: 0.25rem;
}

.hero-btn {
  padding: 1.25rem 3rem;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(232, 131, 107, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(232, 131, 107, 0.4);
}

.trust {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.trust-icon {
  font-size: 1.2rem;
}

/* Hero Image Grid */
.hero-image {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: #f0f0f0;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  width: 30px;
  border-radius: 5px;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Legacy grid styles - keeping for compatibility */
.hero-image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 400px;
}

.hero-img-main {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-img-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  max-width: 700px;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.match-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  z-index: 20;
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.badge-text strong {
  color: #2c3e50;
  font-size: 1rem;
}

.badge-text small {
  color: #6c757d;
  font-size: 0.85rem;
}

/* Remove old breed type selector */
.breed-type-selector {
  display: none;
}

/* Legacy badge styles - keeping for compatibility */
@keyframes pulse-gentle {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 25px rgba(var(--color-primary-rgb), 0.35);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(var(--color-primary-rgb), 0.45);
  }
}

.match-badge .percentage {
  font-size: 2rem;
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.match-badge .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.95;
  font-weight: 600;
}

section {
  padding: 3rem 0;
}

/* How it works */
/* HOW IT WORKS - LIFESTYLE FOCUSED */
.how-it-works {
  background: linear-gradient(180deg, var(--color-bg-cream) 0%, #fff 100%);
  padding: 3.5rem 0 4.5rem;
  text-align: center;
  margin-top: -75px;
  position: relative;
  z-index: 2;
}

.how-it-works h2 {
  font-size: 2.5rem;
  color: var(--color-text-dark);
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 2rem auto 0;
}

.how-it-works .intro {
  color: #666;
  margin-bottom: 4rem;
  font-size: 1.2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.steps .btn.primary.hero-btn {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 2rem;
}

.step {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.step:hover .step-image img {
  transform: scale(1.05);
}

.step-content {
  padding: 2rem 1.5rem;
  text-align: left;
}

.step-icon {
  font-size: 2rem;
  background: var(--color-accent-pink);
  color: var(--color-primary);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
  line-height: 1.3;
}

.step h3 span {
  color: var(--color-primary);
  margin-right: 0.5rem;
  font-weight: 700;
}

.step p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .how-it-works {
    padding: 2.5rem 0 3rem;
  }

  .how-it-works h2 {
    font-size: 1.8rem;
  }

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

  .step-content {
    text-align: center;
  }
}

/* Breed Types Section - Side by Side */
.breed-types {
  background: var(--color-bg-cream);
  padding: 4rem 0;
  text-align: center;
}

.breed-types > .container > h2 {
  font-size: 2.25rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.breed-types-intro {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.breed-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.breed-type-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.breed-type-card h3 {
  font-size: 1.75rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.breed-type-card .intro {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.breed-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.breed-types .cta-quiz-btn {
  padding: 1rem 3rem;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
  transition: all 0.25s ease;
  margin: 0 auto;
  display: block;
}

.breed-types .cta-quiz-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(var(--color-primary-rgb), 0.4);
}

@media (max-width: 768px) {
  .breed-types-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .breed-preview-grid {
    grid-template-columns: 1fr;
  }

  .breed-preview-grid > :nth-child(2) {
    display: none;
  }
}

/* Crossbred Dogs */
.crossbred-dogs {
  background: var(--color-bg-cream);
  padding: 4rem 0;
  text-align: center;
}

.crossbred-dogs h2 {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.crossbred-dogs .intro {
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.cta-quiz-btn {
  display: block;
  margin: 0 auto 2.5rem;
  padding: 1rem 3rem;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
  transition: all 0.25s ease;
}

.cta-quiz-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(var(--color-primary-rgb), 0.4);
}

.crossbred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.crossbred-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  text-align: center;
}

.crossbred-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.crossbred-image {
  position: relative;
  overflow: hidden;
}

.crossbred-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.mini-match-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.35);
  font-weight: 700;
  text-align: center;
  font-size: 0.85rem;
}

.mini-match-badge .percentage {
  font-size: 1.1rem;
  display: block;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.mini-match-badge .label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.95;
  font-weight: 600;
}

.crossbred-card h4 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem;
  padding: 0 1rem;
  color: var(--color-text-dark);
}

.crossbred-card p {
  color: #666;
  font-size: 0.9rem;
  padding: 0 1rem 1.5rem;
  line-height: 1.5;
}

.parent-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: white;
  padding: 2rem 0.75rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

.view-all-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.view-all-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .crossbred-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* Features */
.features {
  background: linear-gradient(180deg, #fff 0%, var(--color-bg-cream) 100%);
  padding: 4rem 0;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.features .intro {
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 1px solid #f0e0d8;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2rem;
  background: var(--color-accent-pink);
  color: var(--color-primary);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  margin: 0 auto 1rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

.card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Mock Result Preview */
.mock-result-card {
  max-width: 860px;
  margin: 0 auto;
}

.mock-top-match {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.11);
  margin-bottom: 1.25rem;
}

.mock-image-wrap {
  position: relative;
  min-height: 380px;
  background: linear-gradient(135deg, #f5f0ed 0%, #e8e0dc 100%);
}

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

.mock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.38) 0%, transparent 100%);
}

.mock-rank {
  background: #e8836b;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
}

.mock-score {
  background: white;
  color: var(--color-primary-text);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.mock-body {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  text-align: left;
}

.mock-name {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.1;
  margin: 0;
}

.mock-teaser {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #666;
  font-style: italic;
  margin: 0;
}

.mock-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mock-tag {
  background: #fff0eb;
  color: #c96348;
  border: 1px solid #f4c4b7;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.mock-cta {
  align-self: flex-start;
}

.mock-also-love {
  margin-top: 0.25rem;
}

.mock-also-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #444;
  margin: 0 0 0.85rem;
  text-align: left;
}

.mock-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mock-mini-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.mock-mini-image-wrap {
  position: relative;
  height: 150px;
  background: linear-gradient(135deg, #f5f0ed 0%, #e8e0dc 100%);
}

.mock-mini-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mock-mini-score {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: white;
  color: var(--color-primary-text);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.mock-mini-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-dark);
  padding: 0.75rem 1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .mock-top-match {
    grid-template-columns: 1fr;
  }

  .mock-image-wrap {
    min-height: 260px;
  }

  .mock-body {
    padding: 1.5rem;
  }

  .mock-name {
    font-size: 1.5rem;
  }
}

/* Browse Breeds */
.browse {
  background: var(--color-bg-cream);
  padding: 4rem 0;
  text-align: center;
}

.browse h2 {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.browse .intro {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.breed-type-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.breed-type-btn {
  background: white;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: "Montserrat", sans-serif;
}

.breed-type-btn:hover {
  background: var(--color-accent-peach);
  transform: translateY(-2px);
}

.breed-type-btn.active {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  color: white;
  border-color: var(--color-primary);
}

.breed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.browse-cta {
  text-align: center;
  margin-top: 3rem;
}

.breed-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  text-align: center;
  position: relative;
}

.breed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.breed-card-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  text-decoration: none;
}

.breed-image {
  position: relative;
  overflow: hidden;
}

.breed-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.breed-card h4 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem;
  padding: 0 1rem;
  color: var(--color-text-dark);
}

.breed-card p {
  color: #666;
  font-size: 0.9rem;
  padding: 0 1rem 1.5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .breed-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .breed-type-filters {
    flex-direction: column;
    align-items: center;
  }

  .breed-type-btn {
    width: 80%;
    max-width: 300px;
  }
}

/* Resources / Journey */
.resources {
  background: linear-gradient(180deg, #fff 0%, var(--color-bg-cream) 100%);
  padding: 4rem 0;
  text-align: center;
}

.resources h2 {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.resources .intro {
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.journey-step {
  background: white;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 2rem 1.5rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.journey-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.journey-icon {
  font-size: 2rem;
  background: var(--color-accent-pink);
  color: var(--color-primary);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  margin: 0 auto 1rem;
}

.journey-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

.journey-step h3 span {
  color: var(--color-primary);
  margin-right: 0.3rem;
}

.journey-step p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.resource-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.resource-link:hover {
  color: var(--color-primary-light);
}

@media (max-width: 768px) {
  .journey-steps {
    grid-template-columns: 1fr;
    max-width: 90%;
    margin: 0 auto;
  }
}

/* Commitment */
.commitment {
  background: #fff;
  padding: 5rem 0;
}

.commitment-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.category-badge {
  display: inline-block;
  background: var(--color-accent-pink);
  color: var(--color-primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.commitment-text h2 {
  font-size: 2.5rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.commitment-text .lead {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
}

.commitment-body {
  margin-bottom: 2.5rem;
}

.commitment-body p {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.commitment-stats {
  display: flex;
  gap: 2rem;
}

.commitment-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.commitment-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.commitment-stat span {
  font-size: 0.85rem;
  color: #888;
}

.commitment-image {
  position: relative;
}

.commitment-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 968px) {
  .commitment-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .commitment-text h2 {
    font-size: 2rem;
  }

  .commitment-image {
    order: -1;
  }

  .commitment-stats {
    gap: 1.5rem;
  }
}

/* Breed Intent Section */
.breed-intent {
  background: var(--color-bg-cream);
  padding: 4rem 0;
  text-align: center;
}

.breed-intent h2 {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.breed-intent .intro {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.breed-intent-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  max-width: 860px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.breed-intent-card-image {
  position: relative;
  min-height: 340px;
}

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

.breed-intent-card-body {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.breed-intent-eyebrow {
  display: inline-block;
  background: var(--color-accent-pink);
  color: var(--color-primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.breed-intent-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.breed-intent-input-wrap {
  display: flex;
}

.breed-intent-input-wrap input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0d5d0;
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  background: #fafaf9;
  color: #333;
  transition: border-color 0.2s ease;
}

.breed-intent-input-wrap input:focus {
  border-color: var(--color-primary);
  background: white;
}

.breed-intent-input-wrap .btn {
  border-radius: 0 8px 8px 0;
  white-space: nowrap;
}

.breed-intent-hint {
  font-size: 0.85rem;
  color: #999;
  margin: 0;
}

.breed-intent-hint a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.breed-intent-hint a:hover {
  text-decoration: underline;
}

/* Breed Intent Result Card */
.breed-intent-result {
  max-width: 860px;
  margin: 2rem auto 0;
}

.bi-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  text-align: left;
}

/* Image band */
.bi-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 420px;
  overflow: hidden;
}

.bi-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Name + tagline band */
.bi-name-band {
  background: white;
  padding: 16px 20px 14px;
  border-bottom: 1px solid #f0e0d8;
}

.bi-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.1;
}

.bi-card-summary {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-medium);
  font-style: italic;
  margin: 6px 0 0;
}

/* Section label — shared */
.bi-section-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-primary-text);
  margin-bottom: 8px;
  flex-shrink: 0;
}

/* Traits band */
.bi-traits-band {
  background: var(--color-bg-cream);
  padding: 14px 20px;
  border-bottom: 1px solid #f0e0d8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.bi-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.bi-pill {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary-text);
  background: transparent;
  padding: 0.3rem 0.75rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Best For + Think Twice band */
.bi-lists-band {
  background: white;
  padding: 14px 20px;
  border-bottom: 1px solid #f0e0d8;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 20px;
}

.bi-label-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bi-label-list li {
  font-size: 0.875rem;
  color: var(--color-text-medium);
  padding-left: 1.4rem;
  position: relative;
}

.bi-label-list--good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d8a4e;
  font-weight: 700;
}

.bi-label-list--caution li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
}

/* Similar breeds band */
.bi-similar-band {
  background: var(--color-bg-cream);
  padding: 14px 20px;
  border-bottom: 1px solid #f0e0d8;
}

.bi-similar-flex {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bi-similar-card {
  flex: 1 1 0;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #f0e0d8;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bi-similar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.bi-similar-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.bi-similar-card span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
  padding: 4px 6px;
  line-height: 1.3;
}

/* CTA band */
.bi-cta-band {
  background: white;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.bi-detail-link {
  font-size: 0.875rem;
  color: var(--color-primary-text);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.bi-detail-link:hover {
  text-decoration: underline;
}

.bi-not-found {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  color: #555;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.bi-not-found a {
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .breed-intent-card {
    grid-template-columns: 1fr;
  }

  .breed-intent-card-image {
    min-height: 220px;
  }

  .breed-intent-card-body {
    padding: 1.5rem;
  }

  .breed-intent-input-wrap {
    flex-wrap: wrap;
  }

  .breed-intent-input-wrap input {
    border-right: 1.5px solid #e0d5d0;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    width: 100%;
  }

  .breed-intent-input-wrap .btn {
    border-radius: 0 0 8px 8px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .bi-lists-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bi-cta-band {
    flex-direction: column;
    align-items: center;
  }
}

/* Success Stories */
.success {
  background: linear-gradient(180deg, var(--color-bg-cream) 0%, #fff 100%);
  padding: 4rem 0;
  text-align: center;
}

.success h2 {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.success .intro {
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.story {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  text-align: left;
}

.story:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.story-image {
  height: 250px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story:hover .story-image img {
  transform: scale(1.05);
}

.story-content {
  padding: 2rem;
  position: relative;
}

.quote-mark {
  font-size: 4rem;
  color: var(--color-accent-pink);
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.story blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.5rem;
  position: relative;
  font-style: italic;
}

.story-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.story-author strong {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
}

.story-author span {
  color: #888;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .stories {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
.newsletter form {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.newsletter input {
  flex: 1;
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.newsletter .trust {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #777;
}

/* Footer */
/* ===== HOMEPAGE SUPPORT SECTION ===== */
.home-support {
  padding: 5rem 0;
  background: var(--color-bg-cream);
}

.home-support h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
}

.home-support .section-subhead {
  text-align: center;
  color: var(--color-text-medium);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.home-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.home-support-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-support-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
}

.home-support-card p {
  font-size: 0.95rem;
  color: var(--color-text-medium);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.home-support-card .btn {
  align-self: stretch;
  text-align: center;
  text-decoration: none;
  margin-top: 0.25rem;
}

.home-support-feedback {
  background: var(--color-bg-warm);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home-support-feedback-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--color-text-dark);
}

.home-support-feedback-text p {
  font-size: 0.9rem;
  color: var(--color-text-medium);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .home-support-grid {
    grid-template-columns: 1fr;
  }

  .home-support-feedback {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-support-feedback .btn {
    align-self: stretch;
    text-align: center;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #2d2420;
  color: #ccc;
  padding: 3.5rem 0 0;
}

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

.footer-brand .footer-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.4rem;
  text-align: center;
}

.footer-brand .footer-tagline {
  font-size: 0.9rem;
  color: #aaa;
  margin: 0 0 0.6rem;
  text-align: center;
}

.footer-brand .footer-brand-desc {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 1.25rem;
}

.footer-brand .footer-social {
  justify-content: center;
  margin-top: 1rem;
}

.footer-icon {
  width: 144px;
  height: 144px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.75;
  display: block;
  margin: 0 auto;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #eee;
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.footer-col a,
.site-footer a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover,
.site-footer a:hover {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  gap: 0.85rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ccc !important;
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: var(--color-primary);
  color: #fff !important;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #666;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-bottom-links a {
  color: #555;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--color-primary);
}


@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

/* Responsive */
@media (min-width: 768px) {
  .hero {
    padding: 6rem 0 8rem;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero-text {
    text-align: left;
  }

  .hero-image {
    max-width: 600px;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .trust {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-carousel {
    height: 400px;
  }
  .selector-buttons {
    justify-content: center;
  }
  .selector-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  .logo-img {
    height: 68px;
  }
  .nav {
    display: none;
  }
  .cta-buttons {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Mobile nav dropdown when open */
  .site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1.5rem 1.25rem;
    gap: 0;
    z-index: 199;
  }

  .site-header.nav-open .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.05rem;
    margin: 0;
  }

  .site-header.nav-open .nav a:last-child {
    border-bottom: none;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
}

.rotating-quote-section {
  padding: 3.5rem 0;
  background: #fff;
  text-align: center;
}
.rotating-quote-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}
.rotating-quote-section blockquote,
.rotating-quote-section .rotating-quote-author {
  transition: opacity 0.4s ease;
}
.rotating-quote-section blockquote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  margin: 1rem 0 0.75rem;
}
.rotating-quote-author {
  font-size: 0.9rem;
  color: #888;
  letter-spacing: 0.03em;
}
