:root {
  --bg: #0a0706;
  --bg-soft: #120d0b;
  --bg-card: rgba(22, 16, 14, 0.92);
  --bg-card-2: rgba(28, 20, 17, 0.9);
  --text: #f6eee6;
  --text-soft: #d8c9bb;
  --text-muted: #ab998b;
  --accent: #d8b18a;
  --accent-strong: #e8c39e;
  --accent-deep: #8a6245;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 88px;
  --ease: 260ms cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(167, 109, 64, 0.18), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(216, 177, 138, 0.12), transparent 18%),
    linear-gradient(180deg, #080605 0%, #0c0807 45%, #0a0706 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(216, 177, 138, 0.28); color: var(--text); }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}
.section { padding: 6.5rem 0; position: relative; }
.section--tight { padding: 5rem 0; }
.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  color: var(--accent-strong);
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.section-label::before,
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(216,177,138,0), rgba(216,177,138,1));
}
h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -.03em;
}
h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}
h1 { font-size: clamp(3.5rem, 7vw, 6.9rem); }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.3rem); }
h3 { font-size: clamp(1.28rem, 2vw, 1.8rem); font-weight: 700; }
p { margin: 0; color: var(--text-soft); }
.lead { font-size: 1.1rem; color: #eee2d5; }
.muted { color: var(--text-muted); }
.grid { display: grid; gap: 1.4rem; }
.glass {
  background: linear-gradient(180deg, rgba(28,20,17,0.9), rgba(17,12,10,0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.card {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(27,19,16,0.96), rgba(15,11,10,0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 56px;
  padding: .9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease), color var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #1b110e;
  background: linear-gradient(135deg, #f2d2b3, #d3a279);
  box-shadow: 0 14px 40px rgba(211, 162, 121, 0.28);
}
.btn--primary:hover { box-shadow: 0 18px 46px rgba(211, 162, 121, 0.35); }
.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}
.btn--ghost:hover { border-color: rgba(255, 255, 255, 0.24); background: rgba(255,255,255,0.06); }
.btn--small { min-height: 48px; padding: .8rem 1.1rem; }
.btn--full { width: 100%; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .48rem .82rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f5dfca;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1rem;
  color: var(--accent-strong);
  font-weight: 700;
}
.text-link::after {
  content: "→";
  transition: transform var(--ease);
}
.text-link:hover::after { transform: translateX(4px); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding-top: max(.7rem, env(safe-area-inset-top));
  pointer-events: none;
}
.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
  padding: .8rem 1rem;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(12, 9, 8, 0.52);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.site-header.is-scrolled .header-shell {
  background: rgba(10, 7, 6, 0.86);
  border-color: rgba(255,255,255,0.11);
  box-shadow: 0 26px 56px rgba(0,0,0,.3);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  min-width: 0;
}
.brand__mark {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  background: radial-gradient(circle at 35% 30%, rgba(216,177,138,0.22), rgba(17,12,10,0.94));
}
.brand__mark img { height: 100%; object-fit: cover; }
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}
.brand__text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 2vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand__text small {
  margin-top: .12rem;
  font-size: .72rem;
  letter-spacing: .34em;
  color: var(--text-muted);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: .28rem;
}
.main-nav a {
  position: relative;
  padding: .85rem 1rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 600;
  transition: color var(--ease), background var(--ease);
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.header__actions { display: inline-flex; align-items: center; gap: .75rem; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease), translate var(--ease);
}
.nav-toggle span:nth-child(1) { translate: 0 -6px; }
.nav-toggle span:nth-child(3) { translate: 0 6px; }
.nav-toggle.is-open span:nth-child(1) { translate: 0 0; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { translate: 0 0; transform: rotate(-45deg); }
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(6,4,3,0.58);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
.nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }
.main-nav__footer { display: none; }

main { position: relative; z-index: 1; }
.hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: clip;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,6,5,0.26), rgba(9,6,5,0.7) 38%, rgba(9,6,5,0.94) 100%),
    linear-gradient(90deg, rgba(7,5,4,0.72) 0%, rgba(7,5,4,0.4) 48%, rgba(7,5,4,0.82) 100%);
  z-index: -1;
}
.hero__bg,
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img,
.page-hero__bg img {
  height: 100%;
  object-fit: cover;
}
.hero__glow,
.page-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  z-index: -1;
}
.hero__glow--one,
.page-hero__glow--one { width: 18rem; height: 18rem; left: -3rem; top: 18%; background: rgba(216,177,138,0.2); }
.hero__glow--two,
.page-hero__glow--two { width: 22rem; height: 22rem; right: -5rem; bottom: 10%; background: rgba(111,65,37,0.25); }
.hero__inner {
  padding: calc(var(--header-height) + 4.5rem) 0 4rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .82fr);
  gap: 2.2rem;
  align-items: end;
}
.hero__content {
  max-width: 720px;
}
.hero__content p { max-width: 46rem; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .95rem;
  margin-top: 1.8rem;
}
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.hero__facts article {
  padding: 1.2rem 1.1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero__facts strong { display: block; font-size: 1.02rem; margin-bottom: .28rem; }
.hero__facts span { color: var(--text-muted); font-size: .96rem; }
.hero__visual {
  display: grid;
  gap: 1rem;
  align-self: stretch;
}
.visual-card,
.hero-teaser,
.hero-note,
.info-card,
.price-card,
.gallery-card,
.split-card,
.contact-panel,
.feature-card,
.step-card,
.service-panel,
.value-card,
.route-card,
.teaser-card,
.hours-card,
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(25,18,15,0.94), rgba(14,10,9,0.94));
  box-shadow: var(--shadow);
}
.visual-card img,
.image-card img,
.gallery-card img,
.split-card__media img,
.contact-strip img { height: 100%; object-fit: cover; }
.hero-teaser,
.hero-note { padding: 1.35rem; }
.hero-teaser strong,
.hero-note strong { display: block; font-size: 1.18rem; margin-top: .75rem; }
.hero-teaser p,
.hero-note p { margin-top: .55rem; }
.hero-portrait {
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
}
.hero-portrait img { height: 100%; object-fit: cover; object-position: center top; }
.hero-note ul { padding-left: 1.1rem; margin: .8rem 0 0; color: var(--text-soft); }
.hero-note li + li { margin-top: .45rem; }
.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 780px;
}

