:root {
  --cream: #faf6ef;
  --cream-alt: #f2ebdd;
  --ink: #2b2620;
  --muted: #6f675b;
  --rust: #c9683a;
  --rust-dark: #a8512b;
  --green: #4f6f52;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(43, 38, 32, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.1;
  font-weight: 600;
}

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

/* Buttons */
.btn {
  display: inline-block;
  background: var(--rust);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { background: var(--rust-dark); transform: translateY(-2px); }
.btn-small { padding: 0.55rem 1.1rem; font-size: 0.95rem; }
.btn-ghost {
  background: transparent;
  color: var(--rust);
  border: 2px solid var(--rust);
}
.btn-ghost:hover { background: var(--rust); color: #fff; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rust);
  margin-bottom: 0.75rem;
}
.eyebrow.center, h2.center { text-align: center; }
h2.center { margin-bottom: 2.5rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(8px);
  z-index: 50;
  border-bottom: 1px solid rgba(43, 38, 32, 0.07);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.logo .amp { color: var(--rust); }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { font-weight: 500; }
.nav-links a:hover { color: var(--rust); }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-alt) 100%);
  padding: 4.5rem 0 5.5rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.2rem; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 45ch; }
.hero-cta { display: flex; gap: 1rem; margin: 1.8rem 0 1.5rem; flex-wrap: wrap; }
.trust-row { display: flex; gap: 1.5rem; color: var(--muted); font-size: 0.95rem; flex-wrap: wrap; }

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.hero-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 1.4rem;
  display: block;
}
.hero-card-quote { font-family: "Fraunces", serif; font-size: 1.25rem; font-style: italic; }
.hero-card-author { margin-top: 1rem; color: var(--muted); font-weight: 500; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream-alt); }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.price-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease;
}
.card:hover { transform: translateY(-5px); }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.about-text > p { color: var(--muted); margin-bottom: 1.5rem; }
.checklist { list-style: none; display: grid; gap: 0.7rem; }
.checklist li { position: relative; padding-left: 1.8rem; }
.checklist li::before {
  content: "🐾";
  position: absolute;
  left: 0;
}
.about-badge {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-emoji { font-size: 3rem; }
.about-photo {
  float: right;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 38%;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
  margin: 0 0 1rem 1.5rem;
  shape-outside: circle(50%);
}
.badge-num { font-family: "Fraunces", serif; font-size: 3.5rem; font-weight: 700; line-height: 1; }
.badge-label { opacity: 0.9; }

/* Testimonials */
.testimonial-slider { max-width: 720px; margin: 0 auto; }
.t-stage { display: flex; align-items: center; gap: 0.6rem; }
.t-viewport {
  overflow: hidden;
  flex: 1;
  padding: 1.25rem 0;
  margin: -1.25rem 0;
}
.t-track { display: flex; transition: transform 0.5s ease; }
.testimonial {
  flex: 0 0 100%;
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--rust);
}
.testimonial blockquote {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.testimonial blockquote::before { content: "\201C"; }
.testimonial blockquote::after { content: "\201D"; }
.testimonial figcaption { color: var(--muted); font-weight: 600; }
.t-arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--rust);
  background: var(--card);
  color: var(--rust);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.t-arrow:hover { background: var(--rust); color: #fff; }
.t-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #d8cfbe;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.t-dot.active { background: var(--rust); transform: scale(1.25); }

/* Leave-a-testimonial form */
.testimonial-cta { max-width: 600px; margin: 3.5rem auto 0; text-align: center; }
.testimonial-cta h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.testimonial-cta > p { color: var(--muted); margin-bottom: 1.5rem; }
.testimonial-form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  text-align: left;
}
.testimonial-form label { display: grid; gap: 0.4rem; font-weight: 500; font-size: 0.95rem; }
.testimonial-form input, .testimonial-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #ddd4c5;
  border-radius: 10px;
  background: var(--cream);
}
.testimonial-form input:focus, .testimonial-form textarea:focus { outline: none; border-color: var(--rust); }
.tform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tform-consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--muted);
}
.tform-consent input { width: auto; margin-top: 0.25rem; }

/* Pricing */
.price-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.price-card.featured {
  border: 2px solid var(--rust);
  transform: scale(1.03);
}
.tag {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rust);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-card h3 { font-size: 1.4rem; }
.price { font-family: "Fraunces", serif; font-size: 2.5rem; font-weight: 700; color: var(--rust); }
.price span { font-size: 1rem; color: var(--muted); font-family: "Inter", sans-serif; font-weight: 400; }
.price-card ul { list-style: none; display: grid; gap: 0.5rem; color: var(--muted); }
.price-card .btn, .price-card .btn-ghost { margin-top: auto; }

