/* ==========================================================================
   Tumen Beauty — style.css
   Sections: 1 Tokens · 2 Reset/Base · 3 Typography · 4 Layout · 5 Header/Nav
             6 Footer · 7 Buttons/Links · 8 Components · 9 Motion · 10 Responsive
   ========================================================================== */

/* 1 — TOKENS ============================================================== */
:root {
  /* Brand */
  --ink:            #0A0A0A;
  --ink-raised:     #121110;
  --ink-soft:       #1A1817;
  --bone:           #F7F5F3;
  --bone-deep:      #EDE9E5;
  --burgundy:       #6B0012;
  --burgundy-deep:  #4A000C;

  /* Text on dark */
  --on-dark:        #F7F5F3;
  --on-dark-muted:  #B5AFA9;
  --on-dark-faint:  #8A8480;
  /* Text on light */
  --on-light:       #12100F;
  --on-light-muted: #56504B;
  --on-light-faint: #6A645E;

  /* Hairlines */
  --rule-dark:      rgba(247, 245, 243, 0.16);
  --rule-dark-soft: rgba(247, 245, 243, 0.09);
  --rule-light:     rgba(18, 16, 15, 0.16);
  --rule-light-soft:rgba(18, 16, 15, 0.09);

  /* Type */
  --font-display: 'Bodoni Moda', 'Didot', 'Bodoni MT', Georgia, serif;
  --font-body:    'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs:   clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm:   clamp(0.875rem, 0.84rem + 0.18vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg:   clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem);
  --text-2xl:  clamp(1.875rem, 1.3rem + 2.4vw, 3.25rem);
  --text-3xl:  clamp(2.25rem, 1.2rem + 4.2vw, 4.5rem);
  --text-hero: clamp(2.5rem, 1rem + 5.6vw, 6rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --space-32: 8rem;

  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --content-narrow: 42rem;   /* 672px */
  --content-default: 68rem;  /* 1088px */
  --content-wide: 84rem;     /* 1344px */

  --section-y: clamp(4.5rem, 9vw, 9rem);
  --section-y-lg: clamp(6rem, 13vw, 12rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

/* 2 — RESET / BASE ======================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; background: var(--ink-soft); }

ul, ol { list-style: none; padding: 0; }

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--burgundy); color: #fff; }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: var(--space-4); top: -100px;
  z-index: 200; background: var(--bone); color: var(--on-light);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--space-4); }

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

/* 3 — TYPOGRAPHY ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-wrap: balance;
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: break-word;
}

.display-hero, .display-xxl, .display-xl, .display-lg {
  font-family: var(--font-display);
  font-weight: 400;
  text-wrap: balance;
  hyphens: none;
  -webkit-hyphens: none;
}
.display-hero { font-size: var(--text-hero); line-height: 0.98; letter-spacing: -0.02em; }
.display-xxl  { font-size: var(--text-3xl); line-height: 1.02; letter-spacing: -0.02em; }
.display-xl   { font-size: var(--text-2xl); line-height: 1.06; letter-spacing: -0.015em; }
.display-lg   { font-size: var(--text-xl);  line-height: 1.14; letter-spacing: -0.01em; }
.display-italic { font-style: italic; }

h3, h4 { letter-spacing: -0.005em; }

p { text-wrap: pretty; }

.lede {
  font-size: var(--text-lg);
  line-height: 1.55;
  font-weight: 300;
  color: var(--on-dark-muted);
  max-width: 34ch;
}
.on-light .lede, .lede.on-light { color: var(--on-light-muted); }

.body-copy { max-width: 62ch; color: var(--on-dark-muted); font-weight: 300; }
.on-light .body-copy { color: var(--on-light-muted); }
.body-copy + .body-copy { margin-top: var(--space-5); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  display: block;
}
.on-light .eyebrow { color: var(--on-light-faint); }
.eyebrow--accent { color: var(--burgundy); }

.numeral {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  color: var(--burgundy);
}
.on-dark .numeral, .sec--dark .numeral { color: #C9A0A8; }

/* 4 — LAYOUT ============================================================== */
.shell {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--default { max-width: var(--content-default); }
.shell--narrow  { max-width: var(--content-narrow); }

.sec { padding-block: var(--section-y); position: relative; }
.sec--lg { padding-block: var(--section-y-lg); }
.sec--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.sec--dark  { background: var(--ink); color: var(--on-dark); }
.sec--raised{ background: var(--ink-raised); color: var(--on-dark); }
.sec--light { background: var(--bone); color: var(--on-light); }
.sec--light .lede, .sec--light .body-copy { color: var(--on-light-muted); }
.sec--light .eyebrow { color: var(--on-light-faint); }
.sec--light .eyebrow--accent { color: var(--burgundy); }

.rule { height: 1px; background: var(--rule-dark); border: 0; }
.sec--light .rule { background: var(--rule-light); }
.rule--short { width: 64px; background: var(--burgundy); height: 1px; }

/* Editorial split: small label column + large content column */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-8);
}
@media (width >= 900px) {
  .split { grid-template-columns: 16rem minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); }
  .split--wide-first { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
  .split--even { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .split--media-first { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); }
}

.stack-4 > * + * { margin-top: var(--space-4); }
.stack-6 > * + * { margin-top: var(--space-6); }
.stack-8 > * + * { margin-top: var(--space-8); }

/* 5 — HEADER / NAV ======================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6);
  height: var(--header-h);
}
.header.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--rule-dark-soft);
}
.header.is-open { background: transparent; border-bottom-color: transparent; }

.brand { display: inline-flex; align-items: center; position: relative; z-index: 120; }
.brand img { height: 42px; width: auto; background: none; }
/* On the homepage the hero carries the logo — the header mark fades in on scroll */
.header--hero .brand { opacity: 0; pointer-events: none; transition: opacity 0.45s var(--ease); }
.header--hero.is-scrolled .brand { opacity: 1; pointer-events: auto; }
.header--hero.is-open .brand { opacity: 1; pointer-events: auto; }

.nav { display: none; align-items: center; gap: clamp(1.25rem, 2.4vw, 2.5rem); }
.nav__list { display: flex; align-items: center; gap: clamp(1.25rem, 2.4vw, 2.5rem); }
@media (width >= 1000px) { .nav { display: flex; } }

.nav__link {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  padding-block: var(--space-4);
  position: relative;
  display: inline-flex; align-items: center; min-height: 44px;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--on-dark);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover { color: var(--on-dark); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-current { color: var(--on-dark); }
.nav__link.is-current::after { transform: scaleX(1); background: #C9A0A8; height: 1px; }

.btn-book {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark);
  border: 1px solid var(--burgundy);
  padding: 0.85rem 1.5rem;
  min-height: 44px;
  display: inline-flex; align-items: center;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.btn-book:hover { background: var(--burgundy); border-color: var(--burgundy); color: #fff; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; position: relative; z-index: 120;
  align-items: flex-end;
}
@media (width >= 1000px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; height: 1px; width: 26px; background: var(--on-dark);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), width 0.4s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); width: 26px; }

/* Mobile overlay */
.menu {
  position: fixed; inset: 0; z-index: 110;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + var(--space-8)) var(--gutter) var(--space-12);
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
  overflow-y: auto;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu__list > li { border-top: 1px solid var(--rule-dark-soft); }
.menu__list > li:last-child { border-bottom: 1px solid var(--rule-dark-soft); }
.menu__link {
  display: flex; align-items: baseline; gap: var(--space-4);
  padding-block: clamp(0.75rem, 2.4vw, 1.15rem);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  line-height: 1.1;
  color: var(--on-dark);
  transform: translateY(14px); opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), color 0.3s var(--ease);
}
.menu.is-open .menu__link { transform: none; opacity: 1; }
.menu__list > li:nth-child(1) .menu__link { transition-delay: 0.06s; }
.menu__list > li:nth-child(2) .menu__link { transition-delay: 0.10s; }
.menu__list > li:nth-child(3) .menu__link { transition-delay: 0.14s; }
.menu__list > li:nth-child(4) .menu__link { transition-delay: 0.18s; }
.menu__list > li:nth-child(5) .menu__link { transition-delay: 0.22s; }
.menu__list > li:nth-child(6) .menu__link { transition-delay: 0.26s; }
.menu__link .idx {
  font-family: var(--font-body); font-size: var(--text-xs);
  letter-spacing: 0.16em; color: var(--on-dark-faint);
}
.menu__link.is-current { color: #C9A0A8; }
.menu__foot {
  margin-top: var(--space-10);
  display: flex; flex-wrap: wrap; gap: var(--space-4) var(--space-8);
  font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dark-faint);
}
.menu__foot a { color: var(--on-dark-muted); }

/* 6 — FOOTER ============================================================== */
.footer { background: var(--ink); color: var(--on-dark); padding-block: clamp(3.5rem, 7vw, 6rem) var(--space-10); border-top: 1px solid var(--rule-dark-soft); }
.footer__grid {
  display: grid; gap: var(--space-10);
  grid-template-columns: minmax(0, 1fr);
}
@media (width >= 760px) { .footer__grid { grid-template-columns: minmax(0,1.2fr) minmax(0,1fr) minmax(0,1fr); gap: var(--space-12); } }
.footer img.footer__logo { height: 88px; width: auto; background: none; }
.footer__label {
  font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--on-dark-faint); margin-bottom: var(--space-5);
}
.footer address { font-style: normal; color: var(--on-dark-muted); font-weight: 300; }
.footer__links a {
  font-size: var(--text-sm); color: var(--on-dark-muted);
  transition: color 0.3s var(--ease);
  display: inline-flex; align-items: center; min-height: 44px;
}
.footer__links a:hover { color: var(--on-dark); }
.footer__bar {
  margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: var(--space-6);
  border-top: 1px solid var(--rule-dark-soft);
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-8);
  justify-content: space-between;
  font-size: var(--text-xs); letter-spacing: 0.1em; color: var(--on-dark-faint);
}
.mail-link {
  color: var(--on-dark); border-bottom: 1px solid var(--rule-dark);
  display: inline-block; padding-block: 14px 6px; transition: border-color 0.3s var(--ease);
  overflow-wrap: anywhere;
}
.mail-link:hover { border-bottom-color: #C9A0A8; }
.sec--light .mail-link { color: var(--on-light); border-bottom-color: var(--rule-light); }
.sec--light .mail-link:hover { border-bottom-color: var(--burgundy); }

/* 7 — BUTTONS / LINKS ===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-3);
  min-height: 48px; padding: 0.9rem 1.85rem;
  font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid currentColor;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  white-space: nowrap;
}
.btn--solid { background: var(--burgundy); border-color: var(--burgundy); color: #FFFFFF; }
.btn--solid:hover { background: var(--burgundy-deep); border-color: var(--burgundy-deep); }
.btn--ghost-dark { color: var(--on-dark); border-color: var(--rule-dark); }
.btn--ghost-dark:hover { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }
.btn--ghost-light { color: var(--on-light); border-color: var(--rule-light); }
.btn--ghost-light:hover { background: var(--on-light); color: var(--bone); border-color: var(--on-light); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-4); }

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase;
  padding-block: var(--space-4) var(--space-2);
  border-bottom: 1px solid currentColor;
  transition: gap 0.35s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: var(--space-5); }
.link-arrow svg { flex: none; }

/* 8 — COMPONENTS ========================================================== */

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  background: var(--ink);
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 80% 78%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.93) 38%, rgba(10,10,10,0.62) 64%, rgba(10,10,10,0.5) 100%),
    linear-gradient(0deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 45%, rgba(10,10,10,0.72) 100%);
}
.hero__inner {
  width: 100%;
  padding-block: clamp(7rem, 16vh, 10rem) clamp(3.5rem, 8vh, 6rem);
}
.hero__logo { height: clamp(96px, 15vw, 168px); width: auto; background: none; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.hero h1 { max-width: 15ch; }
.hero__value { margin-top: var(--space-6); max-width: 40ch; color: var(--on-dark-muted); font-weight: 300; font-size: var(--text-lg); line-height: 1.55; }
.hero__cta { margin-top: clamp(2rem, 4vw, 3rem); }
.hero__meta {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: var(--space-6);
  border-top: 1px solid var(--rule-dark-soft);
  display: flex; flex-wrap: wrap; gap: var(--space-4) clamp(1.5rem, 4vw, 3.5rem);
  font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-dark-faint);
  max-width: 60rem;
}

