/* =====================================================================
   Bethany Beaumont Cosmetics
   Elegant, editorial beauty site — warm cream, charcoal ink, soft blush
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --cream:      #ECE3D7;   /* page background (matches logo) */
  --cream-2:    #F5EFE6;   /* lighter sections */
  --white:      #FBF8F3;   /* cards / off-white */
  --ink:        #211C18;   /* warm near-black text */
  --ink-2:      #2C2620;
  --muted:      #6E6358;   /* secondary text */
  --line:       #DAD0C1;   /* hairlines on cream */
  --line-soft:  #E4DACA;
  --blush:      #C98A86;
  --blush-deep: #AE6F6B;
  --blush-tint: #F1E1DC;
  --gold:       #A98A5E;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --nav-h: 76px;

  --shadow-sm: 0 4px 20px rgba(33, 28, 24, 0.06);
  --shadow-md: 0 18px 50px rgba(33, 28, 24, 0.12);
  --shadow-lg: 0 30px 80px rgba(33, 28, 24, 0.18);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

section[id] { scroll-margin-top: 90px; }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin: 0 0 1.1rem;
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 400;
}

.section-head p {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.display-italic { font-style: italic; color: var(--blush-deep); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95rem 2rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--ink); --btn-fg: var(--cream); --btn-bd: var(--ink); }
.btn--primary:hover { --btn-bg: var(--blush-deep); --btn-bd: var(--blush-deep); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--cream); }

.btn--light { --btn-bg: var(--cream); --btn-fg: var(--ink); --btn-bd: var(--cream); }
.btn--light:hover { --btn-bg: transparent; --btn-fg: var(--cream); --btn-bd: var(--cream); }

.btn--sm { padding: 0.7rem 1.4rem; font-size: 0.72rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--blush);
  padding-bottom: 3px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow .arw { transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--blush-deep); }
.link-arrow:hover .arw { transform: translateX(5px); }

/* ---------- Wordmark ---------- */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--ink);
}
.wordmark .wm-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  padding-left: 0.34em; /* optical balance for tracking */
}
.wordmark .wm-sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.52rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.45rem;
  padding-left: 0.5em;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(236, 227, 215, 0.88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a:not(.btn) {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding-block: 0.4rem;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--blush-deep);
  transition: width 0.3s var(--ease);
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__book { display: none; } /* in-menu Book button; shown only in the mobile dropdown */

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.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(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(2rem, 6vw, 4.5rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 3.85rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.005em;
}
.hero h1 em { font-style: italic; color: var(--blush-deep); }
.hero__lead {
  margin-top: 1.6rem;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 44ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.95rem; }

/* Hero image */
.hero__media { position: relative; justify-self: center; }
.hero__frame {
  position: relative;
  width: min(420px, 78vw);
  aspect-ratio: 3 / 4;
  border-radius: 220px 220px 18px 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::before {
  content: "";
  position: absolute;
  width: 78%; aspect-ratio: 1;
  right: -8%; top: -6%;
  background: radial-gradient(circle, var(--blush-tint), transparent 68%);
  filter: blur(8px);
  z-index: 0;
}
.hero__badge {
  position: absolute;
  left: -1.4rem; bottom: 2.2rem;
  z-index: 3;
  background: var(--white);
  border-radius: 14px;
  padding: 0.9rem 1.15rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 230px;
}
.hero__badge .b-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; }
.hero__badge .b-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--ink);
}

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem clamp(1.5rem, 4vw, 3.5rem);
  padding-block: 1.4rem;
  text-align: center;
}
.trust__item {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.trust__item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blush); }

/* ---------- Treatments ---------- */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.t-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blush); }
.t-card__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--blush-deep);
  margin-bottom: 1.4rem;
}
.t-card h3 {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.t-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.6rem;
}
.t-card .link-arrow { margin-top: auto; align-self: flex-start; }

.treatments-note {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Signature feature ---------- */
.feature {
  background: var(--blush-tint);
  overflow: hidden;
}
.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__body h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.feature__body p { color: #6a564f; max-width: 46ch; margin-bottom: 1.2rem; }
.feature__list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2rem;
  display: grid;
  gap: 0.7rem;
}
.feature__list li {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  color: var(--ink);
  font-size: 0.98rem;
}
.feature__list li::before {
  content: "✦";
  color: var(--blush-deep);
  font-size: 0.8rem;
}

/* ---------- Journey / what to expect ---------- */
.journey { background: var(--cream-2); }
.journey-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.journey-step { text-align: center; }
.journey-step__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.4rem, 7vw, 5.25rem);
  line-height: 1;
  color: var(--blush);
  margin-bottom: 1.1rem;
}
.journey-step h3 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.journey-step p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 34ch;
  margin-inline: auto;
}
.journey-cta { text-align: center; margin-top: clamp(2.75rem, 5vw, 4rem); }

/* ---------- Gallery (editorial plates) ---------- */
.gallery-editorial {
  column-count: 3;
  column-gap: clamp(1.25rem, 2.6vw, 2.5rem);
}
.g-figure {
  break-inside: avoid;
  margin: 0 0 clamp(1.75rem, 3.6vw, 3rem);
  width: 100%;
}
/* gentle editorial stagger: nudge the middle of each trio down */
.g-figure:nth-child(3n + 2) { margin-top: clamp(1rem, 3.5vw, 2.75rem); }

