/* =========================================================
   Timeless Med Spa — editorial luxury
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400;1,9..144,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --ink:        #1b1b19;
  --ink-soft:   #3b3b37;
  --bone:       #f4ede2;
  --paper:      #fbf7f0;
  --paper-2:    #f7f1e6;
  --teal-deep:  #0e4f5a;
  --teal:       #2a8d96;
  --teal-soft:  #cde1e1;
  --teal-bright:#2dbdc8;
  --clay:       #c19577;
  --rule:       rgba(27,27,25,0.12);
  --rule-soft:  rgba(27,27,25,0.06);

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --max:       1320px;
  --gutter:    clamp(20px, 4vw, 56px);
  --ease:      cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

::selection { background: var(--teal-deep); color: var(--paper); }

/* ---------- typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 60, "WONK" 0, "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 8.8vw, 132px); }
h2 { font-size: clamp(36px, 5.4vw, 76px); }
h3 { font-size: clamp(24px, 2.6vw, 36px); letter-spacing: -0.015em; }
h4 { font-size: clamp(18px, 1.4vw, 22px); }

.italic { font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

.numeral {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--teal-deep);
}

p { margin: 0 0 1em; max-width: 60ch; }

p.lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 32ch;
}

/* ---------- layout ---------- */

.shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }

section { position: relative; }
.section { padding: clamp(72px, 11vw, 160px) 0; }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(251,247,240,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-soft);
}

.site-header .top-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px var(--gutter);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand img { height: 54px; width: auto; }

.primary-nav {
  display: flex;
  gap: clamp(20px, 2.6vw, 38px);
  justify-self: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.primary-nav a {
  position: relative;
  padding: 4px 0;
  color: var(--ink-soft);
  transition: color .25s var(--ease);
}
.primary-nav a:hover, .primary-nav a.is-active { color: var(--teal-bright); }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--teal-bright);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease);
}
.primary-nav a:hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-actions .phone {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.header-actions .phone:hover { color: var(--ink); }

.menu-toggle {
  display: none;
  width: 36px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s;
}
.menu-toggle span:nth-child(2) { width: 20px; margin-left: auto; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .phone { display: none; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s, border-color .25s;
  cursor: pointer;
}

.btn:hover { background: var(--teal-deep); border-color: var(--teal-deep); transform: translateY(-1px); }

.btn .arrow {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 8px; height: 1px;
  background: currentColor;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
.btn .arrow::before {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 8px; height: 1px;
  background: currentColor;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: right center;
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--paper); }

.btn.light { color: var(--paper); border-color: rgba(255,255,255,0.55); background: transparent; }
.btn.light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn.compact { padding: 12px 20px; font-size: 11px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 4px;
}

.link-arrow::after {
  content: "→";
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  transition: transform .3s var(--ease);
}

.link-arrow:hover::after { transform: translateX(6px); }

/* ---------- hero ---------- */

.hero {
  padding-top: 140px;
  padding-bottom: clamp(72px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}

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

.hero h1 { margin: 28px 0 36px; }

.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise .9s var(--ease) forwards;
}
.hero h1 .line:nth-child(2) span { animation-delay: .12s; }
.hero h1 .line:nth-child(3) span { animation-delay: .24s; }

@keyframes rise { to { transform: translateY(0); } }

.hero-image {
  position: relative;
  aspect-ratio: 5 / 6;
  background: var(--teal-soft);
  overflow: hidden;
  border-radius: 2px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.04);
  animation: drift 14s ease-in-out infinite alternate;
}

@keyframes drift { to { transform: scale(1.08) translate(-1%, -1%); } }

.hero-image .frame-num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--paper);
  background: rgba(14,79,90,0.7);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  gap: 24px;
  flex-wrap: wrap;
}

.hero-meta .meta-block { display: grid; gap: 6px; }
.hero-meta .meta-block .label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-meta .meta-block .value {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 4/5; order: -1; margin-bottom: 24px; }
}

/* ---------- marquee ---------- */

.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  overflow: hidden;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 32px);
  white-space: nowrap;
  background: var(--paper-2);
}
.marquee .track {
  display: inline-flex;
  gap: 64px;
  animation: scroll 38s linear infinite;
  padding-left: 64px;
}
.marquee .track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
}
.marquee .track .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  flex-shrink: 0;
}
.marquee .track em {
  font-style: italic;
  color: var(--teal-deep);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- philosophy / two-column ---------- */

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 140px);
  align-items: start;
}

