/* Шрифты подключаются отдельным <link> в <head>, а не через @import:
   @import заставлял браузер ждать загрузки этого файла, прежде чем он
   вообще узнавал о существовании fonts.css. */

/* =========================================================================
   Santal Tour — стили сайта
   Палитра унаследована от прежнего сайта (переменные Astra global-color),
   но используется сдержаннее: один акцентный цвет на действия, золотой —
   только на мелкие метки.

   Брейкпоинты. Держите их в согласии с SIZES_* в build.py — там из этих
   же чисел собирается атрибут sizes, и расхождение даёт мыльные картинки:
     1180px  прячется телефон в шапке
     1120px  .grid--4: 4 колонки -> 2;  подвал: 4 -> 2
      900px  меню -> бургер, .split -> 1 колонка, .grid--3 -> 2, галерея -> 2
      600px  сетки -> 1 колонка (галерея остаётся в двух)
   ========================================================================= */

:root {
  color-scheme: light;

  /* Фирменные цвета */
  --accent:      #05d7e6;   /* бирюзовый — только декор, контраст на белом низкий */
  --accent-deep: #0a8f99;   /* затемнённый бирюзовый — для текста и ссылок */
  --accent-dark: #077078;   /* нажатое состояние */
  --gold:        #ebc884;   /* золотой — только мелкий декор */
  /* Цвета сняты с логотипа: тёмно-синий надписи SANTAL и золото слова TOUR.
     Золото у логотипа глубже декоративного --gold — на белом оно читается. */
  --brand-navy:  #0a3349;
  --gold-deep:   #ac7c37;
  --ink:         #1c2021;   /* основной тёмный */
  --muted:       #5e6b6e;   /* вторичный текст */
  --grey:        #8f999b;   /* подписи, метки */
  --line:        #e7eaea;   /* волосяная линия */
  --line-soft:   #f0f2f2;
  --soft:        #f6f8f8;
  --cream:       #fdfaf5;
  --white:       #ffffff;

  /* Типографика */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Плавный размер текста: 16px на телефоне, 17px на большом экране */
  --fs-body: clamp(1rem, .965rem + .16vw, 1.0625rem);

  /* Сетка и ритм */
  --wrap: 1200px;
  --gut: clamp(18px, 4vw, 32px);
  --gap: clamp(16px, 2.2vw, 28px);
  --section-y: clamp(56px, 8vw, 116px);

  /* Скругления: карточки крупнее, поля и кнопки мельче */
  --r-xs:   10px;
  --r-sm:   12px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-pill: 999px;

  /* Тени мягкие: основную границу держит волосяная линия, не тень */
  --shadow-sm: 0 1px 2px rgba(28, 32, 33, .04), 0 2px 8px rgba(28, 32, 33, .04);
  --shadow-md: 0 2px 6px rgba(28, 32, 33, .04), 0 14px 34px rgba(28, 32, 33, .08);
  --shadow-lg: 0 30px 70px rgba(28, 32, 33, .14);

  --ease: cubic-bezier(.22, .61, .36, 1);

  /* Высота шапки.
     --header-h    постоянная: на неё рассчитаны отступы героя и шапок
                   страниц, поэтому она не должна меняться при прокрутке;
     --header-now  текущая: шапка ужимается после прокрутки, и к ней
                   привязаны сама шапка, мобильная панель и якорный отступ.
     Раньше мобильная панель была прибита к постоянному значению, и после
     прокрутки между шапкой и панелью оставалась щель в 14px. */
  --header-h:     76px;
  --header-h-min: 62px;
  --header-now:   var(--header-h);
}

:root.is-stuck { --header-now: var(--header-h-min); }

/* ---------- Сброс ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-now) + 20px);
}

/* Пока открыто мобильное меню, страница под ним не прокручивается */
html.nav-open, html.nav-open body { overflow: hidden; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--muted);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

