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

:root {
  --bg: #f6f1ea;
  --bg-warm: #efe7db;
  --ink: #2c2823;
  --grey: #6e6a64;          /* мемно-серый текст */
  --grey-light: #8c887f;
  --accent: #a8744f;        /* тёплая терракота */
  --accent-dark: #8d5e3d;
  --sage: #7c8a6f;
  --line: rgba(44,40,35,.12);
  --white: #ffffff;
  --radius: 18px;
  --maxw: 1200px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 110px 0; }

.eyebrow {
  font-size: 13px; letter-spacing: .18em; text-transform: lowercase;
  color: var(--accent); font-weight: 600; margin-bottom: 18px;
}

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 48px;
  color: var(--ink);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); }
.btn--small { padding: 11px 22px; font-size: 14px; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.header.scrolled {
  background: rgba(246,241,234,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 30px rgba(44,40,35,.06);
  padding: 10px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  font-family: var(--serif);
  font-size: 30px; font-weight: 600; letter-spacing: .02em;
  line-height: .82;
  color: var(--ink);
}
.header:not(.scrolled) .logo { color: #fff; }
.logo--light { color: #fff; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 15px; font-weight: 500; color: #fff;
  position: relative; transition: opacity .2s ease;
}
.header.scrolled .nav__link { color: var(--ink); }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px;
  background: currentColor; transition: width .25s ease;
}
.nav__link:hover::after { width: 100%; }
.nav__link--mobile { display: none; }
.nav__cta { display: none; }

.header__right { display: flex; align-items: center; gap: 20px; }
.header__phone {
  font-size: 15px; font-weight: 600; color: #fff; white-space: nowrap;
}
.header.scrolled .header__phone { color: var(--ink); }

.burger { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 22px; position: relative; }
.burger span { position: absolute; left: 0; width: 100%; height: 2px; background: #fff; transition: .3s; }
.header.scrolled .burger span { background: var(--ink); }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ============ БЛОК 1 — HERO ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: 65% center; transform: scale(1.05); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,15,10,.78) 0%, rgba(20,15,10,.55) 38%, rgba(20,15,10,.18) 62%, rgba(20,15,10,.0) 100%); }
.hero__content { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 90px; max-width: 480px; margin-left: 0; margin-right: auto; }
.hero__eyebrow { font-size: 14px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 22px; opacity: .9; }
.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(46px, 8vw, 96px); line-height: .98; letter-spacing: .01em;
  text-transform: uppercase;
}
.hero__title span { color: #e8c9a8; }
.hero__subtitle { font-size: clamp(16px, 2vw, 20px); letter-spacing: .06em; text-transform: uppercase; margin-top: 18px; opacity: .92; }
.hero__tagline { font-family: var(--serif); font-size: clamp(22px, 3vw, 32px); line-height: 1.25; margin-top: 28px; font-style: italic; }
.hero__lead { font-size: 17px; margin-top: 18px; max-width: 440px; opacity: .9; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hero__actions .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 13px; letter-spacing: .15em; opacity: .85; }

/* ============ БЛОК 2 — WISHES ============ */
.wishes {
  background: var(--bg);
}
.wishes .eyebrow,
.wishes .section__title {
  text-align: center;
}
.wishes .section__title {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.05;
  margin-bottom: 34px;
}
.wishes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wish-card {
  background: var(--white); border-radius: var(--radius); padding: 26px 24px;
  min-height: 280px; display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wish-card--with-photo {
  background-image:
    linear-gradient(rgba(27, 22, 17, .48), rgba(27, 22, 17, .48)),
    url('../images/wish-card-02.webp');
  background-size: cover;
  background-position: center;
  border-color: rgba(255,255,255,.22);
}
.wish-card.wish-card--with-photo .wish-card__num,
.wish-card.wish-card--with-photo p {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.wish-card--with-photo-01 {
  background-image:
    linear-gradient(rgba(22, 18, 14, .5), rgba(22, 18, 14, .5)),
    url('../images/wish-card-01-new.webp');
  background-size: cover;
  background-position: center 20%;
  border-color: rgba(255,255,255,.2);
}
.wish-card.wish-card--with-photo-01 .wish-card__num,
.wish-card.wish-card--with-photo-01 p {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.wish-card--with-photo-03 {
  background-image:
    linear-gradient(rgba(22, 18, 14, .5), rgba(22, 18, 14, .5)),
    url('../images/wish-card-03-new.webp');
  background-size: cover;
  background-position: center 22%;
  border-color: rgba(255,255,255,.2);
}
.wish-card.wish-card--with-photo-03 .wish-card__num,
.wish-card.wish-card--with-photo-03 p {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.wish-card--with-photo-04 {
  background-image:
    linear-gradient(rgba(20, 16, 12, .52), rgba(20, 16, 12, .52)),
    url('../images/wish-card-04.webp');
  background-size: cover;
  background-position: center;
  border-color: rgba(255,255,255,.2);
}
.wish-card.wish-card--with-photo-04 .wish-card__num,
.wish-card.wish-card--with-photo-04 p {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.38);
}
.wish-card--with-photo-05 {
  background-image:
    linear-gradient(rgba(22, 18, 14, .5), rgba(22, 18, 14, .5)),
    url('../images/wish-card-05-new.webp');
  background-size: cover;
  background-position: center top;
  border-color: rgba(255,255,255,.2);
}
.wish-card.wish-card--with-photo-05 .wish-card__num,
.wish-card.wish-card--with-photo-05 p {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.wish-card--with-photo-06 {
  background-image:
    linear-gradient(rgba(22, 18, 14, .46), rgba(22, 18, 14, .46)),
    url('../images/wish-card-05.webp');
  background-size: cover;
  background-position: center 24%;
  border-color: rgba(255,255,255,.2);
}
.wish-card.wish-card--with-photo-06 .wish-card__num,
.wish-card.wish-card--with-photo-06 p {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.wish-card.wish-card--with-photo .wish-card__num { opacity: 1; }
.wish-card.wish-card--with-photo-01 .wish-card__num { opacity: 1; }
.wish-card.wish-card--with-photo-03 .wish-card__num { opacity: 1; }
.wish-card.wish-card--with-photo-04 .wish-card__num { opacity: 1; }
.wish-card.wish-card--with-photo-05 .wish-card__num { opacity: 1; }
.wish-card.wish-card--with-photo-06 .wish-card__num { opacity: 1; }
.wish-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(44,40,35,.1); }
.wish-card__num { font-family: var(--serif); font-size: 40px; color: var(--accent); opacity: .55; }
.wish-card p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  color: #4f4b46;
  font-weight: 400;
}
.wishes__cta { margin-top: 48px; text-align: center; }

/* ============ БЛОК 3 — PHILOSOPHY ============ */
.philosophy {
  position: relative;
  overflow: hidden;
  background-color: #1f2a21;
  background-image: url('../images/philosophy-left.webp');
  background-size: cover;
  background-position: 20% center;
  background-repeat: no-repeat;
}
.philosophy .container { position: relative; z-index: 1; }
.philosophy__layout {
  position: relative;
  height: 820px;
}
.philosophy__cards {
  position: absolute;
  inset: 60px;
}
.philosophy__card {
  position: absolute;
  width: 310px;
  background: rgba(246,241,234,.95);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.philosophy__card:first-child {
  top: 0;
  left: 35%;
  z-index: 1;
}
.philosophy__card--mission {
  bottom: 0;
  right: 0;
  z-index: 2;
}
.philosophy__title { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.12; color: var(--ink); margin-bottom: 14px; }
.philosophy__text { color: var(--grey); font-size: 15px; line-height: 1.6; margin-bottom: 10px; }
.philosophy__text strong { color: var(--ink); font-weight: 700; }

/* ============ БЛОК 4 — RESULTS ============ */
.results { background: var(--bg-warm); }
.results .eyebrow { text-align: center; }
.results .section__title {
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.02;
  margin-bottom: 48px;
  text-align: center;
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.results-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.results-card__img {
  min-height: 230px;
  background-size: cover;
  background-position: center;
}
.results-card__list {
  padding: 18px 18px 20px;
  background: var(--white);
  color: #3a3632;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  border-top: 1px solid var(--line);
}
.results-card__list li {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
  color: #3a3632;
  position: relative;
  padding-left: 20px;
}
.results-card__list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #caa488;
}

/* ============ БЛОК 5 — DIRECTIONS ============ */
.directions { background: var(--bg); }
.directions__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dir-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.dir-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(44,40,35,.12); }
.dir-card__img { height: 260px; background-size: cover; background-position: center; }
.directions__grid .dir-card:nth-child(2) .dir-card__img { background-position: center top; }
.dir-card__body { padding: 16px 20px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.dir-card__tag { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); font-weight: 600; }
.dir-card h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; line-height: 1.1; color: var(--ink); flex: 1; }
.dir-card .btn { align-self: flex-start; margin-top: auto; }

/* ============ БЛОК 6 — VIDEO ============ */
.video-block { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.video-block__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-block__media--animated {
  transform: none;
  animation: none;
}
.video-block__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-block__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.video-block__badge {
  position: absolute;
  top: clamp(28px, 8vh, 90px);
  left: 0;
  z-index: 2;
  max-width: 671px;
  padding: 26px 34px;
  border-radius: 0 20px 20px 0;
  background: rgba(246,241,234,.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 18px 46px rgba(20,18,16,.25);
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 28px);
  font-style: italic;
  line-height: 1.2;
  color: var(--grey);
  text-align: left;
}
.video-block__content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding-top: 0;
  padding-bottom: clamp(40px, 6vh, 80px);
  padding-right: clamp(24px, 4vw, 60px);
  display: flex;
  justify-content: flex-end;
}
.video-block__card {
  background: rgba(246,241,234,.94);
  border-radius: var(--radius);
  padding: 48px 46px;
  max-width: 520px;
  margin-right: 0;
}
.video-block__card p { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 30px); line-height: 1.3; color: var(--grey); font-style: italic; }

@keyframes video-soft-walk {
  0% {
    transform: scale(1.04) translate3d(-1.2%, 0.5%, 0);
    filter: saturate(1) brightness(0.95);
  }
  50% {
    transform: scale(1.07) translate3d(0.6%, -0.4%, 0);
    filter: saturate(1.03) brightness(0.98);
  }
  100% {
    transform: scale(1.1) translate3d(1.5%, -0.8%, 0);
    filter: saturate(1.06) brightness(1);
  }
}

/* ============ БЛОК 7 — PROMO ============ */
.promo { position: relative; padding: 120px 0; overflow: hidden; }
.promo__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.promo__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(30,45,25,.28);
}
.promo .container { position: relative; z-index: 2; display: flex; justify-content: center; }
.promo__card {
  background:
    linear-gradient(rgba(239, 231, 219, .92), rgba(239, 231, 219, .92)),
    url('../images/palms.webp');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  padding: 56px 50px; max-width: 640px; text-align: center;
  box-shadow: 0 30px 70px rgba(20,30,15,.25);
}
.promo__title { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 4vw, 48px); line-height: 1.1; color: var(--ink); margin-bottom: 18px; }
.promo__text { color: var(--ink); font-size: 18px; margin-top: -16px; margin-bottom: 32px; font-family: "Nunito", var(--sans); font-weight: 400; letter-spacing: 0.01em; }

