:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-soft: #ece7df;
  --ink: #141414;
  --muted: #6f6b65;
  --line: #ded8cf;
  --graphite: #242424;
  --gold: #b69a70;
  --focus: #8a6b3f;
  --eyf-black: #090909;
  --eyf-gold: #c4a46f;
  --eyf-cream: #f4efe6;
  --eyf-graphite: #1b1b1b;
  --shadow: 0 22px 60px rgba(20, 20, 20, .10);
  --shadow-soft: 0 18px 44px rgba(20, 20, 20, .08);
  --header-offset: 116px;
  --radius: 8px;
  --max: 1160px;
  --step--1: clamp(.88rem, .84rem + .18vw, .96rem);
  --step-0: clamp(.98rem, .94rem + .22vw, 1.08rem);
  --step-1: clamp(1.08rem, 1rem + .38vw, 1.24rem);
  --step-2: clamp(1.28rem, 1.14rem + .72vw, 1.62rem);
  --step-3: clamp(1.72rem, 1.38rem + 1.7vw, 2.55rem);
  --step-4: clamp(2.28rem, 1.74rem + 3vw, 4.35rem);
  --fs-body: var(--step-0);
  --fs-h3: var(--step-1);
  --fs-h2: clamp(1.62rem, 1.34rem + 1.35vw, 2.38rem);
  --fs-h1: clamp(2.02rem, 1.54rem + 2.3vw, 3.45rem);
  --fs-hero: clamp(2.24rem, 1.68rem + 2.7vw, 4.05rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { scroll-padding-top: calc(var(--header-offset) + 28px); }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.46), transparent 420px),
    var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(138, 107, 63, .45); outline-offset: 4px; }

.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.narrow { max-width: 860px; }
.section {
  padding: 78px 0;
  scroll-margin-top: calc(var(--header-offset) + 32px);
}
[id] { scroll-margin-top: calc(var(--header-offset) + 32px); }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 244, 239, .84);
  border-color: rgba(20, 20, 20, .08);
  box-shadow: 0 10px 34px rgba(20, 20, 20, .07);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 700;
  letter-spacing: .04em;
}
.brand strong { display: block; font-size: 1.1rem; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.brand-invert .brand-mark { border-color: rgba(255,255,255,.5); }
.brand-invert small { color: rgba(255,255,255,.62); }

.main-nav {
  position: fixed;
  inset: 76px 16px auto;
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}
.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.main-nav a {
  padding: 12px;
  color: var(--graphite);
  border-radius: 6px;
  font-size: .96rem;
}
.main-nav a:hover { background: rgba(236, 231, 223, .72); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: 50%;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 650;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(20,20,20,.12); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-ghost { border-color: rgba(20,20,20,.22); background: rgba(255,255,255,.32); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.35); }
.btn-small { min-height: 42px; padding: 10px 16px; font-size: .9rem; }

.hero {
  position: relative;
  padding-top: 46px;
  padding-bottom: 78px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 68%;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(20,20,20,.035) 12% calc(12% + 1px), transparent calc(12% + 1px) 88%, rgba(20,20,20,.035) 88% calc(88% + 1px), transparent calc(88% + 1px)),
    radial-gradient(circle at 78% 24%, rgba(182,154,112,.18), transparent 26%);
  pointer-events: none;
}
.hero-grid, .split-grid, .reviews-grid, .location-grid, .final-cta-inner {
  position: relative;
  display: grid;
  gap: 38px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--focus);
  font-size: .78rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .14em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: var(--fs-h1);
  line-height: 1.08;
  letter-spacing: 0;
}
.hero h1 {
  font-size: var(--fs-hero);
}
h2 {
  margin-bottom: 18px;
  max-width: 820px;
  font-size: var(--fs-h2);
  line-height: 1.14;
  letter-spacing: 0;
}
h3 { margin-bottom: 10px; font-size: var(--fs-h3); line-height: 1.3; }
p { max-width: 68ch; color: var(--muted); }
.hero-copy > p {
  max-width: 590px;
  font-size: var(--step-1);
  line-height: 1.68;
}
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-row span {
  padding: 10px 14px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(20,20,20,.08);
  border-radius: 999px;
  color: var(--muted);
  font-size: .92rem;
  box-shadow: 0 8px 24px rgba(20,20,20,.04);
}
.trust-row strong { color: var(--ink); }
.trustindex-hero-widget,
.trustindex-contact-widget,
.trustindex-footer-badge {
  min-height: 54px;
  margin-top: 18px;
  padding: 12px;
  overflow: hidden;
  border-radius: var(--radius);
}
.trustindex-hero-widget,
.trustindex-contact-widget {
  background: rgba(255,255,255,.62);
  border: 1px dashed rgba(20,20,20,.12);
  box-shadow: 0 12px 28px rgba(20,20,20,.045);
}
.trustindex-hero-widget:empty::before,
.trustindex-contact-widget:empty::before,
.trustindex-footer-badge:empty::before,
.trustindex-reviews-slider:empty::before {
  content: "Miejsce na widget Trustindex";
  display: block;
  color: rgba(20,20,20,.48);
  font-size: .88rem;
}