img, svg, video, iframe { display: block; max-width: 100%; }
img, video { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 1.25rem + 4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 1.15rem + 2.2vw, 2.7rem); }
h3 { font-size: clamp(1.08rem, 1rem + .38vw, 1.28rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.05em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s var(--ease);
}
a:hover { color: var(--ink); }

::selection { background: var(--ink); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

ul { margin: 0; padding: 0; }

/* Базовый размер инлайновых иконок. Компонентные правила
   (.btn svg, .socials svg и т.п.) его перекрывают — специфичность выше. */
.ico { width: 1.25em; height: 1.25em; flex: none; }

/* ---------- Служебное ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  /* env(safe-area-*) — вырез и скруглённые углы на телефонах в ландшафте */
  padding-inline: max(var(--gut), env(safe-area-inset-left), env(safe-area-inset-right));
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 200;
  background: var(--ink); color: var(--white);
  padding: 12px 20px; border-radius: var(--r-xs);
  text-decoration: none; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--white); }

.section { padding: var(--section-y) 0; }
.section--soft  { background: var(--soft); }
.section--cream { background: var(--cream); }

/* ---------- Заголовки секций ---------- */

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 16px;
}
.kicker::before {
  content: ""; width: 22px; height: 1px;
  background: var(--gold); flex: none;
}

.sec-head { max-width: 62ch; margin-bottom: clamp(32px, 4.5vw, 60px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .kicker { justify-content: center; }
.sec-head p { font-size: 1.02em; margin-bottom: 0; color: var(--muted); }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px;
  padding: 12px 28px;
  font-size: .95rem; font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none; text-align: center; cursor: pointer;
  border: 1px solid transparent; border-radius: var(--r-pill);
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease),
              box-shadow .22s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }

.btn--primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--white); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }

.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Текстовая ссылка со стрелкой */
.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .92rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
}
.link-arrow svg { width: 20px; height: 11px; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--accent-deep); }
.link-arrow:hover svg { transform: translateX(5px); }

/* =========================================================================
   Шапка
   ========================================================================= */

.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-now);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease),
              height .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header .wrap {
  display: flex; align-items: center;
  gap: clamp(10px, 1.6vw, 26px);
}

/* Прозрачная поверх героя, белая после прокрутки и при открытом меню */
.header--transparent { background: transparent; }
.header--solid,
:root.is-stuck .header,
:root.nav-open .header {
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}

/* Логотип: эмблема из фирменного знака + название шрифтом.
   Целиком логотип вертикальный, в строку шапки его надпись не помещается. */
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 700;
  color: var(--brand-navy); text-decoration: none; letter-spacing: -.02em;
  white-space: nowrap;
}
.logo__mark { width: auto; height: 44px; flex: none; }
.logo__text em { font-style: normal; color: var(--gold-deep); }
.logo:hover { color: var(--brand-navy); }
:root:not(.is-stuck):not(.nav-open) .header--transparent .logo { color: var(--white); }
:root:not(.is-stuck):not(.nav-open) .header--transparent .logo__text em { color: var(--gold); }

/* Эмблема нарисована тёмно-синим по светлому: на фотографии героя и в тёмном
   подвале она превращается в пятно. Там даём ей светлую круглую подложку —
   заодно мелкий рисунок перестаёт сливаться с картинкой. */
:root:not(.is-stuck):not(.nav-open) .header--transparent .logo__mark,
.footer__brand .logo__mark {
  width: 46px; height: 46px;
  object-fit: contain;
  padding: 4px;
  background: var(--white);
  border-radius: 50%;
}

