/* =========================================================
   Luscious Makeup & Hair — Landing Page
   Design system: restraint-first. Gold reserved for CTA,
   section numerals, and one hairline. No drop-shadow bloat.
   ========================================================= */

:root {
  --ink:      #0E0B0B;
  --ink-80:   #1B1515;
  --cream:    #FAF6F2;
  --cream-2:  #F3ECE5;
  --blush:    #F1DCD7;
  --rose:     #B4596B;
  --rose-dk:  #8C3E50;
  --gold:     #B08855;
  --gold-lt:  #D9BE93;
  --muted:    #6A5F5B;
  --line:     rgba(14, 11, 11, 0.12);
  --line-lt:  rgba(14, 11, 11, 0.08);

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 3rem);

  --r: 2px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Reset ----- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--rose-dk);
  font-weight: 400;
}

p { margin: 0; text-wrap: pretty; }

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

.skip {
  position: absolute; top: -100px; left: 1rem;
  background: var(--ink); color: var(--cream);
  padding: .6rem 1rem; border-radius: var(--r);
  z-index: 100;
}
.skip:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--rose-dk);
  outline-offset: 3px;
  border-radius: var(--r);
}

/* ----- Utility: eyebrow + section numerals ----- */

.eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}
.eyebrow--light { color: var(--gold-lt); }

.section__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin: 0 0 1.2rem;
}

