/* ============================================
   Смбат Алиханян — Premium Personal Brand
   Dark theme
   ============================================ */

:root {
  --bg: #0a0a0b;
  --bg-elevated: #121214;
  --bg-card: #161618;
  --bg-card-hover: #1c1c1f;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(212, 175, 120, 0.35);

  --text: #f3efe8;
  --text-muted: #9a958c;
  --text-soft: #8a857d;

  --gold: #d4af78;
  --gold-soft: #c9a86c;
  --gold-dim: rgba(212, 175, 120, 0.15);
  --gold-glow: rgba(212, 175, 120, 0.25);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --container: 1120px;
  --header-h: 72px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* Noise */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* Layout */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section__sub {
  margin-top: 1rem;
  color: var(--text-muted);
  max-width: 420px;
  font-size: 0.95rem;
  font-weight: 300;
}

.section__header {
  margin-bottom: 64px;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__sub {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: #0a0a0b;
  border: 1px solid var(--gold);
}

.btn--primary:hover {
  background: #e0c08a;
  border-color: #e0c08a;
  box-shadow: 0 0 40px var(--gold-glow);
  transform: translateY(-1px);
}

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

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 0.85rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease);
}

/* backdrop-filter lives on a pseudo-element instead of directly on .header.
   A filter/backdrop-filter on .header itself would create a new containing
   block, trapping the fixed-position mobile .nav overlay inside the header's
   own (short) box once scrolled — collapsing the fullscreen menu. Keeping it
   off .header sidesteps that entirely, and also avoids toggling the filter
   on/off exactly when the menu opens, which was the source of the stutter. */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  transition: background-color 0.4s var(--ease);
}

.header.scrolled {
  border-bottom-color: var(--border);
}

.header.scrolled::before {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
}

.logo__surname {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
}

.nav__link--cta {
  color: var(--gold) !important;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.nav__link--cta:hover {
  background: var(--gold-dim);
}

.lang-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 2px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.lang-toggle__opt {
  position: relative;
  z-index: 1;
  width: 32px;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.lang-toggle__opt[data-val="ru"] {
  color: #0a0a0b;
}

.lang-toggle__knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 32px;
  height: 24px;
  border-radius: 999px;
  background: var(--gold);
  transition: transform 0.3s var(--ease);
}

.lang-toggle.is-hy .lang-toggle__knob {
  transform: translateX(32px);
}

.lang-toggle.is-hy .lang-toggle__opt[data-val="ru"] {
  color: var(--text-muted);
}

.lang-toggle.is-hy .lang-toggle__opt[data-val="hy"] {
  color: #0a0a0b;
}

.burger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 110;
}

.burger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: 0.3s var(--ease);
}

.burger span:nth-child(1) {
  top: 0;
}
.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.burger span:nth-child(3) {
  bottom: 0;
}

.burger.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 120, 0.09) 0%,
    transparent 65%
  );
  filter: blur(40px);
}

.hero__line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dim),
    transparent
  );
  height: 1px;
}

.hero__line--1 {
  top: 28%;
  left: 0;
  right: 0;
  opacity: 0.5;
}

.hero__line--2 {
  bottom: 22%;
  left: 10%;
  right: 10%;
  opacity: 0.3;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 3rem;
}

.hero__actions .btn {
  flex: 0 1 auto;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.stat__divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.3;
  }
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.about__frame {
  position: relative;
}

.about__portrait {
  aspect-ratio: 4 / 5;
  background: #111;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.8s var(--ease);
}

.about__portrait:hover img {
  transform: scale(1.03);
}

.about__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(10, 10, 11, 0.35) 100%
  );
  pointer-events: none;
}

.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about__badge span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.about__badge strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
}

.about__body {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__body p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.98rem;
}

.about__body strong {
  color: var(--text);
  font-weight: 500;
}

.about__quote {
  margin-top: 2.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
}