.value-grid,
.services-grid,
.price-grid,
.gallery-grid,
.feature-grid,
.steps-grid,
.contact-grid,
.contact-actions,
.teaser-grid,
.twin-grid {
  display: grid;
  gap: 1.25rem;
}
.value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.value-card,
.feature-card,
.step-card,
.service-panel,
.price-card,
.contact-panel,
.route-card,
.teaser-card,
.hours-card { padding: 1.45rem; }
.value-card h3,
.feature-card h3,
.step-card h3,
.service-panel h3,
.price-card h3,
.teaser-card h3,
.contact-panel h3,
.route-card h3,
.hours-card h3 { margin-bottom: .7rem; }
.value-card p,
.feature-card p,
.step-card p,
.service-panel p,
.price-card p,
.contact-panel p,
.route-card p,
.hours-card p { color: var(--text-soft); }
.value-card .kicker,
.feature-card .kicker,
.step-card .kicker,
.service-panel .kicker,
.teaser-card .kicker,
.route-card .kicker,
.hours-card .kicker {
  display: inline-flex;
  margin-bottom: .85rem;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent-strong);
}
.services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-panel {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(24,17,15,0.98), rgba(12,9,8,0.94));
}
.service-panel__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(216,177,138,0.12);
  border: 1px solid rgba(216,177,138,0.18);
  color: var(--accent-strong);
  font-weight: 800;
}
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}
.inline-list span {
  padding: .55rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-soft);
  font-size: .92rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 1.3rem;
  align-items: stretch;
}
.split-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
}
.split-card__body { padding: 1.45rem; }
.split-card__media { min-height: 320px; }
.split-card__media--cover img { height: 100%; object-fit: cover; }
.dual-stack { display: grid; gap: 1.25rem; }
.dual-stack .image-card { min-height: 240px; }
.split-layout--compact {
  grid-template-columns: minmax(320px, .72fr) minmax(360px, .9fr);
  gap: 1.05rem;
  align-items: center;
}
.split-layout--compact .split-card {
  grid-template-rows: minmax(430px, 430px) auto;
}
.split-layout--compact .split-card__media {
  min-height: 430px;
}
.split-layout--compact .split-card__media img {
  object-position: center center;
}
.split-layout--compact .split-card__body {
  padding: 1.15rem 1.25rem 1.3rem;
}
.dual-stack--compact {
  gap: 1rem;
  align-self: center;
}
.dual-stack--compact .feature-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.35rem 1.4rem;
}
.dual-stack--compact .feature-card .kicker {
  justify-content: center;
}
.dual-stack--compact .feature-card h3,
.dual-stack--compact .feature-card p {
  max-width: 34rem;
}


.gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.gallery-card {
  cursor: pointer;
  min-height: 280px;
  isolation: isolate;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 64%;
  background: linear-gradient(180deg, rgba(7,5,4,0), rgba(7,5,4,0.52) 28%, rgba(7,5,4,0.9) 76%, rgba(7,5,4,0.97));
  z-index: 1;
}
.gallery-card__content {
  position: absolute;
  inset: auto 1.2rem 1.15rem;
  z-index: 2;
  max-width: min(92%, 34rem);
}
.gallery-card__content .badge {
  margin-bottom: 1.18rem;
}
.gallery-card__content h3 {
  margin-top: 0;
  margin-bottom: .28rem;
  color: #fff7ef;
  text-shadow: 0 10px 28px rgba(0,0,0,.52), 0 2px 8px rgba(0,0,0,.42);
}
.gallery-card__content p {
  color: rgba(255, 243, 231, 0.9);
  text-shadow: 0 8px 22px rgba(0,0,0,.48);
}

.gallery-card--large { grid-column: span 7; min-height: 580px; }
.gallery-card--tall { grid-column: span 5; min-height: 580px; }
.gallery-card--wide { grid-column: span 8; min-height: 360px; }
.gallery-card--small { grid-column: span 4; min-height: 360px; }

.salon-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  grid-template-areas:
    "main side"
    "main bottom";
  gap: 1.25rem;
  align-items: stretch;
}
.salon-gallery__main {
  grid-area: main;
  min-height: 760px;
}
.salon-gallery__side {
  grid-area: side;
  min-height: 360px;
}
.salon-gallery__bottom {
  grid-area: bottom;
  width: 100%;
  justify-self: stretch;
  min-height: 360px;
}

.results-gallery {
  display: grid;
  gap: 1.25rem;
}
.results-gallery__main {
  width: min(980px, 100%);
  min-height: 560px;
  justify-self: center;
}
.results-gallery__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.results-gallery__row .gallery-card {
  min-height: 360px;
}
.gallery-card__content--centered {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(82%, 38rem);
  max-width: calc(100% - 3rem);
  text-align: center;
}
.gallery-card__content--centered .badge {
  margin-inline: auto;
}
.gallery-card__content--centered h3,
.gallery-card__content--centered p {
  max-width: 34rem;
  margin-inline: auto;
}
.results-gallery__main::after {
  inset: 0;
  height: auto;
  background: linear-gradient(180deg, rgba(7,5,4,0.46), rgba(7,5,4,0.58) 34%, rgba(7,5,4,0.72) 70%, rgba(7,5,4,0.9) 100%);
}

.price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card {
  display: grid;
  gap: .95rem;
}
.price-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.price-card__price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--accent-strong);
  white-space: nowrap;
}
.price-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.feature-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: rgba(216,177,138,0.12);
  border: 1px solid rgba(216,177,138,0.16);
  color: var(--accent-strong);
  font-weight: 800;
}
.contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); align-items: start; }
.contact-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-panel__meta {
  display: grid;
  gap: .95rem;
  margin-top: 1.2rem;
}
.meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.meta-row:last-child { border-bottom: 0; padding-bottom: 0; }
.meta-row span { color: var(--text-muted); }
.meta-row strong { display: block; text-align: right; }
.route-card__links { display: grid; gap: .85rem; margin-top: 1.1rem; }
.route-card__links .btn { width: 100%; }
.contact-strip { min-height: 100%; border-radius: var(--radius-lg); overflow: hidden; }
.contact-strip img { height: 100%; object-fit: cover; }
.hours-card ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.hours-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hours-card li:last-child { border-bottom: 0; }

