/* Optika LOKO — warm editorial redesign, 2026-07-15 */
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-VariableFont_wght.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --bg: #f6f3ed;
  --bg-soft: #ece9e1;
  --surface: #ffffff;
  --surface-warm: #efe8dc;
  --ink: #1d2b27;
  --text: #1d2b27;
  --muted: #4f5f59;
  --line: rgba(29, 43, 39, 0.13);
  --brand: #1f5a4d;
  --brand-deep: #143d35;
  --brand-soft: #dbe8e1;
  --accent: #c8754f;
  --accent-soft: #f4dfd3;
  --max-blue: #5b63e8;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shadow-sm: 0 12px 32px rgba(30, 49, 43, 0.08);
  --shadow: 0 28px 70px rgba(30, 49, 43, 0.14);
  --container: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 8%, rgba(200, 117, 79, 0.09), transparent 28rem),
    radial-gradient(circle at 92% 24%, rgba(31, 90, 77, 0.09), transparent 32rem);
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(200, 117, 79, 0.35);
  outline-offset: 3px;
}

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

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.028em; }
h1 { margin-bottom: 22px; font-size: clamp(44px, 4.6vw, 70px); line-height: 1.02; font-weight: 650; }
h1 em { color: var(--accent); font-style: normal; }
h2 { margin-bottom: 18px; font-size: clamp(34px, 4vw, 58px); line-height: 1.08; font-weight: 650; }
h3 { line-height: 1.3; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 2px; border-radius: 99px; background: currentColor; }

/* Header */
.header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(29, 43, 39, 0.09);
  background: rgba(246, 243, 237, 0.88);
  backdrop-filter: blur(18px);
}
.header__inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand__logo--icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.brand__logo--icon img { width: 36px; height: 36px; object-fit: contain; display: block; }
.brand__name { font-size: 17px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.brand__tag { margin-top: 4px; color: #52615c; font-size: 12px; font-weight: 600; line-height: 1.3; }
.header__nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 30px); }
.header__nav a { position: relative; color: #34443e; font-size: 14px; font-weight: 700; white-space: nowrap; }
.header__nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--brand); transition: right 0.25s ease; }
.header__nav a:hover::after { right: 0; }
.header__actions { flex: 0 0 auto; }

/* Buttons */
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: none;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--lg { min-height: 58px; padding: 16px 25px; font-size: 15px; }
.js-open-modal { max-width: 100%; white-space: normal; line-height: 1.3; }
.btn--primary, .btn--secondary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.btn--primary:hover, .btn--secondary:hover { border-color: var(--brand-deep); background: var(--brand-deep); }
.btn--ghost { border-color: rgba(31, 90, 77, 0.28); background: transparent; color: var(--brand-deep); }
.btn--ghost:hover { background: rgba(31, 90, 77, 0.06); }
.btn--max {
  border-color: rgba(91, 99, 232, 0.2);
  background: #eef0ff;
  color: #4149b4;
}
.btn--max::before {
  content: "M";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #6b74ff, #4bc8d5);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.btn--max:hover { border-color: rgba(91, 99, 232, 0.42); background: #e5e8ff; }
.btn:disabled, .btn[disabled] { opacity: 0.45 !important; transform: none !important; box-shadow: none !important; cursor: not-allowed !important; pointer-events: none !important; }

/* Hero */
.hero { position: relative; padding: clamp(62px, 7vw, 104px) 0 84px; }
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -7vw;
  top: 7%;
  width: min(44vw, 640px);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 90, 77, 0.11);
  border-radius: 50%;
}
.hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr); gap: clamp(48px, 7vw, 100px); align-items: center; }
.hero__copy { max-width: 680px; }
.hero__offer {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px 15px;
  border: 1px solid rgba(31, 90, 77, 0.2);
  border-radius: 999px;
  background: rgba(220, 238, 231, 0.78);
  color: var(--brand-deep);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.hero__offer::before { content: ""; width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--accent); }
