/* ============================================================
   YOUR LUXURY SOLUTIONS — landing
   Палитра: #0B0C10 фон · #C8A45C золото · #E8D5A3 шампань
   #FFFFFF заголовки · #B0B5C0 текст · #1A2744 авиационный синий
   ============================================================ */

:root {
  --bg: #0B0C10;
  --gold: #C8A45C;
  --champagne: #E8D5A3;
  --white: #FFFFFF;
  --grey: #B0B5C0;
  --navy: #1A2744;
  --modal-bg: #1A1A1A;
  --glow: 0 0 30px rgba(200, 164, 92, 0.25);
  --serif: 'Playfair Display', 'Georgia', serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  background: var(--bg);
  color: var(--grey);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body, .modal__window {
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 164, 92, 0.45) rgba(11, 12, 16, 0.9);
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0B0C10; }
::-webkit-scrollbar-thumb { background: rgba(200, 164, 92, 0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(200, 164, 92, 0.65); }

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

.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

/* ---------- Переход между страницами сайта: новая страница открывается из мягкой расфокусировки ---------- */
main {
  animation: pageEnter 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes pageEnter {
  from { filter: blur(8px); }
  to { filter: blur(0); }
}

/* ---------- Секции: snap + 100vh ---------- */
.section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}
.section--auto { min-height: auto; padding: 80px 0 40px; }

/* ---------- Типовые элементы ---------- */
.section-heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-heading--center { text-align: center; }

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 36px auto;
}
.gold-divider--left { margin: 28px 0; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 44px;
  border: none;
  background: none;
  transition: box-shadow var(--transition), background var(--transition),
              color var(--transition), border-color var(--transition);
  text-align: center;
}
.btn--outline {
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  color: var(--champagne);
  border-color: var(--champagne);
  box-shadow: var(--glow);
}
.btn--gold {
  background: var(--gold);
  color: #0B0C10;
}
.btn--gold:hover {
  background: var(--champagne);
  box-shadow: var(--glow);
}
.btn--small { padding: 14px 26px; font-size: 11px; }

/* ---------- Появление элементов ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: 0.4s;
}
.reveal[data-delay="1"] { transition-delay: 0.5s; }
.reveal[data-delay="2"] { transition-delay: 0.6s; }
.reveal[data-delay="3"] { transition-delay: 0.7s; }
.reveal[data-delay="4"] { transition-delay: 0.8s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.is-scrolled {
  background: rgba(11, 12, 16, 0.95);
  box-shadow: 0 1px 0 rgba(200, 164, 92, 0.18);
}
.header__inner {
  width: min(1440px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}
.header__logo { display: flex; align-items: baseline; gap: 14px; }
.header__logo-mark {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.14em;
  border: 1px solid rgba(200, 164, 92, 0.5);
  padding: 2px 10px 4px;
}
.header__logo-text {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
}
.header__nav { display: flex; gap: 34px; }
.header__link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.header__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--champagne);
  transition: width var(--transition);
}
.header__link:hover { color: var(--champagne); }
.header__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 18px; }

/* Ссылка «На главный сайт» */
.header__home {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color var(--transition);
  white-space: nowrap;
}
.header__home svg { width: 16px; height: 16px; transition: transform var(--transition); }
.header__home:hover { color: var(--champagne); }
.header__home:hover svg { transform: translateX(-3px); }
@media (max-width: 600px) { .header__home span { display: none; } }

/* ---------- Переключатель языка ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  letter-spacing: 0.06em;
  user-select: none;
}
.lang-switch__btn {
  background: none;
  border: none;
  padding: 2px 1px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(176, 181, 192, 0.7);
  transition: color var(--transition);
}
.lang-switch__btn:hover { color: var(--champagne); }
.lang-switch__btn.is-active { color: var(--gold); }
.lang-switch__sep { color: rgba(200, 164, 92, 0.4); font-size: 12px; }
.header__mail {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: none;
  border: 1px solid rgba(200, 164, 92, 0.45);
  border-radius: 50%;
  color: var(--gold);
  transition: box-shadow var(--transition), border-color var(--transition), color var(--transition);
}
.header__mail svg { width: 19px; height: 19px; }
.header__mail:hover { color: var(--champagne); border-color: var(--champagne); box-shadow: var(--glow); }

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px; height: 42px;
  background: none; border: none;
}
.header__burger span {
  display: block;
  width: 26px; height: 1px;
  margin: 0 auto;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}
.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   ЭКРАН 1 — HERO
   ============================================================ */
