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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f7f4f2;
  font-family: 'Lato', Arial, sans-serif;
  color: #2b2b2e;
}

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

/* Header */

html, body {
  overflow-x: clip;
}

.site-header {
  position: relative;
  background-color: #e6e3e1;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-mobile {
  display: none;
}

.nav-toggle {
  display: none;
}

.logo img {
  display: block;
  height: 80px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.site-nav a {
  position: relative;
  color: #2b2b2e;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #c98a90;
}

/* Thin divider between the text links */
.site-nav > a:not(.btn) + a:not(.btn)::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #7a7376;
  opacity: 0.6;
}

.site-nav .btn {
  padding: 12px 28px;
  font-weight: 700;
}

.site-nav .btn:hover {
  color: #2b2b2e;
}

.site-nav .phone {
  font-weight: 400;
  white-space: nowrap;
}

.social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: -8px;
}

.social a {
  display: flex;
  color: #2b2b2e;
  transition: color 0.2s ease;
}

.social a:hover {
  color: #c98a90;
}

/* Hero */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(rgba(43, 43, 46, 0.5), rgba(43, 43, 46, 0.5)),
    url('hero.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
}

.hero-content {
  max-width: 940px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.2;
  -webkit-text-stroke: 0.3px #ffffff;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 4px 18px rgba(0, 0, 0, 0.55);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  font-family: 'Lato', Arial, sans-serif;
  border: none;
  cursor: pointer;
  background-color: #e8b4b8;
  color: #2b2b2e;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 0;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #c98a90;
}

/* Services */

.services {
  background-color: #e6e3e1;
  padding: 96px 40px;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  font-size: 2.25rem;
  margin-bottom: 20px;
  -webkit-text-stroke: 0.3px currentColor;
}

.section-heading p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #4a4548;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.service-card {
  background-color: #ffffff;
  padding: 28px 32px;
  min-width: 0;
}

.service-card h3 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 12px;
  -webkit-text-stroke: 0.3px currentColor;
}

.service-card h3 + .price-list + h3 {
  margin-top: 28px;
}

.service-card h3 small {
  display: block;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #7a7376;
  -webkit-text-stroke: 0;
  margin-top: 2px;
}

.price-list {
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #e6e3e1;
  font-size: 1rem;
  color: #4a4548;
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list li span:last-of-type {
  font-weight: 700;
  color: #2b2b2e;
  white-space: nowrap;
  margin-left: auto;
}

/* Small "Book" button used next to every service */
.book {
  flex: 0 0 auto;
  display: inline-block;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2b2b2e;
  background: transparent;
  border: 1px solid #c9a96e;
  padding: 4px 10px;
  margin-left: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.book:hover {
  background-color: #e8b4b8;
  border-color: #e8b4b8;
}

.price-list em {
  font-style: normal;
  color: #7a7376;
  font-size: 0.85rem;
  margin-left: 6px;
  white-space: nowrap;
}

/* Rows with full set + infill columns.
   The list itself is the grid and each row is a subgrid, so the header and
   every price line share exactly the same column positions. */
.price-list.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px 52px max-content;
  column-gap: 16px;
}

.price-list.two-col li {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  column-gap: 16px;
  align-items: center;
}

.price-list.two-col li.head .book-space {
  /* invisible 4th cell keeps the header on the same tracks in browsers without subgrid */
  visibility: hidden;
}

/* Fallback: browsers without subgrid get a fixed-width button column instead */
@supports not (grid-template-columns: subgrid) {
  .price-list.two-col {
    display: block;
  }

  .price-list.two-col li {
    grid-template-columns: minmax(0, 1fr) 52px 52px 62px;
  }
}

.price-list.two-col li span:last-of-type {
  margin-left: 0;
}

.price-list.two-col li span:nth-child(2),
.price-list.two-col li span:nth-child(3) {
  text-align: right;
  font-weight: 700;
  color: #2b2b2e;
}

.price-list.two-col li.head {
  padding-top: 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-list.two-col li.head span {
  font-weight: 400;
  color: #7a7376;
}

.services-subheading {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  font-size: 1.9rem;
  margin-bottom: 24px;
  -webkit-text-stroke: 0.3px currentColor;
}

.services-subheading small {
  display: block;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #7a7376;
  -webkit-text-stroke: 0;
  margin-top: 4px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.package {
  background-color: #ffffff;
  padding: 24px 28px;
}

.package-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.package-head h4 {
  flex: 1 1 auto;
}

.package-head .book {
  margin-left: 4px;
}

.package h4 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  font-size: 1.25rem;
  -webkit-text-stroke: 0.3px currentColor;
}

.package-price {
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
}

.package-price small {
  font-weight: 400;
  font-size: 0.85rem;
  color: #7a7376;
  margin-left: 4px;
}

.package details summary {
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  color: #c98a90;
  list-style: none;
}

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

.package details summary::after {
  content: ' +';
}

.package details[open] summary::after {
  content: ' \2212';
}

.package-intro {
  font-size: 0.9rem;
  color: #4a4548;
  margin-top: 12px;
}

.package details ul {
  list-style: none;
  margin-top: 12px;
}

.package details li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a4548;
  padding: 4px 0 4px 16px;
  position: relative;
}

.package details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 1px;
  background-color: #c9a96e;
}