.section {
  padding: clamp(3rem, 6vw, 5.5rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
}
.section__head--center {
  text-align: center;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section__head--center .section__num { color: var(--gold); }

.section__title {
  font-size: clamp(2rem, 5.5vw, 4.25rem);
  max-width: 16ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  position: relative;
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: inherit;
  transition: border-color 0.4s var(--ease);
  pointer-events: none;
}
.btn--primary:hover {
  background: var(--rose-dk);
  border-color: var(--rose-dk);
  color: var(--cream);
}
.btn--primary:hover::before { border-color: var(--gold-lt); }
.btn:active { transform: translateY(1px); }

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

.btn--lg { padding: 1.15rem 2.2rem; font-size: 0.9rem; }

/* ----- NAV ----- */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(250, 246, 242, 0.94);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line-lt);
  transition: box-shadow 0.4s var(--ease);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.nav__brand img { height: 42px; width: auto; }
.nav__links {
  display: flex;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  justify-content: center;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}
.nav__links a { position: relative; padding: 0.5rem 0; font-weight: 500; }
.nav__links a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0.25rem; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { justify-self: end; }
.nav__ctas {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__ctas .btn { padding: 0.7rem 1.2rem; font-size: 0.78rem; }
.nav__toggle { display: none; justify-self: end; padding: 0.5rem; width: 44px; height: 44px; position: relative; }
.nav__toggle span {
  display: block;
  position: absolute; left: 10px; right: 10px;
  height: 1.5px; background: var(--ink);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 24px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

/* Nav scroll state */
.nav.is-scrolled {
  box-shadow: 0 1px 24px -12px rgba(14, 11, 11, 0.25);
}

/* Mobile menu overlay */
.nav-mobile {
  position: fixed; inset: 0; z-index: 40;
  background: var(--cream);
  padding: 5rem var(--pad) 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform 0.3s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-mobile[hidden] { display: flex; }
.nav-mobile.is-open { transform: translateY(0); pointer-events: auto; }
.nav-mobile nav { display: flex; flex-direction: column; gap: 0.85rem; }
.nav-mobile nav a {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 6.5vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.nav-mobile .btn { align-self: flex-start; }
.nav-mobile__meta {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* ----- HERO ----- */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  padding-top: 72px; /* clear fixed nav */
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  background: var(--cream);
  overflow: hidden;
}

/* Left: image slider */
.hero__media {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.75rem) 0 clamp(1rem, 2vw, 1.75rem) clamp(1rem, 2vw, 1.75rem);
  background: var(--cream);
}
.hero__slides {
  list-style: none;
  padding: 0; margin: 0;
  position: absolute;
  inset: clamp(1rem, 2vw, 1.75rem) 0 clamp(1rem, 2vw, 1.75rem) clamp(1rem, 2vw, 1.75rem);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 60px -30px rgba(14, 11, 11, 0.35);
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 7s var(--ease);
}
.hero__slide.is-active img { transform: scale(1.09); }

/* Subtle atmospheric overlays on the image */
.hero__slides::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(14, 11, 11, 0.35) 0%, rgba(14, 11, 11, 0) 28%),
    linear-gradient(to right, rgba(14, 11, 11, 0) 70%, rgba(14, 11, 11, 0.08) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(250, 246, 242, 0.88);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px -8px rgba(14, 11, 11, 0.35), inset 0 0 0 1px rgba(14, 11, 11, 0.06);
  z-index: 3;
}
.hero__arrow:hover {
  background: var(--cream);
  box-shadow: 0 10px 28px -10px rgba(14, 11, 11, 0.45), inset 0 0 0 1px rgba(14, 11, 11, 0.08);
}
.hero__arrow svg { width: 20px; height: 20px; }
.hero__arrow--prev { left: clamp(1.5rem, 3vw, 2.25rem); }
.hero__arrow--next { right: clamp(1.5rem, 3vw, 2.25rem); }

.hero__dots {
  position: absolute;
  bottom: clamp(1.5rem, 2.5vw, 2rem); left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.5rem;
  z-index: 3;
}
.hero__dots button {
  width: 24px; height: 2px;
  background: rgba(250, 246, 242, 0.45);
  transition: background 0.3s var(--ease), width 0.4s var(--ease);
  border-radius: 2px;
  padding: 0;
}
.hero__dots button.is-active {
  background: var(--cream);
  width: 36px;
}

/* Right: content panel */
.hero__panel {
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4.5rem);
  background: var(--cream);
}
.hero__panel-inner {
  display: grid;
  gap: 1.75rem;
  width: 100%;
  max-width: 540px;
}
.hero__panel-inner .eyebrow { margin-bottom: 0.25rem; }
.hero__title {
  font-size: clamp(2.5rem, 4.5vw, 4.75rem);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  max-width: 14ch;
  margin: 0;
  line-height: 1.02;
}
.hero__sub {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.6;
}

.hero__tiles {
  list-style: none;
  padding: 0; margin: 0.5rem 0 0.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.hero__tiles a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 1.35rem;
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.hero__tiles a span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.hero__tiles a:hover {
  background: var(--ink);
  color: var(--cream);
}
.hero__tiles a:hover span {
  color: var(--gold-lt);
  transform: translateX(3px);
}

.hero__ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-top: 0.5rem; }

.hero__award {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(176, 136, 85, 0.06);
  align-self: start;
  line-height: 1.4;
}
.hero__award-star {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0;
  line-height: 1;
}

/* ----- SERVICES ----- */

.services__grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.service-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--cream);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 260px;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
  position: relative;
  opacity: 0.72;
}
.service-card:hover {
  background: var(--ink);
  color: var(--cream);
  opacity: 1;
}
.service-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  transition: color 0.5s var(--ease);
}
.service-card:hover .service-card__num { color: var(--gold-lt); }

.service-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
  transition: color 0.5s var(--ease);
}
.service-card:hover p { color: rgba(250, 246, 242, 0.78); }

.service-card__link {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  align-self: flex-start;
  padding: 0.3rem 0;
  position: relative;
  transition: color 0.5s var(--ease);
}
.service-card__link::after {
  content: "";
  position: absolute; left: 0; bottom: 0; right: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0.35); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-card__link { color: var(--gold-lt); }
.service-card:hover .service-card__link::after { transform: scaleX(1); }

/* ----- ABOUT ----- */

.about__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__image figure {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream-2) 60%, var(--gold-lt) 100%);
  position: relative;
}
.about__image figure::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(14, 11, 11, 0.06);
  pointer-events: none;
}
.about__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about__image:hover img { transform: scale(1.03); }

.about__body { display: flex; flex-direction: column; gap: 1.25rem; }
.about__body .eyebrow { margin-top: 0; }
.about__body .section__title { max-width: 18ch; }
.about__lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink);
  margin-top: 1rem;
}
.about__body-copy { color: var(--muted); font-size: 1.0625rem; }
.about__signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--rose-dk);
  margin-top: 0.5rem;
}