.philosophy .col-head { display: grid; gap: 24px; }
.philosophy .col-body { display: grid; gap: 22px; }
.philosophy .col-body p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); }

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

/* ---------- service overview ---------- */

.services-overview { background: var(--bone); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 48px);
  margin-top: clamp(48px, 6vw, 80px);
}

.service-card {
  grid-column: span 4;
  display: grid;
  gap: 16px;
  position: relative;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  transition: transform .45s var(--ease), border-color .25s;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(10px);
  border-top-color: var(--teal-bright);
}
.service-card:hover h3 { color: var(--teal-deep); }
.service-card h3 { transition: color .25s var(--ease); }

.service-card .index {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--teal-deep);
}

.service-card h3 { letter-spacing: -0.025em; }

.service-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 4px 0 8px;
}

.service-card .price {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--ink);
}

@media (max-width: 980px) {
  .service-card { grid-column: span 6; }
}
@media (max-width: 620px) { .service-card { grid-column: span 12; } }

/* ---------- editorial split ---------- */

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.split.reverse { grid-template-columns: 1fr 1.1fr; }
.split.reverse .split-image { order: 1; }

.split-copy { display: grid; gap: 22px; }
.split-copy .eyebrow { color: var(--teal-deep); }
.split-copy h2 { margin-top: 8px; }
.split-copy p { font-size: 17px; color: var(--ink-soft); }

.split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--teal-soft);
}

.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.split-image:hover img { transform: scale(1.04); }

.split-image .tag {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 8px 14px;
  background: rgba(251,247,240,0.92);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-image { order: 0; }
}

/* ---------- testimonial ---------- */

.testimonial {
  text-align: center;
  background: var(--teal-deep);
  color: var(--paper);
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "“";
  position: absolute;
  font-family: var(--serif);
  font-size: 380px;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  top: -20px; left: 4%;
  font-style: italic;
}

.testimonial .eyebrow { color: var(--teal-soft); position: relative; }

.testimonial .quote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin: 32px auto 28px;
  position: relative;
}

.testimonial cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-soft);
  position: relative;
}

.testimonial .dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
  position: relative;
}
.testimonial .dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background .2s;
}
.testimonial .dots button[aria-pressed="true"] { background: var(--paper); }

/* ---------- cta band ---------- */

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.cta-band h2 {
  font-size: clamp(28px, 4.4vw, 60px);
  max-width: 18ch;
}

@media (max-width: 720px) { .cta-band { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 9vw, 128px) 0 32px;
}

.site-footer .top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.site-footer h4 {
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: 22px;
}

.site-footer .footer-lead {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--paper);
  max-width: 18ch;
  margin: 0 0 28px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.site-footer a {
  color: rgba(244,237,226,0.7);
  font-size: 14px;
  transition: color .2s;
}
.site-footer a:hover { color: var(--paper); }

