:root {
  --cream: #fffaf3;
  --sand: #f5eadb;
  --peach: #f2c5a6;
  --terracotta: #ca7858;
  --sage: #75927e;
  --sage-dark: #456052;
  --ink: #263a35;
  --ink-light: #586760;
  --white: #ffffff;
  --border: #e8dacb;
  --shadow: 0 14px 38px rgba(72, 55, 41, 0.09);
  --radius: 24px;
  --radius-small: 15px;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: 'Avenir Next', Avenir, 'Segoe UI', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.3rem;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
}

.site-header {
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 243, 0.94);
  border-bottom: 1px solid rgba(232, 218, 203, 0.7);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: var(--peach);
  border-radius: 50%;
  color: var(--sage-dark);
  display: inline-flex;
  font-size: 1.3rem;
  height: 45px;
  justify-content: center;
  width: 45px;
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.15;
}

.brand small {
  color: var(--ink-light);
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: 6px;
}

.nav-link {
  border-radius: 999px;
  color: var(--ink-light);
  font-size: 0.94rem;
  font-weight: 600;
  padding: 10px 15px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  background: var(--sand);
  color: var(--sage-dark);
}

.menu-toggle {
  background: var(--sand);
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  display: none;
  font-size: 1.35rem;
  height: 46px;
  width: 46px;
}

.hero {
  padding: 38px 0 70px;
  position: relative;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 0.9fr 1fr;
}

.eyebrow {
  align-items: center;
  color: var(--terracotta);
  display: flex;
  font-size: 0.79rem;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.14em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--peach);
  border-radius: 99px;
  content: '';
  display: inline-block;
  height: 8px;
  width: 30px;
}

.tagline {
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2vw, 1.55rem);
  line-height: 1.4;
  margin: 16px 0;
}

.intro {
  color: var(--ink-light);
  font-size: 1.03rem;
  margin-bottom: 31px;
  max-width: 500px;
}

.button {
  align-items: center;
  background: var(--terracotta);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  min-height: 53px;
  padding: 12px 25px;
  transition: transform 150ms ease, background 150ms ease;
}

.button:hover,
.button:focus-visible {
  background: #b76346;
  transform: translateY(-2px);
}

.button-secondary {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--sage-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--sand);
}

.button-small {
  font-size: 0.9rem;
  min-height: 44px;
  padding: 9px 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-photo-wrap {
  min-height: 530px;
  position: relative;
}

.hero-photo {
  border-radius: 36px;
  height: 535px;
  object-fit: cover;
  object-position: 56% center;
  width: 100%;
}

.photo-badge {
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  bottom: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 13px;
  left: -29px;
  padding: 15px 19px;
  position: absolute;
}

.photo-badge span {
  background: #dfe9e0;
  border-radius: 50%;
  font-size: 1.45rem;
  padding: 10px;
}

.photo-badge strong {
  display: block;
}

.photo-badge small {
  color: var(--ink-light);
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--sand);
}

.section-heading {
  margin: 0 auto 42px;
  max-width: 700px;
  text-align: center;
}

.section-heading p {
  color: var(--ink-light);
  margin-bottom: 0;
}

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

.service-card,
.trust-card,
.testimonial,
.product-card,
.pet-card {
  background: var(--white);
  border: 1px solid rgba(232, 218, 203, 0.8);
  border-radius: var(--radius);
  padding: 27px;
}

.service-card {
  min-height: 205px;
}

.service-card .icon,
.trust-card .icon {
  align-items: center;
  background: #f9eee4;
  border-radius: 14px;
  color: var(--terracotta);
  display: inline-flex;
  font-size: 1.45rem;
  height: 50px;
  justify-content: center;
  margin-bottom: 20px;
  width: 50px;
}

.service-card p,
.trust-card p,
.pet-card p,
.product-card p,
.testimonial p {
  color: var(--ink-light);
  margin-bottom: 0;
}

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

.trust-card {
  text-align: center;
}

.cta-banner {
  align-items: center;
  background: var(--sage-dark);
  border-radius: 30px;
  color: var(--white);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 42px 48px;
}

.cta-banner h2,
.cta-banner p {
  color: var(--white);
}

.cta-banner p {
  margin-bottom: 0;
  opacity: 0.82;
}

.page-hero {
  padding: 58px 0 50px;
  text-align: center;
}

.page-hero p {
  color: var(--ink-light);
  margin: 0 auto;
  max-width: 640px;
}

.page-hero-compact {
  padding-bottom: 28px;
}

.legal-section {
  padding-top: 20px;
}

.legal-copy {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 820px;
  padding: clamp(26px, 5vw, 48px);
}

.legal-copy h2 {
  font-size: 1.4rem;
  margin-top: 29px;
}

.legal-copy a {
  color: var(--terracotta);
  text-decoration: underline;
}

.form-layout {
  align-items: start;
  display: grid;
  gap: 26px;
  grid-template-columns: 0.8fr 1.3fr;
  padding-bottom: 78px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 3px 12px rgba(72, 55, 41, 0.035);
  padding: 29px;
}

.sticky-panel {
  position: sticky;
  top: 105px;
}

.calendar-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.calendar-head h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin: 0;
}

.calendar-control {
  background: var(--sand);
  border: 0;
  border-radius: 50%;
  color: var(--sage-dark);
  cursor: pointer;
  font-size: 1.15rem;
  height: 39px;
  width: 39px;
}