.nav { display: flex; align-items: center; gap: 2px; margin-inline: auto; }
.nav a {
  position: relative;
  padding: 9px 14px;
  font-size: .95rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  border-radius: var(--r-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 2px;
  width: 16px; height: 1.5px; background: currentColor;
  transform: translateX(-50%) scaleX(0); transform-origin: center;
  transition: transform .25s var(--ease);
  border-radius: 2px;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav a[aria-current="page"]::after { transform: translateX(-50%) scaleX(1); }
:root:not(.is-stuck):not(.nav-open) .header--transparent .nav a { color: rgba(255,255,255,.82); }
:root:not(.is-stuck):not(.nav-open) .header--transparent .nav a:hover,
:root:not(.is-stuck):not(.nav-open) .header--transparent .nav a[aria-current="page"] { color: var(--white); }

/* Переключатель языка */
.lang {
  display: flex; align-items: center; gap: 2px;
  padding: 3px;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: var(--white);
}
.lang a {
  padding: 6px 12px; line-height: 1;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  color: var(--muted); text-decoration: none;
  border-radius: var(--r-pill);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang a[aria-current="true"] { background: var(--ink); color: var(--white); }
.lang a:not([aria-current="true"]):hover { background: var(--soft); color: var(--ink); }
:root:not(.is-stuck):not(.nav-open) .header--transparent .lang {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
:root:not(.is-stuck):not(.nav-open) .header--transparent .lang a { color: rgba(255,255,255,.8); }
:root:not(.is-stuck):not(.nav-open) .header--transparent .lang a[aria-current="true"] { background: var(--white); color: var(--ink); }
:root:not(.is-stuck):not(.nav-open) .header--transparent .lang a:not([aria-current="true"]):hover { background: rgba(255,255,255,.2); color: var(--white); }

.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .92rem; white-space: nowrap;
  color: var(--ink); text-decoration: none;
}
.header-phone svg { width: 16px; height: 16px; color: var(--accent-deep); }
.header-phone:hover { color: var(--accent-deep); }
:root:not(.is-stuck):not(.nav-open) .header--transparent .header-phone { color: var(--white); }
:root:not(.is-stuck):not(.nav-open) .header--transparent .header-phone svg { color: var(--gold); }

/* Кнопка мобильного меню */
.burger {
  display: none; width: 44px; height: 44px; flex: none;
  align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-pill);
  cursor: pointer; color: var(--ink);
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.burger svg { width: 20px; height: 20px; }
:root:not(.is-stuck):not(.nav-open) .header--transparent .burger {
  color: var(--white);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.burger .icon-close { display: none; }
.burger[aria-expanded="true"] .icon-open { display: none; }
.burger[aria-expanded="true"] .icon-close { display: block; }

/* Мобильная панель.
   Прибита к текущей высоте шапки, а не к постоянной: иначе после
   прокрутки шапка ужималась, а панель оставалась на месте и между
   ними светилась полоска страницы. */
.mobile-nav {
  position: fixed; inset: var(--header-now) 0 0 0; z-index: 99;
  background: var(--white);
  padding-block: 8px calc(32px + env(safe-area-inset-bottom));
  padding-inline: max(var(--gut), env(safe-area-inset-left), env(safe-area-inset-right));
  overflow-y: auto;
  overscroll-behavior: contain;
  visibility: hidden; opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.mobile-nav.is-open { visibility: visible; opacity: 1; transform: none; }
.mobile-nav a.m-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 2px;
  font-family: var(--font-head);
  font-size: 1.28rem; font-weight: 700; letter-spacing: -.01em;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a.m-link[aria-current="page"] { color: var(--accent-deep); }
.mobile-nav .m-foot {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  margin-top: 26px;
}
.mobile-nav .header-phone { font-size: 1.02rem; }

/* =========================================================================
   Герой
   ========================================================================= */

.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) 0 clamp(56px, 8vw, 104px);
  color: var(--white);
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(20,24,25,.86) 0%, rgba(20,24,25,.56) 46%, rgba(20,24,25,.14) 100%),
    linear-gradient(to top, rgba(20,24,25,.6), transparent 42%);
}
.hero__inner { max-width: 40ch; }
.hero .kicker { color: var(--gold); }
.hero .kicker::before { background: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: .28em; letter-spacing: -.02em; }
.hero p {
  font-size: clamp(1.02rem, .95rem + .4vw, 1.22rem);
  color: rgba(255,255,255,.86);
  max-width: 52ch; margin-bottom: 2em;
}

/* Полоска телефонов под героем */
.hero-strip {
  position: relative; z-index: 2;
  margin-top: -1px;
  background: var(--ink); color: var(--white);
}
.hero-strip .wrap {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px clamp(20px, 3vw, 40px); padding-block: 18px;
}
.hero-strip__label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}
.hero-strip a {
  display: inline-flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.92); text-decoration: none; font-weight: 600;
  font-size: .96rem;
}
.hero-strip a:hover { color: var(--gold); }
.hero-strip svg { width: 16px; height: 16px; color: var(--accent); }

/* ---------- Шапка внутренних страниц ---------- */

.page-head {
  position: relative;
  padding: calc(var(--header-h) + clamp(56px, 7vw, 88px)) 0 clamp(52px, 6vw, 84px);
  color: var(--white); text-align: center; isolation: isolate;
}
.page-head__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.page-head__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-head::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,24,25,.74), rgba(20,24,25,.66));
}
.page-head h1 { color: var(--white); margin-bottom: .28em; }
.page-head p {
  max-width: 58ch; margin-inline: auto;
  color: rgba(255,255,255,.86); font-size: 1.04em;
}

