/* ==================== VARIABLES ==================== */
:root {
  --green:        #4a6d5a;
  --green-dark:   #35503f;
  --green-light:  #dde8e0;
  --gold:         #c9a96e;
  --cream:        #faf9f7;
  --cream-dark:   #f2ede6;
  --dark:         #1a2820;
  --text:         #2d2d2d;
  --text-muted:   #6b6b6b;
  --white:        #ffffff;
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 10px 36px rgba(0,0,0,0.13);
  --radius:       14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==================== ANNOUNCEMENT BAR ==================== */
.announcement-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.announcement-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.announcement-right a {
  color: var(--gold);
  font-weight: 600;
  transition: opacity 0.2s;
}

.announcement-right a:hover { opacity: 0.8; }

/* ==================== NAVIGATION ==================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 249, 247, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
}

.nav-logo span { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

/* "Schedule Online" — gold accent so it reads as an action, not another page. */
.nav-links a.nav-schedule { color: var(--gold); font-weight: 600; }
.nav-links a.nav-schedule:hover { color: var(--green); }

.nav-phone {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  padding: 10px 22px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}

.nav-phone:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 58px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 38px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Shared button base — every .btn-* variant inherits font + pill shape from here. */
.btn-white,
.btn-outline-white,
.btn-green,
.btn-gold,
.btn-outline-gold {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--green-dark);
  padding: 15px 34px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 500;
  padding: 15px 30px;
  border: 2px solid rgba(255,255,255,0.55);
  transition: all 0.2s;
}