/* Page masthead (interior pages) */
.masthead {
  padding-block: calc(var(--header-h) + clamp(4rem, 9vw, 8rem)) clamp(3rem, 7vw, 6rem);
  background: var(--ink);
  border-bottom: 1px solid var(--rule-dark-soft);
}
.masthead__grid { display: grid; gap: var(--space-8); }
@media (width >= 900px) {
  .masthead__grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr); align-items: end; gap: clamp(2rem, 6vw, 5rem); }
}
.masthead h1 { max-width: 16ch; }
.masthead__aside { color: var(--on-dark-muted); font-weight: 300; max-width: 46ch; }

/* Figure / media */
.figure { position: relative; overflow: hidden; background: var(--ink-soft); }
.figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.figure--hover:hover img { transform: scale(1.045); }
.figure--portrait { aspect-ratio: 3 / 4; }
.figure--square { aspect-ratio: 1 / 1; }
.figure--landscape { aspect-ratio: 16 / 10; }
.figure--wide { aspect-ratio: 21 / 9; }
.figure__caption {
  margin-top: var(--space-4); font-size: var(--text-xs); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--on-dark-faint);
}
.sec--light .figure__caption { color: var(--on-light-faint); }

/* Full-bleed band with image */
.band { position: relative; isolation: isolate; overflow: hidden; }
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 45%, rgba(10,10,10,0.35) 100%); }
.band--quote { padding-block: clamp(5rem, 12vw, 10rem); }
.band__scrim--even { background: rgba(10,10,10,0.72); }

