/* ============================================================
   MAKE HAIR HAPPEN — STYLESHEET
   Brand: #1a1a1a | #c8a96e | #f5f0e8 | #8b7355 | #ffffff
   ============================================================ */

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

:root {
  --black:   #1a1a1a;
  --gold:    #c8a96e;
  --gold-dark: #a8895a;
  --beige:   #f5f0e8;
  --brown:   #8b7355;
  --white:   #ffffff;
  --text:    #2c2c2c;
  --text-muted: #6b6356;
  --header-h: 72px;
  --radius:  6px;
  --shadow:  0 4px 20px rgba(0,0,0,.12);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ---------- IMAGE FILL SAFETY NET ------------------------- */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.media > img,
.img-fill > img,
figure.photo > img,
.gallery img,
.card__img img,
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- TYPOGRAPHY ------------------------------------ */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--black);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }

.text-gold { color: var(--gold); }
.text-light { color: rgba(255,255,255,.82); }

/* ---------- CONTAINER ------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }

/* ---------- BUTTONS --------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover { background: var(--gold); color: var(--black); }

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ---------- HEADER ---------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  height: var(--header-h);
  border-bottom: 1px solid rgba(200,169,110,.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex-shrink: 0;
}
.header-logo__text {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--white);
}
.header-logo__text em {
  font-style: normal;
  color: var(--gold);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.desktop-nav__link {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.desktop-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.desktop-nav__link:hover,
.desktop-nav__link--active { color: var(--white); }
.desktop-nav__link:hover::after,
.desktop-nav__link--active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--gold); }

/* ---------- HAMBURGER ------------------------------------- */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* ---------- MOBILE MENU OVERLAY --------------------------- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  height: 100svh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu__panel { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-menu__brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mobile-menu__close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  line-height: 0;
}
.mobile-menu__list { flex: 1; }
.mobile-menu__list li + li { border-top: 1px solid rgba(255,255,255,.08); }
.mobile-menu__item {
  display: block;
  padding: 18px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color var(--transition);
}
.mobile-menu__item:hover { color: var(--gold); }
.mobile-menu__cta { margin-top: 32px; width: 100%; }

/* ---------- HERO ------------------------------------------ */
.hero {
  position: relative;
  height: calc(100svh - var(--header-h));
  min-height: 520px;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.85) 0%, rgba(26,26,26,.5) 60%, rgba(26,26,26,.3) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 700px;
}
.hero__title--accent { color: var(--gold); }
.hero__subtitle {
  color: rgba(255,255,255,.82);
  max-width: 540px;
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- PAGE HERO ------------------------------------- */
.page-hero {
  padding: 80px 0 72px;
  text-align: center;
}
.page-hero--dark { background: var(--black); }
.page-hero__title { color: var(--white); margin-bottom: 16px; }
.page-hero__subtitle { color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto; }

/* ---------- SECTIONS -------------------------------------- */
.section { padding: 96px 0; }
.section--beige { background: var(--beige); }
.section--dark { background: var(--black); }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}
.section-label--gold { color: var(--gold); }

.section-title { margin-bottom: 20px; }
.section-title--light { color: var(--white); }

.section-intro { color: var(--text-muted); max-width: 560px; }
.section-intro--light { color: rgba(255,255,255,.72); max-width: 560px; }

.section-header--center { text-align: center; }
.section-header--center .section-intro { margin: 0 auto; }
.section-header { margin-bottom: 56px; }
.section-header--center { margin-bottom: 56px; }

.section-footer { text-align: center; margin-top: 48px; }

/* ---------- SPLIT BLOCK ----------------------------------- */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-block__img .media {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}
.split-block__img .media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-block__text .section-title { margin-top: 8px; }

.check-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--text);
}
.check-list svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- CARDS ----------------------------------------- */
.card-grid { display: grid; gap: 24px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  border-radius: 8px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }

.card--dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,169,110,.2);
}
.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,169,110,.12);
  border-radius: 6px;
  margin-bottom: 4px;
}
.card__icon svg { width: 26px; height: 26px; }
.card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
}
.card__text { color: rgba(255,255,255,.65); font-size: .9rem; flex: 1; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
  transition: gap var(--transition);
}
.card__link:hover { gap: 8px; }
.card__link svg { width: 14px; height: 14px; }

/* ---------- PORTFOLIO GRID -------------------------------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}
.portfolio-grid__item { overflow: hidden; border-radius: 8px; }

figure.photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  cursor: pointer;
}
figure.photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
figure.photo:hover > img { transform: scale(1.05); }
figure.photo figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,26,26,.8));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 24px 16px 14px;
  transform: translateY(100%);
  transition: transform .3s ease;
}
figure.photo:hover figcaption { transform: translateY(0); }

/* ---------- PERKS / WELLA --------------------------------- */
.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.perks-grid__img .media {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}
.perks-grid__img .media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.perk-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.perk-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,169,110,.18);
  border-radius: 8px;
  padding: 18px 20px;
}
.perk-card__icon { flex-shrink: 0; }
.perk-card__icon svg { width: 44px; height: 44px; }
.perk-card strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2px;
}
.perk-card span {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}

