/* ============================================================
   FLORIDIZ — business (floridiz.ru)
   ============================================================ */

:root {
  --bg: #141613;
  --text: #f1ede4;
  --gold: #c9a96a;
  --gold-hover: #e0c48d;

  /* производные от --text (rgba нельзя строить из hex-переменной без хаков) */
  --text-85: rgba(241, 237, 228, 0.85);
  --text-80: rgba(241, 237, 228, 0.8);
  --text-75: rgba(241, 237, 228, 0.75);
  --text-70: rgba(241, 237, 228, 0.7);
  --text-68: rgba(241, 237, 228, 0.68);
  --text-62: rgba(241, 237, 228, 0.62);
  --text-60: rgba(241, 237, 228, 0.6);
  --text-50: rgba(241, 237, 228, 0.5);
  --text-45: rgba(241, 237, 228, 0.45);
  --text-40: rgba(241, 237, 228, 0.4);

  --line: rgba(241, 237, 228, 0.14);
  --line-strong: rgba(241, 237, 228, 0.2);
  --line-input: rgba(241, 237, 228, 0.22);
  --line-pill: rgba(241, 237, 228, 0.25);
  --surface: rgba(241, 237, 228, 0.04);
  --surface-hover: rgba(241, 237, 228, 0.03);
  --input-bg: rgba(241, 237, 228, 0.05);

  /* светлая секция (Анна) */
  --light-bg: #f1ede4;
  --light-text: #2b2620;
  --light-accent: #a4823f;
  --light-muted: #4d463c;
  --light-muted-2: #6b6354;

  --pad-x: clamp(20px, 4.5vw, 64px);
  --pad-y: clamp(56px, 9vw, 100px);
  --gap-col: clamp(40px, 6vw, 80px);
  --serif: 'Prata', Georgia, serif;
  --sans: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- base ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
}

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

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); }

h1, h2, h3, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; background: none; border: none; }

::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  color: var(--bg);
}

/* ---------- секции / общая типографика ---------- */

.section {
  padding: var(--pad-y) var(--pad-x);
}
.section--bordered { border-top: 1px solid var(--line); }

.section__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 44px;
}

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(31px, 4.8vw, 44px);
  line-height: 1.22;
  color: var(--text);
  text-wrap: balance;
}
.h2--sm { font-size: clamp(26px, 3.8vw, 40px); line-height: 1.24; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--plain { letter-spacing: 0.22em; }
.eyebrow--light { color: var(--light-accent); }

.eyebrow__rule {
  flex: none;
  width: 32px;
  height: 1px;
  background: currentColor;
}

/* ---------- кнопки ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--gold {
  padding: 19px 42px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 2px;
}
.btn--gold:hover { background: var(--gold-hover); color: var(--bg); }
.btn--gold:disabled { opacity: 0.55; cursor: not-allowed; }

.btn--sm { padding: 16px 30px; font-size: 15px; }

.btn--outline {
  padding: 12px 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
}
.btn--outline:hover { background: var(--gold); color: var(--bg); }

.btn--square {
  border-radius: 2px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 600;
}

.link-underline {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--text-50);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.link-underline:hover { color: var(--gold); border-color: var(--gold); }

.pill {
  padding: 13px 26px;
  border: 1px solid var(--line-pill);
  border-radius: 100px;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.pill:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- чипы ---------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 12px 22px;
  border: 1px solid var(--line-pill);
  background: var(--surface);
  color: var(--text-80);
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }
.chip.is-active,
.chip.is-active:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.chips--filter .chip {
  padding: 10px 20px;
  font-size: 13.5px;
}

/* ---------- NAV ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  padding: 20px var(--pad-x);
  background: rgba(20, 22, 19, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(241, 237, 228, 0.12);
}

.nav__logo {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.24em;
  color: var(--text);
  white-space: nowrap;
}
.nav__logo:hover { color: var(--gold); }

.nav__menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  flex: 1;
  justify-content: space-between;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 14px;
  font-weight: 500;
}

.nav__link {
  color: var(--text-85);
  transition: color 0.2s ease;
}
.nav__link:hover,
.nav__link.is-current { color: var(--gold); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}
.nav__burger-bar {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger[aria-expanded="true"] .nav__burger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] .nav__burger-bar:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] .nav__burger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- HERO ---------- */

.hero {
  position: relative;
  height: clamp(600px, 92vh, 860px);
  overflow: hidden;
  display: flex;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 17, 14, 0.5) 0%, rgba(15, 17, 14, 0.1) 40%, rgba(15, 17, 14, 0.82) 100%);
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  padding: 160px var(--pad-x) clamp(48px, 6vw, 64px);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 8vw, 76px);
  line-height: 1.08;
  color: var(--text);
  max-width: 1000px;
  text-wrap: balance;
}

