/* ===== Design tokens ===== */
:root {
  --blush: #E3C6BE;
  --blush-deep: #B9776A;
  --cream: #FBF7F4;
  --paper-alt: #F3E7E1;
  --ink: #2B2321;
  --muted: #8A7972;
  --line: rgba(43, 35, 33, 0.1);
  --radius: 4px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-style: italic; font-weight: 400; margin: 0 0 0.5em; text-wrap: balance; }
p { margin: 0 0 1em; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--blush-deep);
  font-weight: 600;
  font-style: normal;
  margin: 0 0 0.7em;
}
.center { text-align: center; }
h2.center { max-width: 560px; margin-left: auto; margin-right: auto; }
.section-sub { font-size: 0.92rem; color: var(--muted); font-style: normal; margin: -0.6em 0 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-style: normal;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--blush-deep); color: #fff; }
.btn-primary:hover { background: #9C5F53; transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn.full { width: 100%; text-align: center; padding: 16px; font-size: 1rem; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 244, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 46px; height: 46px; border-radius: 10px; object-fit: contain; flex-shrink: 0; }
.brand-text { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--ink); }
.brand-text em { font-style: italic; color: var(--blush-deep); }
.brand-text.light { color: #fff; }
.brand-text.light em { color: var(--blush); }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 0.92rem; font-weight: 500; color: var(--ink); }
.main-nav a:hover { color: var(--blush-deep); }
.nav-cta { background: var(--blush-deep); color: #fff !important; padding: 10px 22px; border-radius: 999px; }
.nav-cta:hover { background: #9C5F53; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(43,35,33,0.85) 0%, rgba(43,35,33,0.66) 40%, rgba(43,35,33,0.32) 72%, rgba(43,35,33,0.18) 100%),
    url('../images/hero-room.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  color: #fff;
  padding: 110px 0;
  /* height tied to viewport WIDTH (not a fixed px) so the crop always shows
     the same fraction of the (portrait) photo regardless of screen size —
     zoomed out further so the sign and the full chair sit comfortably in
     frame, matching how much of the photo the mobile layout already shows */
  min-height: clamp(650px, 73vw, 1300px);
  display: flex;
  align-items: center;
}
.hero-inner { max-width: 560px; }
.hero .eyebrow { color: var(--blush); text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.3rem); line-height: 1.16; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.45); }
.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,0.92); max-width: 480px; font-style: normal; text-shadow: 0 1px 14px rgba(0,0,0,0.5); }
.hero-actions { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }

/* ===== Treatments & Pricing ===== */
.treatments { padding: 100px 0; }
.treatment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; align-items: start; }
.treatment-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px 28px;
  text-align: center;
  transition: box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
}
.treatment-card:hover { box-shadow: 0 14px 30px rgba(43,35,33,0.08); }
.treatment-card summary {
  cursor: pointer;
  list-style: none;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.treatment-card summary::-webkit-details-marker { display: none; }
.treatment-card summary:hover h3 { color: var(--blush-deep); }
.treatment-card h3 { font-size: 1.2rem; margin-bottom: 10px; transition: color 0.15s ease; }
.treatment-card h3 .chevron {
  display: inline-block;
  font-style: normal;
  color: var(--blush-deep);
  font-size: 0.85rem;
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.treatment-card[open] .chevron { transform: rotate(180deg); }
.treatment-card summary p { font-size: 0.93rem; color: var(--muted); margin: 0; font-style: normal; }
.treatment-card .price-list { margin-top: 24px; padding-top: 20px; border-top: 1px dashed var(--line); text-align: left; }

.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li { border-bottom: 1px dashed var(--line); font-style: normal; }
.price-list li:last-child { border-bottom: none; }
.price-list a.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 10px; margin: 0 -10px; border-radius: 8px;
  color: inherit; cursor: pointer;
  transition: background 0.15s ease, padding-left 0.15s ease;
}
.price-list a.price-row:hover,
.price-list a.price-row:focus-visible { background: var(--paper-alt); padding-left: 16px; }
.price-list a.price-row:hover em,
.price-list a.price-row:focus-visible em { color: var(--blush-deep); }
.price-list li span { font-size: 0.95rem; }
.price-list li span small { display: block; font-size: 0.76rem; color: var(--muted); margin-top: 2px; }
.price-list li em { font-style: normal; font-weight: 600; color: var(--ink); white-space: nowrap; margin-left: 12px; transition: color 0.15s ease; }
.price-note { margin-top: 30px; font-size: 0.85rem; color: var(--muted); text-align: center; }

/* ===== Results gallery ===== */
.results { padding: 0 0 100px; background: var(--paper-alt); padding-top: 100px; }
.results-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin: 50px auto 0;
}
.results-row { display: flex; gap: 16px; }
.results-row .results-item { flex: 1 1 0; min-width: 0; }
.results-item {
  position: relative; margin: 0; aspect-ratio: 3/4;
  border-radius: 10px; overflow: hidden; background: #fff;
  box-shadow: 0 1px 3px rgba(43,35,33,0.08);
}
.results-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.results-item:hover img { transform: scale(1.06); }
/* third photo sits on its own row, centered, at the exact width of the two above it */
.results-item--solo { width: calc(50% - 8px); margin: 0 auto; }

