:root {
  --cream: #fffaf2;
  --cream-deep: #f8ebda;
  --white: #ffffff;
  --orange: #e96d16;
  --orange-dark: #c65008;
  --brown: #3b190c;
  --brown-soft: #6d3c25;
  --ink: #251a15;
  --muted: #715f55;
  --line: #ead8c8;
  --shadow: 0 20px 55px rgba(89, 45, 20, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
  --paw-cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg fill='%23e96d16'%3E%3Cellipse cx='10' cy='7' rx='3.6' ry='4.8' transform='rotate(-18 10 7)'/%3E%3Cellipse cx='22' cy='7' rx='3.6' ry='4.8' transform='rotate(18 22 7)'/%3E%3Cellipse cx='5.5' cy='15' rx='3.4' ry='4.5' transform='rotate(-30 5.5 15)'/%3E%3Cellipse cx='26.5' cy='15' rx='3.4' ry='4.5' transform='rotate(30 26.5 15)'/%3E%3Cpath d='M16 12.5c-5.4 0-10 5.2-10 10.7 0 3.9 2.8 6.3 5.8 5.1l2.1-.9a5.6 5.6 0 0 1 4.2 0l2.1.9c3 1.2 5.8-1.2 5.8-5.1 0-5.5-4.6-10.7-10-10.7Z'/%3E%3C/g%3E%3C/svg%3E") 16 16, auto;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; background: var(--white); }
body {
  position: relative;
  isolation: isolate;
  margin: 0;
  color: var(--ink);
  background: transparent;
  font-family: "Nunito Sans", Arial, sans-serif;
  line-height: 1.6;
  cursor: var(--paw-cursor);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a, summary, label, select { cursor: var(--paw-cursor); }

@media (hover: hover) and (pointer: fine) {
  html, body, body * { cursor: var(--paw-cursor) !important; }
  .paw-trail-print {
    position: fixed;
    z-index: 99998;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    color: var(--orange);
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
    will-change: transform, opacity;
  }
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .8rem 1rem;
  background: var(--brown);
  color: var(--white);
  border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 92px 0; }
.section-pad-sm { padding: 62px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(234,216,200,.75);
  backdrop-filter: blur(16px);
  transition: transform .3s ease, box-shadow .3s ease;
  will-change: transform;
}
.site-header.header-hidden { transform: translateY(calc(-100% - 2px)); }
.site-header.header-visible { box-shadow: 0 10px 30px rgba(89,45,20,.09); }
.header-inner {
  min-height: 100px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; justify-content: center; text-decoration: none; min-width: 205px; }
.brand img { display: block; }
.brand-lockup img { width: 205px; height: auto; object-fit: contain; object-position: center; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--brown); font: 400 2rem/1 "DM Serif Display", serif; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .67rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 36px);
  align-self: stretch;
}
.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 4px 0;
  color: var(--brown);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  font-size: .94rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.primary-nav a::after { content: ""; position: absolute; left: 0; bottom: 4px; width: 0; height: 2px; background: var(--orange); transition: width .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--brown); font-size: 2rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid var(--orange);
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--orange-dark); border-color: var(--orange-dark); }
.button-secondary { background: transparent; color: var(--brown); border-color: var(--brown-soft); }
.button-secondary:hover { color: var(--white); background: var(--brown); border-color: var(--brown); }
.button-small { min-height: 42px; padding: 10px 16px; font-size: .72rem; }

.hero { position: relative; overflow: hidden; background: transparent; border-bottom: 4px solid var(--orange); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 54px; min-height: 590px; }
.eyebrow { margin: 0 0 10px; color: var(--orange-dark); font-size: .82rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { margin: 0; color: var(--brown); font: 400 clamp(4rem, 7vw, 6.7rem)/.82 "Allura", cursive; letter-spacing: 0; }
.hero h1 em { color: var(--brown); font: inherit; }
.hero-text { max-width: 620px; margin: 24px 0 28px; color: var(--muted); font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 26px; margin: 34px 0 0; padding: 0; list-style: none; }
.trust-list li { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: var(--muted); }
.trust-list i { color: var(--orange); font-size: 1.8rem; }
.trust-list span { display: grid; }
.trust-list strong { color: var(--brown); }
.hero-media { position: relative; display: grid; place-items: center; align-self: center; padding: 34px; }
.hero-photo-circle { width: min(100%, 540px); aspect-ratio: 1; overflow: hidden; border: 7px solid var(--white); border-radius: 50%; background: var(--cream-deep); box-shadow: 0 18px 45px rgba(88,45,22,.16); }
.hero-photo-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center 31%; }
.hero-inspired { position: absolute; right: 2%; bottom: 8%; padding: 14px 23px 10px; border: 2px solid var(--orange); border-radius: 999px; background: var(--cream); color: var(--brown); box-shadow: 0 8px 22px rgba(88,45,22,.14); font: 400 2rem/1 "Allura", cursive; transform: rotate(-7deg); }
.paw-decoration { position: absolute; color: rgba(233,109,22,.35); font-size: 3rem; }
.paw-one { left: -30px; bottom: 60px; }
.paw-two { right: -6px; top: 70px; }