/* Team */
.about__team {
  margin-top: clamp(4rem, 8vw, 6.5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}
.about__team-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 0.6rem;
}
.about__team-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 22ch;
}
.team-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
}
.team-track {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: max-content;
  animation: team-scroll 40s linear infinite;
}
.team-carousel:hover .team-track { animation-play-state: paused; }
.team-track > .team-card {
  flex: 0 0 auto;
  width: clamp(160px, 22vw, 220px);
}

@keyframes team-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.team-card {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.team-card__photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 55%),
    linear-gradient(135deg, var(--blush) 0%, var(--cream-2) 55%, var(--gold-lt) 100%);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--rose-dk);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(14, 11, 11, 0.06);
}
.team-card__photo::before {
  content: attr(data-initial);
  line-height: 1;
}
.team-card h4 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-top: 0.25rem;
}
.team-card p {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
/* ----- BLOW-DRY MENU ----- */

.menu {
  padding: clamp(3rem, 6vw, 5rem) var(--pad) clamp(2.5rem, 5vw, 4rem);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.menu__head {
  max-width: 640px;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  display: grid;
  gap: 0.8rem;
  justify-items: center;
}
.menu__title {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  margin: 0;
}
.menu__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--rose-dk);
  font-weight: 400;
}
.menu__sub {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 46ch;
  line-height: 1.55;
}
.menu__image {
  margin: 0 auto;
  max-width: 880px;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
}
.menu__image::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px var(--line-lt);
  border-radius: inherit;
  pointer-events: none;
}
.menu__image img {
  width: 100%;
  height: auto;
  display: block;
}
.menu__cta {
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* ----- MEMBERSHIP ----- */

.membership {
  background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 55%, var(--cream-2) 100%);
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.membership::before {
  content: "";
  position: absolute;
  top: -30%; left: -10%;
  width: 50vw; height: 50vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(176, 136, 85, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.membership__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
}
.membership__image {
  margin: 0;
  aspect-ratio: 3 / 4;
  max-width: 460px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--cream-2);
  box-shadow: 0 30px 70px -35px rgba(14, 11, 11, 0.3);
  position: relative;
}
.membership__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.membership__image:hover img { transform: scale(1.03); }
.membership__body {
  display: flex; flex-direction: column; gap: 1.15rem;
}
.membership__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  max-width: 14ch;
}
.membership__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--ink);
  line-height: 1.45;
}
.membership__perks {
  list-style: none; padding: 0;
  margin: 0.5rem 0;
  display: grid; gap: 0.75rem;
}
.membership__perks li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}
.membership__perks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.membership__footnote {
  color: var(--muted);
  font-size: 0.925rem;
  max-width: 48ch;
  margin-top: 0.25rem;
}
.membership__ctas {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 0.75rem;
}

/* ----- RECOGNITION ----- */

.recognition__sub {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 48ch;
}

.award-grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.award-card {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--cream);
  align-items: center;
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.award-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.award-card__cert {
  margin: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream-2);
  box-shadow: 0 18px 40px -24px rgba(14, 11, 11, 0.3);
  cursor: zoom-in;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-card__cert img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s var(--ease);
}
.award-card__cert:hover img { transform: scale(1.03); }

.award-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.award-card__year {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.award-card__title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0.2rem 0 0.3rem;
}
.award-card__detail {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--rose-dk);
  margin: 0;
}
.award-card__detail em {
  font-style: italic;
}
.award-card__issuer {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ----- GALLERY ----- */

.gallery-section { padding-top: clamp(3rem, 7vw, 6rem); }

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(140px, 16vw, 230px);
  gap: 14px;
}
.gallery__item {
  margin: 0;
  grid-column: span 2;
  grid-row: span 1;
  overflow: hidden;
  position: relative;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--blush), var(--cream-2));
}
.gallery__item--tall { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 4; grid-row: span 1; }
.gallery__item--full { grid-column: span 6; grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 11, 11, 0.12) 100%);
  pointer-events: none;
}
.gallery__follow {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  font-size: 0.95rem;
  color: var(--muted);
}
.gallery__follow a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ----- TESTIMONIALS ----- */