.pullquote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  line-height: 1.18;
  max-width: 22ch;
  letter-spacing: -0.01em;
}
.pullquote__attr {
  margin-top: var(--space-6); font-family: var(--font-body);
  font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--on-dark-muted); font-style: normal;
}

/* Standards / numbered list */
.standards { border-top: 1px solid var(--rule-light-soft); }
.sec--dark .standards, .sec--raised .standards { border-top-color: var(--rule-dark-soft); }
.standards li {
  display: grid; gap: var(--space-2) var(--space-6);
  grid-template-columns: 2.5rem minmax(0, 1fr);
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--rule-light-soft);
}
.sec--dark .standards li, .sec--raised .standards li { border-bottom-color: var(--rule-dark-soft); }
.standards h3 { font-size: var(--text-lg); }
.standards p { font-size: var(--text-sm); color: var(--on-light-muted); max-width: 52ch; font-weight: 300; grid-column: 2; }
.sec--dark .standards p, .sec--raised .standards p { color: var(--on-dark-muted); }

/* Service rows */
.service {
  display: grid; gap: var(--space-4) var(--space-8);
  padding-block: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule-light-soft);
  align-items: start;
}
.sec--dark .service, .sec--raised .service { border-bottom-color: var(--rule-dark-soft); }
@media (width >= 820px) {
  .service { grid-template-columns: 4rem minmax(0, 1fr) minmax(0, 14rem); }
}
.service:first-of-type { border-top: 1px solid var(--rule-light-soft); }
.sec--dark .service:first-of-type, .sec--raised .service:first-of-type { border-top-color: var(--rule-dark-soft); }
.service__name { font-size: var(--text-xl); }
.service__desc { font-size: var(--text-sm); color: var(--on-light-muted); max-width: 54ch; margin-top: var(--space-3); font-weight: 300; }
.sec--dark .service__desc, .sec--raised .service__desc { color: var(--on-dark-muted); }
.service__price {
  font-family: var(--font-display); font-size: var(--text-lg);
  text-align: left; white-space: nowrap;
}
@media (width >= 820px) { .service__price { text-align: right; } }
.service__price small {
  display: block; font-family: var(--font-body); font-size: var(--text-xs);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-light-faint);
  margin-top: var(--space-2); white-space: normal;
}
.sec--dark .service__price small, .sec--raised .service__price small { color: var(--on-dark-faint); }
.service__price--quote { font-size: var(--text-base); font-family: var(--font-body); font-weight: 300; white-space: normal; }