.services-note {
  font-size: 0.9rem;
  color: #7a7376;
  margin-bottom: 64px;
}

.services-note:last-child {
  margin-bottom: 0;
}

/* About */

.about {
  padding: 96px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.about-content {
  flex: 1 1 0;
  max-width: none;
  text-align: left;
}

/* Reviews carousel */

.reviews {
  flex: 1 1 0;
  max-width: 640px;
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.reviews-score {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 800;
  -webkit-text-stroke: 0.3px currentColor;
}

.stars {
  color: #c9a96e;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.reviews-count {
  color: #7a7376;
  font-size: 0.95rem;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-viewport {
  flex: 1 1 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review {
  flex: 0 0 100%;
  background-color: #ffffff;
  border: 1px solid #e6e3e1;
  padding: 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review .stars {
  display: block;
  margin-bottom: 14px;
}

.review p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a4548;
  margin-bottom: 18px;
}

.review cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  color: #2b2b2e;
}

.carousel-btn {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid #c9a96e;
  background: transparent;
  color: #2b2b2e;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.carousel-btn:hover {
  background-color: #e8b4b8;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e6e3e1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.carousel-dots span.active {
  background-color: #c98a90;
}

.about h2 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  -webkit-text-stroke: 0.3px currentColor;
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.divider {
  display: block;
  width: 48px;
  height: 1px;
  background-color: #c9a96e;
  margin: 0 0 28px;
}

.about p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a4548;
}

/* Location */

.location {
  padding: 96px 40px;
  display: flex;
  align-items: center;
  gap: 56px;
}

.location-content {
  flex: 1 1 0;
}

.location h2 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  -webkit-text-stroke: 0.3px currentColor;
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.location address {
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a4548;
  margin-bottom: 28px;
}

.location-details {
  display: grid;
  gap: 20px;
  margin-bottom: 36px;
}

.location-details dt {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7376;
  margin-bottom: 4px;
}

.location-details dd {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4548;
}

.location-details a {
  color: inherit;
  text-decoration: none;
}

.location-details a:hover {
  color: #c98a90;
}

.location-hours {
  flex: 0 0 300px;
}

.location-hours h3 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  -webkit-text-stroke: 0.3px currentColor;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.location-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-hours li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid #e6e3e1;
  font-size: 1rem;
  color: #4a4548;
}

.location-hours li:last-child {
  border-bottom: 0;
}

.location-hours li span:first-child {
  color: #2b2b2e;
}

.hours-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #7a7376;
}

