@font-face {
  font-family: 'August Script';
  src: url('../august_script.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/* ==========================================================================
   Salon Rose — homepage concept (redesign)
   Design tokens
   ========================================================================== */

:root {
  --ink:        #241519;
  --ink-card:   #2E1A1E;
  --cream:      #FDF1EE;
  --white:      #FFFDFE;
  --rose:       #E0637F;
  --rose-deep:  #A63C58;
  --blush:      #F2B8C2;
  --blush-soft: 239, 169, 184;   /* rgb parts, used in gradients */
  --body:       #4d3239;
  --pale:       #F7DDDE;
  --pale-warm:  #F9E5E5;
  --on-dark:    #E4BEC2;
  --on-dark-2:  #F3CBCF;
  --muted:      #9a7277;
  --footer-dim: #8c6a6b;

  --gutter:     clamp(20px, 5vw, 64px);
  --content-max: 1320px;
  --section-y:  clamp(70px, 12vh, 140px);
  --ease:       cubic-bezier(.2, .7, .2, 1);
  --mono:       'Courier New', monospace;
}

/* ==========================================================================
   Base
   ========================================================================== */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'El Messiri', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--rose-deep); }

img { max-width: 100%; }

::selection { background: var(--rose); color: var(--white); }

.page { position: relative; overflow-x: clip; }

/* Shared type -------------------------------------------------------------- */

/* August Script — large decorative accent only.
   Never used for body copy, navigation, buttons, prices, or small text. */
.script {
  font-family: 'August Script', cursive;
  font-style: normal;
  font-weight: 400;
}
.script--tight {
  font-size: 1.35em;
  line-height: .7;
  display: inline-block;
  color: var(--rose);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.eyebrow--deep { color: var(--rose-deep); }
.eyebrow--rose { color: var(--rose); }
.eyebrow--pale { color: var(--pale); }

/* Buttons ------------------------------------------------------------------ */

.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease,
              transform .25s ease, box-shadow .25s ease;
}

.btn--xs { font-size: 14px; padding: 10px 18px; }
.btn--sm { font-size: 15px; padding: 11px 22px; letter-spacing: .01em; }
.btn--lg { font-size: 17px; padding: 16px 34px; }
.btn--xl { font-size: 18px; padding: 18px 44px; }

.btn--rose {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(224, 99, 127, .32);
}
.btn--rose.btn--lg { box-shadow: 0 10px 30px rgba(224, 99, 127, .34); }
.btn--rose:hover {
  background: var(--rose-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(166, 60, 88, .4);
}
.btn--rose.btn--lg:hover { box-shadow: 0 14px 34px rgba(166, 60, 88, .42); }

/* Rose button sitting on the dark services panel brightens instead of deepening */
.btn--rose.btn--on-dark {
  padding: 16px 40px;
  box-shadow: 0 10px 30px rgba(224, 99, 127, .4);
}
.btn--rose.btn--on-dark:hover {
  background: var(--blush);
  box-shadow: 0 10px 30px rgba(224, 99, 127, .4);
}

.btn--outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding: 16px 30px;
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }

.btn--light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  background: var(--white);
  color: var(--rose-deep);
  font-size: 17px;
  padding: 14px 30px;
}
.btn--light:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }

.btn--ink {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(36, 21, 25, .32);
}
.btn--ink:hover { background: #000; color: var(--white); transform: translateY(-2px); }

.btn--ghost {
  border: 1.5px solid var(--white);
  color: var(--white);
  padding: 18px 40px;
}
.btn--ghost:hover { background: var(--white); color: var(--rose); }
.btn--ghost.btn--lg { padding: 16px 34px; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background .45s ease, box-shadow .45s ease, padding .35s ease;
}
.site-header--solid,
.site-header.is-solid {
  background: rgba(253, 241, 238, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(36, 21, 25, .08);
}

.site-header__logo { display: flex; align-items: center; }
.site-header__logo img {
  display: block;
  width: clamp(58px, 5.6vw, 78px);
  height: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 40px);
}
.nav-desktop__link {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  transition: color .25s ease;
}
.nav-desktop__link:hover { color: var(--rose); }

.nav-mobile { display: none; align-items: center; gap: 14px; }

.burger {
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  width: 24px;
  margin: 0 auto;
  background: var(--ink);
}
.burger span:last-child { width: 16px; }

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

/* ==========================================================================
   Mobile menu
   ========================================================================== */

.menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 26px var(--gutter);
  animation: softIn .3s ease both;
}
.menu[hidden] { display: none; }

