:root {
  --cream: #f7f3ee;
  --cream-deep: #efe8de;
  --ivory: #fbf8f4;
  --charcoal: #2b2b2b;
  --charcoal-soft: #4a4642;
  --sage: #8a9a8b;
  --sage-deep: #6f8071;
  --gold: #c9a96e;
  --gold-deep: #b39252;
  --gold-soft: rgba(201, 169, 110, 0.22);
  --ink-muted: #6b6560;
  --white: #fffdf9;
  --overlay: rgba(22, 19, 16, 0.52);
  --shadow: 0 18px 50px rgba(43, 43, 43, 0.08);
  --shadow-soft: 0 8px 30px rgba(43, 43, 43, 0.05);
  --radius: 2px;
  --header-h: 80px;
  --max: 1180px;
  --photo-ratio: 3 / 4;
  --photo-matte: #f7f3ee;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(201, 169, 110, 0.28);
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

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

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

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

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

.eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.logo-mark {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 300;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.lede,
.hero-sub {
  color: var(--charcoal-soft);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
}

.section {
  padding: clamp(2.6rem, 5.5vw, 4.4rem) 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-head p {
  margin-top: 1.15rem;
  color: var(--ink-muted);
}

.gold-rule {
  width: 48px;
  height: 1px;
  margin: 1.4rem auto 0;
  background: var(--gold);
}

.gold-rule.is-start {
  margin-left: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.7rem;
  border: 1px solid var(--gold);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: #1d1a16;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--gold);
  color: #1d1a16;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top);
  background: rgba(247, 243, 238, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(247, 243, 238, 0.96);
  border-bottom-color: var(--gold-soft);
  box-shadow: 0 10px 30px rgba(43, 43, 43, 0.04);
}

.header-inner {
  width: min(1280px, calc(100% - 2rem));
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo-mark {
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.logo-sub {
  margin-top: 0.22rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.nav-list {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-list > li > a,
.nav-list .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  color: var(--charcoal-soft);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.is-active,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible,
.has-dropdown.is-open .dropdown-toggle {
  color: var(--charcoal);
}

.has-dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 240px;
  padding: 0.7rem 0;
  background: var(--ivory);
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.55rem 1.15rem;
  color: var(--charcoal-soft);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.dropdown a:hover,
.dropdown a:focus-visible {
  color: var(--gold-deep);
  padding-left: 1.35rem;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1.1rem;
}

.header-phone {
  color: var(--charcoal);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--gold-deep);
}

.header-actions .btn {
  min-height: 42px;
  padding: 0.65rem 1.15rem;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--charcoal);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  display: grid;
  grid-template-areas: "img" "content";
  align-items: center;
  color: var(--charcoal);
  background: var(--cream);
}

.hero {
  min-height: calc(100dvh - var(--header-h));
}

.hero-img,
.page-hero .hero-img {
  grid-area: img;
  position: relative;
  inset: auto;
  display: block;
  width: auto;
  max-width: min(440px, 88%);
  max-height: 52vh;
  height: auto;
  margin: 1.3rem auto 0;
  padding: 0;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.hero-overlay {
  display: none;
}

.hero-content {
  grid-area: content;
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.4rem 0 2rem;
}

.hero .eyebrow,
.page-hero .eyebrow {
  margin-bottom: 0.45rem;
}

.hero h1,
.page-hero h1 {
  max-width: 18ch;
  color: var(--charcoal);
  font-size: clamp(1.7rem, 4.6vw, 3.15rem);
  line-height: 1.12;
}

.hero-sub {
  max-width: 34rem;
  margin: 0.55rem 0 1.05rem;
  color: var(--charcoal-soft);
  font-size: clamp(0.88rem, 1.7vw, 1.05rem);
  line-height: 1.5;
}

.page-hero + .section {
  padding-top: 1.4rem;
}

.intro {
  text-align: center;
}

.intro-copy {
  max-width: 680px;
  margin: 0 auto;
  color: var(--charcoal-soft);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  gap: 1.4rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: var(--photo-ratio);
  object-fit: contain;
  object-position: center center;
  background: var(--photo-matte);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.4rem 1.6rem;
}

.service-card h3 {
  margin-bottom: 0.55rem;
}

.service-card p {
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.card-price {
  margin-top: 0.85rem;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.card-link {
  margin-top: 1.15rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why {
  background: linear-gradient(180deg, #f3eee7 0%, var(--cream) 100%);
}

.why-grid {
  display: grid;
  gap: 1.5rem;
}

.why-item {
  padding: 2rem 1.6rem;
  background: var(--ivory);
  border-top: 1px solid var(--gold);
  text-align: center;
}

.why-item strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.why-item p {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.reviews-grid {
  display: grid;
  gap: 1.2rem;
}

.review-card {
  padding: 1.7rem 1.5rem 1.5rem;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
}

.review-stars {
  margin-bottom: 0.7rem;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.review-card p {
  color: var(--charcoal-soft);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
}

.review-card footer {
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-actions {
  margin-top: 2rem;
  text-align: center;
}

.treatments {
  padding-top: 0;
}

.treatment-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(201, 169, 110, 0.28);
}

.treatment-list a,
.treatment-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.28);
  transition: padding-left 0.35s var(--ease);
}

.treatment-list a:hover,
.treatment-list a:focus-visible {
  padding-left: 0.6rem;
}

.treatment-name {
  font-family: var(--serif);
  font-size: 1.55rem;
}

.treatment-note {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.location {
  background: #f3eee7;
}

.location-grid {
  display: grid;
  gap: 2.4rem;
}

.location-details p,
.location-details a {
  color: var(--charcoal-soft);
}

.location-details a:hover,
.location-details a:focus-visible {
  color: var(--gold-deep);
}

.location-block + .location-block {
  margin-top: 1.7rem;
}

.location-block h3 {
  margin-bottom: 0.45rem;
}

.map-wrap {
  min-height: 360px;
  background: var(--cream-deep);
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.2) contrast(0.96);
}

.site-footer {
  padding: 4.2rem 0 1.8rem;
  background: #2b2b2b;
  color: #ece6dc;
}

.footer-grid {
  display: grid;
  gap: 2.4rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.footer-brand .logo-mark {
  color: #f7f3ee;
}

.footer-brand p {
  max-width: 28ch;
  margin: 1rem 0 1.3rem;
  color: #c8c0b6;
  font-size: 0.95rem;
}

.site-footer h2 {
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-footer a {
  color: #ddd6cc;
  transition: color 0.3s var(--ease);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.footer-links,
.footer-social {
  display: grid;
  gap: 0.5rem;
}

.footer-contact p + p {
  margin-top: 0.4rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.4rem;
  color: #9d958b;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: fade-up 0.9s var(--ease) forwards;
  animation-play-state: paused;
}

.reveal.is-in {
  animation-play-state: running;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.18s; }
.delay-3 { animation-delay: 0.26s; }
.delay-4 { animation-delay: 0.34s; }
.delay-5 { animation-delay: 0.42s; }
.delay-6 { animation-delay: 0.5s; }

@keyframes fade-up {
  to {
    opacity: 1;
    transform: none;
  }
}

.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose p + p,
.prose h2,
.prose h3,
.prose ul {
  margin-top: 1.3rem;
}

.prose h2 {
  margin-top: 2.4rem;
}

.prose ul {
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--charcoal-soft);
}

.price-section {
  text-align: center;
}

.price-section .section-head {
  margin-bottom: 2.2rem;
}

.price-list {
  max-width: 520px;
  margin: 0 auto;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
  color: var(--charcoal);
  font-size: 1.02rem;
  text-align: left;
}

.price-list li span:last-child {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  white-space: nowrap;
}

.price-list.is-addons li {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}

.price-note {
  max-width: 36rem;
  margin: 1.4rem auto 1.8rem;
  color: var(--ink-muted);
}

.price-section .btn {
  margin-top: 0.2rem;
}

.cta-band {
  text-align: center;
  background: #f3eee7;
}

.cta-band p {
  max-width: 36rem;
  margin: 0.9rem auto 1.7rem;
  color: var(--ink-muted);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: var(--ivory);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.3rem;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-muted);
}

.blog-grid,
.info-grid {
  display: grid;
  gap: 1.4rem;
}

.blog-card,
.info-card {
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

a.blog-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

a.blog-card:hover,
a.blog-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  aspect-ratio: var(--photo-ratio);
  object-fit: contain;
  object-position: center center;
  background: var(--photo-matte);
}

.blog-card-body,
.info-card {
  padding: 1.5rem 1.4rem 1.6rem;
}

.blog-card time,
.info-card .eyebrow {
  color: var(--sage-deep);
}

.article {
  padding-bottom: 2rem;
}

.article img.feature {
  display: block;
  width: 100%;
  max-height: 62vh;
  margin: 0 auto 1.8rem;
  object-fit: contain;
  object-position: center center;
  background: var(--cream);
}

.article-back {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-meta {
  margin-bottom: 0.85rem;
  color: var(--sage-deep);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-cta {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(201, 169, 110, 0.35);
}

@media (max-width: 699px) {
  :root {
    --header-h: 64px;
  }

  body {
    font-size: 1rem;
  }

  .container {
    width: min(var(--max), calc(100% - 1.75rem));
  }

  .header-inner {
    width: min(1280px, calc(100% - 1.25rem));
    gap: 0.6rem;
  }

  .logo-mark {
    font-size: 1.22rem;
  }

  .logo-sub {
    letter-spacing: 0.28em;
  }

  .section {
    padding: 2.2rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-img,
  .page-hero .hero-img {
    max-width: min(340px, 86%);
    max-height: min(38vh, 320px);
    margin: 0.7rem auto 0;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 1.75rem));
    padding: 0.9rem 0 1.4rem;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 14ch;
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .hero-sub {
    margin: 0.45rem 0 1rem;
  }

  .service-card-body,
  .blog-card-body,
  .info-card,
  .review-card,
  .why-item {
    padding: 1.25rem 1.15rem 1.35rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 260px;
  }

  .site-footer {
    padding: 3rem 0 calc(1.4rem + env(safe-area-inset-bottom));
  }

  .price-list li {
    gap: 0.7rem;
    padding: 0.9rem 0;
    font-size: 0.95rem;
  }

  .price-list li span:last-child {
    font-size: 1.15rem;
  }

  .faq-item summary {
    min-height: 52px;
    padding: 1rem 1.1rem;
    font-size: 1.15rem;
  }

  .cta-band .btn,
  .hero-content .btn,
  .article-cta .btn,
  .reviews-actions .btn {
    width: 100%;
    max-width: 22rem;
  }

  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 899px) {
  .hero {
    min-height: 0;
  }
}

@media (max-height: 700px) {
  .hero .eyebrow {
    display: none;
  }
}

@media (min-width: 900px) {
  .hero,
  .page-hero {
    grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
    grid-template-areas: "content img";
    width: min(var(--max), calc(100% - 3rem));
    margin: 0 auto;
    column-gap: 2.4rem;
    min-height: calc(100dvh - var(--header-h));
  }

  .page-hero {
    min-height: 0;
    padding: 1.6rem 0 0.4rem;
  }

  .hero-img,
  .page-hero .hero-img {
    max-width: 100%;
    max-height: calc(100dvh - var(--header-h) - 3rem);
    margin: 1.2rem 0;
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 1.2rem 0;
  }
}

@media (min-width: 700px) {
  .services-grid,
  .why-grid,
  .blog-grid,
  .info-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .treatment-list a,
  .treatment-row {
    grid-template-columns: 220px 1fr;
    align-items: baseline;
    gap: 2rem;
    padding: 1.5rem 0;
  }

  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr 1.15fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 980px) and (max-width: 1139px) {
  .header-phone {
    display: none;
  }

  .nav-list > li > a,
  .nav-list .dropdown-toggle {
    padding-inline: 0.5rem;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 980px) {
  .nav-list,
  .header-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 979px) {
  .site-header {
    overflow: hidden;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--cream);
  }

  body.nav-open .site-header {
    position: fixed;
    inset: 0;
    height: 100dvh;
    overflow: hidden;
  }

  .header-actions {
    display: flex;
    margin-left: auto;
    gap: 0.55rem;
  }

  .header-actions .header-phone {
    display: none;
  }

  .header-actions .btn {
    min-height: 40px;
    padding: 0.5rem 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .nav {
    position: absolute;
    top: calc(var(--header-h) + env(safe-area-inset-top));
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    background: var(--cream);
    padding: 1.2rem 1.3rem calc(2rem + env(safe-area-inset-bottom));
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s var(--ease), visibility 0.4s;
  }

  .nav.is-open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    display: grid;
    gap: 0.2rem;
  }

  .nav-list > li > a,
  .nav-list .dropdown-toggle {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 0.85rem 0;
    font-size: 0.92rem;
  }

  .dropdown a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .dropdown {
    position: static;
    min-width: 0;
    margin: 0 0 0.4rem;
    padding: 0 0 0.4rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .has-dropdown.is-open .dropdown {
    display: grid;
  }

  .mobile-actions {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.6rem;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (min-width: 980px) {
  .mobile-actions {
    display: none;
  }
}

@media (hover: none) {
  .service-card:hover,
  .service-card:focus-within,
  a.blog-card:hover,
  a.blog-card:focus-visible {
    transform: none;
  }

  .treatment-list a:hover,
  .treatment-list a:focus-visible {
    padding-left: 0;
  }

  .btn-gold:hover,
  .btn-gold:focus-visible {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