.site-footer .contact-block address {
  font-style: normal;
  color: rgba(244,237,226,0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.site-footer .phone-big {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.site-footer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 24px;
  font-size: 12px;
  color: rgba(244,237,226,0.5);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
}

.site-footer .powered-by {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,237,226,0.42);
}
.site-footer .powered-by a {
  color: var(--teal-soft);
  border-bottom: 1px solid rgba(205,225,225,0.25);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.site-footer .powered-by a:hover {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

.site-footer .socials { display: flex; gap: 12px; }
.site-footer .socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  transition: background .2s, color .2s;
}
.site-footer .socials a:hover { background: var(--paper); color: var(--ink); }

@media (max-width: 880px) {
  .site-footer .top-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .site-footer .top-grid { grid-template-columns: 1fr; }
}

/* ---------- mobile overlay ---------- */

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 100;
  padding: 96px var(--gutter) 48px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.nav-overlay.is-open { transform: translateY(0); }

.nav-overlay .close {
  position: absolute;
  top: 24px; right: var(--gutter);
  width: 36px; height: 36px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
}

.nav-overlay nav { display: grid; gap: 18px; }
.nav-overlay nav a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: -0.015em;
  line-height: 1;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
}
.nav-overlay nav a:hover { color: var(--teal-deep); font-style: italic; }

/* =========================================================
   Services page
   ========================================================= */

.page-hero {
  padding-top: 160px;
  padding-bottom: clamp(48px, 6vw, 96px);
}

.page-hero .crumb {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.page-hero h1 {
  font-size: clamp(56px, 10vw, 156px);
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.page-hero .deck {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.page-hero .deck p { font-size: 17px; color: var(--ink-soft); }

@media (max-width: 720px) { .page-hero .deck { grid-template-columns: 1fr; } }

.service-nav {
  position: sticky;
  top: 86px;
  background: rgba(251,247,240,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(56px, 7vw, 96px);
}

.service-nav ul {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  overflow-x: auto;
  padding: 16px var(--gutter);
  list-style: none;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  scrollbar-width: none;
}

.service-nav ul::-webkit-scrollbar { display: none; }

.service-nav a {
  color: var(--ink-soft);
  white-space: nowrap;
  padding: 4px 0;
  transition: color .2s;
  border-bottom: 1px solid transparent;
}
.service-nav a:hover, .service-nav a.is-active {
  color: var(--teal-deep);
  border-bottom-color: var(--teal-deep);
}

.menu-section {
  padding: 0;
  border-bottom: 1px solid var(--rule);
}

.menu-section .header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: 0;
  flex: 1;
}

.menu-acc { width: 100%; }

.menu-acc > summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(36px, 4vw, 56px) 0;
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  align-items: flex-end;
  transition: opacity .2s var(--ease);
}

.menu-acc > summary::-webkit-details-marker,
.menu-acc > summary::marker { display: none; }

.menu-acc > summary:hover { opacity: .85; }

.menu-acc > summary:hover h2 { color: var(--teal-deep); }
.menu-acc h2 { transition: color .25s var(--ease); }

.menu-acc .acc-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--rule);
  border-radius: 50%;
  position: relative;
  margin-bottom: 4px;
  transition: background .25s var(--ease), border-color .25s, transform .35s var(--ease);
}
.menu-acc .acc-icon::before,
.menu-acc .acc-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1px;
  background: var(--ink);
  transform-origin: center;
}
.menu-acc .acc-icon::before { transform: translate(-50%, -50%); }
.menu-acc .acc-icon::after  { transform: translate(-50%, -50%) rotate(90deg); transition: transform .35s var(--ease); }

.menu-acc > summary:hover .acc-icon { background: var(--ink); border-color: var(--ink); }
.menu-acc > summary:hover .acc-icon::before,
.menu-acc > summary:hover .acc-icon::after { background: var(--paper); }

.menu-acc[open] .acc-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.menu-acc[open] .acc-icon { background: var(--ink); border-color: var(--ink); }
.menu-acc[open] .acc-icon::before,
.menu-acc[open] .acc-icon::after { background: var(--paper); }

.menu-acc[open] > .menu-list {
  animation: acc-in .5s var(--ease);
  padding-bottom: clamp(40px, 5vw, 64px);
  padding-top: 8px;
}

@keyframes acc-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .menu-acc > summary { flex-direction: column; align-items: flex-start; gap: 24px; padding: 36px 0; }
  .menu-acc .acc-icon { align-self: flex-end; margin-top: -32px; }
}

.menu-section .header h2 { font-size: clamp(38px, 5vw, 64px); }
.menu-section .header .note { font-size: 15px; color: var(--ink-soft); max-width: 50ch; }

@media (max-width: 720px) { .menu-section .header { grid-template-columns: 1fr; } }

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(40px, 6vw, 96px);
}

@media (max-width: 720px) { .menu-list { grid-template-columns: 1fr; } }

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
}
.menu-item:last-child { border-bottom: 0; }

.menu-item .name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.menu-item .price {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 17px;
  color: var(--teal-deep);
  white-space: nowrap;
}