.crumbs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
  list-style: none; margin: 0 0 20px; padding: 0;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
}
.crumbs li { color: rgba(255,255,255,.6); }
.crumbs li + li::before { content: "/"; margin-right: 8px; }
.crumbs a { color: rgba(255,255,255,.82); text-decoration: none; }
.crumbs a:hover { color: var(--white); }

/* Шапка без фотографии — для текстовых документов вроде оферты.
   Ключ такой страницы должен стоять в SOLID_HEADER в build.py: меню на
   светлом фоне набрано тёмным, а поверх фотографии оно белое. */
.page-head--plain {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding-bottom: clamp(34px, 4vw, 52px);
}
.page-head--plain::after { content: none; }
.page-head--plain h1 { color: var(--ink); }
.page-head--plain p { color: var(--muted); }
.page-head--plain .crumbs li { color: var(--grey); }
.page-head--plain .crumbs a { color: var(--muted); }
.page-head--plain .crumbs a:hover { color: var(--accent-deep); }

/* Дата редакции: документ меняется, и клиенту важно видеть, какая версия
   действует сейчас. */
.page-head__rev {
  margin-top: 18px;
  font-size: .84rem; letter-spacing: .04em;
  color: var(--grey);
}

/* ---------- Текстовый документ (оферта) ---------- */

/* Одна колонка около 70 символов: сплошной юридический текст во всю ширину
   экрана взглядом не удержать — строка теряется при переходе на следующую. */
.doc {
  max-width: 74ch;
  margin-inline: auto;
  font-size: 1rem;
}
.doc p { color: var(--muted); }

.doc__intro {
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 2.6vw, 30px);
  margin-bottom: clamp(30px, 4vw, 46px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.doc__intro p:last-child { margin-bottom: 0; }

.doc__sec + .doc__sec { margin-top: clamp(30px, 4vw, 46px); }
.doc__sec h2 {
  font-size: clamp(1.2rem, 1.05rem + .7vw, 1.55rem);
  margin-bottom: .55em;
  /* Тонкая золотая черта под номером раздела — тот же приём, что у шагов
     на главной, чтобы документ не выпадал из вида остального сайта. */
  padding-bottom: .4em;
  border-bottom: 2px solid var(--gold);
}

.doc__list {
  margin: 0 0 1.2em; padding: 0;
  list-style: none;
  display: grid; gap: 10px;
}
.doc__list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}
.doc__list li::before {
  content: ""; position: absolute;
  left: 6px; top: .62em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-deep);
}

/* Реквизиты в конце документа идут той же таблицей, что и на контактах */
.doc .legal__list { margin-top: 4px; }

/* =========================================================================
   Сетки и карточки
   ========================================================================= */

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.svc {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc__media { position: relative; aspect-ratio: 8 / 5; overflow: hidden; background: var(--soft); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.05); }
.svc__icon {
  position: absolute; left: 14px; bottom: 14px;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: var(--r-pill); color: var(--ink);
}
.svc__icon svg { width: 20px; height: 20px; }
.svc__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.svc__body h3 { margin: 0; }
/* Карточка целиком — ссылка, поэтому цвет текста задаём явно,
   иначе описание унаследует цвет ссылки. */
.svc__body p { font-size: .95rem; margin: 0; flex: 1; color: var(--muted); }
.svc__body .link-arrow { margin-top: 10px; font-size: .86rem; }

/* Плитка с иконкой (преимущества / что входит) */
.tiles { display: grid; gap: var(--gap); }
.tile {
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-md);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.tile:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tile__mark {
  width: 40px; height: 40px; margin-bottom: 18px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: #e6fafc;
  background: color-mix(in srgb, var(--accent) 14%, var(--white));
  color: var(--accent-deep);
}
.tile__mark svg { width: 19px; height: 19px; }
.tile h3 { font-size: 1.1rem; margin-bottom: .35em; }
.tile p { font-size: .94rem; margin: 0; }

/* Карточка класса обслуживания с ценой.
   Цену обязан показывать сам сайт (требование к сайту турагентства), поэтому
   она набрана крупно и стоит выше описания: посетитель ищет глазами число. */
