:root {
  --bg: #fff7f1;
  --bg-soft: #ffe9dc;
  --surface: rgba(255, 255, 255, 0.84);
  --text: #45303a;
  --muted: #7d6370;
  --line: rgba(69, 48, 58, 0.12);
  --accent: #ef8f72;
  --accent-dark: #c55d43;
  --accent-soft: rgba(239, 143, 114, 0.14);
  --accent-secondary: #88b7a3;
  --shadow-soft: 0 18px 44px rgba(90, 55, 65, 0.12);
  --shadow-strong: 0 28px 68px rgba(90, 55, 65, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1160px;
}

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

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 143, 114, 0.14), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, var(--bg) 42%, var(--bg-soft) 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.container { width: min(calc(100% - 1.5rem), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 251, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-row { padding: 0.95rem 0; }
.footer-row { flex-wrap: wrap; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Fraunces", serif;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #ef8f72, #f5b39d);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.nav-toggle,
.slider-arrow {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0.25rem 0 0.8rem;
}

.site-nav.open { display: flex; }
.site-nav a { font-weight: 700; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.button:hover,
.button:focus-visible,
.slider-arrow:hover,
.slider-arrow:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #f3a68f);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.button-full { width: 100%; }

.hero {
  padding: 2rem 0 1rem;
}

.hero-grid,
.trust-grid,
.service-grid,
.care-grid,
.care-stack,
.faq-grid,
.faq-list,
.book-grid {
  display: grid;
  gap: 1rem;
}

.eyebrow,
.section-label,
.service-type {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  margin: 0.85rem 0 1rem;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

p { margin: 0 0 1rem; }

.hero-lead,
.section-heading p,
.service-card p,
.care-card p,
.testimonial-card p,
.faq-answer p,
.book-copy li,
.profile-list li,
.dog-card-note p,
.form-note {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.hero-sidebar {
  display: grid;
  gap: 1rem;
}

.profile-card,
.dog-card,
.service-card,
.care-card,
.testimonial-card,
.faq-item,
.book-copy,
.book-form,
.trust-grid article {
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.profile-card,
.dog-card,
.book-copy,
.book-form {
  border-radius: var(--radius-xl);
}

.profile-card,
.book-copy,
.book-form {
  padding: 1.25rem;
}

.service-card,
.care-card,
.testimonial-card,
.faq-item,
.trust-grid article {
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.profile-card {
  background:
    linear-gradient(135deg, rgba(239, 143, 114, 0.14), rgba(255, 255, 255, 0.94)),
    #fff;
}

.profile-label {
  margin-bottom: 0.4rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-list,
.book-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.profile-list li,
.book-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(69, 48, 58, 0.08);
}

.dog-card {
  overflow: hidden;
  position: relative;
  min-height: 21rem;
}

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

.dog-card-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(69, 48, 58, 0.78);
  color: rgba(255, 255, 255, 0.92);
}

.dog-card-note p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

.trust-strip {
  padding-top: 0.75rem;
}

.trust-grid strong {
  display: block;
  margin-bottom: 0.25rem;
}

.section {
  padding: 4.5rem 0 0;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 2rem 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12));
  z-index: -1;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.7rem;
}

.split-heading {
  display: grid;
  gap: 1rem;
}

.reviews-section .container {
  padding: 2rem 1rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(239, 143, 114, 0.18), transparent 35%),
    linear-gradient(135deg, #86636e, #5c414a);
  box-shadow: var(--shadow-strong);
}

.reviews-section .section-label,
.reviews-section h2,
.reviews-section p,
.reviews-section strong {
  color: #fff;
}

.testimonial-slider { position: relative; }
.testimonial-card { display: none; background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.08); }
.testimonial-card.active { display: block; }

.slider-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.slider-dots { display: flex; gap: 0.45rem; }
.slider-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.slider-dots button.active { background: #fff; }

.faq-question {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding-top: 0.7rem;
}

.faq-item.open .faq-answer { display: block; }

label {
  display: block;
  margin: 0 0 0.35rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  background: #fff;
  color: var(--text);
}

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

.form-message.success { color: #2f6a50; }
.form-message.error { color: #b75b43; }

.site-footer {
  padding: 3rem 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .hero-grid,
  .care-grid,
  .book-grid,
  .faq-grid,
  .split-heading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .trust-grid,
  .service-grid,
  .care-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


.back-presgro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.back-presgro:hover,
.back-presgro:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 820px) {
  .back-presgro {
    order: 3;
    width: 100%;
    margin-top: 0.75rem;
  }
}

/* Scoped final pass for the Paw & Polish demo page. */
html body.theme-pet-groomer {
  --bg: #fff7f1;
  --bg-soft: #f9e7dc;
  --surface: rgba(255, 252, 248, 0.96);
  --text: #45303a;
  --muted: #725867;
  --line: rgba(69, 48, 58, 0.16);
  --accent: #c9654f;
  --accent-dark: #a84f3d;
  --accent-soft: rgba(201, 101, 79, 0.13);
  --shadow-soft: 0 18px 42px rgba(76, 46, 57, 0.1);
  --shadow-strong: 0 28px 70px rgba(76, 46, 57, 0.16);
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 8px;
  background:
    radial-gradient(circle at 18% 8%, rgba(239, 143, 114, 0.2), transparent 22rem),
    radial-gradient(circle at 88% 28%, rgba(136, 183, 163, 0.16), transparent 24rem),
    linear-gradient(180deg, #fffaf5 0%, #fff4eb 42%, #f9e5d8 100%);
  color: var(--text);
}

html body.theme-pet-groomer .site-header {
  background: rgba(255, 252, 248, 0.88);
  border-bottom: 1px solid rgba(69, 48, 58, 0.08);
  color: var(--text);
  box-shadow: 0 10px 28px rgba(69, 48, 58, 0.05);
}

html body.theme-pet-groomer main > .hero {
  padding: clamp(2.5rem, 5vw, 4.75rem) 0 clamp(2.25rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(69, 48, 58, 0.08);
  background:
    radial-gradient(circle at 78% 12%, rgba(201, 101, 79, 0.14), transparent 23rem),
    linear-gradient(135deg, #fffaf5 0%, #f3e7d9 100%);
  color: var(--text);
}

html body.theme-pet-groomer .hero-grid {
  gap: clamp(1.35rem, 4vw, 2rem);
  align-items: center;
}

html body.theme-pet-groomer .hero-copy {
  max-width: 45rem;
}

html body.theme-pet-groomer h1,
html body.theme-pet-groomer h2,
html body.theme-pet-groomer h3 {
  color: var(--text);
  letter-spacing: 0;
  text-wrap: balance;
}

html body.theme-pet-groomer h1 {
  max-width: 12.4ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1;
  margin: 0.9rem 0 1.05rem;
}

html body.theme-pet-groomer .hero-lead {
  max-width: 41rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

html body.theme-pet-groomer .button {
  border-radius: var(--radius-sm);
  box-shadow: none;
}

html body.theme-pet-groomer .button-primary,
html body.theme-pet-groomer .mobile-contact-bar a:first-child {
  background: linear-gradient(135deg, #c45f49, #e9876d);
  color: #fffaf5;
}

html body.theme-pet-groomer .button-secondary {
  border-color: rgba(69, 48, 58, 0.16);
  background: rgba(255, 252, 248, 0.88);
  color: var(--text);
}

html body.theme-pet-groomer .button:hover,
html body.theme-pet-groomer .button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(76, 46, 57, 0.12);
}

html body.theme-pet-groomer .eyebrow,
html body.theme-pet-groomer .section-label,
html body.theme-pet-groomer .service-type {
  padding: 0.42rem 0.75rem;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid rgba(201, 101, 79, 0.1);
  font-size: 0.78rem;
  line-height: 1.1;
}

html body.theme-pet-groomer .hero-proof {
  margin-top: 1.05rem;
}

html body.theme-pet-groomer .hero-proof li {
  border-color: rgba(69, 48, 58, 0.14);
  background: rgba(255, 252, 248, 0.82);
  color: var(--text);
}

html body.theme-pet-groomer .demo-safety-note {
  max-width: 39rem;
  margin-top: 1rem;
  border-color: rgba(69, 48, 58, 0.14);
  background: rgba(255, 252, 248, 0.86);
  color: #5d4652;
  font-size: 0.94rem;
  line-height: 1.45;
}

html body.theme-pet-groomer .hero-sidebar {
  gap: 0.85rem;
  width: 100%;
}

html body.theme-pet-groomer .profile-card,
html body.theme-pet-groomer .dog-card,
html body.theme-pet-groomer .service-card,
html body.theme-pet-groomer .care-card,
html body.theme-pet-groomer .testimonial-card,
html body.theme-pet-groomer .faq-item,
html body.theme-pet-groomer .book-copy,
html body.theme-pet-groomer .book-form,
html body.theme-pet-groomer .trust-grid article {
  border: 1px solid rgba(69, 48, 58, 0.13);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: none;
}

html body.theme-pet-groomer .profile-card,
html body.theme-pet-groomer .book-copy,
html body.theme-pet-groomer .book-form {
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

html body.theme-pet-groomer .profile-card {
  background:
    linear-gradient(180deg, rgba(201, 101, 79, 0.1), transparent 7rem),
    rgba(255, 252, 248, 0.98);
}

html body.theme-pet-groomer .profile-card h2 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 4.3vw, 3.9rem);
}

html body.theme-pet-groomer .profile-label {
  color: #5b414d;
}

html body.theme-pet-groomer .profile-list li,
html body.theme-pet-groomer .book-list li {
  border-bottom-color: rgba(69, 48, 58, 0.09);
}

html body.theme-pet-groomer .dog-card {
  height: clamp(22rem, 35vw, 30rem);
  min-height: 0;
  background: #edb300;
}

html body.theme-pet-groomer .dog-card img {
  height: 100%;
  object-position: center 68%;
}

html body.theme-pet-groomer .dog-card-note {
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(59, 39, 49, 0.88);
  color: #fffaf5;
}

html body.theme-pet-groomer .dog-card-note p {
  color: rgba(255, 250, 245, 0.84);
}

html body.theme-pet-groomer .trust-strip {
  padding: clamp(1.1rem, 2vw, 1.8rem) 0 0;
}

html body.theme-pet-groomer .trust-grid article,
html body.theme-pet-groomer .service-card,
html body.theme-pet-groomer .care-card {
  padding: clamp(1.05rem, 2vw, 1.35rem);
}

html body.theme-pet-groomer .trust-grid p,
html body.theme-pet-groomer .service-card p,
html body.theme-pet-groomer .care-card p {
  margin-bottom: 0;
}

html body.theme-pet-groomer .section {
  padding: clamp(3rem, 5.5vw, 5rem) 0 0;
}

html body.theme-pet-groomer .section-heading {
  max-width: 56rem;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

html body.theme-pet-groomer .section-heading h2 {
  max-width: 18ch;
  font-size: clamp(2.3rem, 3.6vw, 3.55rem);
  line-height: 1.04;
  margin-top: 0.45rem;
  margin-bottom: 0.85rem;
}

html body.theme-pet-groomer .split-heading {
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
}

html body.theme-pet-groomer .split-heading h2 {
  max-width: 21ch;
}

html body.theme-pet-groomer .split-heading > p {
  max-width: 34rem;
  margin-bottom: 0.45rem;
}

html body.theme-pet-groomer .service-grid {
  gap: clamp(0.9rem, 2vw, 1rem);
}

html body.theme-pet-groomer .service-card {
  display: flex;
  min-height: 12.2rem;
  flex-direction: column;
  align-items: flex-start;
  background:
    linear-gradient(180deg, rgba(201, 101, 79, 0.09), transparent 6rem),
    rgba(255, 252, 248, 0.96);
}

html body.theme-pet-groomer .service-card h3 {
  max-width: 18ch;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.05;
  margin-top: 0.55rem;
}

html body.theme-pet-groomer .section-alt::before {
  inset: 1rem 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.12));
}

html body.theme-pet-groomer .care-grid {
  gap: clamp(1.3rem, 3vw, 2rem);
}

html body.theme-pet-groomer .care-stack {
  gap: 0.85rem;
}

html body.theme-pet-groomer .care-card {
  background: rgba(255, 252, 248, 0.98);
}

html body.theme-pet-groomer .reviews-section .container {
  padding: clamp(1.3rem, 3vw, 2.25rem);
  border: 1px solid rgba(255, 250, 245, 0.14);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(201, 101, 79, 0.2), transparent 30%),
    linear-gradient(135deg, #74515d, #4a303b);
  box-shadow: var(--shadow-strong);
}

html body.theme-pet-groomer .reviews-section .section-heading {
  max-width: 52rem;
}

html body.theme-pet-groomer .reviews-section .section-label {
  background: rgba(255, 250, 245, 0.13);
  border-color: rgba(255, 250, 245, 0.14);
  color: #fff4ed;
}

html body.theme-pet-groomer .reviews-section h2 {
  max-width: 21ch;
  color: #fffaf5;
}

html body.theme-pet-groomer .reviews-section p,
html body.theme-pet-groomer .reviews-section strong {
  color: #fffaf5;
}

html body.theme-pet-groomer .reviews-section .section-heading p {
  color: rgba(255, 250, 245, 0.88);
}

html body.theme-pet-groomer .testimonial-card {
  min-height: 8rem;
  padding: clamp(1.05rem, 2vw, 1.35rem);
  border-color: rgba(255, 250, 245, 0.2);
  background: rgba(255, 250, 245, 0.12);
  box-shadow: none;
}

html body.theme-pet-groomer .testimonial-card p {
  color: #fffaf5;
  font-weight: 700;
}

html body.theme-pet-groomer .slider-controls {
  gap: 0.75rem;
  margin-top: 1rem;
}

html body.theme-pet-groomer .slider-arrow {
  min-width: 4.5rem;
  border-color: rgba(255, 250, 245, 0.2);
  border-radius: var(--radius-sm);
  background: #fffaf5;
  color: #4a303b;
}

html body.theme-pet-groomer .slider-dots {
  align-items: center;
}

html body.theme-pet-groomer .slider-dots button {
  width: 0.72rem;
  height: 0.72rem;
  border: 1px solid rgba(255, 250, 245, 0.68);
  background: rgba(255, 250, 245, 0.38);
}

html body.theme-pet-groomer .slider-dots button.active {
  width: 1.9rem;
  background: #fffaf5;
}

html body.theme-pet-groomer .faq-grid {
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}

html body.theme-pet-groomer .faq-list {
  gap: 0.8rem;
}

html body.theme-pet-groomer .faq-item {
  overflow: hidden;
  background: rgba(255, 252, 248, 0.98);
}

html body.theme-pet-groomer .faq-question {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.45rem;
  padding: 1rem 2.6rem 1rem 1rem;
  line-height: 1.25;
}

html body.theme-pet-groomer .faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 1.35rem;
  height: 1.35rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  text-align: center;
  line-height: 1.28rem;
}

html body.theme-pet-groomer .faq-question[aria-expanded="true"]::after {
  content: "-";
}

html body.theme-pet-groomer .faq-answer {
  padding: 0 1rem 1rem;
}

html body.theme-pet-groomer .faq-answer p {
  margin-bottom: 0;
}

html body.theme-pet-groomer .book-section {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

html body.theme-pet-groomer .book-grid {
  gap: clamp(1rem, 3vw, 1.25rem);
  align-items: start;
}

html body.theme-pet-groomer .book-copy {
  background:
    linear-gradient(180deg, rgba(201, 101, 79, 0.08), transparent 8rem),
    rgba(255, 252, 248, 0.98);
}

html body.theme-pet-groomer .book-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.3rem, 3.55vw, 3.5rem);
  line-height: 1.03;
}

html body.theme-pet-groomer .book-copy a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

html body.theme-pet-groomer .book-form {
  background: rgba(255, 252, 248, 0.98);
}

html body.theme-pet-groomer label {
  color: var(--text);
  font-weight: 800;
}

html body.theme-pet-groomer input,
html body.theme-pet-groomer select,
html body.theme-pet-groomer textarea {
  min-height: 3.35rem;
  border-color: rgba(69, 48, 58, 0.14);
  border-radius: var(--radius-sm);
  background: #fffefd;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

html body.theme-pet-groomer textarea {
  min-height: 9.5rem;
}

html body.theme-pet-groomer input:focus,
html body.theme-pet-groomer select:focus,
html body.theme-pet-groomer textarea:focus {
  border-color: rgba(168, 79, 61, 0.58);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(201, 101, 79, 0.16);
}

html body.theme-pet-groomer .form-note {
  color: #6d5260;
  font-size: 0.94rem;
}

html body.theme-pet-groomer .form-trust {
  border-color: rgba(69, 48, 58, 0.13);
  background: #fffaf5;
}

html body.theme-pet-groomer .form-message {
  min-height: 1.5rem;
  margin-top: 0.8rem;
  font-weight: 800;
}

html body.theme-pet-groomer .form-message.success,
html body.theme-pet-groomer .form-message.error {
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
}

html body.theme-pet-groomer .form-message.success {
  background: rgba(83, 129, 103, 0.14);
  color: #315b47;
}

html body.theme-pet-groomer .form-message.error {
  background: rgba(169, 54, 34, 0.1);
  color: #923a27;
}

html body.theme-pet-groomer .site-footer {
  padding: 2rem 0 2.75rem;
}

@media (min-width: 760px) {
  html body.theme-pet-groomer .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.95fr);
  }

  html body.theme-pet-groomer .care-grid {
    grid-template-columns: 1fr;
  }

  html body.theme-pet-groomer .care-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  html body.theme-pet-groomer .book-grid,
  html body.theme-pet-groomer .faq-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
  }
}

@media (min-width: 900px) {
  html body.theme-pet-groomer .nav-toggle {
    display: none;
  }

  html body.theme-pet-groomer .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
  }

  html body.theme-pet-groomer .split-heading {
    grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.82fr);
  }

  html body.theme-pet-groomer .service-grid,
  html body.theme-pet-groomer .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  html body.theme-pet-groomer .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.88fr);
  }
}

@media (max-width: 899px) {
  html body.theme-pet-groomer .header-row {
    flex-wrap: wrap;
  }

  html body.theme-pet-groomer .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  html body.theme-pet-groomer .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  html body.theme-pet-groomer .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.2rem 0 0.5rem;
  }

  html body.theme-pet-groomer .site-nav.open {
    display: flex;
  }

  html body.theme-pet-groomer .site-nav a {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(69, 48, 58, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 252, 248, 0.78);
  }

  html body.theme-pet-groomer .back-presgro {
    display: none;
  }

  html body.theme-pet-groomer .split-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 759px) {
  html body.theme-pet-groomer main > .hero {
    padding-top: 1.6rem;
  }

  html body.theme-pet-groomer .container {
    width: min(calc(100% - 1.1rem), var(--max));
  }

  html body.theme-pet-groomer h1 {
    max-width: 10.8ch;
    font-size: clamp(2.55rem, 13vw, 3.55rem);
  }

  html body.theme-pet-groomer .hero-lead {
    max-width: 100%;
  }

  html body.theme-pet-groomer .profile-card h2,
  html body.theme-pet-groomer .section-heading h2,
  html body.theme-pet-groomer .book-copy h2 {
    max-width: 100%;
    font-size: clamp(2.1rem, 10.5vw, 3rem);
    line-height: 1.06;
  }

  html body.theme-pet-groomer .dog-card {
    height: min(27rem, 108vw);
  }

  html body.theme-pet-groomer .dog-card-note {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.85rem;
  }

  html body.theme-pet-groomer .section {
    padding-top: 3rem;
  }

  html body.theme-pet-groomer .service-card,
  html body.theme-pet-groomer .trust-grid article,
  html body.theme-pet-groomer .care-card,
  html body.theme-pet-groomer .testimonial-card,
  html body.theme-pet-groomer .faq-item,
  html body.theme-pet-groomer .book-copy,
  html body.theme-pet-groomer .book-form,
  html body.theme-pet-groomer .profile-card {
    padding: 1rem;
  }

  html body.theme-pet-groomer .service-card {
    min-height: 0;
  }

  html body.theme-pet-groomer .slider-controls {
    flex-wrap: wrap;
  }

  html body.theme-pet-groomer .slider-arrow {
    flex: 1 1 6rem;
  }

  html body.theme-pet-groomer .slider-dots {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  html body.theme-pet-groomer .footer-row {
    align-items: flex-start;
  }
}