.hero {
  justify-content: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('../assets/hero.jpg') 68% 22% / cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,12,16,0.72) 0%, rgba(11,12,16,0.55) 40%, rgba(11,12,16,0.88) 100%),
    radial-gradient(ellipse at center 40%, rgba(11,12,16,0.15), rgba(11,12,16,0.55));
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 900px;
}
.hero__issue {
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 28px;
}
.hero__logo {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.08;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 28px);
  font-style: italic;
  color: var(--white);
  margin-bottom: 10px;
}
.hero__subtitle {
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--grey);
  margin-bottom: 44px;
}
.hero__coords {
  position: absolute;
  right: 34px; bottom: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(232, 213, 163, 0.75);
}
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px; height: 40px;
  border: 1px solid rgba(200, 164, 92, 0.6);
  border-radius: 12px;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 8px;
  width: 2px; height: 8px;
  margin-left: -1px;
  background: var(--gold);
  border-radius: 1px;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
}

/* ============================================================
   ЭКРАН 2 — О ЖУРНАЛЕ
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about__anchor {
  width: 96px; height: 96px;
  color: var(--gold);
  margin-bottom: 32px;
}
.about__manifesto {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--gold);
}
.about__manifesto-sub {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--champagne);
}
.about__text { margin-bottom: 18px; max-width: 52ch; }
.about__facts {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.about__facts li { display: flex; flex-direction: column; gap: 6px; }
.about__fact-num {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--white);
  line-height: 1;
}
.about__fact-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  max-width: 150px;
}

.access { text-align: center; }
.access__title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 44px;
}
.access__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}
.access__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--white);
}
.access__icon {
  width: 52px; height: 52px;
  background-color: var(--gold);
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
  transition: background-color var(--transition);
}
.access__item:hover .access__icon { background-color: var(--champagne); }
.access__icon--1 { --icon: url('../assets/icon1.svg'); }
.access__icon--2 { --icon: url('../assets/icon2.svg'); }
.access__icon--3 { --icon: url('../assets/icon3.svg'); }
.access__icon--4 { --icon: url('../assets/icon4.svg'); }
.access__icon--5 { --icon: url('../assets/icon5.svg'); }
.access__icon--6 { --icon: url('../assets/icon6.svg'); }

/* ============================================================
   ЭКРАН 3 — ТЕКУЩИЙ НОМЕР
   ============================================================ */
.issue { background: linear-gradient(180deg, var(--bg) 0%, #0d1017 50%, var(--bg) 100%); }
.issue__grid {
  display: grid;
  grid-template-columns: minmax(300px, 460px) 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
  margin-top: 20px;
}
.issue__cover-wrap { perspective: 1200px; display: flex; justify-content: center; }
.issue__cover {
  position: relative;
  max-width: 420px;
  transform: rotateY(-8deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
  box-shadow:
    -30px 40px 70px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(200, 164, 92, 0.35),
    0 0 60px rgba(200, 164, 92, 0.12);
}
.issue__cover:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(232, 213, 163, 0.55),
    var(--glow);
}
.issue__cover-shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(232, 213, 163, 0.18) 48%, transparent 62%);
  pointer-events: none;
}
.issue__label {
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 14px;
}
.issue__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 40px);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 34px;
}
.issue__topics-title {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}
.issue__topics { margin-bottom: 44px; }
.issue__topics li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 20px;
}
.issue__topics li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.issue__topic-tag {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.issue__topic-text { color: var(--grey); }
.issue__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   ЭКРАН 4 — РУБРИКИ (сетка 3×2)
   ============================================================ */
.rubrics__sub {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--champagne);
}
.rubrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  position: relative;
  background: #0d0e13;
  border: 1px solid rgba(200, 164, 92, 0.45);
  padding: 30px 30px 34px;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  border-color: var(--champagne);
  box-shadow: var(--glow), inset 0 0 30px rgba(200, 164, 92, 0.06);
}
.card__photo {
  height: 150px;
  margin: -30px -30px 26px;
  background-position: center;
  background-size: cover;
  opacity: 0.85;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity var(--transition);
}
.card:hover .card__photo { transform: scale(1.05); opacity: 1; }
.card__photo--people     { background-image: linear-gradient(180deg, rgba(11,12,16,0.2), rgba(11,12,16,0.75)), url('../assets/rubric-people.jpg'); background-position: center 22%; }
.card__photo--lifestyle  { background-image: linear-gradient(180deg, rgba(11,12,16,0.2), rgba(11,12,16,0.7)), url('../assets/rubric-lifestyle.jpg'); background-position: center 55%; }
.card__photo--travel     { background-image: linear-gradient(180deg, rgba(11,12,16,0.25), rgba(11,12,16,0.75)), url('../assets/rubric-travel.jpg'); background-position: center 60%; }
.card__photo--homes      { background-image: linear-gradient(180deg, rgba(11,12,16,0.2), rgba(11,12,16,0.75)), url('../assets/rubric-homes.jpg'); background-position: center 55%; }
.card__photo--fashion    { background-image: linear-gradient(180deg, rgba(11,12,16,0.15), rgba(11,12,16,0.8)), url('../assets/rubric-fashion.jpg'); background-position: 25% 78%; }
.card__photo--health     { background-image: linear-gradient(180deg, rgba(11,12,16,0.2), rgba(11,12,16,0.75)), url('../assets/rubric-health.jpg'); background-position: center 65%; }
.card__rubric {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 18px;
}
.card__author {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--grey);
  opacity: 0.75;
}