/* ===== Section divider ===== */
/* full-width strip so it can carry a background matching whichever sections
   flank it; the ornament itself stays a small centered accent */
.section-divider--tint { background: var(--paper-alt); }
.section-divider > span {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  max-width: 220px; margin: 0 auto; padding: 24px;
}
.section-divider > span::before, .section-divider > span::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--blush-deep));
}
.section-divider > span::after { background: linear-gradient(to left, transparent, var(--blush-deep)); }
.section-divider i {
  width: 8px; height: 8px; flex-shrink: 0;
  background: var(--blush-deep); transform: rotate(45deg);
  border-radius: 2px;
}

/* ===== About / Team ===== */
.about { padding: 100px 0; }
.about-inner { display: flex; align-items: center; gap: 60px; }
.about-photo { flex: 0 0 300px; }
.about-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(43,35,33,0.16);
  display: block;
}
.about-text { flex: 1; }
.about-text h2 { font-size: 2rem; }
.about-text p:last-child { font-style: normal; color: var(--muted); max-width: 460px; }

/* ===== Reviews ===== */
.reviews { padding: 0 0 100px; background: var(--paper-alt); padding-top: 100px; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 50px; }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 30px;
}
.review-card .stars { color: var(--blush-deep); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { font-style: italic; font-family: var(--serif); font-size: 1.02rem; color: var(--ink); margin-bottom: 14px; }
.review-name { font-size: 0.82rem; font-weight: 600; font-style: normal; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== Booking form ===== */
.book { padding: 100px 0 100px; }
.booking-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 40px 44px;
  margin-bottom: 90px;
}
.booking-banner .eyebrow { color: var(--blush); }
.booking-banner h2 { color: #fff; margin-bottom: 6px; }
.booking-banner p { color: rgba(255,255,255,0.8); font-style: normal; margin: 0; max-width: 440px; }
.booking-banner .btn-primary { flex-shrink: 0; white-space: nowrap; }
.book-question { text-align: center; font-size: 0.92rem; color: var(--muted); }
.book-question a { color: var(--blush-deep); font-weight: 600; }
.book-question a:hover { text-decoration: underline; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #fff; padding: 46px 0 20px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 8px; font-style: normal; }
.footer-contact p { margin: 0 0 8px; font-size: 0.92rem; color: rgba(255,255,255,0.85); font-style: normal; }
.footer-contact a:hover { color: var(--blush); text-decoration: underline; }
.footer-copy { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.45); margin: 18px 0 0; }
.footer-copy a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.footer-copy a:hover { color: var(--blush); }

/* ===== Booking policy page ===== */
.policy { padding: 160px 0 100px; }
.policy-inner { max-width: 720px; margin: 0 auto; }
.policy h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.policy-intro { color: var(--muted); font-style: normal; font-size: 1.02rem; max-width: 560px; margin-bottom: 50px; }
.policy-list { display: flex; flex-direction: column; gap: 26px; margin-bottom: 50px; }
.policy-item {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 26px 30px;
}
.policy-item h2 { font-size: 1.05rem; margin-bottom: 8px; }
.policy-item p { font-style: normal; color: var(--muted); margin: 0; font-size: 0.95rem; }
.policy-item p strong { color: var(--ink); font-weight: 600; }
.policy-question { font-style: normal; color: var(--muted); margin-bottom: 30px; }
.policy-question a { color: var(--blush-deep); font-weight: 600; }
.policy-question a:hover { text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .main-nav {
    position: fixed; inset: 66px 0 auto 0; background: var(--cream);
    flex-direction: column; align-items: flex-start; padding: 20px 24px;
    border-bottom: 1px solid var(--line); gap: 16px;
    transform: translateY(-120%); transition: transform 0.2s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero {
    min-height: 600px;
    background:
      linear-gradient(rgba(43,35,33,0.75), rgba(43,35,33,0.75)),
      url('../images/hero-room.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding: 120px 0 90px;
  }
  .hero-inner { max-width: 100%; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .treatment-grid { grid-template-columns: 1fr; }
  .about-inner { flex-direction: column; gap: 30px; }
  .about-photo { flex-basis: auto; width: 100%; max-width: 300px; }
  .review-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .results-grid { gap: 10px; }
  .results-row { gap: 10px; }
  .form-row-split { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 80px; }
  .footer-inner { flex-direction: column; }
}