.calendar-week,
.calendar-days {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar-week {
  color: var(--ink-light);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.calendar-days button,
.calendar-blank {
  align-items: center;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
}

.calendar-days button {
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.calendar-days button:hover:not(:disabled),
.calendar-days button:focus-visible {
  background: var(--sand);
}

.calendar-days button.selected {
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
}

.calendar-days button.today:not(.selected) {
  border: 1px solid var(--terracotta);
}

.calendar-days button:disabled {
  color: #c3beb8;
  cursor: not-allowed;
}

.selected-summary {
  background: #f8f3eb;
  border-radius: 14px;
  color: var(--ink-light);
  font-size: 0.91rem;
  margin-top: 22px;
  padding: 13px 15px;
}

.selected-summary strong {
  color: var(--ink);
  display: block;
}

.request-form h2 {
  font-size: 1.75rem;
  margin-bottom: 26px;
}

.field-trap {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.field-grid {
  display: grid;
  gap: 19px;
  grid-template-columns: repeat(2, 1fr);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label,
.label {
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 650;
}

.required {
  color: var(--terracotta);
}

input,
select,
textarea {
  background: #fffdf9;
  border: 1px solid var(--border);
  border-radius: 11px;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(117, 146, 126, 0.14);
  outline: none;
}

textarea {
  min-height: 98px;
  resize: vertical;
}

.help {
  color: var(--ink-light);
  font-size: 0.8rem;
}

.form-actions {
  align-items: center;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 18px;
  margin-top: 28px;
  padding-top: 27px;
}

.form-status {
  border-radius: 14px;
  display: none;
  font-size: 0.95rem;
  margin-top: 22px;
  padding: 14px 16px;
}

.form-status.success {
  background: #e5f1e9;
  color: #27533d;
  display: block;
}

.form-status.error {
  background: #fde9df;
  color: #8a3b24;
  display: block;
}

.notice {
  background: #eaf1eb;
  border-radius: 15px;
  color: var(--sage-dark);
  font-size: 0.9rem;
  margin-top: 20px;
  padding: 15px;
}

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

.pet-card {
  padding: 12px 12px 22px;
}

.pet-photo {
  align-items: center;
  background: var(--sand);
  border-radius: 16px;
  color: var(--terracotta);
  display: flex;
  font-size: 3.5rem;
  height: 220px;
  justify-content: center;
  margin-bottom: 19px;
}

.pet-card h3,
.pet-card p {
  padding: 0 10px;
}

.pet-quote {
  border-top: 1px solid var(--border);
  color: var(--sage-dark);
  font-size: 0.9rem;
  font-style: italic;
  margin: 15px 10px 0;
  padding-top: 13px;
}

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

.stars {
  color: var(--terracotta);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.testimonial cite {
  color: var(--ink);
  display: block;
  font-style: normal;
  font-weight: 700;
  margin-top: 21px;
}

.testimonial-placeholder {
  margin: 0 auto;
  max-width: 690px;
  text-align: center;
}

.disclosure {
  align-items: center;
  background: #e8f0e9;
  border-radius: var(--radius-small);
  color: var(--sage-dark);
  display: flex;
  gap: 15px;
  margin: 0 auto 48px;
  max-width: 850px;
  padding: 17px 23px;
}

.disclosure span {
  font-size: 1.5rem;
}

.picks-note {
  color: var(--ink-light);
  margin: -27px auto 0;
  max-width: 760px;
  text-align: center;
}

.category {
  margin-bottom: 52px;
}

.category h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.category-intro {
  color: var(--ink-light);
  margin: 0 0 22px;
  max-width: 720px;
}

.products-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.product-card {
  align-items: center;
  display: grid;
  gap: 17px;
  grid-template-columns: 112px 1fr;
  padding: 15px;
}

.product-image {
  align-items: center;
  background: var(--sand);
  border-radius: 14px;
  color: var(--terracotta);
  display: flex;
  font-size: 2.2rem;
  height: 112px;
  justify-content: center;
}

.product-card h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.3;
  margin-bottom: 5px;
}

.product-card p {
  font-size: 0.86rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.amazon-link {
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  background: #efe3d3;
  padding-top: 55px;
}

.footer-grid {
  display: grid;
  gap: 45px;
  grid-template-columns: 1.35fr 0.8fr 1fr;
  padding-bottom: 45px;
}

.footer-brand {
  margin-bottom: 18px;
}

.muted {
  color: var(--ink-light);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links strong,
.footer-contact strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 9px;
}

.footer-links a,
.footer-contact p {
  color: var(--ink-light);
  margin: 0;
}

.footer-contact .button {
  align-self: start;
  color: var(--white);
  margin-top: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(105, 87, 67, 0.12);
  color: var(--ink-light);
  font-size: 0.9rem;
  padding: 19px 24px;
  text-align: center;
}

@media (max-width: 940px) {
  .primary-nav {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 19px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    left: 24px;
    padding: 10px;
    position: absolute;
    right: 24px;
    top: 73px;
  }

  .primary-nav.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-photo-wrap {
    min-height: auto;
  }

  .hero-photo {
    height: min(500px, 68vw);
  }

  .photo-badge {
    bottom: 20px;
    left: 20px;
  }

  .cards-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand strong {
    font-size: 1.15rem;
  }

  .hero {
    padding: 22px 0 49px;
  }

  .hero-grid {
    gap: 31px;
  }

  .hero-photo {
    border-radius: 25px;
    height: 330px;
  }

  .photo-badge {
    bottom: 14px;
    left: 14px;
    padding: 11px 14px;
  }

  .section {
    padding: 52px 0;
  }

  .cards-grid,
  .feature-grid,
  .gallery-grid,
  .testimonials-grid,
  .products-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    align-items: flex-start;
    flex-direction: column;
    padding: 31px 26px;
  }

  .page-hero {
    padding: 42px 0 35px;
  }

  .panel {
    padding: 21px 18px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .product-card {
    grid-template-columns: 92px 1fr;
  }

  .product-image {
    height: 98px;
  }
}