/* ============================================================
   ЭКРАН 5 — ПРЕМИУМ-АВИАЦИЯ
   ============================================================ */
.aviation { background: linear-gradient(180deg, var(--bg) 0%, #0e1119 55%, var(--bg) 100%); }
.aviation__sub {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--champagne);
}
.aviation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.jet {
  background: #0d0e13;
  border: 1px solid rgba(200, 164, 92, 0.3);
  padding: 36px 32px 40px;
  transition: transform var(--transition), background var(--transition),
              border-color var(--transition), box-shadow var(--transition);
}
.jet:hover {
  transform: translateY(-10px);
  background: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--glow);
}
.jet__img {
  margin-bottom: 26px;
  overflow: hidden;
}
.jet__img img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter var(--transition);
}
.jet:hover .jet__img img { transform: scale(1.06); filter: saturate(1.05); }
.jet__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 22px;
}
.jet__specs {
  border-top: 1px solid rgba(200, 164, 92, 0.25);
  margin-bottom: 22px;
}
.jet__specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 164, 92, 0.25);
}
.jet__specs span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.jet__specs b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--gold);
  white-space: nowrap;
}
.jet__teaser { font-size: 14px; line-height: 1.7; }

/* ============================================================
   ЭКРАН 6 — КОНТАКТЫ
   ============================================================ */
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.contacts__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.contacts__lead {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contacts__email {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--white);
  border-bottom: 1px solid rgba(200, 164, 92, 0.5);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.contacts__email:hover { color: var(--champagne); border-color: var(--champagne); }
.contacts__addr { margin-top: 20px; font-size: 14px; letter-spacing: 0.06em; }
.contacts__partner {
  margin-top: 56px;
  padding: 30px 32px;
  background: var(--navy);
  border: 1px solid rgba(200, 164, 92, 0.3);
}
.contacts__partner-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.contacts__partner-text { font-size: 14px; margin-bottom: 22px; }
.contacts__partner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Форма ---------- */
.form__field {
  position: relative;
  margin-bottom: 34px;
}
.form__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200, 164, 92, 0.45);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  padding: 12px 2px;
  outline: none;
  border-radius: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input:focus {
  border-bottom-color: var(--champagne);
  box-shadow: 0 1px 0 0 var(--champagne);
}
.form__textarea { resize: vertical; min-height: 90px; }
.form__label {
  position: absolute;
  left: 2px; top: 12px;
  font-size: 15px;
  color: var(--grey);
  pointer-events: none;
  transition: all 0.25s ease;
}
.form__input:focus ~ .form__label,
input.form__input:not(:placeholder-shown) ~ .form__label,
textarea.form__input:not(:placeholder-shown) ~ .form__label,
.form__select.has-value ~ .form__label {
  top: -12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A45C' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  cursor: pointer;
}
.form__select option { background: var(--modal-bg); color: var(--white); }
.form__error {
  position: absolute;
  left: 2px; bottom: -20px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #D98E8E;
  opacity: 0;
  transition: opacity var(--transition);
}
.form__field.has-error .form__input { border-bottom-color: #D98E8E; }
.form__field.has-error .form__error { opacity: 1; }

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 30px;
  user-select: none;
}
.form__consent input { position: absolute; opacity: 0; pointer-events: none; }
.form__checkbox {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: box-shadow var(--transition), border-color var(--transition);
  margin-top: 2px;
}
.form__checkbox svg { width: 12px; height: 10px; opacity: 0; transition: opacity 0.2s ease; }
.form__consent input:checked + .form__checkbox svg { opacity: 1; }
.form__consent input:focus-visible + .form__checkbox { box-shadow: var(--glow); }
.form__consent.has-error .form__checkbox { border-color: #D98E8E; }
.form__consent-text { font-size: 13px; }
.form__submit { width: 100%; }
.form__success {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--champagne);
  text-align: center;
}