.visual-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(20,20,20,.10);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(236,231,223,.58)),
    linear-gradient(160deg, rgba(182,154,112,.12), transparent 42%),
    repeating-linear-gradient(90deg, rgba(20,20,20,.035) 0 1px, transparent 1px 72px);
  box-shadow: 0 30px 78px rgba(20, 20, 20, .12), inset 0 1px 0 rgba(255,255,255,.72);
}
.visual-frame.visual-photo-ready,
.visual-placeholder--photo-ready {
  isolation: isolate;
  background-size: cover;
  background-position: center;
}
.visual-frame.visual-photo-ready > * {
  z-index: 1;
}
.visual-frame.visual-photo-ready::before,
.visual-frame.visual-photo-ready::after {
  z-index: 0;
}
.visual-frame::before, .visual-frame::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(20,20,20,.10);
  pointer-events: none;
}
.visual-salon::before {
  inset: 34px 34px auto;
  height: 52%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.16)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(20,20,20,.045) 34px 35px),
    repeating-linear-gradient(90deg, transparent 0 72px, rgba(20,20,20,.035) 72px 73px);
  border-color: rgba(255,255,255,.48);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.58), 0 22px 52px rgba(20,20,20,.07);
}
.visual-salon::after {
  left: 32px;
  right: 32px;
  bottom: 34px;
  height: 86px;
  background:
    linear-gradient(90deg, rgba(31,31,31,.95), rgba(80,72,62,.9)),
    linear-gradient(135deg, transparent, rgba(255,255,255,.08));
  box-shadow: 0 18px 38px rgba(20,20,20,.16);
}
.visual-salon .visual-shelf {
  position: absolute;
  left: 50px;
  right: 50px;
  top: 104px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20,20,20,.18), transparent);
  box-shadow: 0 64px 0 rgba(20,20,20,.10), 0 128px 0 rgba(20,20,20,.08), 0 10px 20px rgba(20,20,20,.045);
}
.visual-salon .visual-lens {
  position: absolute;
  left: 38px;
  bottom: 44px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255,255,255,.68), rgba(255,255,255,.12) 42%, rgba(255,255,255,.02) 68%),
    linear-gradient(135deg, rgba(182,154,112,.18), transparent);
  box-shadow: 0 20px 46px rgba(20,20,20,.14), inset 18px -18px 38px rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.visual-salon .visual-light {
  position: absolute;
  right: 70px;
  top: 58px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.78), rgba(255,255,255,.08) 62%, transparent 70%);
  opacity: .78;
}
.visual-salon .visual-case {
  position: absolute;
  right: 58px;
  bottom: 62px;
  width: 132px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.30), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 14px 24px rgba(0,0,0,.16), -68px -6px 0 -13px rgba(255,255,255,.16);
}
.visual-glasses {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 208px;
  height: 70px;
  transform: translate(-50%, -50%);
  border-top: 3px solid rgba(20,20,20,.82);
  filter: drop-shadow(0 16px 22px rgba(20,20,20,.12));
}
.visual-glasses::before, .visual-glasses::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 56px;
  border: 3px solid rgba(20,20,20,.86);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.30), rgba(255,255,255,.05));
}
.visual-glasses::before { left: 0; }
.visual-glasses::after { right: 0; }
.visual-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 16px 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.60));
  border: 1px solid rgba(255,255,255,.52);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.visual-label strong, .visual-label span { display: block; }
.visual-label span { color: var(--muted); font-size: .86rem; }
.visual-shelf,
.visual-case,
.visual-lens,
.visual-light {
  pointer-events: none;
}
.visual-photo-ready {
  background-size: cover;
  background-position: center;
}
.visual-exam::before {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,.48), rgba(255,255,255,.08));
}
.visual-exam::after {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(182,154,112,.12);
  box-shadow: 0 0 0 46px rgba(255,255,255,.18), 0 0 0 92px rgba(20,20,20,.035);
}
.visual-frames {
  background:
    radial-gradient(circle at 72% 20%, rgba(182,154,112,.18), transparent 26%),
    linear-gradient(150deg, rgba(255,255,255,.95), rgba(236,231,223,.58)),
    repeating-linear-gradient(0deg, rgba(20,20,20,.035) 0 1px, transparent 1px 64px);
}
.visual-frames::before {
  left: 38px;
  right: 38px;
  top: 44px;
  height: 238px;
  background:
    radial-gradient(circle at 28% 38%, rgba(255,255,255,.66), transparent 17%),
    radial-gradient(circle at 72% 55%, rgba(255,255,255,.50), transparent 16%),
    linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,.54) 18% 82%, transparent 82%),
    linear-gradient(0deg, rgba(20,20,20,.11) 0 1px, transparent 1px 33.33%, rgba(20,20,20,.10) 33.33% calc(33.33% + 1px), transparent calc(33.33% + 1px) 66.66%, rgba(20,20,20,.10) 66.66% calc(66.66% + 1px), transparent calc(66.66% + 1px));
  border-color: rgba(255,255,255,.44);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 18px 42px rgba(20,20,20,.075);
}
.visual-frames::after {
  inset: auto 44px 36px;
  height: 52px;
  background:
    linear-gradient(90deg, rgba(20,20,20,.96), rgba(72,64,55,.95)),
    linear-gradient(180deg, rgba(255,255,255,.10), transparent);
  box-shadow: 0 16px 38px rgba(20,20,20,.18), 0 -84px 0 -25px rgba(20,20,20,.07);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-heading p {
  max-width: 620px;
  margin-bottom: 0;
}
.why {
  padding-top: 70px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.50));
}
.why-grid {
  display: grid;
  gap: 16px;
}
.why-card {
  position: relative;
  min-height: 176px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.58)),
    radial-gradient(circle at 88% 14%, rgba(182,154,112,.12), transparent 28%);
  border: 1px solid rgba(20,20,20,.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20,20,20,.045), inset 0 1px 0 rgba(255,255,255,.72);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.why-card h3,