.menu-item .book {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 7px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  transition: all .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.menu-item .book:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.menu-item .desc {
  grid-column: 1 / -1;
  margin-top: 9px;
  max-width: 62ch;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.menu-item .desc .mark { color: var(--teal-deep); }

/* =========================================================
   Booking page
   ========================================================= */

.booking-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  padding-top: 140px;
  padding-bottom: clamp(60px, 8vw, 120px);
}

@media (max-width: 980px) { .booking-shell { grid-template-columns: 1fr; } }

.booking-shell .crumb {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.booking-shell h1 {
  font-size: clamp(40px, 5.4vw, 72px);
  margin-bottom: 36px;
}

.steps {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.steps .step {
  flex: 1;
  padding: 18px 12px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-right: 1px solid var(--rule);
  position: relative;
}
.steps .step:last-child { border-right: 0; }

.steps .step .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  margin-right: 8px;
  color: var(--teal-deep);
}

.steps .step.is-active {
  background: var(--ink);
  color: var(--paper);
}
.steps .step.is-active .num { color: var(--teal-soft); }
.steps .step.is-done { color: var(--teal-deep); }

.step-panel { display: none; animation: panel-in .5s var(--ease); }
.step-panel.is-active { display: block; }

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.field {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.field label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.field input, .field select, .field textarea {
  border: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
  padding: 4px 0;
  letter-spacing: -0.005em;
  width: 100%;
  outline: none;
}

.field input::placeholder, .field textarea::placeholder {
  color: rgba(27,27,25,0.3);
  font-style: italic;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.service-picker {
  display: grid;
  gap: 6px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 8px;
  margin-top: 12px;
}

.service-picker::-webkit-scrollbar { width: 4px; }
.service-picker::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 2px; }

.svc-group { margin-bottom: 8px; }
.svc-group h5 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 16px 0 6px;
  font-weight: 500;
}

.svc-acc {
  border-bottom: 1px solid var(--rule);
}
.svc-acc:first-child { border-top: 1px solid var(--rule); }

.svc-acc > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 4px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  transition: color .2s var(--ease);
}
.svc-acc > summary::-webkit-details-marker,
.svc-acc > summary::marker { display: none; }

.svc-acc > summary:hover { color: var(--teal-deep); }

.svc-acc-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.005em;
}

.svc-acc-count {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--ink-soft);
  padding: 2px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  min-width: 28px;
  text-align: center;
}

.svc-acc-icon {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.svc-acc-icon::before,
.svc-acc-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 1px;
  background: currentColor;
}
.svc-acc-icon::before { transform: translate(-50%, -50%); }
.svc-acc-icon::after  { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s var(--ease); }

.svc-acc[open] .svc-acc-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.svc-acc-body {
  display: grid;
  gap: 6px;
  padding: 4px 0 18px;
  animation: acc-in .35s var(--ease);
}

.svc-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s var(--ease);
}

.svc-option:hover { border-color: var(--rule); background: var(--paper-2); }

.svc-option.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.svc-option.is-selected .svc-price { color: var(--teal-soft); }

.svc-option .radio {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid currentColor;
  position: relative;
  flex-shrink: 0;
}
.svc-option.is-selected .radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: currentColor;
  border-radius: 50%;
}

.svc-option .svc-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}
.svc-option .svc-price {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--teal-deep);
}

.cal { margin-top: 24px; }

.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.cal-head .month {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.cal-head button {
  width: 36px; height: 36px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .2s;
  font-size: 14px;
}
.cal-head button:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cal-head button:disabled { opacity: .3; cursor: not-allowed; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 16px;
}

.cal-dow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  padding-bottom: 8px;
}