.about__quote p {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.about__quote cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Trim the dead black gap between the quote and Services below it */
.about {
  padding-bottom: 40px;
}

/* Services */
.services {
  background: linear-gradient(180deg, var(--bg) 0%, #0d0d0f 50%, var(--bg) 100%);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.25rem 2rem;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease),
    transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.service-card__text {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Portfolio */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.work {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: default;
}

.work--tall {
  grid-row: span 2;
}

.work--wide {
  grid-column: span 2;
}

.work__img {
  width: 100%;
  height: 100%;
  background: #111;
  overflow: hidden;
  position: relative;
}

.work__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s var(--ease);
}

.work:hover .work__img img {
  transform: scale(1.05);
}

.work__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.work__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 2;
}

.work:hover .work__cap {
  opacity: 1;
  transform: translateY(0);
}

.work__cap span:first-child {
  font-size: 0.9rem;
  font-weight: 500;
}

.work__tag {
  font-size: 0.68rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold) !important;
  font-weight: 400 !important;
}

.portfolio__cta {
  margin-top: 3rem;
  text-align: center;
}

/* Education */
.education {
  background: linear-gradient(180deg, var(--bg) 0%, #0c0b0a 50%, var(--bg) 100%);
}

.education__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.education__lead {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 400px;
  line-height: 1.7;
}

.education__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 3 shared row tracks via subgrid: header | middle | footer
     → both CTAs always on the same horizontal line */
  grid-template-rows: auto 1fr auto;
  column-gap: 1.25rem;
  row-gap: 0;
  align-items: stretch;
}

.edu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  min-height: 0;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  gap: 0;
}

/* Fallback when subgrid unsupported: flex + pin footer */
@supports not (grid-template-rows: subgrid) {
  .education__cards {
    grid-template-rows: none;
    gap: 1.25rem;
  }
  .edu-card {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    height: 100%;
  }
  .edu-card__middle {
    flex: 1 1 auto;
  }
  .edu-card__footer {
    margin-top: auto;
  }
}

.edu-card__header {
  min-width: 0;
}

.edu-card__middle {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/*
  Shared footer row (3rd subgrid track):
  [ button 48px ]
  [ note line ]
*/
.edu-card__footer {
  margin-top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0.45rem;
  padding-top: 1rem;
  box-sizing: border-box;
  align-self: stretch;
}

.edu-card__footer-note,
.edu-card__footer .waitlist__hint {
  margin: 0;
  min-height: 1.15rem;
  height: 1.15rem;
  font-size: 0.72rem;
  line-height: 1.15rem;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--text-soft);
  overflow: hidden;
}

.edu-card .btn,
.edu-card .waitlist__submit,
.edu-card__footer .btn,
.edu-card__btn {
  white-space: nowrap !important;
  letter-spacing: 0.06em !important;
  padding: 0 16px !important;
  line-height: 1 !important;
  max-width: 100%;
  width: 100%;
  min-height: 48px !important;
  height: 48px !important;
  max-height: 48px !important;
  box-sizing: border-box;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.78rem !important;
  font-weight: 600;
}

.edu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 80%);
  opacity: 0.6;
}

.edu-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.edu-card--soon {
  background: linear-gradient(165deg, #141310 0%, var(--bg-card) 100%);
}

.edu-card--soon::before {
  background: linear-gradient(90deg, rgba(212, 175, 120, 0.35), transparent 80%);
}

.edu-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.edu-card__badge {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a0a0b;
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 2px;
}

.edu-card__badge--soon {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-strong);
}

.edu-card__num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
}

.edu-card__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.edu-card__text {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.edu-card__list {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.edu-card__middle .edu-card__list {
  margin-bottom: 1.25rem;
}

.edu-card__middle .edu-card__list:last-child {
  margin-bottom: 0;
}

.edu-card__btn {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.edu-card__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 300;
}

.edu-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.edu-card .btn {
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  justify-content: center;
}

/* Reviews */
.reviews {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.reviews__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s;
}

.review-card:hover {
  border-color: var(--border-strong);
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.review-card__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  flex: 1;
  margin-bottom: 1.75rem;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.review-card__name {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.review-card__meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Salon */
.salon__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.salon__lead {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 420px;
}

.salon__details {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.salon__details li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.salon__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold);
  border-radius: var(--radius);
}

.salon__details strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.25rem;
}

.salon__details span,
.salon__details a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 300;
}

.salon__details a:hover {
  color: var(--gold);
}

.salon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.salon__map-frame {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
}

.salon__map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.85) invert(0.92) contrast(0.9);
  opacity: 0.9;
}

/* Contact */
.contact {
  padding-bottom: 40px;
}