.why-card p {
  position: relative;
  z-index: 1;
}
.why-card span {
  display: inline-block;
  margin-bottom: 32px;
  color: rgba(138,107,63,.86);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.why-card h3 {
  max-width: 210px;
}
.why-card p {
  max-width: 31ch;
}
.why-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(182,154,112,.18);
  border-radius: 50%;
}
.why-card::before {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 46px;
  height: 20px;
  border: 1px solid rgba(20,20,20,.13);
  border-radius: 50%;
  box-shadow: 22px 0 0 -15px rgba(20,20,20,.18);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(138,107,63,.26);
  box-shadow: 0 24px 52px rgba(20,20,20,.075), inset 0 1px 0 rgba(255,255,255,.78);
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.64)),
    radial-gradient(circle at 88% 14%, rgba(182,154,112,.16), transparent 30%);
}
.atmosphere {
  background:
    linear-gradient(180deg, rgba(236,231,223,.50), rgba(255,255,255,.38)),
    linear-gradient(90deg, transparent, rgba(20,20,20,.025), transparent);
}
.atmosphere-grid {
  display: grid;
  gap: 18px;
}
.atmosphere-card {
  position: relative;
  min-height: 100%;
  padding: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(20,20,20,.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(20,20,20,.055), inset 0 1px 0 rgba(255,255,255,.72);
}
.atmosphere-card > span {
  display: inline-block;
  margin: 18px 0 8px;
  color: var(--focus);
  font-size: var(--step--1);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.atmosphere-card h3,
.atmosphere-card p {
  padding-right: 8px;
}
.atmosphere-card-text {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 86% 16%, rgba(182,154,112,.18), transparent 28%),
    linear-gradient(145deg, rgba(36,36,36,.98), rgba(20,20,20,.94));
  color: #fff;
}
.atmosphere-card-text p,
.atmosphere-card-text .card-cta {
  color: rgba(255,255,255,.76);
}
.photo-placeholder {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(236,231,223,.56)),
    repeating-linear-gradient(90deg, rgba(20,20,20,.035) 0 1px, transparent 1px 58px);
  border: 1px solid rgba(20,20,20,.08);
}
.photo-placeholder::before,
.photo-placeholder::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.photo-cabinet::before {
  left: 12%;
  right: 12%;
  top: 18%;
  height: 48%;
  border: 1px solid rgba(255,255,255,.48);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.60), rgba(255,255,255,.08) 42%, transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,.30), rgba(255,255,255,.08));
  box-shadow: 0 24px 48px rgba(20,20,20,.08);
}
.photo-cabinet::after {
  left: 22%;
  right: 22%;
  bottom: 18%;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20,20,20,.88), rgba(88,78,66,.88));
  box-shadow: 0 18px 34px rgba(20,20,20,.15);
}
.photo-frames::before {
  left: 12%;
  right: 12%;
  top: 20%;
  height: 1px;
  background: rgba(20,20,20,.15);
  box-shadow: 0 52px 0 rgba(20,20,20,.12), 0 104px 0 rgba(20,20,20,.10);
}
.photo-frames::after {
  left: 50%;
  top: 50%;
  width: 178px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-top: 3px solid rgba(20,20,20,.82);
  filter: drop-shadow(0 16px 22px rgba(20,20,20,.12));
  box-shadow: -50px 10px 0 -22px rgba(20,20,20,.72), 50px 10px 0 -22px rgba(20,20,20,.72);
}
.visit-section {
  background:
    linear-gradient(180deg, rgba(247,244,239,.72), rgba(255,255,255,.44)),
    repeating-linear-gradient(90deg, rgba(20,20,20,.028) 0 1px, transparent 1px 86px);
}
.card-grid, .mini-grid {
  display: grid;
  gap: 18px;
}
.service-card, .mini-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.54)),
    linear-gradient(180deg, transparent, rgba(182,154,112,.04));
  border: 1px solid rgba(20,20,20,.09);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255,255,255,.75) inset;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.service-card::before {
  content: counter(service-card, decimal-leading-zero);
  counter-increment: service-card;
  position: absolute;
  top: 22px;
  right: 22px;
  min-width: 42px;
  height: 28px;
  display: grid;
  place-items: center;
  color: rgba(20,20,20,.50);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(20,20,20,.08);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.service-card::after, .mini-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(182,154,112,.18);
  border-radius: 50%;
  opacity: .7;
  pointer-events: none;
}
.card-grid { counter-reset: service-card; }
.mini-card::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 14px;
  border: 1px solid rgba(20,20,20,.16);
  border-radius: 50%;
}
.service-card:hover, .mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(138,107,63,.32);
  box-shadow: 0 24px 50px rgba(20,20,20,.095);
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.64)),
    linear-gradient(180deg, transparent, rgba(182,154,112,.07));
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--focus);
  font-size: .88rem;
  font-weight: 750;
}
.card-cta::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width .2s ease;
}
.service-card:hover .card-cta::after {
  width: 42px;
}
.card-icon {
  display: block;
  width: 40px;
  height: 20px;
  margin-bottom: 38px;
  border: 2px solid rgba(20,20,20,.78);
  border-radius: 50%;
  opacity: .82;
  box-shadow: 18px 0 0 -13px rgba(20,20,20,.78);
}
.split-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(247,244,239,.44));
}
.split-reverse { background: transparent; }
.mini-card { min-height: 160px; }
.mini-card h3, .service-card h3 { padding-right: 40px; }
.visit-steps {
  margin-top: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
}
.visit-steps-wide {
  margin-top: 0;
}
.visit-steps h3 { margin-bottom: 18px; }
.visit-steps ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: visit-step;
}
.visit-steps li {
  position: relative;
  min-height: 190px;
  padding: 64px 24px 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(255,255,255,.58)),
    radial-gradient(circle at 92% 10%, rgba(182,154,112,.12), transparent 26%);
  border: 1px solid rgba(20,20,20,.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20,20,20,.045), inset 0 1px 0 rgba(255,255,255,.72);
  counter-increment: visit-step;
}
.visit-steps li::before {
  content: counter(visit-step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 22px;
  min-width: 40px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(20,20,20,.10);
  border-radius: 999px;
  color: var(--focus);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: .08em;
}
.visit-steps strong, .visit-steps span { display: block; }
.visit-steps strong { margin-bottom: 10px; font-size: var(--fs-h3); line-height: 1.28; }
.visit-steps span { color: var(--muted); font-size: var(--step--1); line-height: 1.62; }
.exam-timeline {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}
.exam-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(20,20,20,.08);
  border-radius: var(--radius);
}
.exam-timeline span {
  color: var(--focus);
  font-size: var(--step--1);
  font-weight: 850;
  letter-spacing: .12em;
}
.exam-timeline strong {
  font-size: .96rem;
}