.lead { max-width: 58ch; margin-bottom: 28px; color: #465650; font-size: clamp(19px, 1.6vw, 22px); font-weight: 520; line-height: 1.55; }
.symptoms { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0 0 28px; }
.symptom { min-height: 78px; display: grid; grid-template-columns: 34px 1fr; align-items: start; gap: 12px; padding: 14px; border: 1px solid rgba(29, 43, 39, 0.1); border-radius: 18px; background: rgba(255, 255, 255, 0.62); color: #33433e; font-size: 14px; font-weight: 560; line-height: 1.5; }
.symptom__num { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-soft); color: var(--brand-deep); font-size: 12px; font-weight: 800; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 14px; }
.micro { color: #4c5c56; font-size: 14px; font-weight: 600; line-height: 1.55; }
.micro--promise { display: inline-flex; align-items: center; gap: 8px; }
.micro--promise::before { content: "✓"; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-soft); color: var(--brand); font-weight: 900; }
.quick-contacts { margin-top: 30px; }
.quick-contacts__item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4px 24px; max-width: 520px; padding-top: 18px; border-top: 1px solid var(--line); }
.qc__title { color: var(--ink); font-size: 14px; font-weight: 750; }
.qc__meta { color: var(--muted); font-size: 13px; font-weight: 560; }
.qc__link { grid-column: 2; grid-row: 1 / span 2; color: var(--brand); font-weight: 800; white-space: nowrap; }

.media-card { position: relative; margin: 0; }
.media-card__visual { position: relative; min-height: 560px; overflow: hidden; border-radius: 220px 220px 32px 32px; background: var(--surface-warm); box-shadow: var(--shadow); }
.media-card__img { width: 100%; height: 100%; min-height: 560px; display: block; object-fit: cover; object-position: center 22%; }
.media-card__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20, 61, 53, 0.18)); pointer-events: none; }
.media-card__badge { position: absolute; z-index: 2; right: 24px; bottom: 24px; width: 128px; height: 128px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.48); border-radius: 50%; background: rgba(255, 255, 255, 0.88); color: var(--brand-deep); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); text-align: center; }
.media-card__badge strong { font-size: 30px; line-height: 1; }
.media-card__badge span { width: 80px; margin-top: 6px; font-size: 10px; font-weight: 750; line-height: 1.25; text-transform: uppercase; }
.media-card__note { position: relative; z-index: 3; width: calc(100% - 68px); margin: -34px auto 0; padding: 22px 24px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-sm); }
.media-card__noteTitle { margin-bottom: 8px; font-size: 15px; font-weight: 800; }
.media-card__note ul { display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; font-weight: 560; }
.media-card__note li::before { content: "•"; margin-right: 8px; color: var(--accent); }