/* ============ БЛОК 8 — SERVICES ============ */
.services { background: var(--bg-warm); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  border-radius: var(--radius); padding: 40px 34px;
  border: 1px solid rgba(255,255,255,.25); display: flex; flex-direction: column; gap: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 14, 10, .05) 0%,
    rgba(18, 14, 10, .08) 100%
  );
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card__content {
  background: rgba(248, 251, 246, .74);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 14px;
  padding: 14px 14px 12px;
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card:nth-child(1) { background-image: url('../images/services-1.webp'); }
.service-card:nth-child(2) { background-image: url('../images/services-2.webp'); }
.service-card:nth-child(3) { background-image: url('../images/services-3.webp'); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(44,40,35,.2); }
.service-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
  color: #18130f;
  text-shadow: none;
}
.service-card p {
  font-family: var(--sans);
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  flex: 1;
  text-shadow: none;
}
.link-more {
  align-self: flex-start;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
  border-radius: 100px;
  font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: .01em;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease, color .25s ease, border-color .25s ease;
  text-shadow: none;
}
.link-more:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }

/* ============ БЛОК 9 — REVIEWS ============ */
.reviews { background: var(--bg); }
.reviews__lead { color: var(--grey); font-size: 19px; max-width: 720px; margin: -28px 0 48px; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 32px;
  border: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px;
}
.review-card__stars { color: var(--accent); letter-spacing: 3px; font-size: 18px; }
.review-card p { color: var(--ink); font-size: 17px; line-height: 1.55; flex: 1; }
.review-card__author { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.reviews__cta { margin-top: 48px; text-align: center; }

/* ============ БЛОК 10 — CONTACTS ============ */
.contacts { background: var(--bg-warm); }
.contacts__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.contacts__row { margin-bottom: 28px; }
.contacts__label { display: block; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.contacts__row p { font-size: 18px; color: var(--ink); }
.contacts__socials { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.contacts__social {
  padding: 12px 24px; border: 1px solid var(--line); border-radius: 100px;
  font-size: 15px; font-weight: 600; transition: .25s ease;
}
.contacts__social:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.contacts__map { border-radius: var(--radius); overflow: hidden; min-height: 420px; border: 1px solid var(--line); }
.contacts__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(.2); }

/* ============ FOOTER ============ */
.footer { background: #221f1b; color: #cfc8bd; padding: 70px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__col--brand p { margin-top: 16px; font-size: 15px; max-width: 300px; line-height: 1.6; color: #a59e92; }
.footer__col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 600; }
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul a { font-size: 15px; color: #a59e92; transition: color .2s ease; }
.footer__col ul a:hover { color: #fff; }
.footer__bottom {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: #837c70;
}

/* ============ MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(20,16,12,.55); backdrop-filter: blur(3px); animation: fade .3s ease; }
.modal__dialog {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 40px)); max-height: 88vh; overflow-y: auto;
  background: var(--bg); border-radius: var(--radius); padding: 46px 44px;
  box-shadow: 0 40px 90px rgba(0,0,0,.4); animation: pop .3s ease;
}
.modal__close {
  position: absolute; top: 18px; right: 20px; background: none; border: none;
  font-size: 30px; line-height: 1; color: var(--grey); cursor: pointer;
}
.modal__title { font-family: var(--serif); font-weight: 500; font-size: 32px; line-height: 1.1; color: var(--ink); margin-bottom: 18px; }
.modal__dialog p { color: var(--grey); font-size: 16px; margin-bottom: 16px; }
.modal__list { margin: 0 0 20px; }
.modal__list li { position: relative; padding-left: 24px; color: var(--ink); font-size: 16px; margin-bottom: 10px; }
.modal__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.modal__note { font-size: 15px; font-style: italic; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translate(-50%, -46%); } to { opacity: 1; transform: translate(-50%, -50%); } }

/* ============ COOKIE ============ */
.cookie {
  position: fixed; bottom: 20px; left: 20px; z-index: 150;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 22px; max-width: 360px; box-shadow: 0 20px 50px rgba(44,40,35,.15);
  display: flex; align-items: center; gap: 16px;
}
.cookie p { font-size: 14px; color: var(--grey); }
.cookie.hidden { display: none; }

/* ============ ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .directions__grid { grid-template-columns: repeat(2, 1fr); }
  .dir-card__body { padding: 14px 18px 16px; gap: 7px; }
  .dir-card h3 { font-size: 19px; }
  .directions__grid .dir-card:nth-child(2) .dir-card__img { background-position: center top; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .section { padding: 80px 0; }
  .hero__bg { background-position: 70% center; }
  .hero__content { max-width: 400px; }
  .hero__overlay { background: linear-gradient(90deg, rgba(20,15,10,.82) 0%, rgba(20,15,10,.60) 42%, rgba(20,15,10,.22) 68%, rgba(20,15,10,.0) 100%); }
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    background: rgba(246,241,234,.98); backdrop-filter: blur(10px);
    gap: 24px; transform: translateX(100%); transition: transform .35s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav__link { color: var(--ink); font-size: 22px; font-family: var(--serif); }
  .nav__link--mobile { display: block; }
  .nav__cta { display: inline-flex; margin-top: 10px; }
  .burger { display: block; }
  .header__phone, .header__cta { display: none; }
  .wishes__grid { grid-template-columns: repeat(2, 1fr); }
  .wish-card { min-height: 260px; }
  .results__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .contacts__inner { grid-template-columns: 1fr; gap: 32px; }
  .philosophy { background-position: 30% center; }
  .philosophy__layout { height: auto; }
  .philosophy__cards {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 48px 0;
  }
  .philosophy__card {
    position: static;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding: 22px 20px;
    border-radius: 16px;
  }
  .philosophy__card .eyebrow { width: 100%; margin-bottom: 6px; }
  .philosophy__card .philosophy__title {
    flex: 0 0 42%;
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: 0;
    padding-right: 16px;
  }
  .philosophy__card .philosophy__text {
    flex: 1 1 58%;
    margin-bottom: 0;
    font-size: 14px;
    align-self: center;
  }
  .video-block__badge {
    top: 56px;
    left: 0;
    max-width: calc(100% - 18px);
    padding: 20px 24px;
    font-size: clamp(17px, 3.8vw, 24px);
  }
  .video-block__content { padding-top: 0; }
  .video-block__card, .promo__card { padding: 38px 28px; }
  .video-block__card { margin-left: 0; }
  .services__grid, .reviews__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero { align-items: flex-start; }
  .hero__bg { background-position: 60% 25%; }
  .hero__overlay { background: linear-gradient(180deg, rgba(20,15,10,.88) 0%, rgba(20,15,10,.72) 35%, rgba(20,15,10,.30) 60%, rgba(20,15,10,.0) 100%); }
  .hero__content { max-width: 100%; padding-top: 100px; padding-bottom: 20px; margin-left: 0; }
  .hero__title { font-size: clamp(36px, 11vw, 56px); }
  .hero__tagline { font-size: clamp(18px, 5vw, 24px); margin-top: 18px; }
  .directions__grid { grid-template-columns: 1fr; }
  .dir-card__body { padding: 14px 16px 16px; gap: 6px; }
  .dir-card h3 { font-size: 18px; line-height: 1.08; }
  .directions__grid .dir-card:nth-child(2) .dir-card__img { background-position: center top; }
  .results__grid { grid-template-columns: 1fr; }
  .results-card__img { min-height: 240px; }
  .results-card__list li { font-size: 17px; }
  .wishes__grid { grid-template-columns: 1fr; }
  .wish-card { min-height: 300px; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .modal__dialog { padding: 38px 24px; }
  .video-block { min-height: 110vh; }
  .video-block__content { justify-content: center; padding-bottom: 40px; padding-right: 18px; padding-left: 18px; }
  .video-block__card { margin-right: 0; max-width: 100%; }
  .video-block__media--animated { }
  .video-block__badge {
    top: 42px;
    left: 18px;
    max-width: calc(100% - 36px);
    border-radius: 16px;
    padding: 18px 20px;
    font-size: clamp(16px, 4.8vw, 20px);
  }
  .video-block__content {
    padding-top: 110px;
    justify-content: center;
  }
}