.carousel-shell {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
  padding-top: 4px;
}
.brand-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.brand-track::-webkit-scrollbar { display: none; }
.brand-track span {
  flex: 0 0 auto;
  min-width: 174px;
  min-height: 70px;
  display: grid;
  place-items: center;
  scroll-snap-align: start;
  padding: 20px 22px;
  text-align: center;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(20,20,20,.08);
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(20,20,20,.05);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.brand-track span:hover {
  transform: translateY(-2px);
  border-color: rgba(138,107,63,.24);
  background: rgba(255,255,255,.92);
}
.carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.carousel-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(138,107,63,.28);
  box-shadow: var(--shadow-soft);
}

.reviews {
  background:
    radial-gradient(circle at 82% 18%, rgba(182,154,112,.16), transparent 28%),
    linear-gradient(135deg, #242424, #171717);
  color: #fff;
}
.reviews p, .reviews .eyebrow { color: rgba(255,255,255,.7); }
.review-cards { display: grid; gap: 14px; }
.review-cards article {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.055)),
    linear-gradient(90deg, rgba(182,154,112,.12), transparent);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
}
.review-cards article::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}
.trustindex-slot {
  min-height: 116px;
  border-style: solid !important;
}
.trustindex-reviews-slider {
  grid-column: 1 / -1;
  min-height: 116px;
  margin-top: 4px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.045)),
    linear-gradient(90deg, rgba(182,154,112,.10), transparent);
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0,0,0,.14);
}
.trustindex-reviews-slider:empty::before {
  color: rgba(255,255,255,.60);
}
.review-cards strong { display: block; font-size: 2.4rem; line-height: 1; }
.review-cards span { color: rgba(255,255,255,.68); }
.reviews .btn-dark {
  background: #fff;
  color: var(--ink);
}
.reviews .btn-dark:hover {
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
}