.testimonials { background: var(--cream); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.testimonial {
  margin: 0;
  padding: 2rem 1.75rem 2rem;
  border-top: 1px solid var(--gold);
  position: relative;
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial__mark {
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: -1rem;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
}
.testimonial figcaption {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
  padding-top: 0.5rem;
}

/* ----- LIGHTBOX ----- */

.gallery__item { cursor: zoom-in; }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(14, 11, 11, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(250, 246, 242, 0.12);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(250, 246, 242, 0.22); }
.lightbox__close svg,
.lightbox__nav svg { width: 22px; height: 22px; }

.lightbox__close {
  top: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav--prev { left: clamp(1rem, 3vw, 2rem); }
.lightbox__nav--next { right: clamp(1rem, 3vw, 2rem); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.05); }

body.lightbox-open { overflow: hidden; }

/* ----- FEEDBACK ----- */

.feedback__sub {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 48ch;
  line-height: 1.6;
}

.feedback__form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }

.field label, .field__label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.field__hint {
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: 400;
  color: var(--muted);
  opacity: 0.7;
}

.field input,
.field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0;
  width: 100%;
  transition: border-color 0.3s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--rose-dk);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}

/* Rating — star radios, right-to-left for hover-fill effect */
.rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.1rem;
  padding: 0.4rem 0;
}
.rating input { position: absolute; opacity: 0; pointer-events: none; }
.rating label {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--line);
  cursor: pointer;
  letter-spacing: 0;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label { color: var(--gold); }
.rating input:focus-visible + label { outline: 2px solid var(--rose-dk); outline-offset: 3px; border-radius: 2px; }
.rating label:hover { transform: translateY(-1px); }

.feedback__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.75rem;
}
.feedback__note {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose-dk);
  font-size: 1rem;
  min-height: 1.2rem;
}

/* ----- CTA BAND ----- */

.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4.5rem, 10vw, 8rem) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  bottom: -50%; right: -20%;
  width: 80vw; height: 80vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(180, 89, 107, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.cta-band__title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  margin: 0.5rem 0 0.25rem;
}
.cta-band__title em {
  color: var(--gold-lt);
}
.cta-band__sub {
  color: rgba(250, 246, 242, 0.72);
  font-size: 1rem;
  max-width: 46ch;
}
.cta-band .btn--primary {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  margin-top: 0.75rem;
}
.cta-band .btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.cta-band .btn--primary:hover::before { border-color: var(--ink); }

/* ----- VISIT ----- */

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.visit__info {
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.visit__list {
  margin: 0;
  display: grid;
  gap: 1.5rem;
}
.visit__list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-lt);
}
.visit__list > div:last-child { border-bottom: 0; }
.visit__list dt {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-top: 0.2rem;
}
.visit__list dd {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.55;
}
.visit__list dd a { border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.visit__list dd a:hover { border-bottom-color: var(--rose-dk); }

.hours {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0.35rem;
  font-variant-numeric: tabular-nums;
}
.hours li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.hours li > span:first-child { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.05em; padding-top: 0.1rem; }
.hours li:last-child > span:last-child { color: var(--muted); }

.visit__map {
  display: block;
  position: relative;
  min-height: 400px;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--cream-2);
  transition: transform 0.4s var(--ease);
}
.visit__map::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px var(--line);
  pointer-events: none;
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

/* ----- FOOTER ----- */

.footer {
  background: var(--ink);
  color: rgba(250, 246, 242, 0.78);
  padding: clamp(3rem, 7vw, 5rem) var(--pad) 1.5rem;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 246, 242, 0.12);
}
.footer__brand {
  display: flex; flex-direction: column; gap: 1.25rem;
  max-width: 320px;
}
.footer__brand img {
  width: 140px;
  filter: brightness(1.05) saturate(0.9);
}
.footer__brand p {
  font-size: 0.925rem;
  color: rgba(250, 246, 242, 0.58);
  line-height: 1.55;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__cols h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
}
.footer__cols ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.7rem;
  font-size: 0.925rem;
}
.footer__cols a { color: rgba(250, 246, 242, 0.78); transition: color 0.3s var(--ease); }
.footer__cols a:hover { color: var(--cream); }