.contact__card {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(
    165deg,
    var(--bg-card) 0%,
    #0f0e0c 50%,
    var(--bg-elevated) 100%
  );
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact__lead {
  color: var(--text-muted);
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto 2.5rem;
  font-size: 0.98rem;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact__link {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.25rem 1.75rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  min-width: 200px;
  transition: border-color 0.3s, background 0.3s;
  text-align: left;
}

.contact__link:hover {
  border-color: var(--border-strong);
  background: var(--gold-dim);
}

.contact__link-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact__link-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__inner--legal {
  align-items: flex-start;
}

.footer__brand .logo__name {
  font-size: 1.15rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer__legal {
  flex: 1 1 280px;
  text-align: center;
  min-width: 0;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.65;
  font-weight: 300;
}

.footer__copy a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__copy a:hover {
  color: var(--gold);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 0.75rem;
}

.footer__links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

.footer__links a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* Stagger children slightly via delays in JS or CSS siblings */
.services__grid .reveal:nth-child(1) {
  transition-delay: 0.05s;
}
.services__grid .reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.services__grid .reveal:nth-child(3) {
  transition-delay: 0.19s;
}
.services__grid .reveal:nth-child(4) {
  transition-delay: 0.26s;
}

.portfolio__grid .reveal:nth-child(1) {
  transition-delay: 0.05s;
}
.portfolio__grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.portfolio__grid .reveal:nth-child(3) {
  transition-delay: 0.15s;
}
.portfolio__grid .reveal:nth-child(4) {
  transition-delay: 0.2s;
}
.portfolio__grid .reveal:nth-child(5) {
  transition-delay: 0.25s;
}
.portfolio__grid .reveal:nth-child(6) {
  transition-delay: 0.3s;
}

.reviews__track .reveal:nth-child(1) {
  transition-delay: 0.05s;
}
.reviews__track .reveal:nth-child(2) {
  transition-delay: 0.15s;
}
.reviews__track .reveal:nth-child(3) {
  transition-delay: 0.25s;
}

/* Responsive */
@media (max-width: 960px) {
  .about__grid,
  .salon__grid,
  .education__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .education__cards {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 1.25rem;
    max-width: 480px;
  }

  .edu-card {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    height: auto;
  }

  .edu-card__middle {
    flex: 1 1 auto;
  }

  .edu-card__footer {
    margin-top: auto;
  }

  .about__visual {
    max-width: 360px;
    margin: 0 auto;
  }

  .about__badge {
    right: 0;
    bottom: -16px;
  }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .work--wide {
    grid-column: span 2;
  }

  .reviews__track {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 88px 0;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 11, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 105;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.1rem;
    letter-spacing: 0.14em;
  }

  .burger {
    display: block;
  }

  .hero__stats {
    gap: 1.25rem;
  }

  .stat__divider {
    display: none;
  }

  .hero__scroll {
    display: none;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .work--tall,
  .work--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .work__cap {
    opacity: 1;
    transform: none;
  }

  .contact__card {
    padding: 56px 24px;
  }

  .contact__links {
    flex-direction: column;
    align-items: stretch;
  }

  .contact__link {
    min-width: 0;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .salon__actions {
    flex-direction: column;
  }

  .salon__actions .btn {
    width: 100%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__scroll span {
    animation: none;
  }
}

/* ============================================
   V2 features — sticky, BA, lightbox, FAQ...
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container--narrow {
  width: min(100% - 40px, 720px);
}

body {
  padding-bottom: 0;
}

/* Intro */
.intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0a0a0b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  animation: intro-in 0.8s var(--ease) both;
}

.intro__name {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-soft);
  animation: intro-in 0.8s 0.15s var(--ease) both;
}

@keyframes intro-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.chip {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
}

.marquee__track span:nth-child(odd) {
  color: var(--gold);
  opacity: 0.75;
}

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

/* Trim the dead black gap between Services above and Portfolio below */
.portfolio {
  padding-top: 40px;
}

/* Portfolio filters + button reset */
.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.25rem 0 2.5rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  background: transparent;
  transition: 0.3s var(--ease);
}

.filter-btn:hover,
.filter-btn.is-active {
  color: #0a0a0b;
  background: var(--gold);
  border-color: var(--gold);
}

.work__btn {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  color: inherit;
  text-align: left;
  position: relative;
}

.work.is-hidden {
  display: none;
}

.work__cap {
  pointer-events: none;
}

/* Before / After */
.ba-section {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ba-card {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.ba {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  background: #111;
}

.ba__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba__before-wrap {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 1px solid rgba(212, 175, 120, 0.6);
}

.ba__img--before {
  width: 100%;
  max-width: none;
  /* full-bleed width of parent .ba */
  width: var(--ba-w, 100%);
  height: 100%;
}

.ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  z-index: 4;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba__handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(10, 10, 11, 0.85);
  box-shadow: 0 0 20px var(--gold-glow);
}

.ba__handle span::before,
.ba__handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
}

.ba__handle span::before {
  left: 10px;
  transform: translateY(-50%) rotate(-135deg);
}

.ba__handle span::after {
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

.ba__label {
  position: absolute;
  bottom: 12px;
  z-index: 3;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--text);
}

.ba__label--before { left: 12px; }
.ba__label--after { right: 12px; color: var(--gold); }

.ba-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1.1rem 1.15rem 0.25rem;
}

.ba-card__text {
  padding: 0 1.15rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Process */
.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: none;
}

.process__step {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 1.75rem 1.4rem;
  position: relative;
}

.process__step::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: -0.7rem;
  width: 0.7rem;
  height: 1px;
  background: var(--border-strong);
}

.process__step:last-child::after {
  display: none;
}

.process__num {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.process__step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}

/* Trim the dead black gap between Process above and Pricing below */
.process {
  padding-bottom: 40px;
}

/* Pricing */
.pricing {
  padding-top: 40px;
  background: linear-gradient(180deg, var(--bg) 0%, #0d0c0a 50%, var(--bg) 100%);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.price-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 1.75rem 1.4rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.price-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.price-card--accent {
  border-color: var(--border-strong);
  background: linear-gradient(165deg, #1a1610 0%, var(--bg-card) 100%);
}

.price-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0b;
  background: var(--gold);
  padding: 4px 8px;
}

.price-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.price-card__from {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.price-card__from strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-block;
  margin-left: 0.25rem;
}

.price-card__note {
  font-size: 0.8rem;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.5;
}

.pricing__disclaimer {
  text-align: center;
  margin-top: 2rem;
  max-width: 640px;
  margin-inline: auto;
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.pricing__disclaimer a {
  color: var(--gold);
  margin-left: 0.15rem;
}

.pricing__disclaimer strong {
  color: var(--text-muted);
  font-weight: 500;
}

/* Education extras */
.education__for {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.education__for li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.55;
}

.education__for li strong {
  color: var(--text);
  font-weight: 500;
}

.education__for li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: none;
  pointer-events: none;
}

.waitlist {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  flex: 0 0 auto;
  justify-content: flex-start;
}

.waitlist input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  font-size: 0.9rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.3s;
}

.waitlist input:focus {
  border-color: var(--gold);
}

.waitlist input::placeholder {
  color: var(--text-soft);
}

.btn--full {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.waitlist__note {
  font-size: 0.8rem;
  color: var(--gold);
  line-height: 1.4;
}

.waitlist__hint {
  font-size: 0.72rem;
  color: var(--text-soft);
  line-height: 1.45;
  text-align: center;
}

.waitlist__type {
  border: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.waitlist__radio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 11px 8px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  text-align: center;
  line-height: 1.2;
  background: rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  min-width: 0;
  white-space: nowrap;
}

.waitlist__radio span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.waitlist__radio:has(input:checked) {
  border-color: var(--border-strong);
  color: var(--gold);
  background: rgba(212, 175, 120, 0.08);
}

.waitlist__radio input {
  accent-color: var(--gold);
  width: 14px;
  height: 14px;
  margin: 0;
  flex-shrink: 0;
}

.waitlist__submit {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  color: #0a0a0b !important;
  background: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  font-weight: 600;
  text-transform: uppercase;
  animation: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.waitlist__submit:hover {
  background: #e0c08a !important;
  border-color: #e0c08a !important;
  color: #0a0a0b !important;
  transform: none !important;
}

.waitlist__hint {
  text-align: center;
  margin: 0;
}

.section__sub code {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.78em;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 1px 6px;
  border-radius: 2px;
}

/* Reviews proof */
.reviews__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.proof-item {
  text-align: center;
  min-width: 120px;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.proof-item span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* FAQ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 0;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.25rem;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item[open] summary {
  color: var(--gold);
}

.faq__item p {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Booking — dark paths only (no white YClients iframe) */
.booking-panel {
  border: 1px solid var(--border-strong);
  background: linear-gradient(165deg, #14120f 0%, #0c0b0a 45%, #0a0a0b 100%);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.booking-panel__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
}

.booking-panel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold-glow);
  flex-shrink: 0;
}

.booking-panel__head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.booking-panel__head small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.booking-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.booking-path {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.85rem 1.5rem;
  background: #0e0d0c;
  transition: background 0.35s, transform 0.35s var(--ease);
  min-height: 100%;
}

.booking-path:hover {
  background: #161310;
}

.booking-path--accent {
  background: linear-gradient(180deg, #1a1610 0%, #100e0b 100%);
}

.booking-path--accent:hover {
  background: linear-gradient(180deg, #221c14 0%, #14110c 100%);
}

.booking-path__num {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.booking-path h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.booking-path p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
}

.booking-path__cta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}

.booking-panel__foot {
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Mobile sticky bar */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  background: rgba(10, 10, 11, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}

.mobile-bar__btn {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
}

.mobile-bar__btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0b;
  font-weight: 600;
}

/* Float CTA desktop */
.float-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  padding: 14px 22px;
  background: var(--gold);
  color: #0a0a0b;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45), 0 0 30px var(--gold-glow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 0.4s var(--ease);
}

.float-cta.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.float-cta:hover {
  background: #e0c08a;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 6, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 70px;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox__figure {
  max-width: min(900px, 100%);
  max-height: 100%;
  text-align: center;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border: 1px solid var(--border);
}

.lightbox__figure figcaption {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox__close:hover {
  opacity: 1;
  color: var(--gold);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--text);
  width: 48px;
  height: 48px;
  opacity: 0.7;
  transition: 0.3s;
}

.lightbox__nav:hover {
  opacity: 1;
  color: var(--gold);
}

.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

/* Responsive extras */
@media (max-width: 1100px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process__step::after {
    display: none;
  }
  .ba-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 960px) {
  .education__grid {
    grid-template-columns: 1fr;
  }
  .education__cards {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 1.25rem;
  }
  .edu-card {
    display: flex;
    flex-direction: column;
    grid-row: auto;
  }
  .edu-card__footer {
    margin-top: auto;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }

  .float-cta {
    display: none;
  }

  .mobile-bar {
    display: flex;
  }

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

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

  .hero__photo {
    opacity: 0.28;
    background-position: center top;
  }

  .contact__actions {
    flex-direction: column;
  }

  .contact__actions .btn {
    width: 100%;
  }

  .lightbox {
    padding: 50px 16px;
  }

  .nav {
    /* ensure scrollable if many links */
    overflow-y: auto;
    padding: 80px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
  .intro {
    display: none;
  }
}

/* ============================================
   WOW LAYER — cinematic premium
   ============================================ */

body.has-cursor {
  cursor: none;
}
body.has-cursor a,
body.has-cursor button,
body.has-cursor input,
body.has-cursor summary,
body.has-cursor .ba__range {
  cursor: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  /* ring only — solid blob was covering text */
  background: transparent;
  border: 1.5px solid rgba(212, 175, 120, 0.85);
  pointer-events: none;
  z-index: 10001;
  mix-blend-mode: normal;
  transition: opacity 0.12s, width 0.15s ease-out, height 0.15s ease-out, margin 0.15s ease-out, background 0.15s, border-color 0.15s;
  opacity: 0;
  will-change: transform;
  box-shadow: 0 0 0 1px rgba(10, 10, 11, 0.35);
}
.cursor.is-on { opacity: 1; }
.cursor.is-hover {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  background: rgba(212, 175, 120, 0.1);
  border-color: var(--gold);
}
.cursor.is-hover span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.title-em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* Intro wow */
.intro__ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(212, 175, 120, 0.35);
  border-radius: 50%;
  animation: ring-pulse 1.4s ease-out both;
}
.intro__tag {
  margin-top: 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: intro-in 0.8s 0.25s var(--ease) both;
}
@keyframes ring-pulse {
  from { transform: scale(0.6); opacity: 0; }
  50% { opacity: 1; }
  to { transform: scale(1.4); opacity: 0; }
}

/* Hero wow */
.hero--wow {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 32px) 0 80px;
  box-sizing: border-box;
}
.hero__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  min-width: 0;
}
.hero--wow .hero__content {
  min-width: 0;
  max-width: none;
}
/* One calm bg photo — no second layer (avoids dark hair vs platinum clash) */
.hero__photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(105deg, rgba(10,10,11,0.93) 0%, rgba(10,10,11,0.7) 40%, rgba(10,10,11,0.38) 100%),
    url("../assets/portfolio-01.jpg");
  background-image:
    linear-gradient(105deg, rgba(10,10,11,0.93) 0%, rgba(10,10,11,0.7) 40%, rgba(10,10,11,0.38) 100%),
    image-set(url("../assets/portfolio-01.webp") type("image/webp"), url("../assets/portfolio-01.jpg") type("image/jpeg"));
  background-position: 68% 30%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.48;
  transform: scale(1.04);
  animation: hero-ken 18s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero__photo--2 {
  display: none;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, transparent 0%, #0a0a0b 75%);
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,120,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,120,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}
@keyframes hero-ken {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.12) translate(-2%, 1%); }
}