.plan {
  display: flex; flex-direction: column;
  padding: 30px 28px 28px;
  background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-md);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.plan:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.plan__name {
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.plan__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 2px; }
.plan__price span { font-size: .9rem; color: var(--muted); }
.plan__price strong {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.4vw, 2rem); font-weight: 600;
  line-height: 1.1; color: var(--ink);
}
.plan__unit { font-size: .84rem; color: var(--muted); margin-bottom: 18px; }
.plan__text { font-size: .95rem; margin-bottom: 0; }
/* flex: 1 на списке — чтобы кнопки у всех трёх карточек стояли на одной линии,
   даже когда описания разной длины. */
.plan__list { flex: 1; margin-top: 18px; }
.plan__list li { font-size: .92rem; }
.plan .btn { margin-top: 26px; align-self: flex-start; }

.plan-extra { margin-top: clamp(34px, 4vw, 54px); }
.plan-extra h3 { font-size: 1.12rem; margin-bottom: .6em; }
.plan-note {
  margin-top: 26px; margin-bottom: 0;
  font-size: .92rem; color: var(--muted);
}

/* Нумерованные шаги */
.steps { counter-reset: step; display: grid; gap: var(--gap); }
.step { position: relative; padding-top: 22px; border-top: 1px solid var(--line); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; margin-bottom: 14px;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold); line-height: 1;
}
.step h3 { font-size: 1.08rem; margin-bottom: .35em; }
.step p { font-size: .94rem; margin: 0; }

/* =========================================================================
   Разделённая секция (текст + фото)
   ========================================================================= */

.split {
  display: grid; gap: clamp(32px, 5vw, 72px);
  align-items: center; grid-template-columns: 1fr 1fr;
}
/* isolation обязателен: у декоративной рамки ниже z-index: -1, и без
   собственного контекста наложения она уезжала за фон секции —
   на светлых .section--soft / .section--cream её просто не было видно. */
.split__media { position: relative; isolation: isolate; }
.split__media img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.split__media::after {
  content: ""; position: absolute; inset: auto -16px -16px auto;
  width: 52%; height: 44%; z-index: -1;
  border: 1px solid var(--gold); border-radius: var(--r-lg);
}
.split--rev .split__media { order: 2; }

.checks { list-style: none; display: grid; gap: 13px; margin: 26px 0 0; }
.checks li { position: relative; padding-left: 30px; font-size: .97rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .38em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-deep) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.checks li strong { color: var(--ink); }

/* Список направлений: волосяные строки вместо коробок — спокойнее и легче */
.pill-list { list-style: none; display: grid; margin: 0; }
.pill-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
  font-size: .98rem; color: var(--ink);
}
.pill-list li:first-child { border-top: 1px solid var(--line); }
.pill-list li::before {
  content: ""; flex: none; width: 5px; height: 5px; margin-top: .68em;
  background: var(--gold); border-radius: 50%;
}

/* Заметка / предупреждение */
.notice {
  display: flex; gap: 16px;
  padding: 22px 24px;
  background: var(--cream);
  border: 1px solid #f5e6ca;
  border: 1px solid color-mix(in srgb, var(--gold) 45%, var(--white));
  border-left: 2px solid var(--gold);
  border-radius: var(--r-sm);
}
.notice__icon { flex: none; color: var(--ink); }
.notice__icon svg { width: 22px; height: 22px; }
.notice h3 { font-size: 1.02rem; margin-bottom: .3em; }
.notice p { font-size: .94rem; margin: 0; }

/* =========================================================================
   Галерея
   ========================================================================= */

.gallery { display: grid; gap: clamp(10px, 1.4vw, 18px); grid-template-columns: repeat(4, 1fr); }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--r-sm); background: var(--soft); }
.gallery img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .7s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }

/* =========================================================================
   FAQ — волосяные строки, без рамок
   ========================================================================= */