/* Notice / inline card */
.notice {
  border: 1px solid var(--rule-light);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  display: grid; gap: var(--space-4);
}
.sec--dark .notice, .sec--raised .notice { border-color: var(--rule-dark); }
.notice__title { font-family: var(--font-display); font-size: var(--text-lg); }

/* Feature card (membership / partnership) */
.cards { display: grid; gap: 1px; background: var(--rule-light-soft); border: 1px solid var(--rule-light-soft); }
.sec--dark .cards, .sec--raised .cards { background: var(--rule-dark-soft); border-color: var(--rule-dark-soft); }
@media (width >= 820px) { .cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (width >= 900px) { .cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.card {
  background: var(--bone);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.sec--dark .card { background: var(--ink); }
.sec--raised .card { background: var(--ink-raised); }
.card h3 { font-size: var(--text-lg); }
.card p { font-size: var(--text-sm); font-weight: 300; color: var(--on-light-muted); }
.sec--dark .card p, .sec--raised .card p { color: var(--on-dark-muted); }
.card .numeral { margin-bottom: var(--space-2); }

/* Benefit list with hairline ticks */
.benefits li {
  display: grid; grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: var(--space-4); align-items: baseline;
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--rule-light-soft);
  font-size: var(--text-sm); font-weight: 300;
}
.sec--dark .benefits li, .sec--raised .benefits li { border-bottom-color: var(--rule-dark-soft); }
.benefits li::before {
  content: ""; display: block; width: 22px; height: 1px; background: var(--burgundy);
  transform: translateY(-0.35em);
}
.sec--dark .benefits li::before, .sec--raised .benefits li::before { background: #C9A0A8; }
.benefits strong { font-weight: 500; }

/* Booking placeholder */
.booking-slot {
  border: 1px solid var(--rule-dark);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid; gap: var(--space-6);
  justify-items: start;
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(247,245,243,0.022) 0 12px, transparent 12px 24px);
}
.sec--light .booking-slot {
  border-color: var(--rule-light);
  background: repeating-linear-gradient(135deg, rgba(18,16,15,0.025) 0 12px, transparent 12px 24px);
}
.booking-slot__tag {
  font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--burgundy);
}
.sec--dark .booking-slot__tag, .sec--raised .booking-slot__tag { color: #C9A0A8; }

/* Info pairs (address etc.) */
.info-list li {
  display: grid; gap: var(--space-1);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--rule-light-soft);
}
.sec--dark .info-list li, .sec--raised .info-list li { border-bottom-color: var(--rule-dark-soft); }
.info-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.info-list dt, .info-list .k {
  font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--on-light-faint);
}
.sec--dark .info-list .k, .sec--raised .info-list .k { color: var(--on-dark-faint); }
.info-list .v { font-size: var(--text-base); font-weight: 300; }