.hero__live {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fdf8b;
  margin-right: 0.55rem;
  vertical-align: middle;
  margin-top: -2px;
  box-shadow: 0 0 12px #6fdf8b;
  animation: live 1.6s ease-in-out infinite;
}
@keyframes live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero--wow .hero__title {
  font-size: clamp(4rem, 13vw, 8.5rem);
  line-height: 0.88;
  margin-bottom: 1.25rem;
}
.hero__slogan {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 1rem;
  max-width: 28ch;
}
.hero--wow .hero__lead {
  margin-bottom: 2rem;
}

.btn--glow {
  box-shadow: 0 0 0 0 rgba(212, 175, 120, 0.45);
  animation: glow-pulse 2.8s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 120, 0.35); }
  50% { box-shadow: 0 0 32px 4px rgba(212, 175, 120, 0.28); }
}

.hero__side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  width: 100%;
}
.glass-card {
  background: rgba(18, 18, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.5rem 1.4rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.glass-card__kicker {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.glass-card__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.glass-card__text {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.92rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.glass-card__link {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Signatures */
.signatures {
  padding-top: 100px;
}
.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.sig-card {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.sig-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}
.sig-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 1s var(--ease);
  filter: saturate(0.9) brightness(0.55);
}
.sig-card:hover .sig-card__bg {
  transform: scale(1.12);
  filter: saturate(1) brightness(0.65);
}
.sig-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(transparent 20%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.sig-card__num {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.sig-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.sig-card p {
  color: rgba(243, 239, 232, 0.78);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
  max-width: 32ch;
}
.sig-card__cta {
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a0a0b;
  background: var(--gold);
  padding: 10px 16px;
  transition: background 0.3s, transform 0.3s;
}
.sig-card__cta:hover {
  background: #e0c08a;
  transform: translateY(-1px);
}

/* Consult banner */
.consult {
  padding-top: 40px;
}
.consult__banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, #14120f 0%, #0c0b0a 50%, #12100c 100%);
  overflow: hidden;
}
.consult__glow {
  position: absolute;
  width: 50%;
  height: 120%;
  right: -10%;
  top: -10%;
  background: radial-gradient(circle, rgba(212,175,120,0.18), transparent 65%);
  pointer-events: none;
}
.consult__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.consult__lead {
  color: var(--text-muted);
  font-weight: 300;
  max-width: 40ch;
  margin-bottom: 1.25rem;
}
.consult__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0;
}
.consult__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 300;
}
.consult__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 0.25em;
}
.consult__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.consult__hint {
  font-size: 0.75rem;
  color: var(--text-soft);
  line-height: 1.45;
}

/* Brands */
.brands {
  padding: 2rem 0;
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
}
.brands__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
}
.brands__label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.brands__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 300;
}
.brands__items span {
  position: relative;
}
.brands__items span:not(:last-child)::after {
  content: "·";
  margin: 0 0.85rem;
  color: var(--text-soft);
}