.cal-day {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  border-radius: 50%;
  cursor: pointer;
  transition: all .2s var(--ease);
  position: relative;
}
.cal-day:hover { background: var(--paper-2); }
.cal-day.is-empty, .cal-day.is-disabled {
  color: rgba(27,27,25,0.25);
  cursor: not-allowed;
}
.cal-day.is-disabled:hover { background: transparent; }
.cal-day.is-today { color: var(--teal-deep); font-style: italic; }
.cal-day.is-selected { background: var(--ink); color: var(--paper); }

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.time-slot {
  padding: 12px 6px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  text-align: center;
  font-family: var(--serif);
  font-size: 15px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.time-slot:hover { border-color: var(--ink); }
.time-slot.is-selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.pay-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.pay-row .card-num { grid-column: span 2; }

@media (max-width: 540px) {
  .pay-row { grid-template-columns: 1fr; }
  .pay-row .card-num { grid-column: span 1; }
}

.pay-methods {
  display: flex;
  gap: 10px;
  margin: 8px 0 4px;
}
.pay-methods .pm {
  flex: 1;
  padding: 14px 12px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
}
.pay-methods .pm.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.pay-methods .pm .glyph {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
}

.summary {
  background: var(--bone);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 4px;
  position: sticky;
  top: 100px;
}

.summary h3 { margin-bottom: 28px; font-size: 28px; }

.summary .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule);
  align-items: baseline;
}
.summary .row .label {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.summary .row .value { font-family: var(--serif); font-size: 16px; text-align: right; }
.summary .row .value.muted { color: var(--ink-soft); font-style: italic; }

.summary .total {
  display: grid;
  grid-template-columns: 1fr auto;
  padding-top: 22px;
  margin-top: 12px;
  border-top: 1px solid var(--ink);
  font-family: var(--serif);
  align-items: end;
}
.summary .total .label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  align-self: center;
  color: var(--ink);
  font-weight: 500;
}
.summary .total .value { font-size: 36px; font-weight: 400; }

.summary .meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  gap: 16px;
}

.controls .back {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 14px 0;
  cursor: pointer;
}
.controls .back:hover { color: var(--ink); }
.controls .back:disabled { opacity: .35; cursor: not-allowed; }

.confirmation {
  text-align: center;
  padding: clamp(60px, 8vw, 120px) 0;
}

@media (max-width: 600px) {
  .steps .step { padding: 14px 6px; font-size: 9px; letter-spacing: 0.16em; }
  .steps .step .num { display: block; margin: 0 0 4px; font-size: 12px; }
  .controls { flex-direction: row-reverse; }
  .controls .back { font-size: 11px; letter-spacing: 0.18em; }
  .controls .btn { padding: 14px 20px; font-size: 11px; }
  .booking-shell h1 { font-size: clamp(36px, 11vw, 56px); }
  .field input, .field select, .field textarea { font-size: 18px; }
}

.confirmation .seal {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--teal-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
}

.confirmation h2 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 24px; }
.confirmation p { font-size: 17px; color: var(--ink-soft); max-width: 48ch; margin: 0 auto 32px; }

.conf-card {
  background: var(--bone);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 4px;
  max-width: 520px;
  margin: 0 auto 32px;
  text-align: left;
  display: grid;
  gap: 14px;
}
.conf-card .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--rule);
}
.conf-card .row:last-child { border-bottom: 0; padding-bottom: 0; }
.conf-card .label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.conf-card .value { font-family: var(--serif); font-size: 16px; text-align: right; }

/* =========================================================
   About page
   ========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-top: clamp(56px, 7vw, 96px);
}

.about-grid p { font-size: 17px; color: var(--ink-soft); line-height: 1.7; }
.about-grid p + p { margin-top: 1.2em; }

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

.studio-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 24px 22px;
  margin-top: 18px;
  background: var(--bone);
  border-radius: 2px;
}
.studio-card > div { display: grid; gap: 4px; }
.studio-card span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.studio-card strong {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
}

.studio-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at top right, rgba(42,141,150,0.18), transparent 60%),
    linear-gradient(180deg, #103a44 0%, #0c2e36 100%);
  color: var(--paper);
  border-radius: 2px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.studio-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 8px),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06), transparent 50%);
  pointer-events: none;
}

.studio-panel .tag {
  position: relative;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--teal-soft);
  align-self: flex-start;
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.studio-panel .studio-inner {
  position: relative;
  display: grid;
  gap: 32px;
}

.studio-panel .studio-mono {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--teal-soft);
  letter-spacing: 0.02em;
}

.studio-panel .studio-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.studio-panel .studio-meta {
  display: grid;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.studio-panel .studio-meta div { display: grid; gap: 4px; }

.studio-panel .studio-meta span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(205,225,225,0.65);
}

.studio-panel .studio-meta strong {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.45;
  color: var(--paper);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
}

.values-grid .val { display: grid; gap: 12px; }
.values-grid .val .n {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--teal-deep);
}
.values-grid .val h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.values-grid .val p { font-size: 14px; color: var(--ink-soft); }

@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- utility ---------- */

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