.footer__base {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(250, 246, 242, 0.5);
}

/* ----- REVEALS ----- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ----- RESPONSIVE ----- */

@media (max-width: 960px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__intro { grid-template-columns: 1fr; }
  .membership__inner { grid-template-columns: 1fr; justify-items: center; text-align: left; }
  .membership__image { max-width: 420px; }
  .team-track > .team-card { width: 160px; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 320px; }
  .visit__map iframe { min-height: 320px; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .feedback__form { grid-template-columns: 1fr; }
  .award-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr; }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero__media {
    height: 52vh;
    min-height: 380px;
    padding: var(--pad);
    padding-top: 0;
  }
  .hero__slides {
    inset: 0 var(--pad) 0 var(--pad);
  }
  .hero__panel {
    padding: clamp(2rem, 6vw, 3rem) var(--pad) clamp(3rem, 6vw, 4rem);
    justify-content: center;
  }
  .hero__panel-inner { max-width: 640px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .nav__cta-gift { display: none; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta, .nav__ctas { display: none; }
  .nav__toggle { display: block; }
  .nav__inner { grid-template-columns: 1fr auto; }

  .section__head {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .section__num { margin-bottom: 0.25rem; }

  .services__grid { grid-template-columns: 1fr; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
  }
  .gallery__item,
  .gallery__item--tall,
  .gallery__item--wide,
  .gallery__item--full { grid-column: span 2; grid-row: span 1; }
  .gallery__item--tall { grid-row: span 2; grid-column: span 1; }

  .hero__title { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .hero__arrow { width: 44px; height: 44px; }
  .hero__arrow--prev { left: 0.75rem; }
  .hero__arrow--next { right: 0.75rem; }

  .award-card {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }
  .award-card__cert { width: 160px; }
  .hero__tiles { grid-template-columns: 1fr; }
  .hero__tiles a { padding: 0.85rem 1rem; }

  .visit__list > div { grid-template-columns: 1fr; gap: 0.35rem; }

  .footer__cols { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer__base { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 440px) {
  .hero__ctas { width: 100%; flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; flex: none; }
  .btn { padding: 0.95rem 1.25rem; letter-spacing: 0.08em; }
  .footer__cols { grid-template-columns: 1fr; }
}

/* Safari / iOS body scroll lock when menu open */
body.menu-open { overflow: hidden; }

/* Careers */
.careers__panel {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.job {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: 0 30px 60px -40px rgba(14,11,11,0.18);
}
.job__tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.job__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.job__lede {
  color: var(--ink-80);
  max-width: 56ch;
  margin: 0 0 1.25rem;
}
.job__sub { margin: 0.5rem 0 0.5rem; color: var(--ink); }
.job__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.5rem;
}
.job__list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
}
.job__list li::before {
  content: "◆";
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.7em;
}
.job__footnote {
  font-style: italic;
  color: var(--muted);
  margin: 0;
}
.careers__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}
.careers__pitch { margin: 0; color: var(--ink-80); max-width: 52ch; }
.careers__email {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  word-break: break-word;
}
.careers__email a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--gold);
}
.careers__open { margin: 0; color: var(--muted); font-size: 0.9rem; font-style: italic; max-width: 52ch; }

/* FAQ */
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0.25rem;
}
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 400;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
.faq__item[open] > summary::after { content: "–"; }
.faq__item p {
  margin: 0.75rem 0 0.25rem;
  color: var(--muted);
  max-width: 68ch;
}
.faq__item p a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* =====================================================
   Academy page
   ===================================================== */
.academy-hero {
  padding: clamp(8rem, 14vw, 12rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  text-align: center;
}
.academy-hero__inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
.academy-hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.academy-hero__title em {
  font-style: italic;
  color: var(--rose-dk);
  font-weight: 300;
}
.academy-hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 58ch;
  margin: 0;
  line-height: 1.6;
}
.academy-hero__ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  justify-content: center;
}