/* Care */
.care__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}
.care__steps {
  margin-top: 1.75rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: care;
}
.care__steps li {
  counter-increment: care;
  position: relative;
  padding: 1rem 1rem 1rem 3.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.55;
}
.care__steps li::before {
  content: counter(care, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
}
.care__steps strong {
  color: var(--text);
  font-weight: 500;
}
.care__offer {
  border: 1px solid var(--border-strong);
  background: linear-gradient(165deg, #1a1610, #0e0d0b);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.care__badge {
  align-self: flex-start;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a0a0b;
  background: var(--gold);
  padding: 5px 10px;
}
.care__offer h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}
.care__offer p {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
  font-size: 0.95rem;
}
.care__offer .btn {
  width: 100%;
}

.marquee--wow {
  padding: 1.15rem 0;
}
.marquee--wow .marquee__track {
  font-size: 1.35rem;
  gap: 1.75rem;
  animation-duration: 28s;
}

/* Portfolio hover lift */
.portfolio .work {
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.portfolio .work:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

@media (max-width: 960px) {
  .hero--wow {
    min-height: auto;
    align-items: flex-start;
    padding: calc(var(--header-h) + 28px) 0 64px;
  }
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hero__side {
    max-width: 100%;
  }
  .hero__actions {
    margin-bottom: 2.25rem;
  }
  .hero__stats {
    gap: 1.25rem 1.75rem;
    margin-bottom: 0;
  }
  .sig-grid {
    grid-template-columns: 1fr;
  }
  .sig-card {
    min-height: 360px;
  }
  .consult__banner {
    grid-template-columns: 1fr;
    padding: 2rem 1.35rem;
  }
  .care__grid {
    grid-template-columns: 1fr;
  }
  .education__cards {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .cursor { display: none !important; }
  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button {
    cursor: auto;
  }
  .hero--wow {
    padding: calc(var(--header-h) + 20px) 0 48px;
  }
  .hero--wow .hero__title {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
    line-height: 0.95;
    margin-bottom: 1rem;
  }
  .hero--wow .hero__lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: none;
  }
  .hero__slogan {
    font-size: clamp(1.15rem, 4.5vw, 1.45rem);
    margin-bottom: 1rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__stats {
    gap: 1rem 1.25rem;
    padding-top: 1.25rem;
  }
  .stat__num {
    font-size: 1.45rem;
  }
  .hero__photo {
    opacity: 0.32;
    animation: none;
  }
  .glass-card {
    padding: 1.25rem 1.15rem;
  }
  .glass-card__title {
    font-size: 1.45rem;
  }
  /* Academy cards full width */
  .education__cards {
    max-width: none;
  }
  .edu-card {
    padding: 1.35rem 1.15rem;
  }
  .waitlist__radio {
    white-space: normal;
    font-size: 0.75rem;
    padding: 10px 6px;
  }
  .pricing__grid {
    gap: 0.85rem;
  }
  .section {
    padding: 72px 0;
  }
  .school__banner {
    padding: 1.75rem 1.1rem;
    margin-bottom: 2rem;
  }
  .footer {
    padding: 2rem 0 1.5rem;
  }
  .footer__copy {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__photo,
  .btn--glow,
  .hero__live,
  .marquee__track {
    animation: none !important;
  }
}

/* School brand banner */
.school__banner {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 120, 0.12), transparent 55%),
    linear-gradient(180deg, #14120f 0%, #0c0b0a 100%);
  position: relative;
}

.academy-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a0a0b;
  background: var(--gold);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.school__banner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(280px, 50%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.school__brand-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
  background: linear-gradient(90deg, #f3efe8 0%, var(--gold) 50%, #f3efe8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.school__brand-lead {
  max-width: 46ch;
  margin: 0 auto;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  font-size: 0.98rem;
}
.school__brand-lead strong {
  color: var(--text);
  font-weight: 500;
}
.hero__lead strong {
  color: var(--gold);
  font-weight: 500;
}

/* Trust row under about */
.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.75rem 0 0;
  padding: 0;
}
.trust-row li {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  padding: 8px 12px;
  background: rgba(212, 175, 120, 0.06);
}

/* —— Legal / privacy page —— */
.header--solid,
.legal-page .header {
  background: rgba(10, 10, 11, 0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
}

.legal {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  min-height: 70vh;
}

/* privacy.html has no burger — the shared mobile .nav rule (position:fixed,
   opacity:0 until .open is toggled by JS) would otherwise hide these links
   permanently on mobile, since there's no burger here to add .open. */
@media (max-width: 768px) {
  .legal-page .nav {
    position: static;
    inset: auto;
    background: none;
    flex-direction: row;
    gap: 0.75rem;
    opacity: 1;
    visibility: visible;
    z-index: auto;
  }
  .legal-page .nav__link {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }
  .legal-page .header__cta {
    display: none;
  }
}

.legal__wrap {
  max-width: 720px;
}

.legal__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  margin: 0.75rem 0 1.25rem;
  letter-spacing: -0.02em;
}

.legal__meta {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal__meta a {
  color: var(--gold);
}

.legal__body section {
  margin-bottom: 2rem;
}

.legal__body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.legal__body p,
.legal__body li {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal__body p {
  margin-bottom: 0.75rem;
}

.legal__body ul,
.legal__body ol {
  margin: 0.5rem 0 1rem 1.15rem;
}

.legal__body li {
  margin-bottom: 0.4rem;
}

.legal__body a {
  color: var(--gold);
}

.legal__body code {
  font-size: 0.85em;
  color: var(--gold-soft);
  background: var(--gold-dim);
  padding: 1px 6px;
  border-radius: 2px;
}

.legal__body em {
  color: var(--text-soft);
  font-style: italic;
}

.legal__back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal__back a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Waitlist consent */
.waitlist__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-soft);
  cursor: pointer;
  text-align: left;
}

.waitlist__consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.waitlist__consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.waitlist__consent a:hover {
  color: #e0c08a;
}

/* Cookie bar — compact, never covers half the screen */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  height: auto;
  max-height: none;
  padding: 0.7rem 1rem;
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 12, 14, 0.97);
  border-top: 1px solid var(--border-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.4);
}

.cookie-bar[hidden] {
  display: none !important;
}

.cookie-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  flex-wrap: nowrap;
}

