:root {
  --ivory: #fdf8f6;
  --cream: #eaddd8;
  --sand: #eaddd8;
  --sage: #c89b8f;
  --sage-dark: #b07f74;
  --brown: #7a5e57;
  --brown-soft: #9a8079;
  --gold: #c8a18f;
  --ink: #423734;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(96, 60, 60, 0.14);
  --soft-shadow: 0 14px 40px rgba(96, 60, 60, 0.09);
  --radius-lg: 28px;
  --radius-md: 20px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

/* Instant taps on touch: no double-tap-zoom wait that can swallow a tap */
a,
button {
  touch-action: manipulation;
}

a[href^="tel:"] {
  -webkit-tap-highlight-color: rgba(179, 118, 111, 0.22);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 760px;
  font-size: 6.25rem;
  text-wrap: balance;
}

h2 {
  font-size: 3.9rem;
  text-wrap: balance;
}

h3 {
  font-size: 1.7rem;
}

p {
  margin: 0;
}

p,
a,
dd,
li,
h1,
h2,
h3 {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(157, 113, 69, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(66, 53, 42, 0.1);
  transition: background 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.96);
  border-bottom-color: rgba(124, 99, 74, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 24px rgba(66, 53, 42, 0.07);
}

.site-header:not(.is-scrolled) .brand {
  color: var(--white);
}

.site-header:not(.is-scrolled) .site-nav {
  color: rgba(255, 255, 255, 0.92);
}

.site-header:not(.is-scrolled) .nav-toggle span:not(.sr-only) {
  background: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  min-width: 0;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brown);
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--sage);
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 30px);
  color: rgba(38, 31, 26, 0.92);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(75, 53, 38, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--brown);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--sage);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(200, 150, 140, 0.3);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover,
.button:focus-visible {
  background: #d3a79d;
  box-shadow: 0 12px 30px rgba(200, 150, 140, 0.42);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 12px 18px;
  font-size: 0.9rem;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.button-light,
.button-ghost-dark {
  background: var(--cream);
  color: var(--brown);
  box-shadow: none;
}

.button-ghost-dark {
  border-color: rgba(75, 53, 38, 0.18);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(58, 40, 42, 0.66), rgba(58, 40, 42, 0.28) 52%, rgba(58, 40, 42, 0.12)),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1800&q=85") center calc(50% + var(--hero-shift, 0px)) / cover;
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: clamp(28px, 8vw, 120px);
  bottom: clamp(48px, 9vw, 118px);
  width: clamp(140px, 18vw, 260px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: rotate(-16deg);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(48, 41, 35, 0.46), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 10vw, 130px) 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--sage-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.32rem;
}

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

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 42px;
}