/* ---------- TESTIMONIALS ---------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 3px solid var(--gold);
}
.testimonial__stars { display: flex; gap: 4px; }
.testimonial__stars svg { width: 18px; height: 18px; }
.testimonial blockquote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  quotes: "\201C" "\201D";
}
.testimonial blockquote::before { content: open-quote; color: var(--gold); font-size: 2.5rem; line-height: 0; vertical-align: -.4em; margin-right: 4px; font-style: normal; }
.testimonial cite {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brown);
  font-style: normal;
}

/* ---------- CTA BAND ------------------------------------- */
.cta-band {
  background: var(--black);
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid rgba(200,169,110,.15);
}
.cta-band__title { color: var(--white); margin-bottom: 16px; }
.cta-band__text { color: rgba(255,255,255,.7); margin-bottom: 36px; font-size: 1.05rem; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------------------------------------- */
.footer-kit {
  background: #111;
  color: rgba(255,255,255,.65);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(200,169,110,.12);
}
.footer-kit__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-kit__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
}
.footer-kit__brand p { font-size: .88rem; line-height: 1.65; max-width: 280px; }

.footer-kit__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-kit__col ul li + li { margin-top: 10px; }
.footer-kit__col a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-kit__col a:hover { color: var(--white); }

.footer-kit__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  margin-bottom: 12px;
}
.footer-kit__contact-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-kit__contact-list a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-kit__contact-list a:hover { color: var(--white); }

.footer-kit__hours { display: flex; flex-direction: column; gap: 8px; }
.footer-kit__hours li {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  gap: 8px;
}
.footer-kit__hours span:first-child { color: rgba(255,255,255,.75); }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-kit__sub a { color: rgba(255,255,255,.45); }
.footer-kit__sub a:hover { color: var(--white); }

/* ---------- PRICE PAGE ------------------------------------ */
.price-category { margin-bottom: 56px; }
.price-category__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  color: var(--black);
}
.price-category__title svg { width: 24px; height: 24px; flex-shrink: 0; }

.price-table { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  font-size: .9rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: rgba(245,240,232,.5); }
.price-row span:last-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--gold-dark);
  white-space: nowrap;
}
.price-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(200,169,110,.1);
  border: 1px solid rgba(200,169,110,.3);
  border-radius: 8px;
  padding: 20px;
  margin-top: 8px;
}
.price-note svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.price-note p { font-size: .88rem; color: var(--text-muted); }

/* ---------- CONTACT PAGE ---------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.contact-form-wrap__title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.contact-form-wrap p { color: var(--text-muted); margin-bottom: 28px; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black);
}
.form-field label span { color: var(--gold-dark); }
.form-field input,
.form-field textarea {
  border: 1.5px solid rgba(0,0,0,.15);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 120px; }

.contact-info-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.contact-info-card__title { font-size: 1.4rem; margin-bottom: 20px; }
.contact-info-card__subtitle {
  font-size: 1rem;
  margin-top: 28px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-details li { display: flex; align-items: flex-start; gap: 14px; }
.contact-details__icon {
  width: 40px;
  height: 40px;
  background: rgba(200,169,110,.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-details__icon svg { width: 18px; height: 18px; }
.contact-details strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 2px;
}
.contact-details span,
.contact-details a { font-size: .9rem; color: var(--text-muted); }
.contact-details a:hover { color: var(--gold-dark); }

.map-block { border-radius: 8px; overflow: hidden; }
.map-block__caption {
  margin-top: 8px;
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
}
.map-block__caption a { color: var(--gold-dark); }

/* ---------- RESPONSIVE ------------------------------------ */
@media (max-width: 1024px) {
  .footer-kit__grid { grid-template-columns: 1fr 1fr; }
  .footer-kit__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .header-phone { display: none; }
  .mobile-menu__trigger { display: flex; }
  .header-actions .btn--gold { display: none; }

  .split-block { grid-template-columns: 1fr; gap: 40px; }
  .split-block__img { order: -1; }
  .perks-grid { grid-template-columns: 1fr; gap: 40px; }
  .perks-grid__img { order: -1; }

  .card-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .section { padding: 72px 0; }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .card { padding: 24px 20px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .footer-kit__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-kit__bottom { flex-direction: column; align-items: flex-start; }
  .split-block__img .media { aspect-ratio: 16/9; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ---------- BODY LOCK WHEN MENU OPEN --------------------- */
body.menu-open { overflow: hidden; }

/* ---------- SCROLL REVEAL --------------------------------- */
.reveal {
  opacity: 1;
  transform: none;
}