/* Service menu groups */
.menu-group + .menu-group { margin-top: clamp(3rem, 6vw, 5rem); }
.menu-group__head {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: var(--space-3) var(--space-6);
  margin-bottom: var(--space-6);
}
.menu-group__note {
  font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-light-faint);
}
.sec--dark .menu-group__note, .sec--raised .menu-group__note { color: var(--on-dark-faint); }

/* Gallery — CSS columns so each photograph keeps its own proportions */
.gallery {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  columns: 1;
  column-gap: var(--space-5);
}
@media (width >= 620px) { .gallery { columns: 2; } }
@media (width >= 1000px) { .gallery { columns: 3; column-gap: var(--space-6); } }
.gallery__item {
  margin: 0 0 var(--space-5);
  overflow: hidden;
  background: var(--ink);
  break-inside: avoid;
}
@media (width >= 1000px) { .gallery__item { margin-bottom: var(--space-6); } }
.gallery__item img {
  display: block; width: 100%; height: auto;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}
@media (hover: hover) {
  .gallery__item:hover img { transform: scale(1.03); filter: brightness(1.05); }
}
.gallery--page { margin-top: 0; }
.gallery__cap {
  margin-top: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--on-light-faint);
}
.sec--dark .gallery__cap, .sec--raised .gallery__cap { color: var(--on-dark-faint); }
.gallery__item { background: transparent; }
.gallery__item img { background: var(--ink); }