.accordion {
  border-top: 1px solid var(--line);
}
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: var(--step-0);
  font-weight: 720;
  border-radius: 6px;
  transition: color .2s ease, padding-left .2s ease, background .2s ease;
}
.accordion button:hover {
  color: var(--focus);
  padding-left: 8px;
  background: rgba(255,255,255,.42);
}
.accordion button:focus-visible {
  padding-left: 8px;
  background: rgba(255,255,255,.58);
}
.accordion button span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20,20,20,.14);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform .22s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.accordion button:hover span {
  border-color: rgba(138,107,63,.26);
  background: rgba(255,255,255,.56);
}
.accordion button[aria-expanded="true"] span {
  color: var(--focus);
  border-color: rgba(138,107,63,.30);
  background: rgba(255,255,255,.66);
  transform: rotate(45deg);
}
.accordion-item div {
  display: grid;
  grid-template-rows: 0fr;
  opacity: .55;
  transition: grid-template-rows .26s ease, opacity .26s ease, padding-bottom .26s ease;
}
.accordion-item div > p { overflow: hidden; margin-bottom: 0; }
.accordion-item.is-open div {
  grid-template-rows: 1fr;
  padding-bottom: 18px;
  opacity: 1;
}

.map-placeholder {
  min-height: 330px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(182,154,112,.18), transparent 24%),
    linear-gradient(90deg, transparent 49%, rgba(20,20,20,.08) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(20,20,20,.08) 50%, transparent 51%),
    #fff;
  background-size: 70px 70px;
  box-shadow: var(--shadow);
}
.map-placeholder span {
  padding: 14px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 750;
}
.contact-layout {
  display: grid;
  gap: 22px;
}
.contact-stack {
  display: grid;
  gap: 18px;
}
.contact-card .eyebrow {
  margin-bottom: 10px;
}
.contact-card h2 {
  max-width: 560px;
}
.contact-card a:not(.btn) {
  color: var(--ink);
  font-weight: 700;
}
.contact-map-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}
.contact-map-panel .map-placeholder {
  min-height: 420px;
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.final-cta {
  padding: 64px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(182,154,112,.18), transparent 30%),
    var(--ink);
  color: #fff;
}
.final-cta p, .final-cta .eyebrow { color: rgba(255,255,255,.72); }
.site-footer {
  padding: 64px 0 92px;
  background: #111;
  color: #fff;
}
.footer-grid {
  display: grid;
  gap: 32px;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,.68); }
.site-footer a { display: block; margin: 8px 0; }
.site-footer h2 { font-size: 1rem; margin-bottom: 14px; }
.trustindex-footer-badge {
  max-width: 260px;
  background: rgba(255,255,255,.07);
  border: 1px dashed rgba(255,255,255,.16);
}
.trustindex-footer-badge:empty::before {
  color: rgba(255,255,255,.58);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.52);
  font-size: .9rem;
}
.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 45;
  display: grid;
  place-items: center;
  min-height: 50px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(20,20,20,.2);
  font-weight: 750;
}
.trustindex-floating-certificate {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 44;
  max-width: 260px;
  padding: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(20,20,20,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.placeholder-main {
  min-height: 58vh;
  display: grid;
  align-items: center;
  padding: 80px 0;
}
.placeholder-main p { max-width: 720px; }

.page-hero {
  padding: 68px 0 56px;
  scroll-margin-top: calc(var(--header-offset) + 32px);
  background:
    radial-gradient(circle at 84% 18%, rgba(182,154,112,.14), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.50), rgba(247,244,239,.45));
}
.page-hero-grid {
  display: grid;
  gap: 30px;
  align-items: end;
}
.page-hero-copy p {
  max-width: 680px;
  font-size: var(--step-1);
  line-height: 1.72;
}
.page-hero h1 {
  max-width: 700px;
  font-size: var(--fs-h1);
  line-height: 1.1;
}
.page-hero-panel {
  position: relative;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.62)),
    radial-gradient(circle at 92% 10%, rgba(182,154,112,.13), transparent 28%);
  border: 1px solid rgba(20,20,20,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.page-hero-panel::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(182,154,112,.18);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-panel h2 {
  margin-bottom: 16px;
  font-size: var(--fs-h3);
}
.page-hero-panel ul,
.content-card ul,
.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-hero-panel li,
.content-card li {
  position: relative;
  padding: 10px 0 10px 24px;
  color: var(--muted);
  border-top: 1px solid rgba(20,20,20,.07);
}
.page-hero-panel li:first-child,
.content-card li:first-child {
  border-top: 0;
}
.page-hero-panel li::before,
.content-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--focus);
  border-radius: 50%;
}
.page-layout {
  display: grid;
  gap: 24px;
}
.content-grid {
  display: grid;
  gap: 18px;
}
.content-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.58)),
    linear-gradient(180deg, transparent, rgba(182,154,112,.035));
  border: 1px solid rgba(20,20,20,.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20,20,20,.045), inset 0 1px 0 rgba(255,255,255,.72);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.content-card:hover {
  transform: translateY(-3px);
  border-color: rgba(138,107,63,.22);
  box-shadow: 0 22px 48px rgba(20,20,20,.07), inset 0 1px 0 rgba(255,255,255,.78);
}
.content-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 124px;
  height: 124px;
  border: 1px solid rgba(182,154,112,.15);
  border-radius: 50%;
  pointer-events: none;
}
.content-card h2,
.content-card h3 {
  margin-bottom: 12px;
}
.content-card h2 {
  font-size: var(--step-2);
  line-height: 1.2;
}
.content-card p:last-child {
  margin-bottom: 0;
}
.content-card .btn {
  margin-top: 10px;
}
.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.related-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 12px 15px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(20,20,20,.09);
  border-radius: var(--radius);
  color: var(--graphite);
  font-weight: 650;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.related-links a::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.related-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(138,107,63,.28);
  box-shadow: var(--shadow-soft);
}
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(20,20,20,.08);
}
.price-list li::before { display: none; }
.price-list li:first-child { border-top: 0; }
.price-list strong { color: var(--ink); }
.price-list span { color: var(--muted); text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .section { padding: 92px 0; }
  .page-hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  }
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-card.full {
    grid-column: 1 / -1;
  }
  .hero-grid, .split-grid, .reviews-grid, .location-grid, .final-cta-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 46px;
  }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .atmosphere-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .atmosphere-card-text { min-height: 100%; }
  .mini-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .visit-steps-wide ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .visit-steps-wide li {
    padding-top: 64px;
    padding-left: 24px;
  }
  .visit-steps-wide li::before {
    top: 22px;
  }
  .exam-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .exam-timeline article {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 122px;
  }
}