.menu__bar { display: flex; align-items: center; justify-content: space-between; }
.menu__logo { display: block; width: 56px; height: auto; }

.menu__close {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.menu__nav { display: flex; flex-direction: column; gap: 6px; margin-top: 9vh; }
.menu__link {
  color: var(--white);
  font-size: 12vw;
  font-weight: 600;
  line-height: 1.15;
}
.menu__link:hover { color: var(--blush); }

.menu__cta {
  color: var(--white);
  margin-top: auto;
  text-align: center;
  background: var(--rose);
  color: var(--white);
  font-weight: 600;
  font-size: 20px;
  padding: 18px;
  border-radius: 999px;
  transition: background .25s ease;
}
.menu__cta:hover { background: var(--rose-deep); color: var(--white); }

body.is-locked { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(96px, 13vh, 150px) var(--gutter) clamp(48px, 7vh, 90px);
  background: var(--cream);
  overflow: hidden;
}

.hero__inner,
.intro__inner,
.services__inner,
.visual-proof__inner {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}

.hero__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  flex: 1;
}

.hero__glow {
  position: absolute;
  top: -14%;
  right: -8%;
  width: 46vw;  max-width: 640px;
  height: 46vw; max-height: 640px;
  background: radial-gradient(circle at 40% 40%,
              rgba(var(--blush-soft), .55), rgba(var(--blush-soft), 0) 62%);
  pointer-events: none;
}

.hero__copy { position: relative; z-index: 2; max-width: 640px; }

.hero__eyebrow {
  margin-bottom: clamp(18px, 3vh, 30px);
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: .28em;
  animation: softIn .7s .05s both;
}

.hero__title {
  margin: 0;
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.02em;
  font-size: clamp(52px, 8.4vw, 124px);
}
.hero__line { display: block; overflow: hidden; }
.hero__line--open { overflow: visible; }
.hero__clip { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero__rise { display: block; animation: riseIn .9s cubic-bezier(.2, .75, .2, 1) both; }
.hero__rise--1 { animation-delay: .12s; }
.hero__rise--2 { animation-delay: .24s; }

.hero__script {
  color: var(--rose);
  font-size: 1.32em;
  line-height: .8;
  display: inline-block;
  padding: 0 .04em;
  animation: scriptIn 1s .7s cubic-bezier(.2, .75, .2, 1) both;
}

.hero__lede {
  max-width: 34ch;
  margin: clamp(22px, 3.4vh, 34px) 0 clamp(28px, 4vh, 40px);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--body);
  animation: softIn .8s .5s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: softIn .8s .62s both;
}

.hero__media {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 100%;
  max-width: 520px;
}

/* Blush disc behind the cut-out portrait, offset down-left so a crescent
   of colour shows rather than a concentric halo. */
.hero__panel {
  position: absolute;
  left: -8%;
  top: 16%;
  width: 96%;
  aspect-ratio: 1;
  z-index: 0;
  background: var(--blush);
  border-radius: 50%;
}

.hero__frame {
  position: relative;
  z-index: 1;
  animation: clipIn 1.05s .3s cubic-bezier(.5, 0, .1, 1) both;
}
.hero__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 3px;
  box-shadow: 0 12px 30px rgba(36, 21, 25, .18);
  transform: rotate(-7deg);
  animation: floatY 5s ease-in-out infinite;
}
.hero__tag .script { font-size: 26px; color: var(--rose-deep); line-height: 1; }

.hero__badge {
  position: absolute;
  right: -3%;
  top: 6%;
  z-index: 2;
  width:  clamp(76px, 9vw, 104px);
  height: clamp(76px, 9vw, 104px);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: rotate(9deg);
  box-shadow: 0 12px 26px rgba(36, 21, 25, .28);
}

/* ==========================================================================
   Intro / identity
   ========================================================================== */

.intro {
  background: var(--cream);
  padding: var(--section-y) var(--gutter);
}

