:root {
  --ink: #202321;
  --muted: #66706b;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --sage: #8ea494;
  --sage-dark: #4f6558;
  --coral: #e58d78;
  --blue: #315d72;
  --line: rgba(32, 35, 33, 0.12);
  --shadow: 0 22px 70px rgba(31, 40, 35, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  min-height: 62px;
  padding: 8px 10px 8px 14px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 44px rgba(40, 49, 44, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-action,
.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.header-action,
.primary-btn {
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: #dfe8df;
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
  opacity: 0.45;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 34, 31, 0.7) 0%, rgba(25, 34, 31, 0.4) 38%, rgba(25, 34, 31, 0.03) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0) 36%, rgba(251, 250, 246, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(140px, 20vh, 210px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1060px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-strip div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong {
  display: block;
  font-size: 26px;
}

.quick-strip span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.section h2 {
  color: var(--ink);
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.04;
}

.compact {
  display: block;
}

.breed-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tab,
.slot-row button,
.calendar-grid button,
.calendar-head button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab {
  min-height: 42px;
  padding: 0 16px;
}

.tab.is-active,
.slot-row .is-picked,
.calendar-grid .is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

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

.service-card,
.price-card,
.calendar-card,
.booking-form,
.loyalty,
.care-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 46px rgba(34, 42, 38, 0.07);
}

.service-card {
  min-height: 235px;
  overflow: hidden;
  padding: 0 24px 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-photo {
  width: calc(100% + 48px);
  height: auto;
  margin: 0 -24px 20px;
  filter: saturate(0.94) contrast(0.98);
}

.service-card.is-muted {
  opacity: 0.42;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 101, 88, 0.5);
}

.service-icon {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
}

.service-card h3,
.price-card h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.service-card p,
.price-card p,
.before-copy p,
.loyalty p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card strong {
  display: inline-block;
  margin-top: 12px;
}

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

.price-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
}

.price-card.featured {
  background: var(--sage-dark);
  color: #fff;
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 8px;
  background: var(--coral);
  color: #2a211e;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 22px 0;
  font-size: 32px;
  font-weight: 900;
}

.price-card a {
  font-weight: 900;
  color: var(--blue);
}

.featured a {
  color: #fff;
}

.before-after,
.loyalty-care,
.booking-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.photo-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #d9ded7;
}

.photo-panel img {
  aspect-ratio: 1.45 / 1;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
}

.photo-label {
  position: absolute;
  bottom: 16px;
  min-width: 78px;
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  font-weight: 900;
  text-align: center;
}

.photo-label.left {
  left: 18px;
}

.photo-label.right {
  right: 18px;
}

.before-copy {
  padding-left: 22px;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  font-weight: 800;
}

.booking-layout {
  align-items: stretch;
}

.calendar-card,
.booking-form {
  padding: 24px;
}

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

.calendar-head button {
  width: 42px;
  height: 42px;
  font-size: 24px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-grid button {
  min-height: 116px;
  padding: 14px 10px;
}

.calendar-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.calendar-grid strong {
  font-size: 26px;
}

.calendar-grid .is-today {
  border-color: var(--coral);
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-note {
  display: none;
  margin: 0;
  border-radius: 8px;
  background: rgba(142, 164, 148, 0.18);
  color: var(--sage-dark);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.booking-note.is-visible {
  display: block;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 0 14px;
}

.slot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.slot-row button {
  min-height: 50px;
}

.wide {
  width: 100%;
  min-height: 54px;
}

.masters-content {
  padding: 0;
}

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

.master-list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 5px;
  min-height: 132px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--coral);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.master-list article div {
  display: grid;
  gap: 5px;
}

.master-photo {
  width: 62px;
  height: 76px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.94) contrast(0.98);
}

.master-list span,
.footer span {
  color: var(--muted);
}

.loyalty-care {
  align-items: stretch;
  padding-bottom: 96px;
}

.loyalty,
.care-list {
  padding: 28px;
}

.progress {
  height: 12px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(32, 35, 33, 0.12);
}

.progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--sage-dark), var(--coral));
}

.care-list ul {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.care-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.care-list li:last-child {
  border-bottom: 0;
}

.care-list strong {
  white-space: nowrap;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(16px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
}

.footer div {
  display: grid;
  gap: 4px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero img {
    object-position: 62% center;
  }

  .quick-strip,
  .service-grid,
  .price-grid,
  .before-after,
  .loyalty-care,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: -20px;
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    display: block;
  }

  .before-copy {
    padding-left: 0;
  }

  .master-list {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .calendar-grid button {
    min-height: 88px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 56px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }

  .hero {
    min-height: 710px;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 118px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(25, 34, 31, 0.78), rgba(25, 34, 31, 0.35));
  }

  .section {
    width: calc(100% - 24px);
    padding-top: 72px;
  }

  .section h2 {
    font-size: 32px;
  }

  .calendar-grid,
  .slot-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    display: grid;
  }
}