.location-map {
  flex: 1.2 1 0;
  min-height: 420px;
  background-color: #e6e3e1;
}
.map-placeholder {
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 32px;
}

.map-placeholder p {
  font-size: 1.05rem;
  color: #4a4548;
}

.map-placeholder small {
  font-size: 0.8rem;
  color: #7a7376;
}

.turnstile {
  margin-bottom: 18px;
}

.turnstile:empty {
  display: none;
}

.bk-consent {
  margin-top: 0;
}

.bk-consent a {
  color: #c98a90;
}


.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Legal pages */

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 40px 96px;
}

.legal h1 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  -webkit-text-stroke: 0.3px currentColor;
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.legal h2 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  -webkit-text-stroke: 0.3px currentColor;
  font-size: 1.35rem;
  margin: 36px 0 12px;
}

.legal p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a4548;
  margin-bottom: 14px;
}

.legal-updated {
  font-size: 0.9rem !important;
  color: #7a7376 !important;
  margin-bottom: 28px !important;
}

.legal a {
  color: #c98a90;
}

.legal ol {
  margin: 0 0 14px 0;
  padding-left: 22px;
}

.legal li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a4548;
  margin-bottom: 10px;
  padding-left: 6px;
}

.legal-note {
  font-style: italic;
  color: #c98a90 !important;
  text-align: center;
  margin: 0 auto 26px !important;
  max-width: 34em;
}

.legal-thanks {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 1.35rem;
  text-align: center;
  margin-top: 48px !important;
  color: #4a4548;
}

/* Treatments page */

.treatments-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 40px 56px;
  text-align: center;
}

.treatments-intro .divider {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c98a90;
  margin-bottom: 14px;
}

.treatments-intro h1 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  -webkit-text-stroke: 0.3px currentColor;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.treatments-intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #4a4548;
}

.treatments-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 28px;
}

.treatments-jump a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2b2b2e;
  text-decoration: none;
  border: 1px solid #c9a96e;
  padding: 8px 16px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.treatments-jump a:hover {
  background-color: #e8b4b8;
  border-color: #e8b4b8;
}

.treatment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px 64px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 40px;
  scroll-margin-top: 24px;
}

/* Full-width band; the columns stay the same width as the section above */
.treatment-alt {
  max-width: none;
  background-color: #e6e3e1;
  grid-template-columns: minmax(0, 508px) minmax(0, 508px);
  justify-content: center;
}

.treatment h2 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  -webkit-text-stroke: 0.3px currentColor;
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.treatment-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4548;
  margin-bottom: 16px;
}

.treatment-text p:last-child {
  margin-bottom: 0;
}

.treatment-lead {
  font-weight: 700;
  color: #2b2b2e !important;
  margin-bottom: 8px !important;
}

.treatment-steps {
  list-style: none;
}

.treatment-steps li {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a4548;
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid #e6e3e1;
}

.treatment-steps li:last-child {
  border-bottom: none;
}

.treatment-steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 10px;
  height: 1px;
  background-color: #c9a96e;
}

.treatment-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.treatment-prices {
  grid-column: 1 / -1;
  background-color: #ffffff;
  padding: 28px 32px;
}

.treatment-prices h3 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  -webkit-text-stroke: 0.3px currentColor;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.treatment-packages {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 40px 96px;
  scroll-margin-top: 24px;
}

.treatment-packages .package {
  border: 1px solid #e6e3e1;
}

/* Title on its own line, price and Book beneath, so every card lines up */
.treatment-packages .package-head {
  flex-wrap: wrap;
}

.treatment-packages .package-head h4 {
  flex-basis: 100%;
  margin-bottom: 4px;
}

.treatment-packages .package-head .book {
  margin-left: auto;
}

/* Numbered steps, always visible (the Services section uses a collapsed list) */
.package-steps {
  list-style: none;
  counter-reset: step;
  margin-top: 14px;
}