/* Shared sections */
.section { position: relative; padding: clamp(82px, 10vw, 142px) 0; }
.section__head { max-width: 850px; margin-bottom: 48px; }
.section__head p { max-width: 66ch; margin-bottom: 0; color: #485852; font-size: 18px; font-weight: 520; line-height: 1.65; }
.section__location {
  max-width: 680px !important;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  border-radius: 0 16px 16px 0;
  background: var(--accent-soft);
  color: #3f4e49 !important;
  font-size: 17px !important;
}
.section__location strong { color: var(--brand-deep); font-size: 20px; font-weight: 800; }
.section--about { background: #f0ede6; }
.section--alt { background: #e7ebe6; }
.section--glasses { background: var(--surface); }
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(34px, 6vw, 84px); align-items: center; }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.72); padding: 30px; box-shadow: var(--shadow-sm); }
.card h3 { margin-bottom: 12px; font-size: 21px; }
.card p { margin-bottom: 0; color: #4b5a55; line-height: 1.65; }

/* About */
.grid2--about { align-items: stretch; }
.about__copy { display: flex; flex-direction: column; }
.about__copy > p { max-width: 58ch; margin-bottom: 28px; color: #485852; font-size: 18px; font-weight: 520; line-height: 1.65; }
.imgcard { flex: 1; min-height: 360px; overflow: hidden; border-radius: 32px; background: #ddd8cf; }
.imgcard img { width: 100%; height: 100%; min-height: 360px; display: block; object-fit: cover; object-position: center 45%; }
.card--checklist { align-self: center; padding: clamp(28px, 4vw, 50px); background: var(--surface); }
.card--checklist h3 { max-width: 18ch; margin-bottom: 28px; font-size: clamp(24px, 2.5vw, 36px); }
.checklist { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding-left: 34px; color: #4b5954; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-soft); color: var(--brand); font-size: 11px; font-weight: 900; }
.cta-inline, .cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-top: 28px; }

/* Process */
.a3 { background: var(--brand-deep); color: #fff; }
.a3 .eyebrow { color: #bcd8cf; }
.a3 .section__head p, .a3-card p, .a3 .micro { color: rgba(255, 255, 255, 0.8); }
.a3-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr); gap: clamp(34px, 5vw, 70px); align-items: stretch; }
.a3-cards { display: grid; gap: 10px; }
.a3-card { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
.a3-card:first-child { padding-top: 0; }
.a3-card h3 { margin: 0 0 7px; font-size: 20px; font-weight: 650; }
.a3-card p { margin: 0; font-size: 15px; line-height: 1.6; }
.a3-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; color: #fff; font-size: 13px; font-weight: 800; }
.a3-photo { min-height: 520px; overflow: hidden; border-radius: 190px 190px 28px 28px; }
.a3-photo img { width: 100%; height: 100%; min-height: 520px; display: block; object-fit: cover; object-position: center; }
.a3 .btn--secondary { border-color: #fff; background: #fff; color: var(--brand-deep); }

/* Glasses */
.grid2--glasses { grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr); align-items: center; }
.glasses__copy > p { max-width: 57ch; color: #485852; font-size: 18px; font-weight: 520; line-height: 1.65; }
.mini-grid { display: grid; gap: 0; margin: 28px 0; border-top: 1px solid var(--line); }
.mini { padding: 18px 0; border-bottom: 1px solid var(--line); }
.mini h3 { margin: 0 0 6px; font-size: 16px; }
.mini p { margin: 0; color: #4b5a55; font-size: 15px; line-height: 1.6; }
.editorial-gallery { position: relative; min-height: 650px; }
.editorial-gallery img { position: absolute; display: block; object-fit: cover; box-shadow: var(--shadow); }
.editorial-gallery__main { inset: 0 12% 10% 8%; width: 80%; height: 90%; border-radius: 220px 220px 26px 26px; object-position: 65% center; }
.editorial-gallery__small { width: 38%; height: 29%; border: 8px solid var(--surface); border-radius: 24px; }
.editorial-gallery__small--consult { left: 0; top: 11%; object-position: center; }
.editorial-gallery__small--frames { right: 0; bottom: 0; object-position: 25% center; }

/* Trust */
#trust { background: #e4d8c7; }
#trust .section__head { max-width: 780px; }
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.cards .card { min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; background: rgba(255, 255, 255, 0.52); box-shadow: none; }
.cards .card::before { content: ""; width: 42px; height: 42px; margin-bottom: 44px; border: 1px solid rgba(31, 90, 77, 0.26); border-radius: 50%; background: radial-gradient(circle, var(--brand) 0 3px, transparent 4px); }
.cards .card h3 { font-size: 19px; }
.cards .card p { font-size: 15px; line-height: 1.6; }
.cta-center { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 18px; margin-top: 38px; text-align: center; }

/* FAQ */
.accordion { columns: 2; column-gap: 14px; }
.accordion details { break-inside: avoid; margin: 0 0 12px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, 0.72); }
.accordion summary { position: relative; padding: 20px 54px 20px 22px; cursor: pointer; font-weight: 750; line-height: 1.4; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; top: 18px; right: 20px; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-soft); color: var(--brand); font-size: 18px; line-height: 1; transition: transform 0.2s ease; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.acc__body { padding: 0 22px 22px; color: #475751; font-size: 15px; line-height: 1.65; }
.fineprint { color: #4b5b55; font-size: 14px; font-weight: 560; line-height: 1.55; }

/* Location */
#contacts { background: var(--surface); }
.salons { display: grid; }
.salon.card { display: grid; grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr); gap: 34px; padding: 16px; background: var(--bg); box-shadow: none; }
.salon__title, .salon__addr, .salon__links { grid-column: 1; }
.salon__title { align-self: end; padding: 26px 26px 0; font-size: 22px; font-weight: 800; }
.salon__addr { padding: 0 26px; color: #475751; font-size: 16px; line-height: 1.65; }
.salon__addr { font-style: normal; }
.salon__addr a { display: block; color: inherit; }
.salon__addr a:hover span { text-decoration: underline; text-underline-offset: 4px; }
.salon__addr span { display: inline-block; margin-top: 8px; color: var(--brand); font-size: 14px; font-weight: 750; }
.salon__hours { display: block !important; margin-top: 12px !important; color: #475751 !important; font-size: 14px !important; font-weight: 650 !important; }
.salon__links { align-self: start; display: grid; gap: 10px; padding: 0 26px 26px; }
.map-embed { grid-column: 2; grid-row: 1 / span 3; min-height: 440px; overflow: hidden; border-radius: 20px; background: var(--bg-soft); }
.map-embed iframe { width: 100%; height: 100%; min-height: 440px; display: block; border: 0; filter: saturate(0.7) contrast(0.95); }
.final { position: relative; margin-top: 56px; overflow: hidden; padding: clamp(38px, 6vw, 72px); border-radius: var(--radius-lg); background: var(--accent-soft); }
.final::after { content: ""; position: absolute; right: -90px; bottom: -130px; width: 360px; height: 360px; border: 1px solid rgba(200, 117, 79, 0.25); border-radius: 50%; pointer-events: none; }
.final h2 { max-width: 18ch; }
.final p { max-width: 64ch; margin-bottom: 26px; color: #695d56; }

/* Footer */
.footer { padding: 64px 0 88px; background: var(--brand-deep); color: rgba(255, 255, 255, 0.82); }
.footer__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 46px; align-items: start; }
.footer__name { color: #fff; font-size: 22px; font-weight: 800; }
.footer__copy { margin-top: 4px; font-size: 14px; }
.footer__legal { max-width: 640px; margin-top: 24px; color: #dbe6e2; font-size: 13px; line-height: 1.75; }
.footer__legal { font-style: normal; }
.footer__legal a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer__links { display: grid; gap: 12px; justify-items: end; color: #fff; font-size: 14px; font-weight: 650; }
.footer__links a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Mobile sticky CTA */
.sticky-cta { display: none; }

/* Forms and dialogs */
.modal, .max-consent-modal, .success-modal {
  position: fixed;
  z-index: 1300;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[aria-hidden="false"], .max-consent-modal[aria-hidden="false"], .success-modal[aria-hidden="false"] { display: flex; }
.modal__overlay, .max-consent-modal__overlay, .success-modal__overlay { position: absolute; inset: 0; background: rgba(20, 36, 31, 0.58) !important; backdrop-filter: blur(8px); }
body .modal__dialog, body .max-consent-modal__dialog, body .success-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 28px;
  background: var(--surface) !important;
  color: var(--ink);
  box-shadow: 0 40px 100px rgba(16, 40, 33, 0.3) !important;
}
.modal__dialog h2, .max-consent-modal__dialog h2, .success-modal__dialog h2 { margin: 0 42px 10px 0; color: var(--ink); font-size: 30px; line-height: 1.15; }
.modal__sub, .max-consent-modal__dialog > p, .success-modal__dialog p { color: var(--muted) !important; }
.modal__close, .max-consent-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line) !important;
  border-radius: 50% !important;
  background: var(--bg) !important;
  color: var(--ink) !important;
  cursor: pointer;
  font-size: 24px;
}
.modal__dialog > .btn--max { width: 100%; margin: 14px 0 10px; }
.form { display: grid; gap: 14px; }
.form > label:not(.consent) { display: grid; gap: 7px; }
.form label > span { font-size: 14px; font-weight: 750; }
.form input:not([type="checkbox"]), .form select {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input:not([type="checkbox"]):focus, .form select:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(31, 90, 77, 0.1); }
.form #submitBtn { width: 100%; margin-top: 4px; }
.consent, .max-consent-modal__consent { display: grid !important; grid-template-columns: 20px minmax(0, 1fr) !important; align-items: start !important; gap: 11px !important; padding: 14px !important; border: 1px solid var(--line) !important; border-radius: 14px !important; background: var(--bg) !important; color: var(--muted) !important; cursor: pointer; }
.consent input, .max-consent-modal__consent input { width: 18px !important; min-width: 18px !important; height: 18px !important; margin: 2px 0 0 !important; accent-color: var(--brand); }
.consent span, .max-consent-modal__consent span { color: #4b5a55 !important; font-size: 12px !important; font-weight: 520 !important; line-height: 1.6 !important; }
.consent a, .max-consent-modal__consent a, .form-policy-link { color: var(--brand) !important; text-decoration: underline; text-underline-offset: 2px; }
.form__status { min-height: 20px; color: var(--muted); font-size: 13px; line-height: 1.5; text-align: center; }
.form__status.err { color: #a43e35; }
.form__status.ok { color: var(--brand); }
.modal__alt { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; text-align: center; }
.modal__phones a { color: var(--brand); font-size: 16px; font-weight: 800; }
.max-consent-modal__form { display: grid; gap: 16px; }
.max-consent-modal__button { width: 100%; }
.success-modal__dialog { text-align: center; }
.success-modal__icon { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: var(--brand-soft) !important; color: var(--brand); font-size: 28px; }
.success-modal__dialog h2 { margin-right: 0; }
.success-modal__address { margin: 18px 0 22px !important; padding: 16px; border-radius: 14px; background: var(--bg) !important; color: var(--ink) !important; }

/* Cookie notice */
body.cookie-consent-open { overflow: hidden; }
body .cookie-notice {
  position: fixed;
  z-index: 1400;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
}
.cookie-notice[hidden] { display: none !important; }
body .cookie-notice__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 20, 0.7);
  backdrop-filter: blur(6px);
}
body .cookie-notice__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background: var(--brand-deep) !important;
  color: #fff;
  box-shadow: 0 32px 90px rgba(9, 24, 20, 0.42);
  text-align: center;
}
body .cookie-notice__title { margin: 0 0 10px; color: #fff; font-size: 24px; line-height: 1.2; }
body .cookie-notice__text { margin: 0 0 20px; color: rgba(255, 255, 255, 0.86); font-size: 15px; line-height: 1.6; }
body .cookie-notice__text a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
body .cookie-notice__actions { display: grid; gap: 5px; }
body .cookie-notice__button { width: 100%; min-height: 50px; border-color: #fff; background: #fff; color: var(--brand-deep); }
body .cookie-notice__deny {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
body .cookie-notice__deny:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
body .cookie-notice__deny:focus-visible { outline: 3px solid rgba(255, 255, 255, 0.75); outline-offset: 2px; }

.form__website-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }

/* Legal documents */
body > main.section > .container > .card { max-width: 920px; margin-inline: auto; padding: clamp(26px, 5vw, 64px); background: var(--surface); }
body > main.section > .container > .card h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.08; }
body > main.section > .container > .card h3 { margin-top: 34px; }
body > main.section > .container > .card p { color: #46534f; }
body > main.section > .container > .card a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

/* Responsive */
@media (max-width: 1120px) {
  .header__nav { display: none; }
  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr); gap: 44px; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .editorial-gallery { min-height: 560px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 30px, var(--container)); }
  .header__inner { min-height: 76px; }
  .brand__logo--icon { width: 48px; height: 48px; border-radius: 16px; }
  .brand__logo--icon img { width: 31px; height: 31px; }
  .brand__tag { display: none; }
  .header__actions .btn { min-height: 42px; padding: 10px 15px; font-size: 12px; }
  .hero { padding-top: 48px; }
  .hero__inner, .grid2, .grid2--glasses, .a3-grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: none; }
  .hero__media { width: min(100%, 620px); margin-inline: auto; }
  .media-card__visual, .media-card__img { min-height: 600px; }
  .grid2--about { gap: 24px; }
  .card--checklist { align-self: stretch; }
  .a3-photo { min-height: 460px; }
  .a3-photo img { min-height: 460px; }
  .editorial-gallery {
    width: min(100%, 660px);
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-inline: auto;
  }
  .editorial-gallery img { position: static; width: 100%; height: auto; }
  .editorial-gallery__main {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 5;
    border-radius: 180px 180px 24px 24px;
    object-position: 68% center;
  }
  .editorial-gallery__small {
    aspect-ratio: 4 / 3;
    border-width: 5px;
    border-radius: 20px;
  }
  .salon.card { grid-template-columns: 1fr; }
  .salon__title, .salon__addr, .salon__links, .map-embed { grid-column: 1; }
  .salon__title { grid-row: 1; }
  .salon__addr { grid-row: 2; }
  .salon__links { grid-row: 3; }
  .map-embed { grid-row: 4; min-height: 340px; }
  .map-embed iframe { min-height: 340px; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 132px; }
  body { font-size: 16px; line-height: 1.68; padding-bottom: 78px; }
  .container { width: min(100% - 24px, var(--container)); }
  h1 { font-size: clamp(34px, 9.5vw, 42px); }
  h2 { font-size: clamp(32px, 10vw, 43px); }
  .eyebrow { margin-bottom: 14px; font-size: 11px; line-height: 1.4; }
  .header__inner { min-height: auto; display: grid; grid-template-columns: 1fr; gap: 10px; padding: 10px 0; }
  .brand { gap: 8px; }
  .brand__name { font-size: 15px; }
  .brand__logo--icon { width: 42px; height: 42px; border-radius: 14px; }
  .brand__logo--icon img { width: 28px; height: 28px; }
  .header__actions, .header__actions .btn { width: 100%; }
  .header__actions .btn { min-height: 56px; padding: 11px 16px; font-size: 13px; }
  .hero { padding: 40px 0 64px; }
  .hero__inner { gap: 38px; }
  .lead { margin-bottom: 22px; font-size: 18px; line-height: 1.55; }
  .symptoms { grid-template-columns: 1fr; gap: 8px; }
  .symptom { min-height: auto; }
  .hero__cta { display: grid; }
  .hero__cta .btn { width: 100%; }
  .hero__cta .js-open-modal, .cta-inline .js-open-modal, .cta-row .js-open-modal, .cta-center .js-open-modal, .salon__links .js-open-modal, .final .js-open-modal { min-height: 64px; padding: 13px 18px; font-size: 14px; }
  .quick-contacts__item { grid-template-columns: 1fr; }
  .qc__link { grid-column: 1; grid-row: auto; margin-top: 4px; }
  .media-card__visual, .media-card__img { min-height: 440px; }
  .media-card__visual { border-radius: 150px 150px 24px 24px; }
  .media-card__badge { right: 16px; bottom: 18px; width: 102px; height: 102px; }
  .media-card__badge strong { font-size: 24px; }
  .media-card__note { width: calc(100% - 24px); margin-top: -22px; padding: 18px; }
  .media-card__note ul { display: grid; gap: 4px; }
  .section { padding: 76px 0; }
  .section__head { margin-bottom: 32px; }
  .section__head p, .about__copy > p, .glasses__copy > p { font-size: 17px; line-height: 1.65; }
  .imgcard, .imgcard img { min-height: 250px; }
  .card { padding: 22px; border-radius: 20px; }
  .card--checklist { padding: 24px; }
  .card--checklist h3 { max-width: none; font-size: 26px; }
  .cta-inline, .cta-row { display: grid; }
  .cta-inline .btn, .cta-row .btn { width: 100%; }
  .a3-card { grid-template-columns: 40px 1fr; gap: 14px; padding: 18px 0; }
  .a3-icon { width: 38px; height: 38px; }
  .a3-card h3 { font-size: 18px; }
  .a3-photo, .a3-photo img { min-height: 360px; }
  .a3-photo { border-radius: 130px 130px 22px 22px; }
  .editorial-gallery { min-height: 0; gap: 8px; }
  .editorial-gallery__main { width: 100%; height: auto; border-radius: 140px 140px 22px 22px; object-position: 68% center; }
  .editorial-gallery__small { width: 100%; height: auto; border-width: 4px; border-radius: 16px; }
  .cards { grid-template-columns: 1fr; }
  .cards .card { min-height: 210px; }
  .accordion { columns: 1; }
  .salon.card { gap: 16px; padding: 10px; }
  .salon__title { padding: 18px 18px 0; }
  .salon__addr { padding: 0 18px; }
  .salon__links { padding: 0 18px 18px; }
  .salon__links .btn { width: 100%; }
  .map-embed, .map-embed iframe { min-height: 300px; }
  .final { margin-top: 34px; padding: 30px 22px; border-radius: 24px; }
  .footer { padding: 48px 0 38px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__links { justify-items: start; }
  .sticky-cta { position: fixed; z-index: 900; left: 0; right: 0; bottom: 0; display: block; padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(246, 243, 237, 0.94); backdrop-filter: blur(14px); }
  .sticky-cta .btn { width: 100%; min-height: 52px; margin: 0; }
  body .modal__dialog, body .max-consent-modal__dialog, body .success-modal__dialog { max-height: calc(100vh - 20px); padding: 26px 18px 20px; border-radius: 22px; }
  .modal__dialog h2, .max-consent-modal__dialog h2, .success-modal__dialog h2 { font-size: 25px; }
  body .cookie-notice { padding: 14px; }
  body .cookie-notice__dialog { padding: 24px 18px 18px; border-radius: 20px; }
  body .cookie-notice__title { font-size: 21px; }
  body > main.section > .container > .card { padding: 22px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