.section-heading { max-width: 670px; margin: 0 auto 42px; text-align: center; }
.section-heading.compact { margin-bottom: 34px; }
.section-heading.align-left { margin-inline: 0; text-align: left; }
.section-heading h2 { margin: 0 0 10px; color: var(--brown); font: 400 clamp(2.2rem, 4vw, 3.45rem)/1.05 "DM Serif Display", serif; }
#how-title, #about-title, #services-title, #gallery-title, #hours-title, #reviews-title, #policies-title {
  font-family: "Birthstone", cursive;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  line-height: .92;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  background: var(--white) url("assets/salvatorebackground3.png") center / cover no-repeat;
}
.section-heading p:last-child { color: var(--muted); }

.how-it-works { background: transparent; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { position: relative; text-align: center; color: var(--brown); counter-increment: steps; }
.steps li:not(:last-child)::after { content: ""; position: absolute; top: 44px; left: calc(50% + 50px); width: calc(100% - 76px); border-top: 2px dashed #efb889; }
.step-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 88px; height: 88px; margin: 0 auto 15px; border-radius: 50%; background: var(--cream); border: 1px solid var(--line); color: var(--orange); font-size: 2.2rem; }
.steps strong { display: block; max-width: 150px; margin: auto; font-size: .88rem; line-height: 1.4; }

.about-story { overflow: hidden; background: transparent; }
.about-story-inner { position: relative; display: grid; grid-template-columns: 170px minmax(0, 1fr); align-items: center; gap: clamp(32px, 6vw, 76px); max-width: 980px; }
.about-story-mark { display: grid; width: 170px; aspect-ratio: 1; place-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); box-shadow: var(--shadow); }
.about-story-mark img { width: 100%; height: 100%; object-fit: contain; }
.about-story-copy h2 { margin: 0 0 18px; color: var(--brown); font: 400 clamp(2.5rem, 5vw, 4rem)/1 "DM Serif Display", serif; }
.about-story-copy > p:last-child { max-width: 720px; margin: 0; color: var(--brown-soft); font-size: clamp(1rem, 2vw, 1.16rem); line-height: 1.8; }
.about-story-heart { position: absolute; right: -42px; bottom: -80px; color: rgba(233,109,22,.1); font-size: 12rem; transform: rotate(-12deg); }