.hero__lead {
  max-width: 620px;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(241, 237, 228, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 26px;
  margin-top: 8px;
}

/* ---------- ЦИФРЫ ---------- */

.stats {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}

.stats__item {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 30px var(--pad-x);
  border-right: 1px solid var(--line);
}
.stats__item:last-child { border-right: none; }

.stats__value {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--text);
}
.stats__value--gold { color: var(--gold); }

.stats__label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-60);
}

/* ---------- О СТУДИИ ---------- */

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: var(--gap-col);
  align-items: center;
  padding-top: clamp(64px, 10vw, 120px);
  padding-bottom: clamp(64px, 10vw, 120px);
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.numlist {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.numlist__item { display: flex; gap: 20px; }
.numlist__num {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
  min-width: 36px;
}
.numlist__body { display: flex; flex-direction: column; gap: 6px; }
.numlist__title { font-size: 18px; font-weight: 600; }
.numlist__text { font-size: 15.5px; line-height: 1.6; color: var(--text-68); }

.about__media {
  position: relative;
  height: 640px;
}
.about__img { object-fit: cover; }
.about__img--back {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 78%;
}
.about__img--front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 46%;
  height: 44%;
  border: 6px solid var(--bg);
}

/* ---------- УСЛУГИ ---------- */

.services__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.services__head-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services__head-note {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-60);
  padding-bottom: 6px;
}

.service {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  transition: background-color 0.2s ease;
}
.service:hover { background: var(--surface-hover); }

.service__num { font-family: var(--serif); font-size: 17px; color: var(--gold); }
.service__title { flex: 1 1 200px; font-size: 21px; font-weight: 600; color: var(--text); }
.service__text { flex: 1.6 1 280px; font-size: 15px; line-height: 1.55; color: var(--text-62); }
.service__img {
  width: 120px;
  height: 76px;
  object-fit: cover;
  align-self: center;
  filter: saturate(0.9);
}

/* ---------- ОБСЛУЖИВАНИЕ ---------- */

.care {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: var(--gap-col);
}
.care__img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  position: sticky;
  top: 110px;
}
.care__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.care__lead { font-size: 16.5px; line-height: 1.65; color: rgba(241, 237, 228, 0.72); }
.care__note { font-size: 15px; line-height: 1.6; color: var(--text-62); }

.dashlist { border-bottom: 1px solid var(--line); }
.dashlist__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text-85);
}
.dashlist__dash { color: var(--gold); }
.dashlist__strong { color: var(--text); }

.care__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}
.care__price {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--text);
}

/* ---------- ПОРТФОЛИО ---------- */

.chips--filter { margin-bottom: 44px; }

.works__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.work {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.work[hidden] { display: none; }
.work.is-fading { opacity: 0; }

.work__frame {
  overflow: hidden;
  height: 380px;
}
.work__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work:hover .work__img { transform: scale(1.045); }

.work__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.work__title { font-size: 16px; font-weight: 600; color: var(--text); }
.work__cat {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-50);
  text-align: right;
}

.works__empty {
  margin-top: 32px;
  font-size: 15px;
  color: var(--text-60);
}


/* ---------- ЭТАПЫ ---------- */

.section__head + .steps__grid { margin-top: 12px; }