.package-steps li {
  counter-increment: step;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a4548;
  padding: 6px 0 6px 32px;
  position: relative;
  border-bottom: 1px solid #f0edeb;
}

.package-steps li:last-child {
  border-bottom: none;
}

.package-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  color: #2b2b2e;
  border: 1px solid #c9a96e;
}

/* Footer */

.site-footer {
  background-color: #e6e3e1;
  padding: 24px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 0.85rem;
  color: #7a7376;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.site-footer a {
  color: #7a7376;
  text-decoration: none;
}

.site-footer a:hover {
  color: #c98a90;
}

/* Booking modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(43, 43, 46, 0.6);
}

.modal-panel {
  position: relative;
  background-color: #f7f4f2;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 40px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #7a7376;
  cursor: pointer;
}

.modal-close:hover {
  color: #2b2b2e;
}

.modal-panel h2 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  font-size: 1.9rem;
  margin-bottom: 20px;
  -webkit-text-stroke: 0.3px currentColor;
}

.steps {
  list-style: none;
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a7376;
}

.steps li {
  flex: 1 1 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e6e3e1;
}

.steps li.active {
  color: #2b2b2e;
  border-bottom-color: #c9a96e;
}

.steps li.done {
  border-bottom-color: #c98a90;
}

.step label,
.bk-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.step .optional {
  font-weight: 400;
  color: #7a7376;
}

.step select,
.step input,
.step textarea {
  width: 100%;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #2b2b2e;
  background-color: #ffffff;
  border: 1px solid #e6e3e1;
  padding: 12px 14px;
  margin-bottom: 18px;
}

.step select:focus,
.step input:focus,
.step textarea:focus {
  outline: none;
  border-color: #c9a96e;
}

.bk-meta {
  font-size: 0.9rem;
  color: #7a7376;
  margin-top: -8px;
  margin-bottom: 18px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.choice-grid button,
.slot-grid button {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.95rem;
  color: #2b2b2e;
  background-color: #ffffff;
  border: 1px solid #e6e3e1;
  padding: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.choice-grid button:hover,
.slot-grid button:hover {
  border-color: #c9a96e;
}

.choice-grid button.selected,
.slot-grid button.selected {
  background-color: #e8b4b8;
  border-color: #e8b4b8;
  font-weight: 700;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  min-height: 48px;
}

.slot-grid button {
  padding: 10px 4px;
}

.bk-empty {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: #7a7376;
}

.bk-summary {
  background-color: #ffffff;
  border-left: 3px solid #c9a96e;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.bk-summary strong {
  display: block;
  font-size: 1.05rem;
}

.bk-error {
  color: #b0413e;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-link {
  background: none;
  border: none;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.95rem;
  color: #7a7376;
  cursor: pointer;
  margin-right: auto;
}

.btn-link:hover {
  color: #2b2b2e;
}

.step-done {
  text-align: center;
}

.step-done .stars {
  display: block;
  margin-bottom: 8px;
}

.step-done h3 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 18px;
  -webkit-text-stroke: 0.3px currentColor;
}

.step-done .bk-summary {
  text-align: left;
}

.step-done .step-actions {
  justify-content: center;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .modal-panel {
    padding: 28px 20px;
  }

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

  .steps {
    font-size: 0.68rem;
  }
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .services,
  .about,
  .location {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Compact header: phones and tablets */
