:root {
  --paper: #fbfaf6;
  --paper-2: #f4f0e8;
  --card: rgba(255, 255, 255, 0.78);
  --line: rgba(126, 119, 93, 0.22);
  --line-strong: rgba(126, 119, 93, 0.35);
  --text: #34312e;
  --muted: #79736b;
  --olive: #898d50;
  --olive-dark: #747840;
  --gold: #caa66d;
  --shadow: 0 18px 55px rgba(87, 74, 55, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - clamp(32px, 7vw, 120px)));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(195, 179, 145, 0.12), transparent 34vw),
    linear-gradient(180deg, #fffdfa 0, var(--paper) 42%, #f7f3eb 100%);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.45;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
img { max-width: 100%; }
svg { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: var(--container); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 251, 247, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(129, 122, 96, 0.08);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #8b8065;
}
.brand-mark svg { width: 44px; height: 44px; stroke-width: 1.35; }
.brand-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.035em;
  font-weight: 500;
}
.brand-copy small { display: block; color: var(--muted); margin-top: 3px; font-size: 12px; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.1vw, 34px); color: #504d48; font-size: 13px; }
.main-nav a { transition: color .18s ease; }
.main-nav a:hover { color: var(--olive); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.phone-link { font-weight: 600; font-size: 14px; letter-spacing: 0.01em; white-space: nowrap; }
.icon-link { width: 30px; height: 30px; display: grid; place-items: center; color: #54514b; }
.icon-link svg { width: 23px; height: 23px; }
.menu-toggle { display: none; width: 44px; height: 38px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.62); }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--text); }
.mobile-nav { display: none; }