.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 26px;
  background: var(--surface);
  border-top: 2px solid rgba(201, 169, 106, 0.4);
}
.step--first { border-top-color: var(--gold); }
.step__num { font-family: var(--serif); font-size: 30px; color: var(--gold); }
.step__title { font-size: 17px; font-weight: 600; }
.step__text { font-size: 14px; line-height: 1.6; color: var(--text-62); }

/* ---------- ПОЧЕМУ С НАМИ ---------- */

.why {
  position: relative;
  overflow: hidden;
}
.why__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.why__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: var(--gap-col);
  padding-top: clamp(64px, 10vw, 120px);
  padding-bottom: clamp(64px, 10vw, 120px);
}
.why__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why__p { font-size: 16.5px; line-height: 1.65; color: var(--text-75); }
.why__p--bright { color: var(--text); }

.why__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line-strong);
}
.why__item {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
}
.why__num {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
  min-width: 36px;
}
.why__body { display: block; }
.why__title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.why__desc {
  display: block;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(241, 237, 228, 0.65);
}

/* ---------- ФОРМА ---------- */

.calc {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding-top: 110px;
  padding-bottom: 110px;
}
.calc__intro {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc__lead { font-size: 16.5px; line-height: 1.65; color: rgba(241, 237, 228, 0.72); }
.calc__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-top: 12px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: none;
}

.form__label {
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--input-bg);
  border: 1px solid var(--line-input);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease;
}
.form__textarea {
  min-height: 96px;
  line-height: 1.5;
  resize: vertical;
}
.form__input:focus,
.form__textarea:focus { border-color: var(--gold); }
.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-45); }
.form__input:user-invalid { border-color: #d47c6a; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* honeypot — скрыт от людей, но доступен ботам */
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form__checkbox {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form__consent-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-68);
  cursor: pointer;
}

.form__submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}
.form__error {
  font-size: 14px;
  line-height: 1.5;
  color: #e39182;
}
.form__error a {
  color: inherit;
  text-decoration: underline;
  white-space: nowrap;
}

.thanks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(201, 169, 106, 0.08);
  border: 1px solid rgba(201, 169, 106, 0.4);
}
.thanks[hidden] {
  display: none;
}
.thanks__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 34px);
  color: var(--gold);
}
.thanks__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-85);
}

/* ---------- FAQ ---------- */

.faq {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}
.faq__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq__note { font-size: 15.5px; line-height: 1.6; color: var(--text-62); }

.faq__list { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid var(--line); }
.faq__h { margin: 0; font-size: inherit; font-weight: inherit; }

.faq__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
}
.faq__q {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}
.faq__btn:hover .faq__q { color: var(--gold); }
.faq__icon {
  flex: none;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  color: var(--gold);
}

/* по умолчанию (без JS) панели свёрнуты, кроме первой; далее высотой управляет JS */
.faq__panel {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.faq__item:first-child .faq__panel { height: auto; }
.faq__a {
  padding: 0 0 26px;
  max-width: 640px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-68);
}

/* ---------- АННА ---------- */

.anna {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--light-bg);
  color: var(--light-text);
}
.anna__media {
  position: relative;
  min-height: 720px;
}
.anna__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.anna__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: clamp(56px, 7vw, 100px) clamp(24px, 6vw, 88px);
}
.anna__title { color: var(--light-text); line-height: 1.18; }
.anna__p { font-size: 16px; line-height: 1.7; color: var(--light-muted-2); }
.anna__p--lead { font-size: 17px; color: var(--light-muted); }
.anna__sign {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--light-text);
}

/* ---------- КОНТАКТЫ ---------- */

.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  padding: 120px var(--pad-x) 100px;
}
.contacts__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.15;
  color: var(--text);
  max-width: 820px;
  text-wrap: balance;
}
.contacts__lead {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-70);
}
.contacts__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

/* ---------- СВАДЬБЫ (кросс-блок) ---------- */