/* ============================================================
   ЭКРАН 7 — ФУТЕР
   ============================================================ */
.footer { text-align: center; }
.footer__line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 64px;
}
.footer__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--gold);
  margin-bottom: 40px;
}
.footer__logo {
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 30px;
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.footer__social a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid rgba(200, 164, 92, 0.4);
  border-radius: 50%;
  color: var(--gold);
  transition: color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.footer__social svg { width: 20px; height: 20px; }
.footer__social a:hover { color: var(--champagne); border-color: var(--champagne); box-shadow: var(--glow); }
.footer__write {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(200, 164, 92, 0.5);
  padding-bottom: 3px;
  margin-bottom: 48px;
  transition: color var(--transition), border-color var(--transition);
}
.footer__write:hover { color: var(--champagne); border-color: var(--champagne); }
.footer__bottom {
  font-size: 12px;
  color: rgba(176, 181, 192, 0.7);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 20px;
}
.footer__privacy-note { font-style: italic; }
.footer__policy {
  color: var(--gold);
  transition: color var(--transition);
}
.footer__policy:hover { color: var(--champagne); }
.footer__docs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.footer__docs-sep { color: rgba(200, 164, 92, 0.5); }
.form__consent-link {
  color: var(--gold);
  border-bottom: 1px solid rgba(200, 164, 92, 0.4);
  transition: color var(--transition);
}
.form__consent-link:hover { color: var(--champagne); }

/* ============================================================
   ТЕКСТОВЫЕ СТРАНИЦЫ (политика, оферта)
   ============================================================ */
.doc {
  min-height: 100vh;
  padding: 150px 0 80px;
}
.doc .container { max-width: 820px; }
.doc__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.doc__updated {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(176, 181, 192, 0.7);
  margin-bottom: 40px;
}
.doc h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--white);
  margin: 44px 0 16px;
}
.doc p, .doc li { margin-bottom: 12px; font-size: 15px; }
.doc ul, .doc ol { padding-left: 22px; margin-bottom: 16px; }
.doc ul { list-style: none; padding-left: 0; }
.doc ul li {
  position: relative;
  padding-left: 22px;
}
.doc ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.doc ol { counter-reset: item; list-style: none; padding-left: 0; }
.doc ol li { position: relative; padding-left: 34px; counter-increment: item; }
.doc ol li::before {
  content: counter(item) '.';
  position: absolute;
  left: 0;
  font-family: var(--serif);
  color: var(--gold);
}
.doc a { color: var(--gold); border-bottom: 1px solid rgba(200, 164, 92, 0.4); transition: color var(--transition); }
.doc a:hover { color: var(--champagne); }
.doc__back {
  display: inline-block;
  margin-top: 56px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.doc__note {
  margin-top: 40px;
  padding: 18px 22px;
  background: var(--navy);
  border: 1px solid rgba(200, 164, 92, 0.3);
  font-size: 13px;
}

/* ============================================================
   МОДАЛЬНЫЕ ОКНА
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 8, 0.8);
  backdrop-filter: blur(4px);
}
.modal__window {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--modal-bg);
  border: 1px solid var(--gold);
  box-shadow: 0 0 60px rgba(200, 164, 92, 0.18), 0 30px 80px rgba(0, 0, 0, 0.6);
  padding: 48px clamp(24px, 5vw, 56px) 44px;
  animation: modalIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal__window--small { width: min(480px, 100%); }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: none;
  border: none;
  color: var(--gold);
  transition: color var(--transition), transform var(--transition);
}
.modal__close svg { width: 18px; height: 18px; }
.modal__close:hover { color: var(--champagne); transform: rotate(90deg); }
.modal__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 34px;
  padding-right: 30px;
}

/* ---------- Заказ ---------- */
.order__group-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 18px;
}
.order__issues {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}
.order__issue {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.order__issue input { position: absolute; opacity: 0; pointer-events: none; }
.order__thumb {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 92, 0.35);
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.order__thumb img { width: 100%; height: 100%; object-fit: cover; }
.order__thumb--v2 { background: linear-gradient(160deg, #1A2744 0%, #0B0C10 90%); }
.order__thumb--v3 { background: linear-gradient(200deg, #2b2416 0%, #0B0C10 85%); }
.order__thumb i {
  font-family: var(--serif);
  font-style: normal;
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.order__thumb em {
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey);
}
.order__issue input:checked ~ .order__thumb {
  border-color: var(--champagne);
  box-shadow: var(--glow);
}
.order__radio {
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  transition: border-color var(--transition);
}
.order__radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.order__issue input:checked ~ .order__radio::after { opacity: 1; transform: scale(1); }
.order__issue-name {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--grey);
}
.order__counter {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(200, 164, 92, 0.45);
  margin-bottom: 34px;
}
.order__count-btn {
  width: 52px; height: 52px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 22px;
  font-weight: 300;
  transition: color var(--transition), background var(--transition);
}
.order__count-btn:hover { color: var(--champagne); background: rgba(200, 164, 92, 0.08); }
.order__count {
  width: 78px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(200, 164, 92, 0.45);
  border-right: 1px solid rgba(200, 164, 92, 0.45);
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  text-align: center;
  outline: none;
}
.order__fields { margin-bottom: 8px; }
.order__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid rgba(200, 164, 92, 0.3);
  padding-top: 22px;
  margin-bottom: 30px;
}
.order__total span {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.order__total b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--gold);
}
.order__submit { width: 100%; }

/* ============================================================
   АДАПТИВНОСТЬ
   ============================================================ */
@media (max-width: 1440px) {
  .container { width: min(1180px, 92%); }
}

@media (max-width: 1200px) {
  .rubrics__grid, .aviation__grid { gap: 20px; }
  .card { padding: 24px 24px 28px; }
  .card__photo { margin: -24px -24px 22px; }
}

@media (max-width: 1024px) {
  html { scroll-snap-type: none; }
  .section { min-height: auto; padding: 90px 0 70px; }
  .hero { min-height: 100vh; }
  .header__nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: rgba(11, 12, 16, 0.98);
    border-left: 1px solid rgba(200, 164, 92, 0.3);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 44px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .header__nav.is-open { transform: translateX(0); }
  .header__link { font-size: 14px; }
  .header__burger { display: flex; z-index: 10; }
  .rubrics__grid { grid-template-columns: repeat(2, 1fr); }
  .aviation__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .about__grid, .contacts__grid { grid-template-columns: 1fr; }
  .contacts__right { margin-top: 10px; }
  .issue__grid { grid-template-columns: 1fr; text-align: center; }
  .issue__cover { max-width: 340px; }
  .issue__topics { text-align: left; max-width: 480px; margin: 0 auto 44px; }
  .issue__topics-title { text-align: left; max-width: 480px; margin: 0 auto 20px; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .header__logo-text { display: none; }
  .hero__bg { background-position: 26% 30%; }
  .access__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .rubrics__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .hero__coords { right: 20px; bottom: 70px; font-size: 10px; }
  .about__facts { gap: 26px; }
  .contacts__partner-actions .btn { width: 100%; }
  .order__issues { gap: 12px; }
  .modal { padding: 12px; }
  .modal__window { padding: 40px 20px 34px; max-height: calc(100vh - 24px); }
}

@media (max-width: 480px) {
  .btn { padding: 16px 30px; font-size: 12px; }
  .access__grid { grid-template-columns: 1fr 1fr; }
  .access__item { font-size: 13px; }
  .access__icon { width: 42px; height: 42px; }
  .hero__coords { display: none; }
  .order__issues { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .order__thumb i { font-size: 20px; }
  .order__thumb em { font-size: 8px; }
}