.faq { display: grid; max-width: 62rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 2px;
  font-family: var(--font-head); font-size: clamp(1.02rem, .98rem + .2vw, 1.16rem); font-weight: 700;
  color: var(--ink); cursor: pointer; list-style: none;
  transition: color .2s var(--ease);
}
.faq summary:hover { color: var(--accent-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 16px; height: 16px; margin-left: auto; margin-top: .3em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c2021' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq .faq__a { padding: 0 44px 24px 2px; font-size: .97rem; }
.faq .faq__a p { margin: 0; }

/* =========================================================================
   Полоса призыва к действию
   ========================================================================= */

.cta-band {
  position: relative; isolation: isolate;
  padding: clamp(64px, 8vw, 116px) 0;
  color: var(--white); text-align: center;
}
.cta-band__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,24,25,.78), rgba(20,24,25,.7));
}
.cta-band h2 { color: var(--white); max-width: 20ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.84); max-width: 54ch; margin-inline: auto; margin-bottom: 1.9em; }
.cta-band .phones {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px clamp(24px, 4vw, 48px);
  margin-bottom: 32px;
}
.cta-band .phones a {
  font-family: var(--font-head); font-size: clamp(1.45rem, 1rem + 2.2vw, 2.2rem); font-weight: 700;
  color: var(--white); text-decoration: none; letter-spacing: -.01em;
}
.cta-band .phones a:hover { color: var(--gold); }
.cta-band .btn-row { justify-content: center; }

/* =========================================================================
   Контакты
   ========================================================================= */

.contact-grid {
  display: grid; gap: clamp(36px, 5vw, 72px);
  grid-template-columns: 1.1fr .9fr; align-items: start;
}

.info-block { display: grid; }
.info-item {
  display: grid; gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.info-item:first-child { padding-top: 0; }
.info-item:last-child { border-bottom: 0; }
.info-item__label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--grey);
}
.info-item a, .info-item span { color: var(--ink); font-size: 1.02rem; font-weight: 500; text-decoration: none; }
.info-item a:hover { color: var(--accent-deep); }

.socials { display: flex; gap: 8px; flex-wrap: wrap; }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.socials a:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.socials svg { width: 18px; height: 18px; }

/* Форма */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .84rem; font-weight: 600; color: var(--ink); }
.field .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  background: var(--soft);
  border: 1px solid transparent; border-radius: var(--r-xs);
  /* Не меньше 16px: на iOS поле с более мелким шрифтом заставляет
     Safari «подпрыгивать» и зумить страницу при фокусе. */
  font-size: max(16px, .97rem);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--grey); }