@media (max-width: 960px) {
  .site-header {
    padding: 10px 16px;
  }

  .logo img {
    height: 44px;
  }

  .header-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-mobile .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background-color: #2b2b2e;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* The nav becomes a drop-down panel under the header */
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #e6e3e1;
    border-top: 1px solid rgba(122, 115, 118, 0.25);
    box-shadow: 0 12px 24px rgba(43, 43, 46, 0.12);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    font-size: 1.05rem;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(122, 115, 118, 0.2);
  }

  .site-nav > a:not(.btn) + a:not(.btn)::before {
    display: none;
  }

  .site-nav .social {
    margin: 0;
    padding: 16px 20px;
    gap: 28px;
  }

  .site-nav .social a {
    padding: 0;
    border-bottom: 0;
  }

  .site-nav .btn {
    display: none;   /* the header already shows Book now on mobile */
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 70vh;
    padding: 60px 20px;
    background-position: center;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .services {
    padding: 64px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about {
    padding: 64px 20px;
    flex-direction: column;
    gap: 32px;
  }

  .location {
    padding: 64px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .location h2 {
    font-size: 1.75rem;
  }

  .location address {
    font-size: 1rem;
  }

  .location-hours {
    flex: none;
  }

  .location-map,
  .location-map iframe,
  .map-placeholder {
    min-height: 300px;
  }

  .site-footer {
    padding: 20px;
  }

  .legal {
    padding: 40px 20px 64px;
  }

  .legal h1 {
    font-size: 1.75rem;
  }

  .treatments-intro {
    padding: 40px 20px 32px;
  }

  .treatments-intro h1 {
    font-size: 1.9rem;
  }

  .treatments-intro p {
    font-size: 1rem;
  }

  .treatment {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 20px;
  }

  .treatment-alt {
    grid-template-columns: 1fr;
  }

  /* Photo first on small screens so the section opens with an image */
  .treatment-photo {
    order: -1;
  }

  .treatment h2 {
    font-size: 1.75rem;
  }

  .treatment-text p {
    font-size: 1rem;
  }

  .treatment-prices {
    padding: 20px;
  }

  .treatment-packages {
    padding: 56px 20px 64px;
  }

  .about h2 {
    font-size: 1.75rem;
  }

  .about p {
    font-size: 1rem;
  }

  .reviews {
    max-width: none;
    width: 100%;
  }

  .review {
    padding: 24px;
    min-height: 0;
  }

  .review p {
    font-size: 1rem;
  }

  /* Arrows sit under the card instead of squeezing it */
  .carousel {
    flex-wrap: wrap;
    justify-content: center;
  }

  .carousel-viewport {
    flex: 1 1 100%;
    order: 1;
  }

  .carousel-btn {
    order: 2;
    width: 44px;
    height: 44px;
    margin-top: 14px;
  }

  .carousel-dots {
    margin-top: 12px;
  }

  /* Service cards: tighter padding, bigger tap targets */
  .service-card {
    padding: 22px 18px;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .price-list li {
    gap: 10px;
    padding: 12px 0;
  }

  .book {
    padding: 8px 12px;
    margin-left: 8px;
    font-size: 0.7rem;
  }

  .price-list em {
    margin-left: 4px;
  }

  .price-list.two-col {
    grid-template-columns: minmax(0, 1fr) 50px 46px max-content;
    column-gap: 8px;
  }

  .price-list.two-col li {
    column-gap: 8px;
  }

  @supports not (grid-template-columns: subgrid) {
    .price-list.two-col li {
      grid-template-columns: minmax(0, 1fr) 50px 46px 56px;
    }
  }

  .price-list.two-col li.head {
    font-size: 0.66rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  /* Packages: name on its own line, price + Book underneath */
  .package {
    padding: 20px 18px;
  }

  .package-head {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .package-head h4 {
    flex: 1 1 100%;
  }

  .package-head .book {
    margin-left: auto;
  }

  .section-heading h2,
  .services-subheading {
    font-size: 1.75rem;
  }

  /* Booking modal: near edge-to-edge, smaller title */
  .modal {
    padding: 12px;
  }

  .modal-panel {
    max-height: calc(100vh - 24px);
  }

  .modal-panel h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .steps {
    gap: 6px;
    margin-bottom: 22px;
  }

  .hero-content .btn,
  .location-content .btn {
    padding: 14px 24px;
  }
}