@media (min-width: 980px) {
  .menu-toggle { display: none; }
  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .main-nav a { padding: 10px 9px; font-size: .9rem; }
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .why-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
  }
  .why-card {
    grid-column: span 2;
    min-height: 214px;
  }
  .why-card:nth-child(4) { grid-column: 2 / span 2; }
  .why-card:nth-child(5) { grid-column: 4 / span 2; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .hero {
    min-height: calc(92vh - 76px);
    display: grid;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 88px;
  }
  .hero-copy { align-self: center; }
  .hero-visual { align-self: stretch; display: grid; align-items: center; }
  .hero .visual-frame { min-height: 520px; }
  .split-grid { gap: 58px; }
  .reviews-grid { gap: 60px; }
  .contact-layout {
    grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
    align-items: start;
  }
  .contact-layout > .content-card.full {
    grid-column: 1 / -1;
  }
  .mobile-sticky-cta { display: none; }
  .site-footer { padding-bottom: 52px; }
}

@media (max-width: 979px) {
  body { padding-bottom: 92px; }
  .main-nav {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .site-footer { padding-bottom: 118px; }
  .trustindex-floating-certificate { display: none; }
}

@media (max-width: 420px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .header-actions .btn { display: none; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .section { padding: 58px 0; }
  .why { padding-top: 54px; }
  .hero {
    padding-top: 24px;
    padding-bottom: 48px;
  }
  h1 { font-size: 2.15rem; line-height: 1.07; }
  h2 { font-size: 1.72rem; line-height: 1.14; }
  .hero-copy > p { font-size: 1.02rem; line-height: 1.62; }
  .trust-row { gap: 8px; margin-top: 22px; }
  .trust-row span { padding: 8px 11px; font-size: .84rem; }
  .trustindex-hero-widget,
  .trustindex-contact-widget,
  .trustindex-footer-badge {
    min-height: 46px;
    padding: 10px;
  }
  .visual-frame { min-height: 280px; }
  .visual-glasses {
    width: 164px;
    height: 56px;
  }
  .visual-glasses::before,
  .visual-glasses::after {
    width: 60px;
    height: 44px;
  }
  .visual-label {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .visual-salon .visual-shelf {
    left: 34px;
    right: 34px;
    top: 86px;
  }
  .visual-salon .visual-lens {
    width: 86px;
    height: 86px;
    left: 26px;
    bottom: 54px;
  }
  .visual-salon .visual-light {
    right: 42px;
    top: 44px;
    width: 58px;
    height: 58px;
  }
  .visual-salon .visual-case {
    right: 34px;
    bottom: 66px;
    width: 100px;
    height: 28px;
  }
  .carousel-shell { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
  .service-card, .mini-card { min-height: auto; padding: 22px; }
  .service-card::before {
    top: 18px;
    right: 18px;
  }
  .why-card { min-height: auto; }
  .photo-placeholder { min-height: 210px; }
  .atmosphere-card,
  .atmosphere-card-text { padding: 18px; }
  .visit-steps li {
    min-height: auto;
    padding: 58px 20px 20px;
  }
  .visit-steps li::before {
    left: 20px;
    top: 18px;
  }
  .page-hero {
    padding: 50px 0 42px;
  }
  .page-hero-panel,
  .content-card {
    padding: 22px;
  }
  .related-links {
    grid-template-columns: 1fr;
  }
  .contact-map-panel .map-placeholder {
    min-height: 300px;
  }
  .mobile-sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 10px;
  }
}

/* Dark premium visual direction */
body {
  background:
    radial-gradient(circle at 78% 0, rgba(196,164,111,.18), transparent 28rem),
    linear-gradient(180deg, var(--eyf-black) 0 520px, var(--eyf-cream) 520px 100%);
}

.site-header,
.site-header.is-scrolled {
  background: rgba(9,9,9,.88);
  border-color: rgba(196,164,111,.22);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}
.brand,
.main-nav a,
.site-header .btn {
  color: #fff;
}
.brand-mark {
  border-color: var(--eyf-gold);
  color: var(--eyf-gold);
  box-shadow: inset 0 0 0 1px rgba(196,164,111,.22);
}
.brand small { color: rgba(255,255,255,.62); }
.main-nav a:hover {
  color: var(--eyf-gold);
  background: rgba(255,255,255,.08);
}
.menu-toggle {
  border-color: rgba(196,164,111,.34);
  background: rgba(255,255,255,.08);
}
.menu-toggle span:not(.sr-only) { background: #fff; }
.btn-dark {
  background: var(--eyf-gold);
  color: #111;
  border-color: rgba(196,164,111,.72);
}
.btn-dark:hover {
  box-shadow: 0 18px 38px rgba(196,164,111,.24);
}
.btn-ghost {
  border-color: rgba(196,164,111,.42);
  background: rgba(255,255,255,.06);
  color: inherit;
}

.hero {
  min-height: calc(96vh - 76px);
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9,9,9,.92), rgba(9,9,9,.64) 48%, rgba(9,9,9,.30)),
    linear-gradient(180deg, rgba(9,9,9,.20), rgba(9,9,9,.94)),
    url("/assets/img/hero-salon.webp"),
    url("/assets/img/salon-interior.webp"),
    url("/assets/img/hero-salon.jpg");
  background-size: cover;
  background-position: center;
}
.hero::before {
  height: 100%;
  background:
    radial-gradient(circle at 78% 28%, rgba(196,164,111,.22), transparent 24%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 96px);
}
.hero h1,
.hero p,
.hero .eyebrow {
  color: #fff;
}
.hero .eyebrow,
.reviews .eyebrow,
.exam-dark .eyebrow,
.location .eyebrow {
  color: var(--eyf-gold);
}
.hero-copy > p {
  color: rgba(255,255,255,.76);
}
.trust-row span {
  background: rgba(255,255,255,.10);
  border-color: rgba(196,164,111,.28);
  color: rgba(255,255,255,.76);
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
}
.trust-row strong { color: #fff; }
.trustindex-hero-widget {
  max-width: 420px;
  background: rgba(255,255,255,.08);
  border-color: rgba(196,164,111,.24);
}
.trustindex-hero-widget:empty::before {
  color: rgba(255,255,255,.58);
}
.hero .visual-frame {
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.045)),
    radial-gradient(circle at 35% 28%, rgba(196,164,111,.24), transparent 28%),
    rgba(20,20,20,.56);
  border-color: rgba(196,164,111,.22);
  box-shadow: 0 34px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.18);
}