.field textarea { min-height: 150px; padding-top: 14px; resize: vertical; line-height: 1.6; }
.field select {
  -webkit-appearance: none; appearance: none;
  padding-right: 44px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235e6b6e' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  /* background-color, а не background: иначе сокращённая запись стёрла бы
     нарисованную стрелку у <select> при фокусе */
  background-color: var(--white);
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(5, 215, 230, .2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
.form__row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.form { accent-color: var(--accent-deep); }

/* Согласие с офертой. Квадратик выровнен по первой строке текста, а не по
   центру блока: при переносе на три строки центрирование уводит его вниз. */
.consent {
  display: flex; align-items: flex-start; gap: 11px;
  margin-top: 4px;
  font-size: .88rem; line-height: 1.55; color: var(--muted);
  cursor: pointer;
}
.consent input { flex: none; width: 17px; height: 17px; margin-top: .16em; cursor: pointer; }
.consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.consent a:hover { color: var(--accent-deep); }

.form-note {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 15px 18px;
  background: var(--cream);
  border: 1px solid #f5e6ca;
  border: 1px solid color-mix(in srgb, var(--gold) 45%, var(--white));
  border-radius: var(--r-sm);
  font-size: .92rem;
}
.form-note svg { flex: none; margin-top: .15em; }
/* Пустым остаётся в потоке: role="status" надёжнее озвучивает появление
   текста, если элемент не переключался из display: none */
.form-status { font-size: .95rem; font-weight: 600; }
.form-status.is-ok  { color: #1e7a4d; }
.form-status.is-err { color: #c0392b; }

/* Реквизиты и лицензия — обязательный по лицензионным требованиям блок */
.legal {
  margin-top: clamp(44px, 6vw, 76px);
  padding: clamp(28px, 4vw, 44px);
  background: var(--soft);
  border-radius: var(--r-md);
}
.legal__head { max-width: 60ch; margin-bottom: clamp(22px, 3vw, 32px); }
.legal__head h2 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem); margin-bottom: .3em; }
.legal__head p { font-size: .95rem; margin: 0; }
.legal__list { display: grid; gap: 0; margin: 0; }
.legal__list > div {
  display: grid; gap: 4px 32px;
  grid-template-columns: minmax(180px, 22%) 1fr;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.legal__list dt {
  font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--grey);
  padding-top: .25em;
}
.legal__list dd { margin: 0; color: var(--ink); font-size: 1rem; font-weight: 500; }
.legal__list dd a { color: var(--ink); text-decoration: none; }
.legal__list dd a:hover { color: var(--accent-deep); }

@media (max-width: 640px) {
  .legal__list > div { grid-template-columns: 1fr; gap: 2px; }
  .legal__list dt { padding-top: 0; }
}

.map-frame {
  margin-top: clamp(44px, 6vw, 76px);
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
}
.map-frame iframe { display: block; width: 100%; height: clamp(280px, 42vw, 440px); border: 0; }
.map-frame__empty {
  display: grid; place-items: center; gap: 8px;
  min-height: 240px; padding: 40px; text-align: center; color: var(--grey);
}
.map-frame__empty strong { color: var(--ink); font-family: var(--font-head); font-size: 1.1rem; }
.map-frame__empty .ico { width: 30px; height: 30px; }

/* =========================================================================
   Страница 404
   ========================================================================= */

.nf { display: grid; place-items: center; min-height: 100svh; padding: 80px 0; text-align: center; }
.nf .wrap { display: grid; gap: 32px; justify-items: center; }
.nf__logo { display: block; }
.nf__logo img { width: auto; height: clamp(96px, 16vw, 140px); }
.nf__code {
  font-family: var(--font-head); font-weight: 700; line-height: 1;
  font-size: clamp(4.5rem, 16vw, 9rem);
  color: var(--ink); margin: 0; letter-spacing: -.03em;
}
.nf__code::after {
  content: ""; display: block; width: 48px; height: 1px;
  margin: 24px auto 0; background: var(--gold);
}
.nf__lang { max-width: 44ch; display: grid; gap: 12px; justify-items: center; }
.nf__lang h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin: 0; }
.nf__lang p { margin: 0; }
.nf__lang .btn { margin-top: 8px; }

/* =========================================================================
   Подвал
   ========================================================================= */

.footer {
  background: var(--ink); color: rgba(255,255,255,.66);
  padding: clamp(56px, 7vw, 92px) 0 0;
  font-size: .95rem;
}
.footer h2, .footer h3 { color: var(--white); }
.footer a { color: rgba(255,255,255,.66); text-decoration: none; }
.footer a:hover { color: var(--gold); }

.footer__grid { display: grid; gap: clamp(30px, 4vw, 52px); grid-template-columns: 1.7fr 1fr 1fr 1.2fr; }
.footer__brand .logo { color: var(--white); font-size: 1.5rem; margin: 0 0 14px; }
.footer__brand .logo__mark { width: 56px; height: 56px; padding: 5px; }
.footer__brand .logo__text em { color: var(--gold); }
.footer__brand p { font-size: .94rem; max-width: 36ch; }
.footer h3 {
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: grid; gap: 10px; font-size: .94rem; }

/* Принимаемые карты. Значки набраны текстом в фирменных цветах — своих
   файлов логотипов у нас пока нет, а на тёмном подвале белая плашка с
   надписью читается так же однозначно, как картинка. */
.pay {
  margin-top: clamp(34px, 4.5vw, 56px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px;
}
.pay__title { font-size: .82rem; color: rgba(255,255,255,.5); }
.pay__row { display: flex; flex-wrap: wrap; gap: 10px; }
.pay__item {
  display: inline-flex; align-items: center; gap: 6px;
  height: 30px; padding: 0 12px;
  background: var(--white); border-radius: 5px;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 800;
  letter-spacing: .04em; line-height: 1;
  white-space: nowrap;
}
.pay__item--visa      { color: #1a1f71; font-style: italic; letter-spacing: .08em; }
.pay__item--mastercard{ color: #1c2021; font-weight: 600; letter-spacing: 0; }
.pay__item--uzcard    { color: #0b4ea2; }
.pay__item--humo      { color: #e05b1e; }
/* Две пересекающиеся окружности Mastercard: перекрытие даёт тот самый
   оранжево-красный сегмент, поэтому смешивание обязательно. */
.pay__mc { position: relative; width: 26px; height: 16px; }
.pay__mc::before, .pay__mc::after {
  content: ""; position: absolute; top: 0;
  width: 16px; height: 16px; border-radius: 50%;
  mix-blend-mode: multiply;
}
.pay__mc::before { left: 0;  background: #eb001b; }
.pay__mc::after  { left: 10px; background: #f79e1b; }

/* Полоса карт уже отбила подвал от колонок — второй такой же отступ лишний. */
.pay + .footer__bottom { margin-top: clamp(22px, 2.6vw, 32px); }

.footer__bottom {
  margin-top: clamp(40px, 5vw, 64px);
  padding: 20px 0 calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  align-items: center; justify-content: space-between;
  font-size: .86rem; color: rgba(255,255,255,.5);
}

/* Кнопка «наверх» */
.to-top {
  position: fixed; right: clamp(14px, 2vw, 24px);
  bottom: calc(clamp(14px, 2vw, 24px) + env(safe-area-inset-bottom));
  z-index: 90;
  width: 46px; height: 46px; display: grid; place-items: center;
  background: rgba(28, 32, 33, .88); color: var(--white);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: none; border-radius: var(--r-pill); cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease),
              visibility .3s, background .2s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--accent-deep); }
.to-top svg { width: 19px; height: 19px; }

/* Появление при прокрутке.
   Прячем только если JS доступен (класс .js ставится скриптом в <head>) —
   иначе при отключённом или упавшем JS содержимое осталось бы невидимым. */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* =========================================================================
   Адаптив. Числа держим в согласии с SIZES_* в build.py.
   ========================================================================= */

/* Ноутбук: телефон в шапке начинает теснить меню — убираем его,
   номера остаются в тёмной полосе под героем и в подвале */
@media (max-width: 1180px) {
  .header-phone { display: none; }
}

@media (max-width: 1120px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Планшет */
@media (max-width: 900px) {
  :root { --header-h: 66px; --header-h-min: 58px; }
  .nav { display: none; }
  .burger { display: inline-flex; }
  .lang { margin-left: auto; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media::after { display: none; }
  .split__media img { border-radius: var(--r-md); box-shadow: var(--shadow-md); }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: min(88svh, 720px); }
  .hero__inner { max-width: none; }
  .faq .faq__a { padding-right: 0; }
}

/* Телефон */
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  /* Кнопки тянутся на всю строку и переносятся, если вдвоём не помещаются:
     подпись из двух слов не должна ломаться пополам ради соседа */
  .btn { flex: 1 1 190px; padding-inline: 20px; }
  /* На телефоне в строку не помещаются эмблема, название, три языка и бургер.
     Название убираем — эмблемы достаточно, имя ссылки держит aria-label. */
  .header .logo__text { display: none; }
  .hero-strip .wrap { gap: 8px 18px; padding-block: 15px; }
  .hero-strip__label { width: 100%; }
  .footer__bottom { justify-content: flex-start; }
  .svc__body { padding: 20px; }
  .tile { padding: 24px 22px; }
  .notice { padding: 20px; }
}

/* Совсем узкие экраны (320–360px) */
@media (max-width: 380px) {
  .lang a { padding: 6px 9px; }
  .btn { flex: 1 1 100%; }
}

/* Крупные мониторы: не даём тексту расползаться */
@media (min-width: 1600px) {
  :root { --wrap: 1280px; }
}

@media print {
  .header, .mobile-nav, .to-top, .cta-band, .hero__bg, .skip-link { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .section { padding: 16pt 0; }
  a { color: #000; text-decoration: underline; }
}

/* =========================================================================
   Мелкие утилиты (вместо инлайновых style= в шаблонах)
   ========================================================================= */

.mt-8  { margin-top: 8px; }
.mt-18 { margin-top: 18px; }
.mt-28 { margin-top: 28px; }
.mt-30 { margin-top: 30px; }
.mt-34 { margin-top: 34px; }

.btn-row--mid { align-items: center; }
.form-note--gap { margin: 20px 0 24px; }
.header-phone--inline { display: inline-flex; }

/* Соцсети в тёмном подвале */
.socials--footer a { border-color: rgba(255, 255, 255, .2); color: #fff; }
.socials--footer a:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