.intro__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.intro__media { position: relative; }
.intro__swatch {
  position: absolute;
  top: 8%;
  left: -3%;
  width: 38%;
  height: 34%;
  z-index: 0;
  background: var(--blush);
  border-radius: 8px;
}
.intro__frame {
  position: relative;
  z-index: 1;
  border-radius: 180px 180px 8px 8px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  max-width: 460px;
  box-shadow: 0 24px 60px rgba(36, 21, 25, .16);
}
.intro__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}

.intro__copy { max-width: 560px; }
.intro__title {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.015em;
}
.intro__body {
  margin: 26px 0 0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--body);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--rose-deep);
  transition: gap .25s ease, color .25s ease;
}
.link-arrow:hover { gap: 14px; color: var(--rose); }

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

.services {
  background: var(--ink);
  color: var(--white);
  padding: var(--section-y) var(--gutter);
}

.services__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(34px, 5vh, 64px);
}
.services__title {
  margin: 0;
  font-size: clamp(38px, 6vw, 84px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.02em;
}
.services__intro {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--on-dark-2);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}

.svc {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ink-card);
  color: var(--white);
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.svc:hover {
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, .4);
}

.svc__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; }
.svc__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.svc:hover .svc__media img { transform: scale(1.06); }

.svc:nth-child(1) .svc__media img { object-position: 60% 40%; }
.svc:nth-child(2) .svc__media img { object-position: 64% 46%; }
.svc:nth-child(3) .svc__media img { object-position: 50% 40%; }

.svc__body { padding: 22px 22px 26px; }
.svc__meta { display: flex; align-items: center; justify-content: space-between; }
.svc__num { font-family: var(--mono); font-size: 13px; color: var(--blush); }
.svc__arrow {
  color: var(--rose);
  font-size: 22px;
  transition: transform .3s ease;
}
.svc:hover .svc__arrow { transform: translateX(6px); }

.svc__name {
  margin: 10px 0 8px;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
}
.svc__text { margin: 0; font-size: 15px; line-height: 1.55; color: var(--on-dark); }

.services__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(34px, 5vh, 56px);
}

/* ==========================================================================
   About Rose feature
   ========================================================================== */

.rose {
  position: relative;
  background: var(--rose-deep);
  color: var(--white);
  padding: clamp(70px, 12vh, 150px) var(--gutter);
  overflow: hidden;
}

.rose__watermark {
  position: absolute;
  right: clamp(-20px, 2vw, 60px);
  top: -6%;
  font-size: clamp(160px, 26vw, 420px);
  line-height: .7;
  color: rgba(255, 253, 254, .1);
  pointer-events: none;
  user-select: none;
}

.rose__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.rose__media { position: relative; }
.rose__portrait { position: relative; max-width: 480px; }
.rose__disc {
  position: absolute;
  left: 6%;
  top: 6%;
  width: 88%;
  padding-bottom: 88%;
  border-radius: 50%;
  background: rgba(255, 253, 254, .16);
}
.rose__portrait img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(36, 21, 25, .35));
}

.rose__copy { max-width: 560px; }
.rose__title {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.015em;
}
.rose__body {
  margin: 26px 0 0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--pale-warm);
}

/* ==========================================================================
   Visual proof (social / image moment)
   ========================================================================== */

.visual-proof {
  background: var(--cream);
  padding: var(--section-y) var(--gutter);
}

.visual-proof__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(28px, 4vh, 48px);
}
.visual-proof__title {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.015em;
}
.visual-proof__handle { color: var(--rose); }

.visual-proof__follow { font-size: 16px; font-weight: 600; color: var(--rose-deep); }
.visual-proof__follow:hover { color: var(--rose); }

.visual-proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(12px, 1.4vw, 18px);
}

.tile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.tile--square { aspect-ratio: 1; }
.tile--tall { grid-row: span 2; }

.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-proof__grid .tile:nth-child(1) img { object-position: 60% 45%; }
.visual-proof__grid .tile:nth-child(2) img { object-position: 50% 40%; }
.visual-proof__grid .tile:nth-child(4) img { object-position: 62% 42%; }
.visual-proof__grid .tile:nth-child(5) img { object-position: 55% 40%; }

.quote {
  background: var(--rose);
  color: var(--white);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 253, 254, .75);
}
.quote__text {
  margin: 0;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.35;
}
.quote__by { margin: 12px 0 0; font-size: 13px; color: rgba(255, 253, 254, .8); }

