:root {
  --ink: #2f2521;
  --muted: #776861;
  --soft: #f7efe9;
  --paper: #fffaf6;
  --panel: #ecd7c9;
  --accent: #a98467;
  --accent-dark: #755745;
  --line: rgba(82, 61, 52, 0.16);
  --shadow: 0 22px 70px rgba(74, 49, 39, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, system-ui, sans-serif;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 54px;
  height: 54px;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.32rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav a {
  color: rgba(47, 37, 33, 0.72);
}

.desktop-nav a.is-active,
.desktop-nav a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent-dark);
  color: #fffaf6;
  box-shadow: 0 18px 34px rgba(117, 87, 69, 0.22);
}

.desktop-nav .button-primary {
  color: #fffaf6;
}

.button-secondary {
  border-color: rgba(117, 87, 69, 0.25);
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.58);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf6;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: #fffaf6;
}

.mobile-nav-panel {
  display: grid;
  gap: 14px;
  width: min(100% - 40px, 560px);
  margin: 0 auto;
  padding: 24px 0 28px;
}

.mobile-nav a {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: linear-gradient(
      90deg,
      rgba(54, 35, 29, 0.82) 0%,
      rgba(74, 48, 38, 0.52) 42%,
      rgba(234, 211, 197, 0.08) 100%
    ),
    url("./assets/images/hero.jpg") center right / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 118px max(40px, calc((100% - 1160px) / 2));
  color: #fffaf6;
  text-shadow: 0 2px 26px rgba(43, 28, 24, 0.42);
}

.script-eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: WindSong, "Cormorant Garamond", cursive;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.hero .script-eyebrow {
  color: #ead3c5;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: clamp(4rem, 8.8vw, 8.8rem);
  font-weight: 500;
}

h2 {
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6.2rem);
  font-weight: 500;
}

h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 600;
}

.lead {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.85;
}

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

.section {
  padding: clamp(84px, 10vw, 150px) 0;
}

.section-tight {
  padding-top: clamp(60px, 7vw, 96px);
}

.page-hero {
  padding: clamp(70px, 8vw, 110px) 0 clamp(36px, 5vw, 68px);
}

.page-hero h1 {
  color: rgba(47, 37, 33, 0.72);
  font-size: clamp(3.4rem, 7vw, 6.4rem);
}

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

.section-heading p:not(.script-eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.page-hero .section-heading p:not(.script-eyebrow) {
  max-width: 650px;
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: min(640px, 72vw);
  object-fit: cover;
}

.copy-block p {
  color: var(--muted);
  font-size: 1.05rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill-row span {
  border: 1px solid rgba(117, 87, 69, 0.2);
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  font-weight: 800;
}

.treatment-menu {
  max-width: 940px;
  margin: 0 auto;
}

.category-title {
  margin: 52px 0 10px;
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 500;
}

.treatment-row {
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--line);
}

.treatment-line {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.treatment-line h3 {
  color: var(--accent-dark);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.leader {
  flex: 1;
  border-bottom: 1px dotted rgba(117, 87, 69, 0.45);
  transform: translateY(-5px);
}

.price {
  color: var(--accent-dark);
  font-size: 1.12rem;
  font-weight: 800;
  white-space: nowrap;
}

.duration {
  display: block;
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.treatment-row p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.warm-panel {
  border-radius: 34px;
  background: linear-gradient(135deg, #efd9ca, #f7ebe2);
  padding: clamp(54px, 8vw, 96px);
}

.hours-list {
  display: grid;
  gap: 28px;
  max-width: 820px;
  margin: 54px auto 0;
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  color: #655851;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  letter-spacing: 0.02em;
}

.reviews-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.featured-quote {
  margin: 34px auto 26px;
  color: #665c57;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  font-style: italic;
  line-height: 1.55;
}

.review-meta {
  color: var(--accent-dark);
  font-weight: 800;
}

.mini-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 58px;
  text-align: left;
}

.mini-review,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  padding: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.contact-card h3 {
  margin-bottom: 12px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.map-frame {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

.booking-panel {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff6ef;
  padding: 54px 0 84px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 34px;
}

.footer-inner p,
.footer-inner a {
  color: var(--muted);
}

.studio-credit {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent-dark) !important;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sticky-book {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  animation: softEntrance 900ms ease both;
}

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

@keyframes softEntrance {
  from {
    opacity: 0.88;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero {
    min-height: 680px;
    background: linear-gradient(
        180deg,
        rgba(44, 29, 25, 0.42) 0%,
        rgba(54, 35, 29, 0.6) 54%,
        rgba(255, 250, 246, 0.2) 100%
      ),
      url("./assets/images/hero.jpg") center top / cover;
  }

  .hero-content {
    margin: 0 auto 82px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .split,
  .contact-grid,
  .footer-inner,
  .mini-reviews {
    grid-template-columns: 1fr;
  }

  .warm-panel {
    padding: 48px 22px;
  }

  .hours-row,
  .treatment-line {
    grid-template-columns: 1fr;
  }

  .hours-row {
    display: grid;
    gap: 2px;
  }

  .leader {
    display: none;
  }

  .sticky-book {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.78rem;
  }
}