.hero-dots span {
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-dots span:first-child {
  width: 42px;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(185, 154, 99, 0.56);
  animation: dotPulse 2200ms ease-in-out infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scaleX(0.82);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.section {
  padding: clamp(82px, 10vw, 136px) 0;
}

.section-copy > p:not(.eyebrow),
.section-heading > p {
  max-width: 670px;
  margin-top: 22px;
  color: rgba(38, 31, 26, 0.88);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 44px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media::before {
  position: absolute;
  inset: -22px 22px 22px -22px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(200, 164, 93, 0.45);
  border-radius: var(--radius-lg);
}

.about-media img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-info-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(138, 121, 108, 0.22);
}

.about-info-list p {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  color: rgba(48, 41, 35, 0.9);
}

.about-info-list span {
  color: var(--sage-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.feature-card,
.price-card,
.review-card,
.contact-card {
  border: 1px solid rgba(200, 155, 143, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(150, 92, 88, 0.1);
}

.feature-card {
  padding: 26px;
}

.feature-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.feature-card p {
  color: rgba(38, 31, 26, 0.68);
  font-size: 0.96rem;
}

.hours-band {
  padding: clamp(52px, 8vw, 84px) 0;
  background: #faf1ee;
  color: var(--ink);
}

.hours-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.hours-content h2 {
  color: var(--brown);
}

.hours-panel {
  min-width: min(430px, 100%);
  padding: 30px 34px;
  border: 1px solid rgba(196, 150, 145, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.54);
}

.hours-panel p {
  color: var(--sage-dark);
  font-weight: 700;
}

.hours-panel strong {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.45rem;
  line-height: 1;
}

.hours-time {
  display: flex;
  align-items: baseline;
  gap: 0.22em;
  white-space: nowrap;
  color: var(--brown);
}

.services-section {
  background: linear-gradient(180deg, var(--ivory), #fdf5f2);
}

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

.price-card {
  position: relative;
  overflow: hidden;
  padding: 18px 30px 30px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.price-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--sage), var(--gold));
  opacity: 0.78;
}

.price-card:hover {
  border-color: rgba(200, 164, 93, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-thumb {
  width: 100%;
  aspect-ratio: 1.55;
  margin-bottom: 24px;
  object-fit: cover;
  border-radius: 18px;
  filter: saturate(1.02) brightness(1.1);
  transition: transform 700ms ease, filter 700ms ease;
}

.price-card:hover .service-thumb {
  filter: saturate(1.05);
  transform: scale(1.025);
}

.price-card-featured {
  background: #a3847f;
  color: var(--white);
}

.price-card-header p {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(124, 99, 74, 0.16);
}

.price-card-featured .price-list li {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

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

.price-list span {
  color: rgba(38, 31, 26, 0.68);
}

.price-card-featured .price-list span {
  color: rgba(255, 255, 255, 0.72);
}

.price-list strong {
  font-size: 1.2rem;
}

.gallery-section {
  background: #f8efeb;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 154px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  grid-column: span 2;
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
}

.gallery-large {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 3;
}

.gallery-tall {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) brightness(1.1);
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-item:hover img {
  filter: saturate(1.04);
  transform: scale(1.05);
}

.reviews-section {
  background:
    linear-gradient(rgba(251, 248, 242, 0.9), rgba(251, 248, 242, 0.94)),
    url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1600&q=80") center / cover fixed;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.reviews-grid {
  display: grid;
  gap: 18px;
}

.review-card {
  padding: 28px;
}

.review-card p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.2;
}

.review-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--sage-dark);
  font-weight: 800;
}

.contact-section {
  background: #faf1ee;
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  padding: clamp(28px, 5vw, 48px);
  background: var(--ivory);
  color: var(--ink);
}

.contact-list {
  display: grid;
  gap: 22px;
  margin: 30px 0 0;
}

.contact-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(124, 99, 74, 0.15);
}

.contact-list dt {
  margin-bottom: 6px;
  color: var(--sage-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: rgba(38, 31, 26, 0.9);
}

.contact-list a {
  color: var(--brown);
  font-weight: 800;
}

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

.map-wrap {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(196, 150, 145, 0.26);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 64px rgba(66, 53, 42, 0.14);
}

.map-wrap iframe {
  width: 100%;
  min-height: 460px;
  flex: 1;
  border: 0;
  filter: saturate(0.8);
}

/* Always-visible escape hatch: in-app browsers (Zalo / Messenger) can block
   the embedded map, so this link still gets visitors to Google Maps. */
.map-link {
  display: block;
  padding: 13px 16px;
  background: var(--ivory, #fbf8f2);
  border-top: 1px solid rgba(196, 150, 145, 0.26);
  color: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
}

.map-link:hover {
  background: rgba(196, 150, 145, 0.14);
}

.floating-ctas {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.floating-ctas a,
.floating-ctas button {
  min-width: 96px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(92, 74, 63, 0.9);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
}

.floating-ctas > :first-child {
  background: var(--sage);
}

.floating-ctas a:hover,
.floating-ctas a:focus-visible,
.floating-ctas button:hover,
.floating-ctas button:focus-visible {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

.site-footer {
  padding: 58px 0 0;
  background: #9c857f;
  color: rgba(255, 255, 255, 0.97);
  font-weight: 500;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 30px;
}

.footer-logo {
  display: block;
  width: 84px;
  height: 84px;
  margin-bottom: 16px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--sage);
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 14px;
  color: var(--ivory);
}

.site-footer h2 {
  font-size: 2rem;
}

.site-footer h3 {
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.97);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, transform 0.25s ease;
}

.footer-social .social-link svg {
  flex-shrink: 0;
}

.footer-social .social-link:hover {
  background: var(--white);
  color: #9c857f;
  border-color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease var(--reveal-delay, 0ms), transform 760ms ease var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  h1 {
    font-size: 5.1rem;
  }

  h2 {
    font-size: 3.35rem;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    gap: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    justify-items: center;
    gap: 0;
    padding: 18px 24px 26px;
    background: rgba(251, 248, 242, 0.98);
    box-shadow: 0 24px 54px rgba(66, 53, 42, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-header:not(.is-scrolled) .site-nav {
    color: rgba(48, 41, 35, 0.94);
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 14px;
    text-align: center;
  }

  .header-cta {
    display: none;
  }

  .about-grid,
  .reviews-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hours-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .hours-panel strong {
    font-size: 2.8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 178px;
  }

  .gallery-item {
    grid-column: span 2;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: span 4;
    grid-row: span 1;
  }

  .gallery-tall {
    grid-column: span 2;
    grid-row: span 2;
  }

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

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

@media (max-width: 640px) {
  .container,
  .hero-content {
    width: min(100% - 32px, 1120px);
  }

  .brand span:last-child {
    max-width: 230px;
    white-space: normal;
    line-height: 1.05;
  }

  h1 {
    max-width: 11.2ch;
    font-size: 2.75rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1.4rem;
  }

  .hero {
    min-height: min(820px, 100svh);
    background-position: 54% center;
  }

  .hero-content {
    padding: 66px 0 78px;
  }

  .hero-copy {
    max-width: 29ch;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .about-media img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  .about-media::before {
    inset: -12px 12px 12px -12px;
  }

  .feature-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    gap: 70px;
  }

  .feature-card,
  .price-card,
  .review-card {
    padding: 24px;
  }

  .price-card {
    padding-top: 16px;
  }

  .service-thumb {
    aspect-ratio: 1.8;
    margin-bottom: 20px;
  }

  .hours-band {
    padding: 58px 0;
  }

  .hours-content {
    gap: 24px;
  }

  .hours-panel {
    width: 100%;
    min-width: 0;
    padding: 28px 22px;
    border-radius: 24px;
  }

  .hours-panel p {
    font-size: 1rem;
  }

  .hours-panel strong,
  .hours-time {
    font-size: 2.05rem;
  }

  .services-section {
    padding-top: 72px;
  }

  .services-section .section-heading {
    margin-bottom: 32px;
  }

  .services-section .section-heading h2 {
    max-width: 9.5ch;
    font-size: 2.32rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 138px;
    gap: 10px;
  }

  .gallery-item,
  .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-large {
    grid-row: span 2;
  }

  .gallery-item {
    border-radius: 18px;
  }

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

  .floating-ctas {
    position: static;
    width: min(100% - 32px, 440px);
    margin: 28px auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .floating-ctas a,
  .floating-ctas button {
    width: auto;
    min-width: 0;
    padding: 11px 8px;
    font-size: 0.88rem;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 0 14px;
  }

  .brand {
    gap: 9px;
    font-size: 1.03rem;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand span:last-child {
    max-width: 190px;
  }

  h1 {
    max-width: 10.8ch;
    font-size: 2.48rem;
  }

  .hero-content {
    padding-top: 64px;
  }

  .hours-panel strong,
  .hours-time {
    font-size: 1.9rem;
  }

  .services-section .section-heading h2 {
    max-width: 10ch;
    font-size: 2.08rem;
  }
}

@media (max-width: 360px) {
  .brand {
    font-size: 0.96rem;
  }

  .brand span:last-child {
    max-width: 170px;
  }

  h1 {
    font-size: 2.28rem;
  }

  .hours-panel {
    padding-inline: 18px;
  }

  .hours-panel strong,
  .hours-time {
    font-size: 1.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reviews-section {
    background-attachment: scroll;
  }

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

/* Ria Spa inspired layout pass */
body {
  padding-top: var(--header-height);
}

.site-header,
.site-header.is-scrolled {
  display: block;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(122, 94, 87, 0.1);
  box-shadow: 0 6px 24px rgba(122, 94, 87, 0.08);
}

.header-inner {
  width: min(1220px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.site-header .brand,
.site-header.is-scrolled .brand,
.site-header:not(.is-scrolled) .brand {
  color: var(--brown);
}

.site-header .site-nav,
.site-header.is-scrolled .site-nav,
.site-header:not(.is-scrolled) .site-nav {
  color: var(--ink);
}

.site-header .nav-toggle span:not(.sr-only),
.site-header.is-scrolled .nav-toggle span:not(.sr-only),
.site-header:not(.is-scrolled) .nav-toggle span:not(.sr-only) {
  background: var(--brown);
}

.brand {
  gap: 11px;
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 18px rgba(66, 43, 23, 0.16);
}

.site-nav {
  gap: clamp(18px, 2vw, 28px);
  font-size: 1rem;
}

.site-nav a::after {
  bottom: -10px;
  background: #ead4ba;
}

.header-cta {
  background: var(--sage);
  color: var(--white);
  border-color: transparent;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  background:
    linear-gradient(90deg, rgba(58, 40, 42, 0.62), rgba(58, 40, 42, 0.24) 48%, rgba(58, 40, 42, 0.04)),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1800&q=85") center calc(50% + var(--hero-shift, 0px)) / cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 64% 20%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.32), transparent 28%);
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  top: 10%;
  right: 18%;
  width: min(28vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0.62;
  filter: blur(0.1px);
}

.hero-ornament::before,
.hero-ornament::after {
  position: absolute;
  inset: 13%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 42% 58% 48% 52%;
}

.hero-ornament::after {
  inset: 26%;
  transform: rotate(45deg);
}

.hero-content {
  padding: clamp(70px, 8vw, 118px) 0;
}

.hero h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(4.2rem, 8.2vw, 8rem);
  line-height: 0.96;
  text-shadow: 0 18px 42px rgba(44, 31, 22, 0.25);
}

.hero-script {
  margin-top: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(2.3rem, 4.4vw, 4.45rem);
  font-style: italic;
  line-height: 0.92;
  text-shadow: 0 10px 28px rgba(44, 31, 22, 0.22);
}

.hero-strong {
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 10px 28px rgba(44, 31, 22, 0.25);
}

.hero-copy {
  max-width: 560px;
  margin-top: 28px;
}

.hero-dots {
  margin-top: 34px;
}

.about-section {
  background: #fdf5f4;
}

.about-ria-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}

.section-kicker {
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #c89e74;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-style: italic;
  line-height: 0.9;
}

.about-ria-copy h2,
.ria-section-heading h2 {
  color: var(--brown);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.about-ria-copy > p:not(.section-kicker) {
  max-width: 720px;
  margin-top: 26px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(92, 74, 63, 0.22);
  color: rgba(48, 41, 35, 0.9);
  font-size: 1.08rem;
}

.about-actions .button {
  min-width: 160px;
  background: var(--sage);
}

.about-actions .button-light {
  background: #f8ebe7;
  color: #6b524e;
}

.about-ria-media {
  position: relative;
}

.about-ria-media img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 42% 42% 8px 8px;
  box-shadow: 0 24px 70px rgba(92, 62, 35, 0.16);
}

.about-photo-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-width: 190px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: #6b524e;
  box-shadow: var(--soft-shadow);
}

.about-photo-note strong,
.about-photo-note span {
  display: block;
}

.about-photo-note span {
  margin-top: 4px;
  color: rgba(48, 41, 35, 0.86);
}

.ria-feature-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-item {
  padding: 32px 28px 34px;
  border: 1px solid rgba(200, 155, 143, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(150, 92, 88, 0.1);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease, border-color 320ms ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 124, 118, 0.3);
  box-shadow: 0 26px 58px rgba(150, 92, 88, 0.16);
}

.feature-num {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-title {
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--brown);
}

.feature-desc {
  color: rgba(87, 69, 66, 0.88);
  font-size: 1rem;
  line-height: 1.55;
}

.hours-band {
  background: #ecd6d1;
  color: var(--brown);
}

.hours-content h2,
.hours-time {
  color: var(--brown);
}

.hours-panel {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(184, 124, 118, 0.3);
}

.hours-panel p {
  color: var(--sage-dark);
}

.services-section {
  background: #fdf8f7;
}

.ria-section-heading {
  max-width: 880px;
  margin: 0 auto 54px;
  text-align: center;
}

.ria-section-heading p:not(.section-kicker) {
  max-width: 580px;
  margin: 22px auto 0;
  color: rgba(48, 41, 35, 0.88);
}

.ria-service-list {
  display: grid;
  gap: clamp(30px, 5vw, 62px);
}

.ria-service-card {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.78fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
  padding: clamp(18px, 2.8vw, 32px);
  border: 1px solid rgba(200, 155, 143, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(150, 92, 88, 0.1);
}

.ria-service-card-alt {
  background: #a3847f;
  color: var(--white);
}

.ria-service-card-alt .ria-service-copy .eyebrow,
.ria-service-card-alt .direction-link {
  color: #f7e6cc;
}

.ria-service-card-alt .ria-service-copy h3 {
  font-weight: 500;
}

.ria-service-card-alt .ria-price-list span {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
}

.ria-service-card-alt .ria-price-list strong {
  font-weight: 700;
}

.ria-service-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
}

.ria-service-images img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1.48;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  filter: saturate(1.02) brightness(1.1);
  transition: transform 700ms ease, filter 700ms ease;
}

.ria-service-images img:nth-child(2) {
  aspect-ratio: 2.05;
}

.ria-service-card:hover .ria-service-images img {
  filter: saturate(1.08);
  transform: scale(1.018);
}

.ria-service-copy {
  align-self: center;
  padding: clamp(6px, 2vw, 20px);
}

.ria-service-copy h3 {
  margin-bottom: 26px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.ria-price-list,
.ria-addon-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ria-price-list li,
.ria-addon-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(124, 99, 74, 0.18);
}

.ria-service-card-alt .ria-price-list li {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.ria-price-list strong,
.ria-addon-list strong {
  font-size: 1.25rem;
}

.direction-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--sage-dark);
  font-weight: 700;
}

.ria-addon-menu {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 30px;
  background: #f8ebe7;
  color: #6b524e;
}

.gallery-section {
  background: #faf1ee;
}

.reviews-section {
  background:
    linear-gradient(rgba(251, 242, 240, 0.88), rgba(251, 242, 240, 0.94)),
    url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1600&q=80") center / cover fixed;
}

.contact-section {
  background: #ecd6d1;
}

.floating-ctas {
  gap: 14px;
}

.floating-ctas a,
.floating-ctas button {
  display: grid;
  width: 68px;
  min-width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 124, 118, 0.94);
  box-shadow: 0 10px 0 rgba(184, 124, 118, 0.2), 0 18px 38px rgba(55, 34, 20, 0.2);
}

.floating-ctas > :first-child {
  background: #d3ad89;
}

@media (max-width: 980px) {
  :root {
    --header-height: 58px;
  }

  body {
    padding-top: var(--header-height);
  }

  .header-inner {
    width: min(100% - 28px, 1220px);
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .site-nav {
    top: var(--header-height);
  }

  .hero {
    min-height: min(760px, calc(100svh - var(--header-height)));
    background-position: 56% center;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.65rem);
  }

  .hero-script {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-strong {
    font-size: clamp(1.55rem, 7vw, 2.15rem);
  }

  .hero-ornament {
    top: 8%;
    right: -12%;
    width: 58vw;
  }

  .about-ria-layout,
  .ria-service-card,
  .ria-addon-menu {
    grid-template-columns: 1fr;
  }

  .about-ria-media img {
    min-height: 0;
    aspect-ratio: 1.05;
  }

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

  .ria-service-images {
    grid-template-columns: 1fr;
  }

  .ria-service-images img {
    min-height: 0;
    aspect-ratio: 1.42;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-header.is-scrolled {
    box-shadow: 0 8px 22px rgba(77, 53, 33, 0.18);
  }

  .brand span:last-child {
    max-width: 230px;
  }

  .hero-content {
    padding: 54px 0 68px;
  }

  .hero-ornament {
    display: none;
  }

  .hero h1 {
    max-width: 8.2ch;
    font-size: 3.35rem;
  }

  .hero-copy {
    max-width: 30ch;
  }

  .section-kicker {
    font-size: 2.55rem;
  }

  .about-ria-copy h2,
  .ria-section-heading h2 {
    font-size: 3.05rem;
  }

  .about-ria-copy > p:not(.section-kicker) {
    font-size: 1rem;
  }

  .about-actions {
    flex-direction: column;
  }

  .about-info-list p {
    grid-template-columns: 82px 1fr;
  }

  .about-photo-note {
    right: 12px;
    bottom: 12px;
    min-width: 164px;
    padding: 14px 16px;
  }

  .ria-feature-row {
    grid-template-columns: 1fr;
  }

  .ria-service-card {
    padding: 16px;
    border-radius: 24px;
  }

  .ria-service-images {
    grid-template-columns: 1fr;
  }

  .ria-service-images img,
  .ria-service-images img:nth-child(2) {
    min-height: 0;
    aspect-ratio: 1.28;
  }

  .ria-service-images img:nth-child(2) {
    display: none;
  }

  .ria-service-copy {
    padding: 6px 8px 10px;
  }

  .ria-service-copy h3 {
    font-size: 2.25rem;
  }

  .ria-addon-menu {
    border-radius: 24px;
  }

  .floating-ctas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(100% - 32px, 440px);
    margin: 28px auto;
  }

  .floating-ctas a,
  .floating-ctas button {
    width: auto;
    min-width: 0;
    height: 48px;
    border-radius: 999px;
  }
}

/* =========================================================================
   Spa "slay" refinement pass
   - smaller, airier typography with wide tracking
   - more lively, delicate motion for a true spa vibe
   ========================================================================= */

:root {
  --tracking-wide: 0.1em;
  --tracking-soft: 0;
}

body {
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.72;
}

/* Keep labels and UI accents crisp against the lighter body weight */
.eyebrow,
.button,
.site-nav,
.contact-list dt,
.about-info-list span,
.direction-link,
.site-footer h3,
strong,
b {
  font-weight: 600;
}

/* --- Daintier headings: smaller, lighter, more refined ---------------- */
h1,
h2,
h3 {
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-shadow: 0 14px 38px rgba(44, 31, 22, 0.22);
}

.hero-script {
  margin-top: 10px;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  letter-spacing: 0.005em;
}

.hero-strong {
  margin-top: 6px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.97);
}

.hero-copy {
  margin-top: 22px;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.97);
}

.section-kicker {
  font-size: clamp(1.7rem, 2.6vw, 2.375rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.about-ria-copy h2,
.ria-section-heading h2,
.hours-content h2,
.section-heading h2,
.section-copy h2,
.contact-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.16;
}

.about-ria-copy > p:not(.section-kicker),
.section-heading > p,
.section-copy > p:not(.eyebrow),
.ria-section-heading p:not(.section-kicker) {
  font-size: clamp(1.02rem, 1.2vw, 1.1rem);
  font-weight: 500;
}

.ria-service-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
}

h3 {
  font-size: 1.3rem;
}

.hours-panel strong,
.hours-time {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

.review-card p {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.4;
  font-weight: 400;
}

.site-footer h2 {
  font-size: 1.5rem;
}

/* Wide, delicate tracking on uppercase labels only = spa elegance.
   (Description paragraphs are intentionally excluded so they stay tight
   and readable instead of looking sparse.) */
.eyebrow,
.site-footer h3,
.contact-list dt,
.about-info-list span,
.price-card-header p {
  letter-spacing: var(--tracking-wide);
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.site-nav {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.header-cta {
  min-height: 36px;
  padding: 9px 20px;
  font-size: 0.88rem;
}

/* (old flat feature-row label sizing removed — now numbered cards) */

.button {
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
}

.direction-link {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Keyframes -------------------------------------------------------- */
@keyframes spaFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes spaSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spaBreathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.8;
  }
}

@keyframes spaSheen {
  0% {
    transform: translateX(-130%) skewX(-18deg);
  }
  60%,
  100% {
    transform: translateX(230%) skewX(-18deg);
  }
}

@keyframes spaPetal {
  0% {
    transform: translateY(-8%) translateX(0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: var(--petal-opacity, 0.7);
  }
  100% {
    transform: translateY(112vh) translateX(var(--petal-drift, 40px)) rotate(420deg);
    opacity: 0;
  }
}

@keyframes spaUnderline {
  0%,
  100% {
    transform: scaleX(0.55);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* --- Lively reveal: add gentle scale + blur lift ---------------------- */
.reveal {
  filter: blur(6px);
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    filter 820ms ease var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  filter: blur(0);
  transform: translateY(0) scale(1);
}

/* --- Hero: spinning ornament + floating petals layer ------------------ */
.hero-ornament {
  animation: spaSpin 60s linear infinite;
}

.hero-ornament::before {
  animation: spaBreathe 7s ease-in-out infinite;
}

.hero-petals {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-petals span {
  position: absolute;
  top: -6%;
  width: var(--petal-size, 12px);
  height: var(--petal-size, 12px);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(240, 217, 143, 0.4));
  border-radius: 80% 0 80% 0;
  filter: blur(0.4px);
  animation: spaPetal var(--petal-duration, 14s) linear infinite;
  animation-delay: var(--petal-delay, 0s);
}

.hero-script {
  position: relative;
  display: inline-block;
}

.hero-script::after {
  position: absolute;
  left: 0;
  bottom: -0.18em;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: center;
  animation: spaUnderline 4.5s ease-in-out infinite;
}

/* --- Shimmering sweep across buttons on hover ------------------------- */
.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-130%) skewX(-18deg);
  pointer-events: none;
}

.button:hover::after,
.button:focus-visible::after {
  animation: spaSheen 900ms ease;
}

/* --- Nav links: soft glow on hover ------------------------------------ */
.site-nav a {
  transition: color 220ms ease, text-shadow 220ms ease;
}

.site-nav a:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(240, 217, 143, 0.55);
}

/* --- Feature pill: animated sheen sweep ------------------------------- */
/* Numbered feature cards are styled in the layout section above. */

/* --- Service cards: smoother lift + tilt-ready ------------------------ */
.ria-service-card,
.ria-addon-menu,
.review-card,
.contact-card {
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
  will-change: transform;
}

.ria-service-card:hover,
.ria-addon-menu:hover,
.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 38px 90px rgba(92, 62, 35, 0.18);
}

.ria-service-images img {
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms ease;
}

.ria-service-card:hover .ria-service-images img {
  transform: scale(1.05);
}

/* Price rows: subtle slide + gold accent on hover */
.ria-price-list li,
.ria-addon-list li {
  transition: padding-left 260ms ease, color 260ms ease;
}

.ria-price-list li:hover,
.ria-addon-list li:hover {
  padding-left: 10px;
}

.ria-price-list li:hover strong,
.ria-addon-list li:hover strong {
  color: var(--gold);
}

/* --- About photo note gently floats ----------------------------------- */
.about-photo-note {
  animation: spaFloat 6s ease-in-out infinite;
}

/* --- Floating CTAs: soft breathing pulse on the primary --------------- */
.floating-ctas a,
.floating-ctas button {
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.floating-ctas a:hover,
.floating-ctas button:hover {
  transform: translateY(-4px) scale(1.05);
}

/* --- Scroll progress bar ---------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--sage), var(--gold), #ead4ba);
  box-shadow: 0 1px 10px rgba(185, 154, 99, 0.5);
  pointer-events: none;
}

/* Slightly tighter, more delicate section rhythm */
.section {
  padding: clamp(88px, 10vw, 130px) 0;
}

.ria-section-heading {
  margin-bottom: clamp(32px, 4vw, 46px);
}

/* --- Airier, more delicate layout: lighter dividers + breathing room --- */
.about-ria-copy > p:not(.section-kicker) {
  border-bottom-color: rgba(92, 74, 63, 0.12);
}

.ria-price-list li,
.ria-addon-list li {
  padding: 18px 0;
  border-bottom-color: rgba(124, 99, 74, 0.1);
}

.ria-service-card-alt .ria-price-list li {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.contact-list div,
.about-info-list {
  border-bottom-color: rgba(124, 99, 74, 0.1);
  border-top-color: rgba(138, 121, 108, 0.14);
}

.ria-price-list strong,
.ria-addon-list strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.ria-price-list span,
.ria-addon-list span {
  font-size: 0.98rem;
}

.ria-price-list .price-tier {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.ria-price-list .price-tier small {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--sage-dark);
}

.ria-service-card-alt .ria-price-list .price-tier small {
  color: rgba(255, 255, 255, 0.88);
}

/* Gentle, readable paragraphs */
p {
  letter-spacing: var(--tracking-soft);
}

.about-ria-copy > p:not(.section-kicker) {
  margin-top: 22px;
  padding-bottom: 30px;
  line-height: 1.65;
}

.eyebrow {
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
  }

  .hero-script {
    font-size: clamp(1.5rem, 7vw, 2.4rem);
  }

  .hero-strong {
    font-size: clamp(0.82rem, 4vw, 1.05rem);
    letter-spacing: 0.28em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ornament,
  .hero-ornament::before,
  .hero-petals span,
  .hero-script::after,
  .ria-feature-row::after,
  .about-photo-note {
    animation: none !important;
  }

  .reveal {
    filter: none;
    transform: none;
  }
}

/* --- Tidy, uniform gallery: even tiles, no chaotic spans --------------- */
.gallery-grid {
  grid-auto-flow: row;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: clamp(12px, 1.6vw, 18px);
}

.gallery-item,
.gallery-large,
.gallery-tall,
.gallery-wide {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

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

  .gallery-item,
  .gallery-large,
  .gallery-tall,
  .gallery-wide {
    aspect-ratio: 16 / 10;
  }
}

/* --- Booking modal ---------------------------------------------------- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-modal[hidden] {
  display: none;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(60, 40, 38, 0.5);
  backdrop-filter: blur(3px);
}

.booking-dialog {
  position: relative;
  width: min(440px, 100%);
  background: var(--ivory);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px 32px 32px;
  text-align: center;
  animation: booking-pop 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes booking-pop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.booking-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--brown-soft);
  cursor: pointer;
  padding: 4px 8px;
}

.booking-close:hover {
  color: var(--brown);
}

.booking-dialog h2 {
  margin: 6px 0 12px;
}

.booking-copy {
  color: var(--brown);
  margin: 0 0 20px;
  font-size: 1.02rem;
}

.booking-phone {
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 600;
  color: var(--sage-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.booking-phone:hover {
  color: var(--brown);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.booking-actions .button {
  flex: 1 1 150px;
}

.booking-hours {
  margin: 20px 0 0;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--brown);
}

/* --- Grand-opening promo popup ----------------------------------------- */
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.promo-modal[hidden] {
  display: none;
}

.promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(60, 40, 38, 0.55);
  backdrop-filter: blur(3px);
}

.promo-dialog {
  position: relative;
  width: min(760px, 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: booking-pop 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.promo-banner-button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.promo-banner-button img {
  display: block;
  width: 100%;
  height: auto;
}

.promo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(60, 40, 38, 0.55);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 200ms ease, transform 200ms ease;
}

.promo-close:hover,
.promo-close:focus-visible {
  background: var(--sage-dark);
  transform: scale(1.06);
}

/* --- Relaxing background-music toggle --------------------------------- */
.music-toggle {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(184, 124, 118, 0.94);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(55, 34, 20, 0.22);
  backdrop-filter: blur(14px);
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.music-toggle:hover,
.music-toggle:focus-visible {
  background: var(--sage-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(55, 34, 20, 0.28);
}

.music-toggle-icon {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 18px;
}

.music-toggle-icon i {
  display: block;
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.92;
}

.music-toggle.is-playing .music-toggle-icon i {
  animation: musicBars 1s ease-in-out infinite;
}

.music-toggle-icon i:nth-child(2) {
  animation-delay: 0.2s;
}

.music-toggle-icon i:nth-child(3) {
  animation-delay: 0.4s;
}

.music-toggle-icon i:nth-child(4) {
  animation-delay: 0.15s;
}

@keyframes musicBars {
  0%,
  100% {
    height: 5px;
  }
  50% {
    height: 16px;
  }
}

@media (max-width: 640px) {
  .music-toggle {
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .music-toggle.is-playing .music-toggle-icon i {
    animation: none !important;
    height: 12px;
  }
}

/* =========================================================================
   Spa refinement: nude flower marks, brighter photos, soft healing backdrop
   ========================================================================= */

/* A delicate, thin nude flower above each feature card title */
.feature-title::before {
  content: "\273F"; /* ✿ nude flower mark */
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
}

/* Warm, gently brightening wash over gallery photos */
.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(rgba(255, 240, 235, 0.12), rgba(58, 40, 42, 0.12));
  pointer-events: none;
}

/* Faint, blurred organic shapes for a calm, healing backdrop */
.about-section,
.services-section,
.reviews-section {
  position: relative;
  overflow: hidden;
}

.about-section > .container,
.services-section > .container,
.reviews-section > .container {
  position: relative;
  z-index: 1;
}

.about-section::before,
.services-section::after {
  position: absolute;
  content: "";
  width: clamp(260px, 36vw, 520px);
  aspect-ratio: 1;
  border-radius: 46% 54% 52% 48%;
  background: radial-gradient(circle at 35% 35%, rgba(200, 155, 143, 0.18), transparent 68%);
  filter: blur(26px);
  pointer-events: none;
  z-index: 0;
}

.about-section::before {
  top: -8%;
  right: -10%;
}

.services-section::after {
  bottom: -10%;
  left: -12%;
}

@media (prefers-reduced-motion: reduce) {
  .about-section::before,
  .services-section::after {
    display: none;
  }
}

/* --- Touch devices: no sticky :hover so a single tap fires the button --- */
@media (hover: none) {
  .button:hover,
  .button-ghost:hover,
  .floating-ctas a:hover,
  .floating-ctas button:hover,
  .booking-phone:hover {
    transform: none;
  }
}