.courses {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

.course {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}
.course:first-of-type { border-top: none; padding-top: 0; }
.course--reverse { direction: rtl; }
.course--reverse > * { direction: ltr; }

.course__image {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 30px 60px -30px rgba(14,11,11,0.35);
}
.course__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.course__image:hover img { transform: scale(1.03); }

.course__body { display: flex; flex-direction: column; gap: 1rem; }
.course__tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  margin: 0;
}
.course__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
.course__meta {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-80);
  margin: 0;
}
.course__meta strong { font-weight: 600; color: var(--ink); }
.course__meta .dot { color: var(--gold); }
.course__lede { color: var(--ink-80); margin: 0.25rem 0 0.5rem; max-width: 56ch; }
.course__sub { margin: 0.5rem 0 0; color: var(--ink); }
.course__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.course__list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  line-height: 1.55;
}
.course__list li::before {
  content: "◆";
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 0.7em;
}
.course__footnote {
  color: var(--muted);
  font-style: italic;
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}
.course__footnote a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.course__ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.75rem; }

.policy {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem);
}
.policy__sub { color: var(--muted); max-width: 60ch; margin: 0.5rem 0 0; }
.policy__list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: policy;
  display: grid;
  gap: 1.75rem;
}
.policy__list > li {
  counter-increment: policy;
  position: relative;
  padding-left: 3.25rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
}
.policy__list > li:last-child { border-bottom: none; }
.policy__list > li::before {
  content: counter(policy, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--gold);
  font-style: italic;
}
.policy__list h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.policy__list p {
  color: var(--muted);
  margin: 0;
  max-width: 62ch;
  line-height: 1.6;
}
.policy__contact {
  margin: 2rem 0 0;
  text-align: center;
  color: var(--muted);
}
.policy__contact a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 820px) {
  .course { grid-template-columns: 1fr; gap: 2rem; }
  .course--reverse { direction: ltr; }
  .course__image { max-width: 440px; margin: 0 auto; }
  .policy__list > li { padding-left: 2.5rem; }
}

/* ----- PRICING ----- */

.pricing__lede {
  max-width: 48ch;
  margin: 1.25rem auto 0;
  color: var(--muted);
  text-align: center;
}

.pricing__group { margin-top: clamp(2.25rem, 5vw, 3.5rem); }
.pricing__group:first-of-type { margin-top: 0; }

.pricing__group-label {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 1.5rem;
}
.pricing__group-label span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.pricing__group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.pricing__grid {
  display: grid;
  gap: 1.25rem;
}
.pricing__grid--3 { grid-template-columns: repeat(3, 1fr); }
.pricing__grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 840px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.pricing-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.pricing-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.pricing-card--featured .pricing-card__tag,
.pricing-card--featured .pricing-card__desc,
.pricing-card--featured .pricing-card__period { color: rgba(250, 246, 242, 0.72); }
.pricing-card--featured .pricing-card__price { color: var(--cream); }
.pricing-card--featured .pricing-card__currency { color: var(--gold-lt); }
.pricing-card--featured .btn--primary {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.pricing-card--featured .btn--primary:hover {
  background: var(--rose-dk);
  color: var(--cream);
  border-color: var(--rose-dk);
}
.pricing-card--featured:hover { border-color: var(--gold); transform: translateY(-2px); }

.pricing-card__tag {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.pricing-card__price {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.2vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 0.25rem;
}
.pricing-card__currency {
  font-size: .5em;
  font-style: italic;
  color: var(--gold);
  vertical-align: 0.4em;
  margin-right: 0.05em;
  font-variation-settings: "opsz" 144;
}
.pricing-card__period {
  display: inline-block;
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-left: 0.45rem;
  vertical-align: 0.25em;
}

.pricing-card__desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.pricing-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

.pricing__footnote {
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  max-width: 54ch;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .pricing__grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing__grid--3,
  .pricing__grid--2 { grid-template-columns: 1fr; }
  .pricing-card__cta { align-self: stretch; }
}

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