.cta-band { padding: 2rem 0 6rem; }
.cta-band__box {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(216,177,138,0.18), rgba(255,255,255,0.04));
  border: 1px solid rgba(216,177,138,0.22);
  box-shadow: var(--shadow);
}
.cta-band__actions { display: flex; gap: .85rem; flex-wrap: wrap; justify-content: flex-end; }

.page-hero { min-height: 74svh; }
.page-hero__inner { padding: calc(var(--header-height) + 4rem) 0 3rem; }
.page-hero__copy {
  max-width: 760px;
  display: grid;
  gap: 1.1rem;
}
.page-hero__quick {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}
.hero-highlight {
  margin-top: 1.2rem;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  width: fit-content;
  max-width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}
.hero-highlight strong { display: block; margin-bottom: .25rem; }

.site-footer {
  padding: 0 0 calc(2rem + env(safe-area-inset-bottom));
}
.footer-box {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  padding: 1.35rem 1.4rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-box strong { display: block; margin-bottom: .3rem; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-soft); }
.footer-links a:hover { color: var(--text); }

.mobile-quick-actions {
  position: fixed;
  left: max(.75rem, env(safe-area-inset-left));
  right: max(.75rem, env(safe-area-inset-right));
  bottom: max(.75rem, env(safe-area-inset-bottom));
  z-index: 48;
  display: none;
  gap: .8rem;
}
.mobile-quick-actions a {
  flex: 1 1 0;
  min-width: 0;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 44px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
  font-weight: 700;
}
.mobile-quick-actions__ghost { background: rgba(18,13,11,0.92); color: var(--text); }
.mobile-quick-actions__primary { background: linear-gradient(135deg, #efcfb2, #d4a57b); color: #180f0d; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.75,.2,1), transform .8s cubic-bezier(.2,.75,.2,1);
}
.reveal.fade-left { transform: translateX(30px); }
.reveal.fade-right { transform: translateX(-30px); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.4rem;
  background: rgba(5,4,3,0.9);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__dialog {
  width: min(1100px, 100%);
  display: grid;
  gap: .8rem;
}
.lightbox__dialog img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 28px;
  background: #0b0807;
  border: 1px solid var(--line-strong);
}
.lightbox__dialog p { text-align: center; }
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 2rem;
}

@media (max-width: 1180px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .hero,
  .page-hero { min-height: auto; }
  .hero__grid,
  .split-layout,
  .contact-grid,
  .cta-band__box,
  .footer-box { grid-template-columns: 1fr; }
  .hero__content { order: -1; }
  .hero__visual { order: 0; grid-template-columns: 1fr; }
  .hero-portrait { min-height: 420px; }
  .split-layout--compact .split-card,
  .split-layout--compact .split-card__media { min-height: 0; }
  .split-layout--compact .split-card { grid-template-rows: auto auto; }
  .dual-stack--compact .feature-card { min-height: 0; }
  .value-grid,
  .feature-grid,
  .price-grid,
  .contact-actions,
  .teaser-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card--large,
  .gallery-card--tall,
  .gallery-card--wide,
  .gallery-card--small { grid-column: span 6; min-height: 360px; }
  .salon-gallery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "side"
      "bottom";
  }
  .salon-gallery__main,
  .salon-gallery__side,
  .salon-gallery__bottom { min-height: 420px; }
  .results-gallery__main { min-height: 460px; }
}