.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.btn-green {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  transition: background 0.2s, transform 0.2s;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-gold:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ==================== WAVE ==================== */
.wave { display: block; width: 100%; line-height: 0; overflow: hidden; }
.wave svg { display: block; width: 100%; }

/* ==================== MISSION ==================== */
.mission {
  background: var(--cream-dark);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-inner {
  max-width: 820px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.mission-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
}

/* ==================== PROCESS ==================== */
.process-section {
  padding: 90px 0;
  background: var(--cream);
}

.section-heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 52px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.process-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.process-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 12px;
  overflow: hidden;
}

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

.process-step-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.process-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ==================== WHY CHOOSE US ==================== */
.why-section {
  background: var(--dark);
  padding: 90px 0;
}

.why-section .section-eyebrow { color: var(--gold); }
.why-section .section-heading { color: var(--white); }
.why-section .section-intro { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background 0.25s, transform 0.25s;
}

.why-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ==================== ABOUT / TWO COLUMN ==================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.two-col-img {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

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

.two-col-img .placeholder-photo {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--cream-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.placeholder-photo .initials {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-photo p {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.two-col-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.two-col-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.two-col-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.two-col-text .btn-green {
  align-self: flex-start;
  margin-top: 8px;
}

/* ==================== PETS WE SERVE ==================== */
.pets-section {
  padding: 90px 0;
  background: var(--cream-dark);
}

.pets-intro {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.pets-grid-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}

.pets-grid-secondary {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.pet-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.pet-card-featured {
  height: 320px;
}

.pet-card-secondary {
  height: 150px;
}

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

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

.pet-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  padding: 28px 18px 16px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.pet-card-secondary .pet-card-label {
  font-size: 13px;
  padding: 18px 10px 10px;
}

.pet-tag {
  background: var(--white);
  border: 1px solid rgba(74,109,90,0.2);
  color: var(--green);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 50px;
}

.pets-note {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
  padding: 90px 0;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--green);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.testimonial-location {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==================== PAYMENT ==================== */
.payment-section {
  background: var(--cream-dark);
  padding: 52px 40px;
  text-align: center;
}

.payment-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.payment-badge {
  background: var(--white);
  border-radius: 8px;
  padding: 10px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  box-shadow: var(--shadow);
  letter-spacing: 0.5px;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 72px 40px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr 0.8fr 0.8fr 1.6fr;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto 56px;
}

.footer-brand .nav-logo {
  font-size: 24px;
  color: white;
  display: block;
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 220px;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: white; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-newsletter h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}

.footer-newsletter p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 11px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: white;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--green); }

.newsletter-form button {
  background: var(--green);
  color: white;
  border: none;
  padding: 11px 20px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover { background: var(--green-dark); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1140px;
  margin: 0 auto 28px;
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--dark) 0%, var(--green-dark) 60%, #2a3f30 100%);
  padding: 80px 24px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero-content .hero-eyebrow {
  color: var(--gold);
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.page-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ==================== SERVICE CARDS LARGE ==================== */
.services-section {
  padding: 90px 0;
  background: var(--cream);
}

.service-grid-large {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.service-card-large {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card-large:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--green);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card-large h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}

.service-card-large p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.service-card-large a.card-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.service-card-large a.card-link:hover { gap: 8px; }

/* ==================== INCLUDED LIST ==================== */
.included-section {
  padding: 90px 0;
  background: var(--cream-dark);
  text-align: center;
}

.included-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 48px auto 40px;
  text-align: left;
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow);
  min-height: 58px;
}

.included-list li .check {
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background: var(--green-dark);
  padding: 80px 40px;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-gold {
  display: inline-block;
  color: var(--gold);
  padding: 14px 32px;
  border: 2px solid var(--gold);
  transition: all 0.2s;
}

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

/* ==================== PRODUCT CARDS ==================== */
.products-section {
  padding: 90px 0;
}

.products-section.dark-bg {
  background: var(--dark);
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

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

.product-card-img {
  height: 160px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card-img svg {
  width: 56px;
  height: 56px;
  opacity: 0.65;
}

.product-card-body {
  padding: 24px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 16px;
}

.price-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  align-self: flex-start;
}

.price-badge.complimentary {
  background: var(--green);
}

/* Dark bg product cards */
.products-section.dark-bg .product-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.products-section.dark-bg .product-card:hover {
  background: rgba(255,255,255,0.1);
}

.products-section.dark-bg .product-card-img {
  background: rgba(255,255,255,0.08);
}

.products-section.dark-bg .product-card-img svg {
  opacity: 0.6;
  color: white;
}

.products-section.dark-bg .product-card-body h3 {
  color: var(--white);
}

.products-section.dark-bg .product-card-body p {
  color: rgba(255,255,255,0.6);
}

.products-section.dark-bg .section-eyebrow { color: var(--gold); }
.products-section.dark-bg .section-heading { color: var(--white); }
.products-section.dark-bg .section-intro { color: rgba(255,255,255,0.6); }

/* ==================== COMPLIMENTARY GIFT ==================== */
.gift-section {
  padding: 80px 40px;
  background: var(--cream);
  text-align: center;
}

.gift-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.gift-section p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.85;
}

/* ==================== PARTNER CARDS ==================== */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.partner-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  transition: background 0.25s;
}

.partner-card:hover {
  background: rgba(255,255,255,0.11);
}

.partner-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.partner-card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.partner-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}

.partner-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ==================== PROMISE CARDS ==================== */
.promise-section {
  padding: 90px 0;
  background: var(--dark);
}

.promise-section .section-eyebrow { color: var(--gold); }
.promise-section .section-heading { color: var(--white); }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.promise-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: background 0.25s, transform 0.25s;
}

.promise-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
}

.promise-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 14px;
}

.promise-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.promise-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ==================== CALLOUT BOX ==================== */
.callout-box {
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  padding: 36px 36px;
  box-shadow: var(--shadow);
}

.callout-box h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.callout-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.callout-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.callout-box ul li::before {
  content: "•";
  color: var(--gold);
  font-size: 20px;
  line-height: 1.1;
  flex-shrink: 0;
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
  padding: 90px 0;
  background: var(--cream);
}

.pricing-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pricing-two-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.pricing-two-col p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ==================== FAQ STYLES ==================== */
.faq-page {
  padding: 80px 0;
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: flex-start;
}

.faq-category {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin: 44px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 22px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.45;
}

.faq-answer {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* FAQ Sidebar */
.faq-sidebar {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.sidebar-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.sidebar-card .phone-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 16px;
}

/* ==================== CONTACT FORM ==================== */
.contact-page {
  padding: 80px 0;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: flex-start;
}

.contact-form-full h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.contact-form-full .form-intro {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.75;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,109,90,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b6b6b' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: var(--text);
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  accent-color: var(--green);
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

.radio-option input[type="radio"]:focus {
  box-shadow: none;
  border-color: transparent;
}

.form-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* Contact Info Column */
.contact-info-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.contact-info-card-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.contact-info-card-text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

.contact-info-card-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.service-area-note {
  background: var(--green-light);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--green-dark);
  line-height: 1.7;
  margin-top: 20px;
}

/* ==================== OPENING STATEMENT ==================== */
.opening-statement {
  padding: 80px 40px;
  background: var(--cream-dark);
  text-align: center;
}

.opening-quote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
}

.opening-quote::before {
  content: '\201C';
  color: var(--gold);
  font-size: 60px;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 6px;
  font-style: normal;
}

.opening-quote::after {
  content: '\201D';
  color: var(--gold);
  font-size: 60px;
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 6px;
  font-style: normal;
}

/* ==================== STORY SECTIONS ==================== */
.story-section {
  padding: 90px 0;
}

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

.story-section.dark .section-eyebrow { color: var(--gold); }
.story-section.dark h2 { color: var(--white); }
.story-section.dark p { color: rgba(255,255,255,0.65); }

/* ==================== PRIVACY / TERMS ==================== */
.legal-page {
  padding: 72px 0 90px;
  background: var(--cream);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 14px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 12px 0 20px 24px;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 8px;
}

.legal-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ==================== NAV ACTIVE STATE ==================== */
.nav-links a.active {
  color: var(--green);
  font-weight: 600;
}

/* ==================== FORM SUCCESS BANNER ==================== */
.form-success {
  background: var(--green-light);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--green-dark);
  padding: 18px 22px;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.6;
}
.form-success a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }

/* ==================== MOBILE MENU TOGGLE ==================== */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid-large { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .announcement-bar { display: none; }

  /* ---- mobile navigation ---- */
  .navbar { padding: 0 20px; }
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    order: 3;
  }
  .nav-toggle-label span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-toggle:checked ~ .nav-links { max-height: 420px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 15px 20px;
    font-size: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-phone { padding: 9px 16px; font-size: 13px; }

  /* ---- collapse every multi-column grid to a single column ---- */
  .process-grid,
  .why-grid,
  .testimonials-grid,
  .service-grid-large,
  .product-grid,
  .included-list,
  .promise-grid,
  .partner-grid,
  .pets-grid-featured,
  .two-col,
  .pricing-two-col,
  .faq-layout,
  .contact-layout,
  .form-row,
  .footer-grid { grid-template-columns: 1fr; }
  .pets-grid-secondary { grid-template-columns: repeat(3, 1fr); }
  .pricing-two-col { gap: 36px; }
  .faq-layout { gap: 32px; }
  .contact-layout { gap: 44px; }

  /* ---- section vertical rhythm ---- */
  .process-section,
  .why-section,
  .pets-section,
  .testimonials-section,
  .services-section,
  .included-section,
  .products-section,
  .promise-section,
  .pricing-section,
  .story-section,
  .faq-page,
  .contact-page { padding: 56px 0; }
  .legal-page { padding: 48px 0 64px; }
  .mission,
  .cta-banner,
  .opening-statement,
  .gift-section { padding: 56px 24px; }
  .payment-section { padding: 40px 24px; }
  footer { padding: 52px 24px 28px; }
  #service-area { padding: 56px 24px !important; }

  /* ---- heading + text scaling ---- */
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .page-hero { min-height: auto; padding: 60px 24px; }
  .page-hero-content h1 { font-size: 33px; }
  .page-hero-content p { font-size: 15px; }
  .section-heading { font-size: 28px; }
  .section-intro { font-size: 15px; margin-bottom: 32px; }
  .two-col-text h2,
  .pricing-two-col h2,
  .gift-section h2 { font-size: 26px; }
  .cta-banner h2 { font-size: 27px; }
  .cta-banner p { font-size: 15px; }
  .legal-content h2 { font-size: 21px; }
  .mission-text { font-size: 18px; }
  .opening-quote { font-size: 18px; }
  .contact-form-full h2 { font-size: 25px; }
  .contact-info-col h2 { font-size: 23px; }
  #service-area h2 { font-size: 26px !important; }

  /* ---- tighten card padding ---- */
  .two-col-text { padding: 44px 26px; }
  .two-col-img { min-height: 280px; }
  .service-card-large { padding: 30px 24px; }
  .callout-box { padding: 28px 24px; }
  .why-card { padding: 28px 24px; }
  .promise-card { padding: 26px 22px; }
  .product-card-img { height: 240px; }

  /* ---- full-width stacked buttons ---- */
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons a,
  .cta-buttons a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ---- misc ---- */
  .faq-sidebar { position: static; }
  .payment-icons { gap: 14px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .container { padding: 0 24px; }
}

@media (max-width: 480px) {
  .navbar { padding: 0 16px; }
  .container { padding: 0 18px; }
  .nav-phone { padding: 8px 14px; font-size: 12px; }

  .hero { min-height: 78vh; }
  .hero h1 { font-size: 29px; }
  .hero-eyebrow { letter-spacing: 2px; font-size: 11px; }
  .page-hero-content h1 { font-size: 28px; }
  .section-heading { font-size: 24px; }
  .cta-banner h2 { font-size: 24px; }
  .two-col-text h2,
  .pricing-two-col h2,
  .gift-section h2 { font-size: 23px; }

  .mission,
  .cta-banner,
  .opening-statement,
  .gift-section { padding: 48px 20px; }
  .process-section,
  .why-section,
  .pets-section,
  .testimonials-section,
  .services-section,
  .included-section,
  .products-section,
  .promise-section,
  .pricing-section,
  .story-section,
  .faq-page,
  .contact-page { padding: 48px 0; }
  .two-col-text { padding: 40px 20px; }
  .pets-grid-secondary { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== 404 PAGE ==================== */
.error-section {
  padding: 110px 0;
  background: var(--cream);
  text-align: center;
}
.error-inner {
  max-width: 620px;
}
.error-code {
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  line-height: 1;
  color: var(--green);
  margin: 8px 0 20px;
}
.error-message {
  color: var(--text-muted, #5b6b62);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 34px;
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
@media (max-width: 480px) {
  .error-section { padding: 70px 0; }
  .error-code { font-size: 72px; }
}