.cookie-bar__text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0;
}

.cookie-bar__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.cookie-bar__actions {
  flex-shrink: 0;
}

.cookie-bar__btn {
  padding: 10px 18px !important;
  font-size: 0.72rem !important;
  min-width: 100px;
  width: auto !important;
  white-space: nowrap;
}

/* Keep mobile bar pinned; cookie sits above it */
body.cookie-open .mobile-bar {
  bottom: 0;
  z-index: 130;
}

body.cookie-open {
  /* room for cookie strip (~72px) + optional mobile bar */
  padding-bottom: 88px;
}

@media (max-width: 768px) {
  body.cookie-open {
    padding-bottom: calc(72px + 88px);
  }

  body.cookie-open .cookie-bar {
    bottom: 72px;
    padding: 0.65rem 0.85rem;
    padding-bottom: 0.65rem;
  }

  .cookie-bar__inner {
    flex-wrap: wrap;
    gap: 0.55rem 0.75rem;
  }

  .cookie-bar__text {
    flex: 1 1 calc(100% - 120px);
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .cookie-bar__text a {
    white-space: normal;
  }

  .cookie-bar__btn {
    padding: 10px 16px !important;
    min-width: 96px;
  }

  .footer__inner--legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ---------------------------------------------------------------
   Layout fixes (2026-07-16 review pass)
   Placed last on purpose: several earlier media blocks re-declare
   `.section { padding: ... }`, and this file has more than one
   @media (max-width: 768px) block, so anything about section
   spacing has to come after all of them to actually win the cascade.
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  .about {
    padding-bottom: 48px;
  }

  .portfolio {
    padding-top: 48px;
  }

  .process {
    padding-bottom: 48px;
  }

  .pricing {
    padding-top: 48px;
  }

  .contact {
    padding-bottom: 48px;
  }

  /* "Стандарт private master" label is nowrap and was sharing a row with the
     wrapping items list, squeezing them into a cramped, uneven jumble.
     Stack label above items so both get the full row width. */
  .brands__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding-bottom: 40px;
  }

  .portfolio {
    padding-top: 40px;
  }

  /* Four variable-width filter pills wrapping freely (3+1 / 2+2 uneven splits)
     read as messy on narrow screens. Lock to a tidy 2x2 grid instead. */
  .portfolio__filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
  }

  .process {
    padding-bottom: 40px;
  }

  .pricing {
    padding-top: 40px;
  }

  .contact {
    padding-bottom: 40px;
  }
}