@media (max-width: 820px) {
  :root { --header-height: 78px; }
  body { padding-bottom: calc(5.7rem + env(safe-area-inset-bottom)); }
  .site-header { padding-top: max(.55rem, env(safe-area-inset-top)); }
  .header-shell {
    min-height: 70px;
    padding: .55rem .72rem;
    border-radius: 22px;
  }
  .brand__mark { width: 48px; height: 48px; flex-basis: 48px; }
  .brand__text strong { font-size: 1.95rem; }
  .brand__text small { font-size: .66rem; letter-spacing: .28em; }
  .hide-mobile { display: none; }
  .nav-toggle { display: inline-flex; position: relative; }
  .main-nav {
    position: fixed;
    top: calc(var(--header-height) + .75rem + env(safe-area-inset-top));
    left: max(1rem, env(safe-area-inset-left));
    right: max(1rem, env(safe-area-inset-right));
    z-index: 55;
    display: grid;
    gap: .4rem;
    padding: .8rem;
    border-radius: 26px;
    background: rgba(12, 9, 8, 0.96);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 28px 72px rgba(0,0,0,0.38);
    opacity: 0;
    transform: translateY(-14px) scale(.98);
    pointer-events: none;
    max-height: calc(100svh - var(--header-height) - 2rem - env(safe-area-inset-top));
    overflow-y: auto;
    overscroll-behavior: contain;
    width: auto;
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .main-nav a {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    text-align: center;
    background: rgba(255,255,255,0.03);
  }
  .main-nav__footer {
    display: grid;
    gap: .9rem;
    padding: 1.3rem .15rem .1rem;
    margin-top: .25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav__footer span {
    text-align: center;
    color: var(--accent-strong);
    font-size: .82rem;
    letter-spacing: .22em;
    text-transform: uppercase;
  }
  .hero__inner,
  .page-hero__inner { padding: calc(var(--header-height) + 4rem) 0 2.5rem; }
  .hero__actions,
  .cta-band__actions { flex-direction: column; }
  .hero__facts,
  .value-grid,
  .feature-grid,
  .contact-actions,
  .teaser-grid { grid-template-columns: 1fr; }
  .services-grid,
  .price-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card--large,
  .gallery-card--tall,
  .gallery-card--wide,
  .gallery-card--small { grid-column: auto; min-height: 320px; }
  .salon-gallery__main,
  .salon-gallery__side,
  .salon-gallery__bottom,
  .results-gallery__main,
  .results-gallery__row .gallery-card {
    min-height: 320px;
    width: 100%;
  }
  .results-gallery__row { grid-template-columns: 1fr; }
  .page-hero__quick { flex-direction: column; align-items: stretch; }
  .cta-band__actions { justify-content: stretch; }
  .mobile-quick-actions { display: flex; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 1rem), var(--container)); }
  .section { padding: 5rem 0; }
  .hero__inner,
  .page-hero__inner { padding: calc(var(--header-height) + 3.4rem) 0 2.2rem; }
  .hero-portrait { min-height: 340px; border-radius: 26px; }
  .gallery-card__content {
    inset: auto 1rem 1rem;
    max-width: calc(100% - 2rem);
  }
  .gallery-card__content--centered {
    inset: 50% auto auto 50%;
    max-width: calc(100% - 2.2rem);
  }
  .gallery-card__content .badge { margin-bottom: 1.32rem; }
  .gallery-card__content h3 { font-size: 1.55rem; }
  .hero-teaser,
  .hero-note,
  .value-card,
  .feature-card,
  .step-card,
  .service-panel,
  .price-card,
  .contact-panel,
  .route-card,
  .teaser-card,
  .hours-card,
  .split-card__body { padding: 1.15rem; }
  .split-layout--compact .split-card__media,
  .split-layout--compact .split-card {
    min-height: 0;
  }
  .split-layout--compact .split-card__media {
    max-height: 320px;
  }
  .split-layout--compact .split-card__media img {
    height: 320px;
  }
  .dual-stack--compact .feature-card {
    text-align: center;
    align-items: center;
    padding: 1.2rem 1.1rem;
  }
  .dual-stack--compact .feature-card .kicker { justify-content: center; }
  .btn { width: 100%; }
  .hero__content p,
  .page-hero__copy p,
  .service-panel p,
  .value-card p,
  .feature-card p,
  .price-card p,
  .contact-panel p,
  .route-card p { font-size: .98rem; }
  .footer-links { gap: .75rem; }
}