.btn {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 650;
  font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary, .btn-small { background: var(--olive); color: #fff; box-shadow: 0 16px 34px rgba(112, 116, 61, 0.18); }
.btn-primary:hover, .btn-small:hover { background: var(--olive-dark); }
.btn-secondary { background: var(--olive); color: #fff; min-height: 42px; padding: 0 23px; }
.btn-outline { background: transparent; color: var(--olive-dark); border: 1px solid var(--line-strong); }
.btn-small { min-height: 42px; padding: 0 20px; font-size: 13px; }
.btn-wide { width: 100%; }
.btn svg { width: 18px; height: 18px; }

.hero {
  position: relative;
  min-height: clamp(470px, 45vw, 640px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(253, 251, 247, 0.98) 0 42%, rgba(253,251,247,0.42) 63%, rgba(253,251,247,0) 100%),
    radial-gradient(circle at 68% 36%, rgba(219, 203, 180, 0.24), transparent 30vw);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(251,250,246,0), var(--paper));
  pointer-events: none;
}
.hero-media {
  position: absolute;
  top: clamp(18px, 3.4vw, 46px);
  right: max(0px, calc((100vw - 1360px) / 2));
  width: min(56vw, 760px);
  height: min(43vw, 540px);
  min-width: 520px;
  max-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(1.02) contrast(1.01);
}
.hero-inner { position: relative; z-index: 2; display: flex; align-items: center; min-height: inherit; }
.hero-copy { width: min(535px, 56%); padding: 50px 0 42px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 8px 16px 8px 18px;
  border-radius: 999px;
  background: #efeadf;
  color: #686358;
  font-size: 13px;
  font-weight: 600;
}
.eyebrow span { color: #b9a579; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: .99;
  letter-spacing: -0.035em;
  font-weight: 400;
  color: #34312e;
}
h1 em { color: var(--olive); font-style: normal; }
.hero-lead {
  max-width: 430px;
  margin: 0 0 34px;
  color: #5f5a53;
  font-size: clamp(16px, 1.25vw, 18px);
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.gift-note {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 0;
  background: transparent;
  color: #5f5a53;
  text-align: left;
  padding: 0;
  font-size: 14px;
}
.gift-note svg { width: 37px; height: 37px; color: #a9905a; stroke-width: 1.3; }

.section { padding: clamp(28px, 4vw, 62px) 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.section-head.compact { margin-bottom: 18px; }
h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 38px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 10px;
}
h2 svg { width: .76em; height: .76em; color: #b79a67; fill: #b79a67; stroke: none; }
.link-button {
  border: 0;
  background: transparent;
  color: #514e48;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.link-button:hover { color: var(--olive); }

.breeds { padding-top: 28px; }
.breed-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 17px; }
.breed-card {
  position: relative;
  min-height: 186px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 18px 38px rgba(79, 66, 47, .055);
  padding: 27px 16px 17px 20px;
}
.breed-card h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 18px; line-height: 1.08; font-weight: 600; }
.breed-card p { margin: 0; color: #68635d; font-size: 12px; line-height: 1.55; }
.breed-card b { position: absolute; left: 20px; bottom: 21px; font-size: 12px; }
.breed-card img {
  position: absolute;
  right: -4px;
  bottom: 0;
  width: min(46%, 110px);
  max-height: 150px;
  object-fit: contain;
  object-position: right bottom;
}
.breed-card button {
  position: absolute;
  right: 48px;
  bottom: 19px;
  width: 31px;
  height: 31px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8e4d5;
  color: var(--olive);
  z-index: 2;
}
.breed-card button svg { width: 16px; height: 16px; }

.price-wrap { padding-top: 0; }
.price-card {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) 1fr 1fr;
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  border: 1px solid rgba(131, 123, 97, .14);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 38px);
}
.price-intro h2 { margin-bottom: 24px; }
.price-list { display: grid; gap: 19px; }
.price-row { display: grid; grid-template-columns: max-content 1fr max-content; align-items: center; gap: 13px; color: #5b5751; font-size: 13px; white-space: nowrap; }
.price-row span { display: inline-flex; align-items: center; gap: 12px; }
.price-row svg { width: 24px; height: 24px; color: #b5a375; stroke-width: 1.2; }
.price-row i { min-width: 38px; height: 1px; border-bottom: 1px dotted rgba(86,80,68,.32); }
.price-row b { color: var(--text); font-size: 13px; }

.split-section { padding-top: 0; }
.split-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(30px, 4vw, 56px); align-items: start; }
.before-image {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #eee7dc;
  box-shadow: 0 16px 42px rgba(71, 61, 45, .08);
}
.before-image img { width: 100%; height: auto; display: block; }
.slider-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #766f62;
  font-size: 21px;
  letter-spacing: 2px;
  box-shadow: 0 10px 30px rgba(70,60,42,.12);
}
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.dots span { width: 7px; height: 7px; border-radius: 50%; background: #d4cdbc; }
.dots .active { background: var(--olive); }
.booking-panel h2 { margin-bottom: 18px; }
.calendar-form { display: grid; grid-template-columns: .96fr 1.04fr; gap: 22px; }
.calendar-card, .inline-form {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 15px 38px rgba(79, 66, 47, .055);
}
.calendar-card { padding: 24px; }
.calendar-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.calendar-top button { border: 0; background: transparent; width: 28px; height: 28px; font-size: 24px; color: #81796c; }
.calendar-top strong { font-family: var(--serif); font-size: 19px; font-weight: 500; }
.weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 9px; text-align: center; }
.weekdays { color: #767067; font-size: 12px; margin-bottom: 10px; }
.calendar-days button, .calendar-days span {
  width: 26px;
  height: 26px;
  min-width: 0;
  display: grid;
  place-items: center;
  justify-self: center;
  align-self: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  color: #7b756d;
  font-size: 12px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.calendar-days button:hover { background: #eee8d9; }
.calendar-days .selected { background: var(--olive); color: #fff; }
.inline-form { padding: 18px; display: grid; gap: 10px; }
.inline-form label, .modal-form label { display: grid; gap: 5px; }
.inline-form label span, .modal-form label span { color: #827c73; font-size: 11px; }
input, select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(120,112,91,.18);
  border-radius: 9px;
  background: #fff;
  padding: 0 13px;
  color: var(--text);
  outline: none;
}
input:focus, select:focus { border-color: rgba(137,141,80,.55); box-shadow: 0 0 0 3px rgba(137,141,80,.12); }
input[data-calendar-date] {
  cursor: pointer;
  caret-color: transparent;
  padding-right: 34px;
  font-size: 14px;
  background:
    linear-gradient(135deg, transparent calc(100% - 31px), rgba(244,240,232,.72) calc(100% - 31px)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='%23534f48' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18M5 4h14a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E") no-repeat calc(100% - 8px) 50% / 17px,
    #fff;
}
.date-popover {
  position: fixed;
  z-index: 150;
  display: none;
  padding: 14px;
  border: 1px solid rgba(131, 123, 97, .18);
  border-radius: 22px;
  background: rgba(255,253,249,.96);
  box-shadow: 0 26px 70px rgba(67, 55, 37, .22);
  backdrop-filter: blur(18px);
}
.date-popover.open { display: block; }
.date-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.date-popover-head strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.date-popover-head button,
.date-popover-foot button {
  border: 0;
  background: #f0eadf;
  color: var(--olive-dark);
  font-weight: 800;
}
.date-popover-head button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
}
.date-popover-week,
.date-popover-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}
.date-popover-week {
  margin-bottom: 7px;
  color: #958c80;
  font-size: 11px;
  font-weight: 700;
}
.date-popover-days button,
.date-popover-days span {
  min-width: 0;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 11px;
  padding: 0;
  background: transparent;
  color: #514c45;
  font-size: 13px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.date-popover-days button:hover {
  background: #efe8d9;
}
.date-popover-days button.today:not(.selected) {
  box-shadow: inset 0 0 0 1px rgba(137,141,80,.34);
  color: var(--olive-dark);
}
.date-popover-days button.selected {
  background: var(--olive);
  color: #fff;
  box-shadow: 0 10px 22px rgba(113, 118, 63, .2);
}
.date-popover-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}
.date-popover-foot button {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
}
.form-row { display: grid; grid-template-columns: minmax(136px, 1.15fr) minmax(92px, .85fr); gap: 10px; }
.form-note { display: flex; align-items: center; gap: 7px; margin: 0; color: #7c766c; font-size: 11px; }
.form-note::before { content: "♡"; color: var(--olive); }

.masters-promo { padding-top: 0; }
.mp-grid { display: grid; grid-template-columns: 1.28fr .9fr; gap: 24px; }
.masters-card, .promo-card, .extra-card {
  border: 1px solid rgba(131, 123, 97, .14);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  padding: 24px;
}
.masters-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.masters-list article {
  position: relative;
  min-height: 133px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 13px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  padding: 11px 10px 12px;
}
.masters-list img { width: 80px; height: 108px; object-fit: cover; object-position: left bottom; align-self: end; }
.masters-list h3 { margin: 0 0 8px; font-size: 15px; line-height: 1.08; }
.masters-list p { margin: 0; color: #746f67; font-size: 10.5px; line-height: 1.35; }
.masters-list article > svg { position: absolute; right: 10px; bottom: 9px; width: 14px; height: 14px; color: #c4ab76; fill: #c4ab76; stroke: none; }
.promo-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 144px;
  gap: 16px;
  background:
    radial-gradient(circle at 86% 42%, rgba(137,141,80,.25), transparent 110px),
    linear-gradient(135deg, #efe7d2, #fbf8ee 68%);
}
.promo-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 220px;
  height: 190px;
  opacity: .45;
  border-radius: 55% 45% 0 0;
  background: repeating-radial-gradient(ellipse at 25% 85%, transparent 0 13px, rgba(138,126,87,.27) 14px 15px);
}
.promo-title { margin: 0 0 7px; color: var(--olive); font-family: var(--serif); font-size: clamp(26px, 2.5vw, 34px); line-height: 1; }
.promo-card p:not(.promo-title) { margin: 0 0 16px; color: #6b655b; }
ul { padding: 0; margin: 0 0 22px; list-style: none; }
.promo-card li { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; color: #565149; }
.promo-card li svg { width: 16px; color: var(--olive); }
.discount-badge {
  align-self: center;
  justify-self: center;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: radial-gradient(circle, #aeb076, #8d9052);
  box-shadow: inset 0 0 0 11px rgba(255,255,255,.42), 0 20px 40px rgba(99,88,52,.18);
  font-family: var(--serif);
  line-height: .88;
  z-index: 1;
}
.discount-badge b { font-size: 44px; font-weight: 400; }

.extra-care { padding-top: 0; }
.extra-card { padding: 25px 28px; }
.extra-card h2 { margin-bottom: 20px; }
.extra-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.extra-grid button {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #504c45;
  text-align: left;
}
.extra-grid button:last-child { border-right: 0; }
.extra-grid svg { width: 34px; height: 34px; color: #a98f5f; stroke-width: 1.15; flex: 0 0 auto; }
.extra-grid span { display: grid; gap: 2px; font-size: 13px; }
.extra-grid b { color: #6d675d; font-size: 11px; font-weight: 600; }

.reviews { padding-top: 0; }
.reviews-shell { position: relative; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 140px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 32px rgba(78, 65, 45, .05);
  padding: 18px;
}
.review-card img { width: 92px; height: 92px; object-fit: cover; object-position: left center; border-radius: 50%; }
.review-card h3 { margin: 0 0 2px; font-size: 15px; }
.stars { margin: 0 0 6px; color: #d0a15c; letter-spacing: 2px; font-size: 13px; }
.review-card p:last-child { margin: 0; color: #625d55; font-size: 12.5px; line-height: 1.45; }
.round-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  color: #a18b5d;
  font-size: 30px;
  z-index: 2;
}
.round-control:first-child { left: max(10px, calc((100vw - 1325px) / 2)); }
.round-control:last-child { right: max(10px, calc((100vw - 1325px) / 2)); }

.site-footer { margin-top: 20px; border-top: 1px solid rgba(125, 115, 88, .14); background: #eee9df; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .75fr .95fr .95fr minmax(240px, .95fr); gap: 42px; padding: 48px 0 36px; align-items: start; }
.footer-brand p, .footer-grid p { color: #6c665e; font-size: 13px; }
.footer-grid h3 { margin: 0 0 16px; font-size: 14px; }
.footer-grid a, .footer-grid button:not(.btn) { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; border: 0; padding: 0; background: transparent; color: #625d56; text-align: left; font-size: 13px; }
.footer-grid svg { width: 16px; height: 16px; }
.socials { display: flex; gap: 16px; align-items: center; margin-top: 24px; }
.socials a { margin: 0; font-weight: 700; color: #77725f; }
.footer-photo { align-self: stretch; min-height: 210px; overflow: hidden; border-radius: 0; margin: -48px 0 -36px; }
.footer-photo img { width: 100%; height: 100%; object-fit: cover; }
.footer-bottom { min-height: 56px; border-top: 1px solid rgba(125, 115, 88, .14); display: flex; justify-content: space-between; align-items: center; gap: 18px; color: #716b63; font-size: 12px; }
.footer-bottom b { color: #a58958; }
.footer-policy-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--olive-dark);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-policy-link:hover { color: var(--olive); }

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-root.active { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(34, 31, 27, .42); backdrop-filter: blur(10px); }
.modal-card {
  position: relative;
  z-index: 1;
  width: min(840px, calc(100vw - 40px));
  max-height: min(82vh, 860px);
  overflow: auto;
  border-radius: 28px;
  background: #fffdfa;
  box-shadow: 0 35px 110px rgba(40, 33, 22, .24);
  padding: clamp(28px, 4vw, 44px);
}
.modal-card.gallery { width: min(1120px, calc(100vw - 40px)); }
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  margin: -12px -12px 8px 16px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #6c665e;
  font-size: 26px;
  z-index: 3;
}
.modal-content h2 { margin: 0 0 12px; }
.modal-lead { color: #6b665f; margin-bottom: 22px; font-size: 16px; }
.modal-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.modal-form .btn { grid-column: 1 / -1; margin-top: 6px; }
.modal-price-list { display: grid; gap: 12px; margin: 24px 0; }
.modal-price-list p { display: grid; grid-template-columns: 1fr max-content; gap: 20px; align-items: center; margin: 0; padding-bottom: 12px; border-bottom: 1px dotted rgba(87,80,65,.25); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid img { width: 100%; height: 210px; object-fit: cover; border-radius: 18px; background: #f0eadf; border: 1px solid var(--line); }
.gallery-grid img:first-child { grid-column: span 2; }
.modal-masters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.modal-masters article { padding: 16px; border: 1px solid var(--line); border-radius: 20px; background: rgba(249,246,239,.72); }
.modal-masters img { width: 100%; height: 150px; object-fit: cover; object-position: left bottom; border-radius: 14px; margin-bottom: 12px; }
.modal-masters h3 { margin: 0 0 7px; font-size: 16px; }
.modal-masters p, .modal-reviews p { color: #655f57; margin: 0; }
.modal-reviews { display: grid; gap: 14px; }
.modal-reviews p { padding: 16px; border-radius: 16px; background: #f7f2e8; }
.modal-reviews b, .modal-reviews span { display: block; }
.modal-reviews span { color: #d0a15c; letter-spacing: 2px; }
.compact-list { margin-bottom: 0; }
.policy-text {
  display: grid;
  gap: 12px;
  color: #5f5a53;
}
.policy-text h3 {
  margin: 8px 0 0;
  font-size: 16px;
  color: var(--text);
}
.policy-text p,
.policy-text ul {
  margin: 0;
}
.policy-text ul {
  display: grid;
  gap: 7px;
  padding-left: 0;
}
.policy-text li {
  position: relative;
  padding-left: 20px;
}
.policy-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive);
}
.policy-text a {
  color: var(--olive-dark);
  font-weight: 700;
}

@media (max-width: 1180px) {
  :root { --container: min(100% - 44px, 980px); }
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 14px 24px;
    justify-content: center;
    padding: 0 22px 20px;
    font-size: 14px;
  }
  .mobile-nav[hidden] { display: none; }
  .hero-media { width: min(61vw, 650px); min-width: 470px; }
  .breed-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card { grid-template-columns: 1fr 1fr; }
  .price-intro { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
  .price-intro h2 { margin-bottom: 0; }
  .split-grid, .mp-grid { grid-template-columns: 1fr; }
  .calendar-form { grid-template-columns: 1fr 1fr; }
  .extra-grid { grid-template-columns: repeat(3, 1fr); }
  .extra-grid button:nth-child(3n) { border-right: 0; }
  .extra-grid button:nth-child(n+4) { border-top: 1px solid var(--line); }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 118px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-photo { min-height: 220px; margin: 0; border-radius: 22px; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 28px); }
  body { font-size: 14px; }
  .site-header { position: sticky; }
  .header-inner { height: 66px; gap: 12px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark svg { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 10px; }
  .phone-link, .icon-link, .header-actions .btn-small { display: none; }
  .mobile-nav { grid-template-columns: repeat(2, 1fr); justify-items: center; }
  .hero { min-height: 690px; align-items: start; background: linear-gradient(180deg, rgba(253,251,247,.98) 0 54%, rgba(253,251,247,.28) 80%, var(--paper)); }
  .hero-media {
    top: auto;
    right: -80px;
    bottom: 12px;
    width: 620px;
    min-width: 0;
    height: 360px;
    opacity: .96;
  }
  .hero-copy { width: 100%; padding: 36px 0 0; }
  .eyebrow { font-size: 12px; margin-bottom: 18px; }
  h1 { font-size: clamp(42px, 13vw, 58px); max-width: 95%; }
  .hero-lead { max-width: 330px; font-size: 15px; }
  .hero-actions { gap: 18px; align-items: flex-start; flex-direction: column; }
  .section { padding: 34px 0; }
  .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 18px; }
  .section-head.compact { flex-direction: row; align-items: center; }
  .section-head.compact .link-button { font-size: 0; }
  .section-head.compact .link-button span { font-size: 18px; }
  .breed-grid { grid-template-columns: 1fr; }
  .breed-card { min-height: 172px; }
  .breed-card img { width: 118px; max-height: 148px; right: 15px; }
  .breed-card button { right: 96px; }
  .price-card { grid-template-columns: 1fr; padding: 24px 18px; gap: 22px; }
  .price-intro { display: block; }
  .price-intro h2 { margin-bottom: 18px; }
  .price-row { grid-template-columns: 1fr max-content; white-space: normal; }
  .price-row i { display: none; }
  .calendar-form { grid-template-columns: 1fr; }
  .calendar-card { padding: 18px; }
  .masters-card, .promo-card, .extra-card { padding: 18px; }
  .masters-list { grid-template-columns: 1fr; }
  .masters-list article { grid-template-columns: 90px 1fr; }
  .promo-card { grid-template-columns: 1fr; }
  .discount-badge { position: absolute; right: 14px; top: 18px; width: 92px; height: 92px; font-size: 13px; }
  .discount-badge b { font-size: 30px; }
  .promo-card div:first-child { padding-right: 86px; }
  .extra-grid { grid-template-columns: 1fr 1fr; }
  .extra-grid button { justify-content: flex-start; padding: 14px 5px; min-height: 76px; }
  .extra-grid button:nth-child(n) { border-right: 0; border-top: 1px solid var(--line); }
  .extra-grid button:nth-child(1), .extra-grid button:nth-child(2) { border-top: 0; }
  .extra-grid button:nth-child(odd) { border-right: 1px solid var(--line); }
  .extra-grid svg { width: 29px; height: 29px; }
  .reviews-grid { width: calc(100vw - 54px); }
  .review-card { grid-template-columns: 74px 1fr; gap: 12px; padding: 14px; }
  .review-card img { width: 70px; height: 70px; }
  .round-control { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; padding: 36px 0 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding: 18px 0; }
  .modal-card { padding: 26px 18px; border-radius: 22px; }
  .modal-form { grid-template-columns: 1fr; }
  .gallery-grid, .modal-masters { grid-template-columns: 1fr; }
  .gallery-grid img, .gallery-grid img:first-child { grid-column: auto; height: 210px; }
}

@media (max-width: 380px) {
  .hero-media { right: -110px; width: 590px; height: 335px; }
  .extra-grid { grid-template-columns: 1fr; }
  .extra-grid button:nth-child(n) { border-right: 0; border-top: 1px solid var(--line); }
  .extra-grid button:first-child { border-top: 0; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .price-card { grid-template-columns: 1fr; }
  .price-intro { display: block; min-width: 0; }
  .price-intro h2 { margin-bottom: 18px; }
  .price-list { min-width: 0; }
  .price-row { white-space: normal; }
  .calendar-form { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero { min-height: 860px; }
  .hero-media { right: -190px; bottom: 0; width: 620px; height: 360px; }
}
@media (max-width: 380px) {
  .hero { min-height: 850px; }
  .hero-media { right: -205px; bottom: -4px; width: 600px; height: 340px; }
}

@media (max-width: 760px) {
  .hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 76%;
    z-index: 1;
    background: linear-gradient(180deg, var(--paper) 0%, rgba(251,250,246,.98) 58%, rgba(251,250,246,.9) 72%, rgba(251,250,246,0) 100%);
    pointer-events: none;
  }
  .hero-media { z-index: 0; }
}

@media (max-width: 760px) {
  .hero-media { right: -250px; }
}
@media (max-width: 380px) {
  .hero-media { right: -235px; }
}

@media (max-width: 760px) {
  .hero { min-height: 760px; }
  .hero-media {
    right: -170px;
    bottom: -18px;
    width: 520px;
    height: 315px;
    opacity: .9;
  }
}
@media (max-width: 380px) {
  .hero { min-height: 748px; }
  .hero-media { right: -165px; width: 500px; height: 300px; }
}

@media (max-width: 760px) {
  .hero { min-height: 840px; }
  .hero-media { right: -10px; bottom: -18px; width: 500px; height: 315px; }
}
@media (max-width: 380px) {
  .hero { min-height: 820px; }
  .hero-media { right: -18px; width: 470px; height: 300px; }
}

/* 2026-04 fix: blend HQ photos into cards so they read like cutout PNGs */
.breed-card {
  isolation: isolate;
  background: linear-gradient(135deg, rgba(255,255,255,.92) 0%, rgba(250,248,242,.92) 48%, #f2ece3 100%);
}
.breed-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.5), rgba(239,233,222,.08) 68%, transparent 72%);
  z-index: 0;
}
.breed-card > div, .breed-card button { z-index: 2; }
.breed-card img {
  z-index: 1;
  object-position: center bottom;
  -webkit-mask-image: radial-gradient(ellipse 64% 72% at 54% 55%, #000 0 58%, rgba(0,0,0,.85) 68%, transparent 92%);
  mask-image: radial-gradient(ellipse 64% 72% at 54% 55%, #000 0 58%, rgba(0,0,0,.85) 68%, transparent 92%);
  filter: drop-shadow(0 12px 18px rgba(98,82,59,.12));
}

.before-image { display: none; }
.before-slider {
  --pos: 50;
  position: relative;
  width: 100%;
  aspect-ratio: 776 / 736;
  border: 1px solid rgba(131, 123, 97, .14);
  border-radius: 24px;
  overflow: hidden;
  background: #f1ece3;
  box-shadow: 0 16px 42px rgba(71, 61, 45, .08);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
.ba-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  background: #f1ece3;
  pointer-events: none;
  user-select: none;
}
.before-slider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--pos) * 1%);
  width: 3px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 0 1px rgba(146,136,105,.1);
  z-index: 3;
}
.before-slider .slider-handle {
  position: absolute;
  left: calc(var(--pos) * 1%);
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  border: 0;
  letter-spacing: 2px;
  cursor: ew-resize;
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
}
.ba-label {
  position: absolute;
  bottom: 14px;
  z-index: 4;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #70685c;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 8px 20px rgba(76,64,45,.08);
}
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; }
.calendar-days button { transition: background .16s ease, color .16s ease, transform .16s ease; }
.calendar-days button:active { transform: scale(.92); }
.calendar-days button[disabled] { opacity: .28; cursor: default; }
.calendar-days .today:not(.selected) { background: #efe8d9; color: var(--olive-dark); }

.mp-grid { align-items: start; }
.masters-card { align-self: start; min-height: 0; padding-bottom: 22px; }
.promo-card { min-height: 250px; }
.masters-list article { min-height: 138px; grid-template-columns: 94px 1fr; align-items: center; }
.masters-list img {
  width: 92px;
  height: 116px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center 32%;
  -webkit-mask-image: radial-gradient(ellipse 78% 82% at center, #000 0 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 82% at center, #000 0 72%, transparent 100%);
}
@media (max-width: 1180px) {
  .promo-card { min-height: 0; }
}

.before-slider .ba-img { object-fit: contain; background: #f1ece3; }
.gallery-grid img:first-child { object-fit: contain; background: #f1ece3; }

/* 2026-04 hero update: use the new wide poodle photo as a soft editorial background */
.hero {
  min-height: clamp(560px, 46vw, 690px);
  background: #fdfbf7;
}
.hero-media {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  max-height: none !important;
  display: block;
  overflow: hidden;
  opacity: 1;
  z-index: 0;
}
.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-media::before {
  background:
    linear-gradient(90deg, rgba(253,251,247,.99) 0%, rgba(253,251,247,.94) 33%, rgba(253,251,247,.56) 56%, rgba(253,251,247,.12) 78%, rgba(253,251,247,0) 100%),
    radial-gradient(circle at 70% 43%, rgba(225,204,176,.16), transparent 32%);
}
.hero-media::after {
  background: linear-gradient(180deg, rgba(253,251,247,0) 68%, #fdfbf7 100%);
}
.hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 1672px;
  object-fit: cover;
  object-position: center right;
  filter: saturate(1.02) contrast(1.01);
}
.hero-inner { z-index: 2; }

@media (max-width: 760px) {
  .hero {
    min-height: 790px;
    background: #fdfbf7;
  }
  .hero::before { content: none; }
  .hero-inner {
    align-items: flex-start;
    min-height: 0;
  }
  .hero-media {
    top: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 48% !important;
  }
  .hero-media::before {
    background:
      linear-gradient(180deg, #fdfbf7 0%, rgba(253,251,247,.96) 22%, rgba(253,251,247,.42) 50%, rgba(253,251,247,0) 72%),
      linear-gradient(90deg, rgba(253,251,247,.96) 0%, rgba(253,251,247,.62) 32%, rgba(253,251,247,.08) 68%, rgba(253,251,247,0) 100%);
  }
  .hero-media img {
    object-position: 71% center;
    transform: translateY(30px);
  }
  .hero-copy { padding-top: 34px; }
}

@media (max-width: 380px) {
  .hero { min-height: 760px; }
  .hero-media { height: 47% !important; }
  .hero-media img { object-position: 69% center; }
}

/* 2026-04 ref pass: keep desktop proportions close to the supplied reference */
@media (min-width: 761px) {
  .hero {
    min-height: clamp(420px, 32vw, 500px);
  }
  .hero-copy {
    width: min(660px, 56%);
    padding: 42px 0 34px;
  }
  .hero-media {
    top: 0 !important;
    right: max(0px, calc((100vw - 1180px) / 2 - 18px)) !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(62vw, 900px) !important;
    height: 100% !important;
    min-width: 0 !important;
    max-height: none !important;
  }
  h1 {
    max-width: 650px;
    margin-bottom: 20px;
    font-size: clamp(44px, 4.05vw, 58px);
    line-height: 1.07;
    letter-spacing: -0.04em;
  }
  .hero-lead {
    max-width: 480px;
    margin-bottom: 30px;
  }
  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(253,251,247,1) 0%, rgba(253,251,247,.95) 28%, rgba(253,251,247,.55) 49%, rgba(253,251,247,.08) 70%, rgba(253,251,247,0) 100%),
      radial-gradient(circle at 72% 42%, rgba(225,204,176,.12), transparent 30%);
  }
  .hero-media img {
    position: absolute;
    inset: 0 0 auto auto;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: right center;
  }

  .promo-card {
    min-height: 218px;
    grid-template-columns: minmax(0, 1fr) 160px;
    align-items: center;
  }
  .discount-badge {
    width: 132px;
    height: 132px;
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 3px;
    line-height: 1;
  }
  .discount-badge b {
    display: block;
    margin-top: 5px;
    line-height: .82;
  }
}

/* classic before/after slider: two full-frame images, top layer is clipped by the handle */
.before-slider .ba-img {
  object-fit: cover;
  background: #f1ece3;
}
.before-slider .ba-after {
  z-index: 1;
  object-position: center 52%;
}
.before-slider .ba-before {
  z-index: 2;
  object-position: center 52%;
  clip-path: inset(0 calc(100% - (var(--pos) * 1%)) 0 0);
}