.visual-proof__note {
  margin: 18px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

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

.book {
  position: relative;
  background: var(--rose-deep);
  color: var(--white);
  padding: clamp(80px, 15vh, 180px) var(--gutter);
  overflow: hidden;
  text-align: center;
}

.book__glow {
  position: absolute;
  left: -10%;
  bottom: -30%;
  width: 50vw;  max-width: 620px;
  height: 50vw; max-height: 620px;
  background: radial-gradient(circle, rgba(255, 253, 254, .22), rgba(255, 253, 254, 0) 60%);
  pointer-events: none;
}

.book__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.book__inner .eyebrow { margin-bottom: 20px; }

.book__title {
  margin: 0;
  font-size: clamp(44px, 8vw, 120px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.02em;
}
.book__script { font-size: 1.15em; color: var(--white); }

.book__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: clamp(34px, 5vh, 52px);
}

.book__note { margin: 22px 0 0; font-size: 14px; color: var(--pale); }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(56px, 9vh, 96px) var(--gutter) 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(30px, 4vw, 60px);
  max-width: 1200px;
  margin: 0 auto;
}

.footer__brand { grid-column: 1 / -1; max-width: 420px; }
.footer__logo { display: block; width: clamp(96px, 10vw, 128px); height: auto; }
.footer__tagline {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-dark);
}
.footer__script { color: var(--blush); font-size: 1.4em; }

.footer__label {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blush);
}
.footer__text { margin: 0; font-size: 15px; line-height: 1.7; color: var(--on-dark); }

.footer__menu { display: flex; flex-direction: column; gap: 8px; }
.footer__menu .footer__label { margin-bottom: 4px; }

.footer__link { color: var(--on-dark); font-size: 15px; transition: color .25s ease; }
.footer__link:hover { color: var(--rose); }

.footer__base {
  max-width: 1200px;
  margin: clamp(40px, 6vh, 64px) auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 254, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--footer-dim);
}
.footer__mono {
  margin: 12px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--footer-dim);
}

/* ==========================================================================
   Motion
   ========================================================================== */

@keyframes riseIn {
  from { transform: translateY(115%); }
  to   { transform: translateY(0); }
}
@keyframes softIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scriptIn {
  from { opacity: 0; transform: translateY(24px) rotate(-4deg) scale(.9); }
  to   { opacity: 1; transform: none; }
}
@keyframes clipIn {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  50%      { transform: translateY(-9px) rotate(-7deg); }
}

/* The hidden start state is scoped to html.js: main.js is what adds .is-in, so
   without JS the reveals would never come back. No .js class, no hiding. */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
  }
  .js [data-reveal].is-in { opacity: 1; transform: none; }
  .js [data-reveal][data-delay="1"] { transition-delay: .12s; }
  .js [data-reveal][data-delay="2"] { transition-delay: .24s; }
  .js [data-reveal][data-delay="3"] { transition-delay: .36s; }
}

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

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

.svc-hero {
  padding: clamp(150px, 22vh, 220px) var(--gutter) clamp(48px, 7vh, 80px);
  background: var(--cream);
}
.svc-hero__inner { max-width: var(--content-max); margin: 0 auto; }

.svc-hero__title {
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  margin-top: 14px;
}
.svc-hero__title .script { font-size: 1.1em; color: var(--rose-deep); }

.svc-hero__lede {
  max-width: 560px;
  margin-top: 22px;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--body);
}

/* Prices are the client's to confirm, so the page says so up front and the
   note travels with the menu rather than sitting in a comment. */
.price-flag {
  display: flex;
  gap: 14px;
  align-items: baseline;
  max-width: 620px;
  margin-top: 34px;
  padding: 18px 22px;
  background: var(--pale-warm);
  border-left: 3px solid var(--rose);
  border-radius: 3px;
}
.price-flag__label {
  flex: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.price-flag__text { font-size: 15px; line-height: 1.65; color: var(--body); }

.menu-section { padding: var(--section-y) var(--gutter); background: var(--cream); }
.menu-section--alt { background: var(--pale-warm); }
.menu-section__inner { max-width: var(--content-max); margin: 0 auto; }

.menu-section__title {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 1;
  color: var(--rose-deep);
}
.menu-section__intro {
  max-width: 520px;
  margin-top: 16px;
  font-size: 17px;
  color: var(--body);
}

.menu-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: clamp(38px, 5vw, 70px);
  margin-top: clamp(40px, 6vh, 68px);
}