/* Schedule / Availability */
.schedule-intro {
  max-width: 60ch;
  margin: 0 auto 2rem;
  color: var(--muted);
}
.service-toggle {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.svc-btn {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 2px solid var(--rust);
  background: transparent;
  color: var(--rust);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.svc-btn.active { background: var(--rust); color: #fff; }

.duration-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}
.dur-btn {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--green);
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transition: all 0.15s ease;
}
.dur-btn.active { background: var(--green); color: #fff; }

.day-picker {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}
.day-select-label { font-weight: 600; }
.day-select {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.6rem 2.2rem 0.6rem 1rem;
  border-radius: 10px;
  border: 1.5px solid #e3dccd;
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  min-width: 220px;
}
.day-select:focus { outline: none; border-color: var(--rust); }
.slot-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 640px;
  margin: 0 auto;
  min-height: 2.5rem;
}
.slot-btn {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1.5px solid #e3dccd;
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.12s ease;
}
.slot-btn:hover { border-color: var(--rust); color: var(--rust); }
.slot-btn.selected {
  background: var(--rust);
  border-color: var(--rust);
  color: #fff;
}
.slot-btn.past {
  text-decoration: line-through;
  color: #b3aa99;
  background: var(--cream-alt);
  border-color: #e3dccd;
  cursor: not-allowed;
}
.slot-btn.past:hover { border-color: #e3dccd; color: #b3aa99; }
.day-off {
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}
.slot-summary {
  margin: 2rem auto 0;
  max-width: 460px;
  background: var(--card);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.slot-summary p { font-size: 1.05rem; }
.slot-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.form-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.btn-block { width: 100%; text-align: center; }
.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.form-err { color: #b3402b; font-weight: 600; text-align: center; }

/* Policies */
.policies-intro {
  max-width: 60ch;
  margin: 0 auto 2.5rem;
  color: var(--muted);
}
.policies {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}
.policy {
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.policy summary {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.policy summary::-webkit-details-marker { display: none; }
.policy summary::after {
  content: "+";
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  color: var(--rust);
  transition: transform 0.2s ease;
  line-height: 1;
}
.policy[open] summary::after { transform: rotate(45deg); }
.policy summary:hover { color: var(--rust); }
.policy-body {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  display: grid;
  gap: 0.8rem;
}

/* Gallery */
.gallery-intro {
  max-width: 60ch;
  margin: 0 auto 2.5rem;
  color: var(--muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.06); }
.gallery-item:focus-visible { outline: 3px solid var(--rust); outline-offset: 2px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(43, 38, 32, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  background: none;
  border: none;
  font-size: 2.6rem;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}
.lightbox-close:hover { color: var(--rust); }

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-text h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.contact-text > p { color: var(--muted); margin-bottom: 1.5rem; }
.contact-detail { font-weight: 500; margin-bottom: 0.5rem; }
.contact-form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}
.contact-form label { display: grid; gap: 0.4rem; font-weight: 500; font-size: 0.95rem; }
.contact-form input, .contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #ddd4c5;
  border-radius: 10px;
  background: var(--cream);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--rust);
}
.form-msg { color: var(--green); font-weight: 600; text-align: center; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #d9d2c6;
  padding: 2.5rem 0;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.site-footer .logo { color: #fff; }

/* New-client intake modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(43, 38, 32, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: min(520px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  padding: 2.2rem 2rem 1.6rem;
  animation: modalIn 0.2s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.modal h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.modal-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.3rem; }
.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.modal-close:hover { color: var(--rust); }
.modal-form { display: grid; gap: 0.9rem; }
.modal-form label { display: grid; gap: 0.35rem; font-weight: 500; font-size: 0.92rem; }
.modal-form input, .modal-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid #ddd4c5;
  border-radius: 10px;
  background: var(--cream);
  width: 100%;
  min-width: 0;
}
.modal-form label { min-width: 0; }
.modal-form input:focus, .modal-form textarea:focus { outline: none; border-color: var(--rust); }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.modal-hint { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 0.2rem; }
@media (max-width: 480px) { .modal-row { grid-template-columns: 1fr; } }

/* Larger, easier-to-read popup on desktop / computer screens */
@media (min-width: 768px) {
  .modal { width: min(760px, 100%); max-height: 96vh; padding: 2.2rem 2.8rem 1.8rem; }
  .modal h3 { font-size: 1.85rem; }
  .modal-sub { font-size: 1.05rem; margin-bottom: 1.1rem; }
  .modal-form { gap: 0.9rem; }
  .modal-form label { font-size: 1rem; }
  .modal-form input, .modal-form textarea { font-size: 1.05rem; padding: 0.7rem 1rem; }
  .modal-close { font-size: 2.1rem; }
}

/* Responsive */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .nav-links a:not(.btn-small) { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