.g-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line-soft);
  background: var(--cream-2);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.g-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease);
}
.g-figure:hover .g-item {
  transform: translateY(-5px);
  border-color: var(--blush);
  box-shadow: 0 0 0 1px var(--blush), var(--shadow-md);
}
.g-figure:hover .g-item img { transform: scale(1.04); }
.g-item:focus-visible { outline: 2px solid var(--blush-deep); outline-offset: 4px; }

.g-figure__cap { margin-top: 1rem; padding-left: 0.1rem; }
.g-cap__name {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.g-cap__note {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--muted);
}

.gallery-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* ---------- Reviews (charcoal band) ---------- */
.reviews {
  background: var(--ink);
  color: var(--cream);
}
.reviews .section-head h2 { color: var(--cream); }
.reviews .section-head p { color: rgba(236,227,215,0.66); }
.reviews .eyebrow { color: var(--blush); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.r-card {
  border: 1px solid rgba(236,227,215,0.16);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
}
.r-card .stars { margin-bottom: 1.1rem; }
.r-card blockquote {
  margin: 0 0 1.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.45;
  font-style: italic;
  color: var(--cream);
}
.r-card__meta { margin-top: auto; }
.r-card__name {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.r-card__svc { color: var(--blush); font-size: 0.78rem; letter-spacing: 0.08em; margin-top: 0.2rem; }
.reviews-foot { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }
.reviews-foot .link-arrow { color: var(--cream); border-color: var(--blush); }
.reviews-foot .link-arrow:hover { color: var(--blush); }

/* ---------- About ---------- */
.about { background: var(--cream-2); }
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 200px 200px 18px 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__body h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 1.3rem;
}
.about__body p { color: var(--muted); margin-bottom: 1.1rem; max-width: 52ch; }
.about__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink);
  margin-top: 1.6rem;
}
.about__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about__meta .label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 0.3rem;
}
.about__meta .val { font-size: 0.95rem; color: var(--ink); }
.about__meta a.val:hover { color: var(--blush-deep); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #E8C9C2 0%, #D9A6A0 55%, #CE9088 100%);
  color: var(--ink);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 400;
}
.cta-band p { color: #5e3f3b; margin-top: 1rem; font-size: 1.08rem; }
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.2rem;
}
.cta-band .btn--primary:hover { --btn-bg: var(--white); --btn-fg: var(--ink); --btn-bd: var(--white); }
.cta-band .btn--ghost { --btn-bd: var(--ink); }
.cta-band .btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--cream); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(236,227,215,0.72);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
  font-size: 0.92rem;
}
.footer a:hover { color: var(--cream); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(236,227,215,0.14);
}
.footer .wordmark { align-items: flex-start; color: var(--cream); }
.footer .wordmark .wm-name { color: var(--cream); }
.footer .wordmark .wm-sub { color: rgba(236,227,215,0.55); }
.footer__about { margin-top: 1.4rem; max-width: 34ch; }
.footer__social { display: flex; gap: 0.8rem; margin-top: 1.6rem; }
.footer__social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid rgba(236,227,215,0.25);
  border-radius: 50%;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer__social a:hover { background: var(--blush-deep); border-color: var(--blush-deep); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; fill: var(--cream); }
.footer__col h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.footer__col address { font-style: normal; display: grid; gap: 0.7rem; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(236,227,215,0.5);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(20, 16, 13, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox__img {
  max-width: min(900px, 92vw);
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox__cap {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: 0; right: 0;
  text-align: center;
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(236,227,215,0.3);
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background-color 0.3s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,0.16); }
.lightbox__prev { left: clamp(0.5rem, 3vw, 2rem); }
.lightbox__next { right: clamp(0.5rem, 3vw, 2rem); }
.lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 48px; height: 48px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: 1rem; top: -60px;
  z-index: 300;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 2px solid var(--blush-deep); outline-offset: 3px; border-radius: 4px; }

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

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 620px; }
  .hero__media { order: -1; }
  .feature__grid, .about__grid { grid-template-columns: 1fr; }
  .about__media, .feature__media { max-width: 460px; justify-self: center; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery-editorial { column-count: 2; }
  .g-figure:nth-child(3n + 2) { margin-top: 0; }
  /* keep the 6 nav links comfortable between tablet and the mobile breakpoint */
  .nav__links { gap: 1.1rem; }
  .nav__links a:not(.btn) { font-size: 0.73rem; letter-spacing: 0.12em; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }

  /* Mobile menu panel */
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream-2);
    box-shadow: var(--shadow-md);
    padding: 0.5rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }
  .nav.menu-open .nav__links {
    display: flex;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a:not(.btn) { display: block; width: 100%; padding-block: 0.85rem; font-size: 0.95rem; }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__book { display: block; margin-top: 0.75rem; padding-top: 1.25rem; border-top: 1px solid var(--line-soft); }
  .nav__book a { width: 100%; }

  .hero__badge { left: 0; }
  .journey-steps { grid-template-columns: 1fr; gap: 3rem; max-width: 430px; margin-inline: auto; }
  .treatments-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .treatments-grid, .reviews-grid, .footer__grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .btn { width: 100%; }
  .hero__actions { width: 100%; }
  .cta-band__actions .btn, .gallery-foot { width: auto; }
  .gallery-editorial { column-count: 1; max-width: 420px; margin-inline: auto; }

  /* Keep the wordmark tidy in the bar on phones */
  .wordmark .wm-name { font-size: 1.05rem; letter-spacing: 0.26em; white-space: nowrap; }
  .wordmark .wm-sub { font-size: 0.48rem; letter-spacing: 0.42em; }
}

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