.cross {
  position: relative;
  overflow: hidden;
  margin: 0 var(--pad-x) 100px;
}
.cross__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.cross__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 17, 14, 0.85) 0%, rgba(15, 17, 14, 0.3) 100%);
}
.cross__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
}
.cross__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.25;
  color: var(--text);
  max-width: 560px;
}
.cross__text {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(241, 237, 228, 0.78);
}
.cross .btn--outline { margin-top: 8px; }

/* ---------- ФУТЕР ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: 56px var(--pad-x) 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.22em;
  color: var(--text);
}
.footer__tagline { font-size: 14px; color: var(--text-60); }

.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 72px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col--geo { max-width: 220px; }
.footer__col-title {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-45);
}
.footer__link {
  font-size: 14.5px;
  color: var(--text-80);
  transition: color 0.2s ease;
}
.footer__link:hover { color: var(--gold); }
.footer__text { font-size: 14.5px; color: var(--text-80); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(241, 237, 228, 0.1);
  font-size: 13px;
  color: var(--text-45);
}
.footer__bottom-right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer__bottom-right .footer__link { font-size: 13px; color: var(--text-45); }
.footer__bottom-right .footer__link:hover { color: var(--gold); }

/* ---------- Правовая страница ---------- */

.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) var(--pad-x) clamp(56px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.legal__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.22;
  color: var(--text);
  text-wrap: balance;
}
.legal__meta { font-size: 14px; color: var(--text-50); }

.legal__section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.legal__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--text);
}
.legal__p { font-size: 16px; line-height: 1.7; color: var(--text-75); }
.legal__p--todo {
  padding: 16px 18px;
  background: rgba(201, 169, 106, 0.08);
  border: 1px dashed rgba(201, 169, 106, 0.4);
}
.legal__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 22px;
  list-style: disc;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-75);
}
.legal__list li { list-style: disc; }
.legal__back { margin-top: 12px; font-size: 15px; font-weight: 500; }

/* ============================================================
   ПЛАНШЕТ (<= 1100px / <= 900px)
   ============================================================ */

@media (max-width: 900px) {
  .nav__burger { display: flex; }

  .nav {
    flex-wrap: wrap;
    padding: 16px var(--pad-x);
  }
  .nav__menu {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px 0 8px;
  }
  .nav__menu.is-open { display: flex; }
  .nav__list {
    flex-direction: column;
    gap: 4px;
    font-size: 16px;
  }
  .nav__link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav__cta { align-self: flex-start; }

  .calc,
  .faq {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__media { height: 480px; }
  .care__img { position: static; height: 420px; }

  .works__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work__frame { height: 320px; }

  .services__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .anna { grid-template-columns: 1fr; }
  .anna__media { min-height: 420px; }

  .contacts { padding: 80px var(--pad-x) 72px; }
  .cross { margin-bottom: 72px; }
}

/* ============================================================
   МОБАЙЛ (<= 600px)
   ============================================================ */

@media (max-width: 600px) {
  html { scroll-padding-top: 76px; }

  .stats__item {
    flex-basis: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .stats__item:last-child { border-bottom: none; }

  .hero__inner { padding-top: 120px; gap: 20px; }

  .btn--gold { padding: 16px 28px; font-size: 15px; }

  /* услуги → карточки */
  .service__img {
    order: -1;
    width: 100%;
    height: 180px;
    margin-bottom: 6px;
  }
  .service__title { font-size: 19px; }

  .about__media { height: 380px; }
  .care__img { height: 300px; }

  .works__grid { grid-template-columns: 1fr; }
  .work__frame { height: 340px; }
  .work__meta { flex-direction: column; gap: 4px; align-items: flex-start; }
  .work__cat { text-align: left; }

  .review { padding: 28px 24px; }

  .form__row { grid-template-columns: 1fr; }
  .form__submit { align-items: stretch; }
  .form__submit .btn { width: 100%; }

  .contacts { padding: 64px var(--pad-x) 56px; }
  .contacts__links { gap: 10px; }
  .pill { padding: 11px 20px; font-size: 14px; }

  .footer__cols { gap: 32px; }
  .footer__bottom { flex-direction: column; }
}

/* ============================================================
   prefers-reduced-motion
   ============================================================ */

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