.featured-services {
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(196,164,111,.14), transparent 28%),
    linear-gradient(180deg, #111, #090909);
}
.featured-services p,
.featured-services .section-heading p {
  color: rgba(255,255,255,.68);
}
.photo-service-grid {
  display: grid;
  gap: 18px;
}
.photo-service-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(196,164,111,.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(9,9,9,.08), rgba(9,9,9,.86)),
    radial-gradient(circle at 72% 22%, rgba(196,164,111,.24), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 72px),
    #1a1a1a;
  box-shadow: 0 26px 70px rgba(0,0,0,.30);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, filter .28s ease;
}
.photo-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .26;
  transform: scale(1.02);
  transition: transform .35s ease, opacity .35s ease;
}
.photo-service-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--eyf-gold), transparent);
}
.photo-service-card--exam::before { background-image: url("/assets/img/badanie-wzroku.webp"); }
.photo-service-card--contacts::before { background-image: url("/assets/img/soczewki.webp"); }
.photo-service-card--diagnostics::before { background-image: url("/assets/img/tonometria.webp"); }
.photo-service-card span,
.photo-service-card h3,
.photo-service-card p {
  position: relative;
  z-index: 1;
}
.photo-service-card span {
  color: var(--eyf-gold);
  font-size: var(--step--1);
  font-weight: 850;
  letter-spacing: .16em;
}
.photo-service-card h3 {
  max-width: 300px;
  margin: 12px 0 10px;
  font-size: var(--step-2);
  color: #fff;
}
.photo-service-card p {
  max-width: 34ch;
  color: rgba(255,255,255,.70);
}
.photo-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,164,111,.58);
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
}
.photo-service-card:hover::before {
  opacity: .42;
  transform: scale(1.08);
}

.why,
.atmosphere,
.visit-section,
.services,
.equipment,
.brands {
  background: var(--eyf-cream);
}
.why-card,
.service-card,
.mini-card,
.content-card,
.page-hero-panel,
.atmosphere-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(244,239,230,.72)),
    radial-gradient(circle at 92% 10%, rgba(196,164,111,.13), transparent 28%);
}