.services { background: transparent; }
.service-catalog { display: grid; gap: 16px; max-width: 920px; margin: 0 auto; }
.service-category { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 12px 30px rgba(88,45,22,.05); }
.service-category summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; color: var(--brown); font-weight: 900; text-transform: uppercase; letter-spacing: .04em; cursor: pointer; list-style: none; }
.service-category summary::-webkit-details-marker { display: none; }
.service-category summary span { display: flex; align-items: center; gap: 11px; }
.service-category summary span i { color: var(--orange); font-size: 1.35rem; }
.service-category summary > i { transition: transform .2s ease; }
.service-category[open] summary > i { transform: rotate(180deg); }
.service-options { display: grid; gap: 12px; padding: 0 18px 18px; }
.service-option { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 16px; width: 100%; padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: #fffefd; color: var(--ink); text-align: left; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.service-option:hover, .service-option:focus-visible { transform: translateY(-2px); border-color: var(--orange); box-shadow: 0 10px 25px rgba(88,45,22,.08); outline: none; }
.service-option-icon { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 12px; background: var(--cream); color: var(--orange); font-size: 1.65rem; }
.service-option strong, .service-option small { display: block; }
.service-option strong { color: var(--brown); font-size: 1rem; }
.service-option small { margin-top: 3px; color: var(--muted); font-size: .82rem; }
.service-option-description { display: none; }
.service-option-action { display: flex; align-items: center; gap: 5px; color: var(--brown-soft); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.service-drawer { width: min(92vw, 480px); max-width: none; height: 100dvh; max-height: none; margin: 0 0 0 auto; padding: 54px 38px 38px; border: 0; border-left: 1px solid var(--line); background: var(--cream); color: var(--ink); }
.service-drawer[open] { animation: service-drawer-in .25s ease-out; }
.service-drawer::backdrop { background: rgba(37,26,21,.48); backdrop-filter: blur(3px); }
.service-drawer h2 { margin: 0 0 8px; color: var(--brown); font: 400 clamp(2rem, 6vw, 3rem)/1.05 "DM Serif Display", serif; }
.service-drawer > p:not(.eyebrow) { color: var(--muted); }
.service-detail-meta { margin-top: 0; color: var(--orange-dark) !important; font-weight: 900; }
.service-detail-pricing { margin-top: 24px; }
.service-detail-pricing h3 { margin: 0 0 12px; color: var(--brown); font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.service-price-group { margin-top: 12px; }
.service-price-group > strong { display: block; margin-bottom: 7px; color: var(--brown); font-size: .85rem; }
.service-price-grid { display: grid; grid-template-columns: repeat(5, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.service-price-grid span { display: grid; gap: 4px; padding: 10px 4px; border-right: 1px solid var(--line); text-align: center; }
.service-price-grid span:last-child { border-right: 0; }
.service-price-grid small { color: var(--muted); font-size: .58rem; line-height: 1.15; }
.service-price-grid b { color: var(--orange-dark); font-size: .95rem; }
.service-price-single { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--brown); }
.service-price-single strong { color: var(--orange-dark); font-size: 1.15rem; }
.service-price-consult { margin: 0; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.service-price-disclaimer { display: block; margin-top: 10px; color: var(--muted); line-height: 1.35; }
.service-drawer-close { position: absolute; top: 18px; right: 18px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--brown); font-size: 1.2rem; }
.service-detail-note { display: flex; gap: 10px; margin: 28px 0; padding: 16px; border-left: 4px solid var(--orange); background: var(--white); color: var(--muted); font-size: .9rem; }
.service-detail-note i { color: var(--orange); font-size: 1.25rem; }

.gallery { background: transparent; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 240px; grid-auto-flow: dense; gap: 16px; }
.gallery-item { position: relative; min-width: 0; margin: 0; overflow: hidden; border: 5px solid var(--white); border-radius: 20px; background: var(--cream-deep); box-shadow: 0 12px 30px rgba(88,45,22,.09); }
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-open { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:nth-child(2) img, .gallery-item:nth-child(7) img { object-position: center 30%; }
.gallery-item:hover img, .gallery-open:focus-visible img { transform: scale(1.035); }
.gallery-open:focus-visible { outline: 3px solid var(--orange); outline-offset: -6px; }
.gallery-lightbox { width: min(94vw, 1100px); max-width: none; height: min(92dvh, 900px); max-height: none; padding: 22px 70px; border: 0; border-radius: 22px; background: #17120f; box-shadow: var(--shadow); }
.gallery-lightbox[open] { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; }
.gallery-lightbox::backdrop { background: rgba(20,13,9,.86); backdrop-filter: blur(5px); }
.gallery-lightbox > img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.gallery-lightbox-close, .gallery-lightbox-nav { display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.12); color: var(--white); }
.gallery-lightbox-close { position: absolute; z-index: 2; top: 14px; right: 14px; width: 42px; height: 42px; font-size: 1.25rem; }
.gallery-lightbox-nav { width: 46px; height: 46px; font-size: 1.35rem; }
.gallery-lightbox-close:hover, .gallery-lightbox-nav:hover { background: var(--orange); border-color: var(--orange); }

@keyframes service-drawer-in {
  from { transform: translateX(100%); }
}

.hours { background: transparent; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.hours-photo { position: relative; min-height: 430px; overflow: hidden; border-radius: var(--radius-lg); }
.hours-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-note { position: absolute; left: 24px; bottom: 24px; display: flex; gap: 12px; max-width: 250px; padding: 18px; border-radius: 14px; background: rgba(59,25,12,.93); color: var(--white); font-weight: 700; }
.photo-note i { color: #ff9a45; font-size: 1.4rem; }
.hours-panel { display: flex; flex-direction: column; justify-content: center; padding: 34px; border-radius: var(--radius-lg); background: var(--cream); border: 1px solid var(--line); }
.hours-list { display: grid; gap: 11px; }
.hours-list div { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 9px; border-bottom: 1px solid var(--line); }
.hours-list span { color: var(--brown-soft); }
.hours-list strong { color: var(--brown); }
.location-note { display: flex; gap: 9px; margin: 24px 0; color: var(--muted); }
.location-note i { color: var(--orange); font-size: 1.35rem; }
.location-block { margin: 26px 0; }
.location-block h3 { margin: 0 0 10px; color: var(--brown); font-size: 1rem; }
.location-block .location-note { align-items: flex-start; margin: 0 0 14px; color: var(--brown); font-weight: 800; line-height: 1.4; }
.map-embed { overflow: hidden; height: 280px; border: 1px solid var(--line); border-radius: 18px; background: var(--cream-deep); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.reviews { background: transparent; }
.review-carousel { width: 100%; margin: 0 auto; overflow: hidden; text-align: center; }
.review-viewport { overflow: hidden; padding: 8px 0 18px; }
.review-track { display: flex; align-items: flex-start; width: max-content; gap: 24px; }
.review-track.review-track-animated { animation: review-marquee 48s linear infinite; }
.review-card { flex: 0 0 clamp(290px, 38vw, 430px); min-height: 100%; margin: 0; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 14px 36px rgba(88,45,22,.06); }
.stars { color: var(--orange); letter-spacing: .12em; font-size: 1.2rem; }
.review-card blockquote { margin: 18px 0; color: var(--muted); font-size: 1rem; }
.review-card figcaption { color: var(--brown); font-weight: 900; }
.google-reviews-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--brown); font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }

@keyframes review-marquee {
  to { transform: translateX(calc(-50% - 12px)); }
}

.policies { background: transparent; }
.policies-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.faq-list { display: grid; gap: 12px; margin-bottom: 26px; }
.faq-item { border: 1px solid var(--line); border-radius: 13px; overflow: hidden; background: var(--white); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 17px 18px; border: 0; background: transparent; color: var(--brown); font-weight: 900; text-align: left; }
.faq-item button span { display: inline-flex; align-items: center; gap: 9px; }
.faq-item button span i { color: var(--orange); font-size: 1.25rem; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer p { overflow: hidden; margin: 0; padding: 0 18px; color: var(--muted); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 18px; }
.faq-item.open button > i { transform: rotate(180deg); }
.faq-item button > i { transition: transform .2s ease; }
.faq-media { position: relative; justify-self: center; }
.faq-media img { width: min(100%, 430px); border-radius: 46% 46% 20px 20px; }
.speech-bubble { position: absolute; right: -35px; top: 45px; padding: 22px 26px; border: 2px solid var(--orange); border-radius: 50%; background: var(--white); color: var(--brown); font: 400 1.35rem/1.05 "DM Serif Display", serif; text-align: center; }

.site-footer { padding: 56px 0 22px; background: var(--brown); color: #fff3e6; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .7fr; gap: 50px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 150px; }
.site-footer h2 { margin: 0 0 15px; font-size: .88rem; text-transform: uppercase; letter-spacing: .12em; }
.site-footer a, .site-footer span { display: flex; align-items: center; gap: 8px; margin: 9px 0; color: #fff3e6; text-decoration: none; }
.site-footer a:hover { color: #ffa45d; }
.socials { display: flex; gap: 13px; }
.socials a { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: 1.4rem; }
.copyright { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); color: #d9bda8; font-size: .82rem; text-align: center; }

/* Appointment page */
.appointment-page { min-height: 100vh; }
.appointment-main { padding: 72px 0 90px; }
.appointment-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.appointment-intro { position: sticky; top: 130px; }
.appointment-intro h1 { margin: 0 0 20px; color: var(--brown); font: 400 clamp(3rem, 5vw, 5rem)/1 "DM Serif Display", serif; }
.appointment-intro > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.appointment-note { display: flex; gap: 12px; margin: 28px 0; padding: 18px; border-left: 4px solid var(--orange); background: var(--white); color: var(--muted); }
.appointment-note i { color: var(--orange); font-size: 1.4rem; }
.chat-request-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.available-hours { overflow: hidden; margin-top: 28px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.75); }
.available-hours h2 { display: flex; align-items: center; gap: 9px; margin: 0; padding: 18px 20px; background: var(--cream-deep); color: var(--brown); font-size: 1rem; }
.available-hours h2 i { color: var(--orange); font-size: 1.3rem; }
.available-hours div { display: grid; gap: 3px; padding: 13px 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.available-hours div strong { color: var(--brown); }
.available-hours small { display: block; padding: 14px 20px; border-top: 1px solid var(--line); color: var(--muted); line-height: 1.45; }
.quick-request-help { margin: 14px 0 0; color: var(--muted); font-size: .82rem; }
.quick-request-status { min-height: 1.45em; margin: 8px 0 0; color: var(--muted); font-size: .88rem; font-weight: 800; }
.quick-request-status.form-error { color: #9c342c; }
.prepared-message { margin-top: 24px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--cream); }
.prepared-message[hidden] { display: none; }
.prepared-message h3 { margin: 0 0 6px; color: var(--brown); }
.prepared-message p { margin: 0 0 14px; color: var(--muted); font-size: .9rem; }
.prepared-message textarea { width: 100%; padding: 13px; resize: vertical; border: 1px solid #d9c7b8; border-radius: 9px; background: var(--white); color: var(--ink); line-height: 1.45; }
.prepared-message-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.copy-status { display: block; min-height: 1.4em; margin-top: 8px; color: #24652a; font-size: .85rem; font-weight: 800; }
.legacy-appointment-system[hidden], .legacy-appointment-cta[hidden] { display: none !important; }
.appointment-form-wrap { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.appointment-form-wrap h2 { margin: 0 0 25px; color: var(--brown); font: 400 2.1rem/1 "DM Serif Display", serif; }
.booking-scheduler { display: grid; grid-template-columns: minmax(245px, .8fr) minmax(280px, 1.2fr); gap: 28px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.calendar-heading { display: grid; grid-template-columns: 38px 1fr 38px; align-items: center; margin-bottom: 16px; text-align: center; }
.calendar-heading strong { color: var(--brown); font-size: 1.05rem; }
.calendar-nav { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--brown); }
.calendar-nav:hover { border-color: var(--orange); color: var(--orange); }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-weekdays { margin-bottom: 6px; color: var(--muted); font-size: .72rem; font-weight: 800; text-align: center; }
.calendar-day { aspect-ratio: 1; min-width: 0; border: 0; border-radius: 9px; background: transparent; color: var(--ink); font-size: .82rem; }
.calendar-day:hover:not(:disabled), .calendar-day:focus-visible { background: var(--cream-deep); outline: none; }
.calendar-day.selected { background: var(--orange); color: var(--white); font-weight: 900; }
.calendar-day.today:not(.selected) { box-shadow: inset 0 0 0 1px var(--orange); color: var(--orange-dark); }
.calendar-day:disabled { color: #c8bbb2; cursor: not-allowed; }
.calendar-day.fully-booked { text-decoration: line-through; opacity: .48; }
.calendar-day.empty { visibility: hidden; }
.timezone-label { display: grid; gap: 7px; margin-top: 20px; color: var(--brown); font-size: .82rem; font-weight: 800; }
.timezone-label select { width: 100%; padding: 11px 12px; border: 1px solid #d9c7b8; border-radius: 9px; background: var(--white); }
.booking-times > p { margin: 0 0 14px; color: var(--brown); font-weight: 900; }
.time-slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.time-slot { min-height: 43px; padding: 8px; border: 1px solid #d9c7b8; border-radius: 9px; background: var(--white); color: var(--brown); font-weight: 800; }
.time-slot:hover, .time-slot:focus-visible { border-color: var(--orange); outline: none; }
.time-slot.selected { border-color: var(--orange); background: var(--orange); color: var(--white); }
.time-slot.booked, .time-slot:disabled { text-decoration: line-through; opacity: .48; cursor: not-allowed; }
.time-slot:disabled:hover { border-color: #d9c7b8; }
.availability-message { grid-column: 1 / -1; margin: 8px 0; color: #6f6258; line-height: 1.5; }
.availability-message.availability-error { color: #9c342c; }
.form-success.form-error { background: #fff0ef; color: #9c342c; }
.booking-services { display: grid; gap: 10px; margin: 28px 0; padding: 12px 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--cream); }
.booking-services details + details { border-top: 1px solid var(--line); }
.booking-services summary { display: flex; align-items: center; justify-content: space-between; padding: 15px 4px; color: var(--brown); font-size: .8rem; font-weight: 900; letter-spacing: .045em; text-transform: uppercase; cursor: pointer; list-style: none; }
.booking-services summary::-webkit-details-marker { display: none; }
.booking-services summary i { transition: transform .2s ease; }
.booking-services details[open] summary i { transform: rotate(180deg); }
.booking-services label { display: flex; align-items: center; gap: 9px; padding: 0 4px 15px; color: var(--muted); font-size: .9rem; }
.pet-details-title { margin: 0 0 18px; color: var(--brown); font: 400 1.55rem/1 "DM Serif Display", serif; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label { display: grid; gap: 7px; color: var(--brown); font-weight: 800; font-size: .9rem; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 13px 14px; border: 1px solid #d9c7b8; border-radius: 9px; background: var(--white); color: var(--ink); outline: none; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(233,109,22,.13); }
.full-width { grid-column: 1 / -1; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; color: var(--muted); font-size: .86rem; }
.form-success { align-items: center; gap: 10px; margin-top: 20px; padding: 15px; border-radius: 10px; background: #edf8ee; color: #24652a; font-weight: 800; }
.form-success:not([hidden]) { display: flex; }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: auto auto 1fr; min-height: 92px; }
  .primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 0 0 16px 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding-inline: 4px;
    white-space: normal;
  }
  .primary-nav a::after { bottom: 3px; }
  .menu-toggle { display: block; justify-self: end; }
  .header-appointment { justify-self: end; }
}

@media (max-width: 800px) {
  .section-pad { padding: 68px 0; }
  .header-inner { min-height: 84px; grid-template-columns: 1fr auto; }
  .brand { min-width: 0; justify-content: flex-start; }
  .brand-lockup img { width: 158px; }
  .brand-copy strong { font-size: 1.6rem; }
  .brand-copy small { font-size: .55rem; }
  .header-appointment { display: none; }
  .hero-grid, .hours-grid, .policies-grid, .appointment-grid, .chat-request-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: 0; }
  .hero-copy {
    order: 2;
    margin-top: 20px;
    padding: 26px 20px;
    border: 1px solid rgba(233, 109, 22, .2);
    border-radius: 22px;
    background: rgba(255, 247, 237, .9);
    box-shadow: 0 14px 34px rgba(88, 45, 22, .1);
    backdrop-filter: blur(4px);
  }
  .hero-media { order: 1; width: min(100%, 470px); margin: auto; }
  .hero-photo-circle img { height: 100%; }
  .hero-inspired { right: 0; bottom: 4%; font-size: 1.65rem; }
  .hero h1 { font-size: clamp(3.25rem, 14vw, 5rem); }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps li:not(:last-child)::after { display: none; }
  .steps li:last-child { grid-column: 1 / -1; }
  .about-story-inner { grid-template-columns: 125px minmax(0, 1fr); gap: 28px; }
  .about-story-mark { width: 125px; padding: 14px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .appointment-intro { position: static; }
  .booking-scheduler { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand-copy small { display: none; }
  .brand-lockup img { width: 134px; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .trust-list { display: grid; grid-template-columns: 1fr; }
  .steps, .form-grid { grid-template-columns: 1fr; }
  .steps li:last-child, .full-width { grid-column: auto; }
  .about-story-inner { grid-template-columns: 1fr; text-align: center; }
  .about-story-mark { width: 108px; margin-inline: auto; }
  .gallery-grid { grid-auto-rows: 175px; gap: 10px; }
  .gallery-item { border-width: 3px; border-radius: 14px; }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-lightbox { width: 96vw; height: 88dvh; padding: 58px 12px 16px; }
  .gallery-lightbox[open] { grid-template-columns: 42px minmax(0, 1fr) 42px; gap: 5px; }
  .gallery-lightbox-nav { width: 40px; height: 40px; }
  .hours-panel, .appointment-form-wrap { padding: 24px 18px; }
  .review-card { padding: 26px 22px; }
  .hours-list div { font-size: .87rem; }
  .speech-bubble { right: -4px; top: 18px; font-size: 1rem; padding: 16px; }
  .footer-brand { align-items: flex-start; }
  .footer-brand img { width: 120px; }
  .service-category summary { padding: 18px; }
  .service-options { padding: 0 10px 10px; }
  .service-option { grid-template-columns: auto minmax(0, 1fr); padding: 14px; }
  .service-option-action { grid-column: 2; }
  .service-drawer { width: 100%; padding: 54px 22px 28px; }
  .time-slot-grid { grid-template-columns: 1fr 1fr; }
}
/* =========================
   SCROLL REVEAL ANIMATIONS
========================= */

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

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