.menu-group__title {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 600;
  color: var(--ink);
}
.menu-group__note {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.menu-group__list { margin-top: 20px; }

/* Name and price are pinned to the edges with a rule spanning the gap, so a
   long treatment name pushes the leader in rather than wrapping under it. */
.menu-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(36, 21, 25, .08);
}
.menu-row__name { flex: none; max-width: 74%; font-size: 17px; color: var(--ink); }
.menu-row__leader { flex: 1 1 auto; border-bottom: 1px dotted rgba(36, 21, 25, .28); }
.menu-row__price {
  flex: none;
  font-size: 17px;
  font-weight: 600;
  color: var(--rose-deep);
  white-space: nowrap;
}

.menu-foot {
  max-width: 620px;
  margin-top: clamp(34px, 5vh, 56px);
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.products { padding: var(--section-y) var(--gutter); background: var(--ink); color: var(--on-dark-2); }
.products__inner { max-width: var(--content-max); margin: 0 auto; }
.products__title {
  max-width: 620px;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-top: 14px;
}
.products__body { max-width: 560px; margin-top: 22px; font-size: 17px; line-height: 1.75; }
.products__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin-top: 34px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--on-dark);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  background: var(--cream);
  padding: var(--section-y) var(--gutter);
}
.contact__inner { max-width: var(--content-max); margin: 0 auto; }

.contact__title {
  margin: 14px 0 0;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.contact__title .script { font-size: 1.1em; color: var(--rose-deep); }

.contact__lede {
  max-width: 520px;
  margin-top: 20px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--body);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: clamp(38px, 6vh, 64px);
}

.contact__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px 24px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(36, 21, 25, .06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
a.contact__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(36, 21, 25, .13);
}

.contact__card--primary { background: var(--rose-deep); color: var(--white); }
.contact__card--primary .contact__label { color: var(--blush); }
.contact__card--primary .contact__value { color: var(--white); }
.contact__card--primary .contact__hint { color: var(--on-dark-2); }

.contact__label {
  margin: 0;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.contact__value {
  margin: 0;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.contact__hint { margin: auto 0 0; font-size: 14px; color: var(--muted); }
a.contact__card .contact__hint span { display: inline-block; transition: transform .3s var(--ease); }
a.contact__card:hover .contact__hint span { transform: translateX(5px); }

.contact__lower {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(34px, 5vw, 70px);
  margin-top: clamp(40px, 6vh, 66px);
  padding-top: clamp(32px, 5vh, 48px);
  border-top: 1px solid rgba(36, 21, 25, .1);
}

.contact__aside { display: grid; gap: clamp(26px, 4vh, 40px); align-content: start; }

.hours { margin: 16px 0 0; max-width: 340px; }
.hours__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(36, 21, 25, .07);
}
.hours dt { flex: none; min-width: 92px; font-size: 15px; color: var(--body); }
.hours dd { margin: 0 0 0 auto; font-size: 15px; font-weight: 600; color: var(--ink); }

.contact__note {
  margin: 12px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.contact__social { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 16px 0 0; }

/* ==========================================================================
   Contact form (mock - no handler, see cform__note)
   ========================================================================== */

.cform__note {
  max-width: 460px;
  margin: 12px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--blush);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}

.cform { margin-top: 26px; }
.cform__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.cform__field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.cform__row .cform__field { margin-bottom: 0; }
.cform__row + .cform__row,
.cform__row + .cform__field { margin-top: 16px; }

.cform__label { font-size: 14px; font-weight: 600; color: var(--ink); }
.cform__opt { font-weight: 400; color: var(--muted); }

.cform__input {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(36, 21, 25, .14);
  border-radius: 3px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.cform__input::placeholder { color: #b39aa0; }
.cform__input:focus-visible {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(224, 99, 127, .18);
}

.cform__select { appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A63C58' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.cform__textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.cform__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 22px; }
.cform__status {
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--rose-deep);
}
.cform__status[hidden] { display: none; }