/* Type-led location block */
.locale {
  display: grid; gap: var(--space-8);
  padding-block: clamp(1rem, 3vw, 2.5rem);
}
@media (width >= 900px) {
  .locale { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: var(--space-12); align-items: end; }
}
.locale__info { align-self: end; }

/* Studio overlay card */
.studio { position: relative; }
.studio__media img { width: 100%; height: 100%; object-fit: cover; }
.studio__card {
  background: var(--ink);
  border: 1px solid var(--rule-dark);
  padding: clamp(1.75rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}
.studio__media { position: relative; z-index: 1; }
@media (width >= 1000px) {
  .studio__grid { display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; }
  .studio__media { grid-area: 1 / 1; }
  .studio__media .figure { aspect-ratio: 16 / 8; }
  .studio__card { grid-area: 1 / 1; justify-self: start; max-width: 27rem; margin-left: clamp(1rem, 5vw, 5rem); }
}

/* CTA band */
.cta-band { text-align: left; }
.cta-band h2 { max-width: 18ch; }

/* Marquee statement */
.statement { font-family: var(--font-display); font-size: var(--text-xl); line-height: 1.32; font-weight: 400; max-width: 26ch; }
.statement--wide { max-width: 34ch; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.chip {
  font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--rule-light); padding: 0.55rem 0.9rem; color: var(--on-light-muted);
}
.sec--dark .chip, .sec--raised .chip { border-color: var(--rule-dark); color: var(--on-dark-muted); }

/* 9 — MOTION ============================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* 10 — RESPONSIVE TWEAKS ================================================== */
@media (width < 1000px) {
  :root { --header-h: 72px; }
  .brand img { height: 36px; }
  .header .btn-book { display: none; }
}
@media (width < 900px) {
  .hero__scrim { background: linear-gradient(0deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.8) 50%, rgba(10,10,10,0.86) 100%); }
  .hero__media img { object-position: 62% 62%; }
}
@media (width < 640px) {
  .hero { min-height: 96svh; }
  .hero__meta { gap: var(--space-3) var(--space-6); }
  .btn { width: 100%; justify-content: center; }
  .btn-row .btn { width: auto; flex: 1 1 12rem; }
}

/* -------------------------------------------------------------------------
   v1.3.2 additions: header phone, footer hours, booking iframe,
   wide hours info-list, four-column footer grid.
   ------------------------------------------------------------------------- */

/* Header phone link — visible from 1000px alongside the desktop nav. */
.header__phone {
  display: none;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark);
  padding-block: var(--space-4);
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-bottom-color 0.3s var(--ease);
}
.header__phone:hover { color: #C9A0A8; border-bottom-color: #C9A0A8; }
@media (width >= 1000px) { .header__phone { display: inline-flex; } }

/* Mobile menu foot: stack the two mail-links + address vertically with breathing room. */
.menu__foot { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); text-align: center; }

/* Footer: four columns on desktop (brand, studio, hours, navigate). */
@media (width >= 900px) {
  .footer__grid--4 {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-10);
  }
}

/* Footer hours list. */
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: var(--space-4);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--rule-dark-soft);
  font-size: var(--text-xs);
  color: var(--on-dark-muted);
  font-weight: 300;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list__day {
  color: var(--on-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  flex-shrink: 0;
}
.hours-list__time { text-align: right; font-variant-numeric: tabular-nums; }

/* Wide hours info-list (Booking page, uses the same .info-list frame). */
.info-list--hours .k { text-transform: none; letter-spacing: 0.06em; font-size: var(--text-sm); }
.info-list--hours .v { font-variant-numeric: tabular-nums; }

/* Microsoft Bookings iframe wrapper — tall on desktop, taller on mobile
   because the Bookings UI is single-column and needs the vertical room. */
.booking-embed {
  border: 1px solid var(--rule-light);
  background: #fff;
  overflow: hidden;
}
.booking-embed iframe {
  display: block;
  width: 100%;
  height: 900px;
  border: 0;
}
@media (width <= 720px) {
  .booking-embed iframe { height: 1100px; }
}