.exam-dark,
.reviews,
.location,
.final-cta,
.page-hero {
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(196,164,111,.18), transparent 30%),
    linear-gradient(135deg, var(--eyf-graphite), var(--eyf-black));
}
.exam-dark p,
.location p,
.page-hero p,
.page-hero-panel li {
  color: rgba(255,255,255,.70);
}
.exam-dark .visual-exam {
  background:
    linear-gradient(180deg, rgba(9,9,9,.22), rgba(9,9,9,.78)),
    url("/assets/img/gabinet.webp"),
    radial-gradient(circle at 45% 38%, rgba(196,164,111,.28), transparent 28%),
    #151515;
  background-size: cover;
  background-position: center;
  border-color: rgba(196,164,111,.24);
  box-shadow: 0 32px 86px rgba(0,0,0,.36);
}
.exam-dark .exam-timeline article {
  background: rgba(255,255,255,.08);
  border-color: rgba(196,164,111,.20);
}
.exam-dark .exam-timeline strong { color: #fff; }
.exam-dark .btn-dark { color: #111; }

.visual-frames,
.photo-frames {
  background:
    linear-gradient(180deg, rgba(9,9,9,.10), rgba(9,9,9,.60)),
    url("/assets/img/oprawy.webp"),
    radial-gradient(circle at 72% 20%, rgba(196,164,111,.20), transparent 26%),
    linear-gradient(150deg, rgba(255,255,255,.95), rgba(236,231,223,.58));
  background-size: cover;
  background-position: center;
}
.photo-cabinet {
  background:
    linear-gradient(180deg, rgba(9,9,9,.10), rgba(9,9,9,.54)),
    url("/assets/img/gabinet.webp"),
    radial-gradient(circle at 50% 34%, rgba(196,164,111,.20), transparent 28%),
    #ddd5c8;
  background-size: cover;
  background-position: center;
}

.brand-track span {
  min-height: 86px;
  background: #111;
  color: #fff;
  border-color: rgba(196,164,111,.24);
  font-size: 1.08rem;
  letter-spacing: .04em;
}
.brand-track span:hover {
  background: #181818;
  color: var(--eyf-gold);
}

.review-cards article,
.trustindex-reviews-slider {
  border-color: rgba(196,164,111,.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    linear-gradient(90deg, rgba(196,164,111,.13), transparent);
}

.location .map-placeholder,
.contact-map-panel .map-placeholder {
  background:
    linear-gradient(180deg, rgba(9,9,9,.34), rgba(9,9,9,.74)),
    url("/assets/img/map-bg.webp"),
    radial-gradient(circle at 50% 50%, rgba(196,164,111,.18), transparent 24%),
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.10) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255,255,255,.10) 50%, transparent 51%),
    #111;
  background-size: cover, cover, auto, 70px 70px, 70px 70px, auto;
  background-position: center;
  border-color: rgba(196,164,111,.24);
}
.location .map-placeholder span,
.contact-map-panel .map-placeholder span {
  background: var(--eyf-gold);
  color: #111;
}

.footer-bookero {
  display: inline-flex !important;
  width: fit-content;
  margin-top: 12px !important;
  padding: 10px 14px;
  color: #111 !important;
  background: var(--eyf-gold);
  border-radius: 999px;
  font-weight: 750;
}
.footer-social {
  color: rgba(255,255,255,.58);
  letter-spacing: .04em;
}
.service-landing-visual {
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(196,164,111,.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(9,9,9,.18), rgba(9,9,9,.82)),
    url("/assets/img/salon-interior.webp"),
    radial-gradient(circle at 70% 20%, rgba(196,164,111,.22), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 78px),
    #151515;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 86px rgba(0,0,0,.22);
}
.service-process {
  display: grid;
  gap: 14px;
}
.service-process div {
  position: relative;
  min-height: 190px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(244,239,230,.70)),
    radial-gradient(circle at 92% 10%, rgba(196,164,111,.14), transparent 28%);
  border: 1px solid rgba(20,20,20,.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(20,20,20,.055);
}
.service-process span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--focus);
  font-size: var(--step--1);
  font-weight: 850;
  letter-spacing: .16em;
}
.service-process h2 {
  font-size: var(--step-2);
  line-height: 1.18;
}
.service-process p {
  margin-bottom: 0;
}
.site-footer {
  background:
    radial-gradient(circle at 12% 0, rgba(196,164,111,.14), transparent 26%),
    #070707;
}
.mobile-sticky-cta {
  background: var(--eyf-gold);
  color: #111;
}

@media (min-width: 720px) {
  .photo-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 979px) {
  .main-nav {
    background: rgba(9,9,9,.96);
    border-color: rgba(196,164,111,.24);
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: auto;
    padding-top: 58px;
  }
  .photo-service-card {
    min-height: 260px;
    padding: 22px;
  }
  .service-landing-visual {
    min-height: 260px;
  }
  .service-process div {
    min-height: auto;
    padding: 22px;
  }
}

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