/* Палитра ТЗ + голубой акцент логотипа */
:root {
  --pine: #1E6B4E;          /* тёмный хвойный зелёный */
  --pine-deep: #0B5A6E;     /* глубокий сине-бирюзовый (вода) */
  --mineral: #10A8C8;       /* голубой логотипа */
  --lake: #10A8C8;
  --lake-soft: #4FC0D4;
  --sky: #10A8C8;           /* основной цвет логотипа */
  --sky-deep: #0A7FA0;      /* насыщенный голубой */
  --sky-bright: #2BC0DC;    /* светлый акцент */
  --sky-soft: #7DD4E5;
  --sand: #E5E6C8;          /* песочный / бежевый (пляж) */
  --sand-accent: #c4b896;
  --sand-light: #f4f4ea;
  --mint: #e8f5fa;          /* холодный голубоватый фон */
  --sky-mist: #e6f7fb;
  --foam: #FFFFFF;          /* белый — воздух, чистота */
  --text: #333333;          /* тёмный текст */
  --muted: #5a6b72;
  --white: #FFFFFF;
  --line: rgba(10, 127, 160, 0.16);
  --radius: 14px;
  --shadow: 0 16px 40px rgba(10, 127, 160, 0.12);
  --header-h: 78px;
  --font-display: "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  /* лёгкий узор для белых фонов */
  --bg-white:
    radial-gradient(ellipse 720px 420px at 6% 8%, rgba(16, 168, 200, 0.055), transparent 60%),
    radial-gradient(ellipse 640px 380px at 96% 18%, rgba(10, 127, 160, 0.04), transparent 55%),
    radial-gradient(ellipse 580px 360px at 78% 92%, rgba(196, 184, 150, 0.07), transparent 58%),
    radial-gradient(circle, rgba(15, 76, 92, 0.045) 1px, transparent 1.2px),
    repeating-linear-gradient(
      -16deg,
      transparent 0,
      transparent 34px,
      rgba(15, 76, 92, 0.03) 34px,
      rgba(15, 76, 92, 0.03) 35px
    );
  --bg-white-size: auto, auto, auto, 26px 26px, auto;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background-color: #fff;
  background-image: var(--bg-white);
  background-size: var(--bg-white-size);
  background-attachment: fixed;
  line-height: 1.55;
}
@media (max-width: 900px) {
  body { background-attachment: scroll; }
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

/* demo ribbon */
.demo-ribbon {
  position: relative;
  z-index: 100;
  background: var(--pine-deep);
  color: #d7ebe1;
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
}
.demo-ribbon strong { color: #fff; }

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background-color: #fff;
  background-image:
    radial-gradient(circle, rgba(15, 76, 92, 0.035) 1px, transparent 1.2px),
    linear-gradient(#fff, #fff);
  background-size: 22px 22px, auto;
  border-bottom: 1px solid rgba(16, 168, 200, 0.1);
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.header.is-scrolled {
  border-color: rgba(16, 168, 200, 0.14);
  box-shadow: 0 8px 28px rgba(10, 90, 110, 0.08);
  background-color: #fff;
  background-image:
    radial-gradient(circle, rgba(15, 76, 92, 0.04) 1px, transparent 1.2px),
    linear-gradient(#fff, #fff);
  background-size: 22px 22px, auto;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  min-width: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; }
.logo__text {
  display: none; /* надпись уже в самом логотипе */
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: -0.02em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
}
.nav > a,
.nav__more-btn {
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pine-deep);
  padding: 7px 8px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.nav > a:hover,
.nav__more-btn:hover,
.nav__more.is-open .nav__more-btn {
  color: var(--sky-deep);
  background: var(--sky-mist);
}
.nav__more {
  position: relative;
}
.nav__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.nav__more-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(10, 127, 160, 0.16);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 100;
}
.nav__more.is-open .nav__more-menu { display: flex; }
.nav__more-menu a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--pine-deep);
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
}
.nav__more-menu a:hover {
  background: var(--sky-mist);
  color: var(--sky-deep);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700;
  color: var(--sky-deep);
  white-space: nowrap;
  font-size: 0.82rem;
}
.header__phone svg { flex-shrink: 0; }
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  place-items: center;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--sky-deep);
  margin: 3px 0;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--sky-bright), var(--sky-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(16, 168, 200, 0.35);
}
.btn--primary:hover { background: linear-gradient(135deg, #3fc8e0, #096f8c); }
.btn--mineral {
  background: var(--sky);
  color: #fff;
  box-shadow: 0 10px 28px rgba(16, 168, 200, 0.32);
}
.btn--mineral:hover { background: var(--sky-deep); }
.btn--sand {
  background: var(--sand);
  color: var(--text);
  box-shadow: 0 10px 28px rgba(229, 230, 200, 0.55);
}
.btn--sand:hover { background: #dbdcc0; }
.btn--ghost {
  background: transparent;
  color: var(--pine-deep);
  border: 1.5px solid rgba(10, 127, 160, 0.28);
}
.btn--ghost:hover { background: var(--sky-mist); color: var(--sky-deep); }
.btn--cabinet {
  background: #fff;
  color: var(--sky-deep);
  border: 1.5px solid var(--sky);
}
.btn--cabinet:hover {
  background: var(--sky);
  color: #fff;
}
.btn--light {
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn--sm { padding: 8px 12px; font-size: 0.78rem; }

.header__cta-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

@media (max-width: 1180px) {
  .header__cta--soft { display: none; }
  .header__phone span { display: none; }
  .header__phone {
    width: 36px;
    height: 36px;
    justify-content: center;
    border-radius: 10px;
    background: var(--sky-mist);
  }
}
@media (max-width: 1080px) {
  .header__cta--mid { display: none; }
}

/* ========== HERO cinematic (яркий) ========== */
.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
  background: #062a35;
  isolation: isolate;
}
.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: -4%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.14) translate3d(0, 18px, 0);
  filter: saturate(1.45) contrast(1.18) brightness(1.08);
  transition:
    opacity 1.15s cubic-bezier(.22,1,.36,1),
    transform 7.5s cubic-bezier(.16,1,.3,1),
    filter 1.2s ease;
  will-change: opacity, transform;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
  z-index: 1;
}
.hero__slide.is-leaving {
  opacity: 0;
  transform: scale(1.06) translate3d(0, -10px, 0);
  z-index: 2;
  transition: opacity .9s ease, transform 1.1s ease;
}
.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 55% at 78% 18%, rgba(16,168,200,.55), transparent 58%),
    radial-gradient(ellipse 55% 50% at 12% 75%, rgba(10,127,160,.5), transparent 55%),
    radial-gradient(ellipse 40% 35% at 55% 90%, rgba(229,230,200,.28), transparent 60%);
  mix-blend-mode: soft-light;
  animation: heroMesh 10s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroMesh {
  from { opacity: .85; transform: scale(1); }
  to { opacity: 1; transform: scale(1.1); }
}
.hero__orbs { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: .9;
  animation: heroLevitate 7s ease-in-out infinite;
}
.hero__orb--a {
  width: 280px; height: 280px;
  left: 55%; top: 10%;
  background: radial-gradient(circle at 30% 30%, rgba(255,248,210,.85), rgba(16,168,200,.45) 40%, transparent 68%);
  filter: blur(1px);
  animation-duration: 8.5s;
}
.hero__orb--b {
  width: 180px; height: 180px;
  left: 74%; top: 52%;
  background: radial-gradient(circle at 40% 40%, rgba(43,192,220,.7), rgba(10,127,160,.35) 55%, transparent 72%);
  animation-duration: 6.2s;
  animation-delay: -2s;
}
.hero__orb--c {
  width: 120px; height: 120px;
  left: 46%; top: 68%;
  background: radial-gradient(circle, rgba(255,255,255,.7), rgba(229,230,200,.4) 45%, transparent 70%);
  animation-duration: 5.4s;
  animation-delay: -1s;
}
@keyframes heroLevitate {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(14px, -26px, 0) scale(1.1); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(115deg,
      rgba(6, 50, 42, .72) 0%,
      rgba(8, 70, 58, .42) 28%,
      rgba(15, 76, 92, .18) 52%,
      rgba(6, 42, 55, .35) 100%),
    linear-gradient(180deg,
      rgba(0, 30, 28, .35) 0%,
      transparent 32%,
      rgba(4, 40, 36, .55) 100%);
}
.hero__shine {
  position: absolute;
  inset: -20% -30%;
  z-index: 5;
  background: linear-gradient(115deg,
    transparent 36%,
    rgba(255,255,255,.18) 47%,
    rgba(255,236,170,.35) 51%,
    rgba(16,168,200,.2) 56%,
    transparent 66%);
  animation: heroShine 7.5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes heroShine {
  0%, 100% { transform: translateX(-18%) rotate(0deg); opacity: .55; }
  50% { transform: translateX(22%) rotate(2deg); opacity: 1; }
}

.hero__layout {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 96px;
  min-height: min(92vh, 920px);
}
.hero__content { max-width: 640px; }
.hero-anim {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  filter: blur(8px);
  animation: heroReveal .95s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroReveal {
  to { opacity: 1; transform: translate3d(0,0,0); filter: blur(0); }
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(16,168,200,.45), rgba(10,127,160,.55));
  border: 1px solid rgba(229,230,200,.55);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 8px 28px rgba(16,168,200,.35);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.hero__pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #ffe88a;
  box-shadow: 0 0 0 0 rgba(255,232,138,.8);
  animation: heroPulse 2s ease-out infinite;
}
@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,232,138,.75); }
  70% { box-shadow: 0 0 0 14px rgba(255,232,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,232,138,0); }
}
.hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-shadow: 0 8px 40px rgba(0,0,0,.35);
}
.hero h1 em {
  font-style: italic;
  display: inline-block;
  background: linear-gradient(115deg, #fff6c2 0%, #ffe36a 35%, #7dffd0 70%, #2ad4b4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 18px rgba(16,168,200,.35));
  animation: heroEm 4s ease-in-out infinite alternate;
}
@keyframes heroEm {
  from { filter: drop-shadow(0 6px 18px rgba(16,168,200,.3)) brightness(1); }
  to { filter: drop-shadow(0 8px 24px rgba(255,227,106,.45)) brightness(1.12); }
}
.hero__lead {
  margin: 0 0 28px;
  max-width: 34rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: #f4fff9;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__actions .btn--primary {
  background: linear-gradient(135deg, #2BC0DC, #10A8C8 50%, #0A7FA0);
  box-shadow: 0 14px 36px rgba(16,168,200,.55);
}
.hero__actions .btn--sand {
  background: linear-gradient(135deg, #fff6b8, #E5E6C8 60%, #d4d6a8);
  color: #0B5A6E;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(229,230,200,.45);
}
.hero__actions .btn--light {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
}
.hero__btn-glow {
  position: relative;
  animation: heroBtnGlow 2.4s ease-in-out infinite;
}
@keyframes heroBtnGlow {
  0%, 100% { box-shadow: 0 14px 36px rgba(16,168,200,.5), 0 0 0 0 rgba(43,192,220,.55); }
  50% { box-shadow: 0 18px 48px rgba(16,168,200,.65), 0 0 0 12px rgba(43,192,220,0); }
}
.hero__stats {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.28);
  flex-wrap: wrap;
}
.hero__stat {
  min-width: 120px;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(16,168,200,.35), rgba(10,127,160,.45));
  border: 1px solid rgba(229,230,200,.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hero__stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(16,168,200,.35);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff8d0;
}
.hero__stat span { font-size: 0.8rem; color: rgba(255,255,255,.88); }

/* floating cards — ярче */
.hero__float {
  position: relative;
  height: min(520px, 58vh);
  margin-bottom: 24px;
}
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.28), rgba(16,168,200,.28));
  border: 1px solid rgba(255,246,194,.55);
  backdrop-filter: blur(18px) saturate(1.35);
  box-shadow:
    0 22px 50px rgba(8, 24, 30, 0.4),
    0 0 0 1px rgba(255,255,255,.12) inset;
  color: #fff;
  animation: floatBob 5.5s ease-in-out infinite;
  will-change: transform;
}
.float-card--1 {
  right: 4%;
  top: 8%;
  width: min(280px, 86%);
  animation-duration: 6.2s;
}
.float-card--2 {
  left: 2%;
  top: 42%;
  width: auto;
  padding: 14px 18px;
  animation-duration: 5.2s;
  animation-delay: -1.4s;
  background: linear-gradient(145deg, rgba(255,232,138,.35), rgba(10,127,160,.5));
}
.float-card--3 {
  right: 12%;
  bottom: 4%;
  width: min(250px, 80%);
  animation-duration: 7s;
  animation-delay: -2.2s;
}
@keyframes floatBob {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-.4deg); }
  50% { transform: translate3d(0, -18px, 0) rotate(.6deg); }
}
.float-card__media {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
  border: 2px solid rgba(255,246,194,.5);
}
.float-card__media--sm { width: 58px; height: 58px; }
.float-card__body span,
.float-card span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .9;
  font-weight: 800;
  color: #ffe88a;
}
.float-card__body strong,
.float-card strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.float-card--2 strong { font-size: 1.7rem; line-height: 1; color: #fff6c2; }
.float-card__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #2BC0DC, #0A7FA0);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 8px 18px rgba(16,168,200,.45);
}

.hero__controls {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.hero__dots { display: flex; gap: 8px; }
.hero__dot {
  width: 10px; height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: width .35s ease, background .35s ease, box-shadow .35s ease;
}
.hero__dot.is-active {
  width: 30px;
  background: linear-gradient(90deg, #ffe36a, #10A8C8);
  box-shadow: 0 0 16px rgba(255,227,106,.55);
}
.hero__progress {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.2);
  border-radius: 999px;
  overflow: hidden;
  max-width: 220px;
}
.hero__progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #10A8C8, #ffe36a, #1E6B4E);
  border-radius: inherit;
  box-shadow: 0 0 12px rgba(16,168,200,.6);
}
.hero__scroll {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff6c2;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.hero__scroll i {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,246,194,.7);
  border-radius: 999px;
  position: relative;
  background: rgba(16,168,200,.2);
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 4px; height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: #ffe36a;
  animation: heroScrollDot 1.6s ease-in-out infinite;
}
@keyframes heroScrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

@media (max-width: 980px) {
  .hero__layout {
    grid-template-columns: 1fr;
    padding: 96px 0 110px;
    align-items: start;
    min-height: auto;
  }
  .hero__float {
    height: 280px;
    order: -1;
    margin: 0 0 8px;
  }
  .float-card--1 { top: 0; right: 0; }
  .float-card--2 { left: 0; top: 38%; }
  .float-card--3 { right: 4%; bottom: 0; }
}
@media (max-width: 640px) {
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero__float { display: none; }
  .hero__controls { flex-wrap: wrap; }
  .hero__progress { max-width: none; width: 100%; order: 3; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide, .hero-anim, .float-card, .hero__orb, .hero__mesh, .hero__shine, .hero__btn-glow, .hero__pulse, .hero__scroll i::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-anim { opacity: 1; transform: none; filter: none; }
  .hero__slide.is-active { transform: none; }
}

/* sections common */
.section { padding: clamp(56px, 8vw, 96px) 0; }
/* обычные белые секции — показывают узор body */
.section:not([class*="section--"]) {
  background: transparent;
}
.section--mint { background: var(--sky-mist); }
.section--sand { background: var(--sand-light); }
.section--pine {
  background: linear-gradient(160deg, #074a5c, #0B5A6E 45%, #0A7FA0 78%, #1E6B4E);
  color: #fff;
}
.section__head {
  max-width: 640px;
  margin-bottom: 36px;
}
.section__kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lake);
}
.section--pine .section__kicker { color: #a8e8f4; }
.section__head h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--pine-deep);
}
.section--pine .section__head h2 { color: #fff; }
.section__head h2 em { font-style: italic; color: var(--sky); }
.section--pine .section__head h2 em { color: #9fe6f5; }
.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}
.section--pine .section__head p { color: rgba(255,255,255,.78); }

/* advantages */
.section--adv {
  background-color: #fff;
  background-image: var(--bg-white);
  background-size: var(--bg-white-size);
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.adv-card {
  position: relative;
  background: linear-gradient(165deg, #fff 0%, #f7fbfd 100%);
  border: 1px solid rgba(16,168,200,.14);
  border-radius: 20px;
  padding: 24px 22px 22px;
  box-shadow: 0 10px 28px rgba(10, 90, 110, 0.05);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}
.adv-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #2BC0DC, #0A7FA0);
  opacity: 0;
  transition: opacity .28s ease;
}
.adv-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16,168,200,.35);
  box-shadow: 0 18px 40px rgba(16,168,200,.14);
}
.adv-card:hover::after { opacity: 1; }
.adv-card__ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--sky-deep);
  background: linear-gradient(145deg, rgba(43,192,220,.22), rgba(10,127,160,.14));
  border: 1px solid rgba(16,168,200,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  transition: transform .28s ease, background .28s ease, color .28s ease;
}
.adv-card__ico svg {
  width: 24px;
  height: 24px;
}
.adv-card:hover .adv-card__ico {
  transform: scale(1.06);
  background: linear-gradient(145deg, #2BC0DC, #0A7FA0);
  color: #fff;
  border-color: transparent;
}
.adv-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 750;
  color: var(--pine-deep);
  letter-spacing: -0.01em;
}
.adv-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* rooms */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(15, 36, 28, 0.05);
}
.room-card__img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.room-card__body { padding: 18px 18px 20px; }
.room-card__body h3 { margin: 0 0 6px; color: var(--sky-deep); font-size: 1.1rem; }
.room-card__meta { color: var(--muted); font-size: 0.88rem; margin-bottom: 12px; }
.room-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sky-deep);
  margin-bottom: 14px;
}
.room-card__price span { font-size: 0.85rem; color: var(--muted); font-family: var(--font-body); }

.booking-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.booking-panel h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--sky-deep);
}
.booking-panel > p { margin: 0 0 18px; color: var(--muted); }
.booking-frame {
  min-height: 280px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(42,111,124,.08), rgba(26,61,46,.06)),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(26,61,46,.03) 10px, rgba(26,61,46,.03) 20px);
  border: 1.5px dashed rgba(26, 61, 46, 0.2);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  color: var(--muted);
}
.booking-frame strong { display: block; color: var(--sky-deep); margin-bottom: 6px; font-size: 1.05rem; }

/* treatment */
.treat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.treat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  color: #fff;
  box-shadow: var(--shadow);
}
.treat-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .45s ease;
}
.treat-card:hover .treat-card__bg { transform: scale(1.06); }
.treat-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,36,28,.2), rgba(15,36,28,.85));
}
.treat-card__body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 320px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.treat-card h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.35rem; }
.treat-card p { margin: 0 0 16px; color: rgba(255,255,255,.82); font-size: 0.92rem; }

/* placeholders / calc */
.calc-box {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15,36,28,.05);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.calc-box--dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.calc-mock {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  min-width: 0;
  max-width: 100%;
}
.calc-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 10px;
  min-width: 0;
}
.calc-row--2 {
  grid-template-columns: 1fr 1fr;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.field span { font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.calc-box--dark .field span { color: rgba(255,255,255,.65); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  background: #fff;
  color: var(--text);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.calc-box--dark .field input,
.calc-box--dark .field select,
.calc-box--dark .field textarea {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: #fff;
  color-scheme: dark;
}
.calc-box--dark .field input::placeholder,
.calc-box--dark .field textarea::placeholder {
  color: rgba(255,255,255,.88);
  opacity: 1;
}
.calc-box--dark .field input::-webkit-input-placeholder,
.calc-box--dark .field textarea::-webkit-input-placeholder {
  color: rgba(255,255,255,.88);
  opacity: 1;
}
.calc-box--dark .field select {
  color: #fff;
}
.calc-box--dark .field select option {
  color: #333;
  background: #fff;
}
.calc-note {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--muted);
}
.calc-box--dark .calc-note { color: rgba(255,255,255,.65); }

/* nutrition */
.nutrition {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.nutrition__visual {
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
  background:
    linear-gradient(160deg, rgba(26,61,46,.35), rgba(15,36,28,.55)),
    url("../img/hero2.jpg") center/cover;
  box-shadow: var(--shadow);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--sky-deep);
  font-size: 0.84rem;
  font-weight: 600;
}

/* promos */
.section--promos {
  position: relative;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.promo-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  min-height: 300px;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  border: 1px solid rgba(16,168,200,.12);
  box-shadow: 0 14px 36px rgba(10, 90, 110, 0.1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(16, 168, 200, 0.2);
}
.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.promo-card:hover img {
  transform: scale(1.08);
}
.promo-card__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,40,55,.15) 0%, rgba(6,40,55,.28) 38%, rgba(6,40,55,.88) 100%);
  pointer-events: none;
}
.promo-card__body {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 300px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}
.promo-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.promo-card__tag--sand {
  background: rgba(229,230,200,.9);
  border-color: transparent;
  color: #0B5A6E;
}
.promo-card__tag--sale {
  left: auto;
  right: 16px;
  background: linear-gradient(135deg, #ff6b5a, #e23d2c);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(226,61,44,.35);
}
.promo-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
}
.promo-card p {
  margin: 0 0 14px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  max-width: 28ch;
}
.promo-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  font-size: 0.8rem;
  font-weight: 750;
  color: #fff;
  text-decoration: none;
  transition: background .22s, transform .22s, border-color .22s;
}
.promo-card__cta i {
  font-style: normal;
  transition: transform .22s;
}
.promo-card:hover .promo-card__cta {
  background: #fff;
  color: var(--sky-deep);
  border-color: #fff;
}
.promo-card:hover .promo-card__cta i {
  transform: translateX(3px);
}

/* tabs */
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.tabs button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}
.tabs button.is-active {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
}
.tab-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(15,36,28,.05);
}
.tab-panel.is-active { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.tab-panel h3 { margin: 0 0 10px; color: var(--sky-deep); font-family: var(--font-display); font-size: 1.5rem; }
.tab-panel p { margin: 0 0 14px; color: var(--muted); }
.tab-panel ul { margin: 0; padding-left: 18px; color: var(--muted); }
.tab-panel__img {
  border-radius: 16px;
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

/* contacts */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contacts-card, .form-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(15,36,28,.05);
}
.contact-list { list-style: none; padding: 0; margin: 0 0 18px; }
.contact-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.contact-list strong { display: block; color: var(--sky-deep); margin-bottom: 2px; }
.map-stub {
  height: 180px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(42,111,124,.15), rgba(26,61,46,.2)),
    url("../img/hero3.jpg") center/cover;
  display: grid;
  place-items: end start;
  padding: 14px;
}
.map-stub span {
  background: rgba(255,255,255,.92);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--sky-deep);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-note { font-size: 0.8rem; color: var(--muted); margin: 8px 0 0; }

/* footer */
.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #06384a 0%, #0B5A6E 45%, #0A7FA0 100%);
  color: rgba(255,255,255,.82);
  padding: 52px 0 28px;
}
.footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.footer__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(16, 168, 200, 0.22);
  opacity: .9;
}
.footer__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .45;
}
.footer__glow--a {
  width: 320px; height: 320px;
  left: -80px; top: -60px;
  background: radial-gradient(circle, rgba(16,168,200,.55), transparent 70%);
}
.footer__glow--b {
  width: 280px; height: 280px;
  right: -40px; bottom: -80px;
  background: radial-gradient(circle, rgba(229,230,200,.28), transparent 70%);
}
.footer__inner { position: relative; z-index: 1; }

.footer__accounts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
}
.footer__account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 24px;
  margin-bottom: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(16,168,200,.14));
  border: 1px solid rgba(229,230,200,.28);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.footer__account-copy {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__account h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font-display);
}
.footer__account p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,.72);
}
.footer__account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__account-actions .btn {
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.footer__account-actions .btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer__account-actions .btn--sand {
  background: linear-gradient(180deg, #f4f5e4 0%, #E5E6C8 100%);
  color: #0F4C5C !important;
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 8px 24px rgba(229,230,200,.35), inset 0 1px 0 rgba(255,255,255,.65);
}
.footer__account-actions .btn--sand:hover {
  background: linear-gradient(180deg, #fffef5 0%, #ecefd0 100%);
  color: #083642 !important;
  transform: translateY(-2px);
}
.footer__account-actions .btn--mineral {
  background: linear-gradient(180deg, #2BC0DC 0%, #10A8C8 100%);
  color: #fff !important;
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 10px 26px rgba(16,168,200,.4), inset 0 1px 0 rgba(255,255,255,.25);
}
.footer__account-actions .btn--mineral:hover {
  background: linear-gradient(180deg, #3fcce0 0%, #0A7FA0 100%);
  color: #fff !important;
  transform: translateY(-2px);
}
.footer__account-actions .btn--cabinet {
  background: linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.08) 100%);
  color: #fff !important;
  border-color: rgba(255,232,138,.55);
  box-shadow: 0 8px 22px rgba(0,0,0,.2), inset 0 0 0 1px rgba(255,232,138,.15);
}
.footer__account-actions .btn--cabinet:hover {
  background: linear-gradient(180deg, rgba(255,232,138,.28) 0%, rgba(16,168,200,.35) 100%);
  color: #fff !important;
  border-color: #ffe88a;
  transform: translateY(-2px);
}
.footer__ico {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(16,168,200,.45), rgba(10,127,160,.55));
  border: 1px solid rgba(255,246,194,.35);
  color: #ffe88a;
  flex-shrink: 0;
}
.footer__ico svg { width: 22px; height: 22px; }

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__menu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .22s, border-color .22s, transform .22s, color .22s;
}
.footer__menu a:hover {
  color: #fff;
  background: rgba(16,168,200,.28);
  border-color: rgba(16,168,200,.5);
  transform: translateY(-2px);
}
.footer__menu-ico {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #ffe88a;
}
.footer__menu-ico svg { width: 16px; height: 16px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer__brand .logo {
  margin-bottom: 14px;
  color: #fff;
}
.footer__brand .logo img {
  height: 44px;
  width: auto;
}
.footer__brand .logo__text { color: #fff; }
.footer__brand > p {
  margin: 0 0 16px;
  max-width: 34ch;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  font-size: 0.92rem;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__soc {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  transition: transform .22s, background .22s, border-color .22s, color .22s;
}
.footer__soc svg { width: 18px; height: 18px; }
.footer__soc:hover {
  transform: translateY(-3px);
  background: rgba(16,168,200,.4);
  border-color: rgba(255,232,138,.45);
  color: #ffe88a;
}

.footer h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.98rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.footer__h-ico {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(16,168,200,.25);
  color: #ffe88a;
}
.footer__h-ico svg { width: 15px; height: 15px; }

.footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.78);
  font-size: 0.92rem;
  line-height: 1.4;
}
.footer__li-ico {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: #10A8C8;
  flex-shrink: 0;
}
.footer__li-ico svg { width: 18px; height: 18px; }

.footer__bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: rgba(255,255,255,.62);
}
.footer__top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffe88a !important;
  font-weight: 700;
}
.footer__top svg { width: 16px; height: 16px; }
.footer__top:hover { opacity: .9; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(15,76,92,.05);
}
.review-card__stars { color: var(--mineral); letter-spacing: 2px; margin-bottom: 10px; }
.review-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.review-card strong { display: block; color: var(--pine-deep); }
.review-card span { font-size: 0.8rem; color: var(--muted); }
.other-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}
.section--other {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 10vw, 110px);
  padding-bottom: clamp(72px, 10vw, 110px);
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(43,192,220,.18), transparent 55%),
    radial-gradient(ellipse 50% 45% at 8% 75%, rgba(229,230,200,.45), transparent 60%),
    linear-gradient(165deg, #e8f6fb 0%, #f4fbfd 45%, #eef5f2 100%);
}
.section--other .wrap { position: relative; z-index: 1; }
.wave {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
}
.wave svg {
  display: block;
  width: 100%;
  height: clamp(48px, 7vw, 88px);
}
.wave--top {
  top: 0;
  color: var(--sky-mist);
}
.wave--bottom {
  bottom: 0;
  color: var(--sand-light);
}
.section--other .wave--top { color: var(--sky-mist); }
.section--other .wave--bottom { color: var(--sand-light); }

/* group calculator */
.section--group {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 10vw, 110px);
  padding-bottom: clamp(72px, 10vw, 110px);
  background:
    radial-gradient(ellipse 65% 50% at 12% 30%, rgba(43,192,220,.2), transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 70%, rgba(229,230,200,.4), transparent 58%),
    linear-gradient(165deg, #dff3f8 0%, #e8f6fb 48%, #e6f3ef 100%);
}
.section--group .wrap { position: relative; z-index: 1; }
.section--group .wave--top { color: #f7fafb; }
.section--group .wave--bottom { color: #f7fafb; }

.group-calc {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(16,168,200,.18);
  box-shadow: 0 22px 50px rgba(10,90,110,.12);
  background: #fff;
}
.group-calc__visual {
  position: relative;
  min-height: 320px;
  padding: 28px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(6,50,70,.15) 5%, rgba(6,40,55,.82) 100%),
    var(--img) center/cover no-repeat;
}
.group-calc__badge {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.group-calc__visual h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
}
.group-calc__visual > p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.86);
  font-size: 0.92rem;
  line-height: 1.4;
}
.group-calc__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.group-calc__chips li {
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 0.72rem;
  font-weight: 650;
}
.group-calc__panel {
  padding: 26px 24px 22px;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(43,192,220,.1), transparent 55%),
    #fff;
}
.group-calc__panel-head {
  margin-bottom: 16px;
}
.group-calc__panel-head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--sky-deep);
  margin-bottom: 4px;
}
.group-calc__panel-head span {
  font-size: 0.84rem;
  color: var(--muted);
}
.group-calc__form {
  display: grid;
  gap: 10px;
}
.group-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(16,168,200,.16);
  background: #f7fbfd;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.group-field:focus-within {
  border-color: var(--sky);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(16,168,200,.14);
}
.group-field__ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(43,192,220,.25), rgba(10,127,160,.18));
  color: var(--sky-deep);
}
.group-field__ico svg { width: 18px; height: 18px; }
.group-field__body {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.group-field__body > span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.group-field__body input,
.group-field__body select {
  border: 0;
  background: transparent;
  padding: 2px 0;
  font-size: 1rem;
  font-weight: 650;
  color: var(--pine-deep);
  outline: none;
  width: 100%;
}
.group-calc__estimate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16,168,200,.12), rgba(229,230,200,.35));
  border: 1px solid rgba(16,168,200,.2);
}
.group-calc__estimate small {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.group-calc__estimate strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sky-deep);
}
.group-calc__estimate > span {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 650;
}
.group-calc__submit { width: 100%; margin-top: 4px; }
.group-calc__note {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.35;
}

@media (max-width: 860px) {
  .group-calc { grid-template-columns: 1fr; }
  .group-calc__visual { min-height: 200px; }
}
.other-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(16,168,200,.16);
  box-shadow: 0 10px 28px rgba(10,90,110,.06);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.other-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16,168,200,.4);
  box-shadow: 0 18px 40px rgba(16,168,200,.16);
  background: #fff;
}
.other-card__ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(43,192,220,.25), rgba(10,127,160,.2));
  color: var(--sky-deep);
  flex-shrink: 0;
}
.other-card__ico svg { width: 22px; height: 22px; }
.other-card__body {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.other-card__body strong {
  font-size: 0.98rem;
  font-weight: 750;
  color: var(--pine-deep);
  line-height: 1.25;
}
.other-card__body small {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}
.other-card__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sky-mist);
  color: var(--sky-deep);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background .2s, color .2s, transform .2s;
}
.other-card:hover .other-card__arrow {
  background: var(--sky);
  color: #fff;
  transform: translateX(3px);
}
.other-card--ext .other-card__ico {
  background: linear-gradient(145deg, rgba(229,230,200,.7), rgba(16,168,200,.18));
}

/* legacy fallback if any */
.other-link {
  display: block;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--pine-deep);
  font-weight: 700;
  transition: border-color .2s, transform .2s;
}
.other-link:hover {
  border-color: var(--mineral);
  transform: translateY(-2px);
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 20px;
}
.modal.is-open { display: grid; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 12, 0.7);
  backdrop-filter: blur(5px);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.modal__dialog h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  color: var(--sky-deep);
  font-size: 1.5rem;
}
.modal__dialog p { color: var(--muted); margin: 0 0 18px; }
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--mint);
  color: var(--sky-deep);
  cursor: pointer;
  font-size: 1.2rem;
}

/* lead popup: book / calc */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  place-items: center;
  padding: 16px;
}
.lead-modal.is-open { display: grid; }
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 30, 40, 0.72);
  backdrop-filter: blur(6px);
}
.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(10, 90, 110, 0.35);
  animation: leadPop .32s cubic-bezier(.22,1,.36,1);
}
@keyframes leadPop {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to { opacity: 1; transform: none; }
}
.lead-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--sky-deep);
  font-size: 1.35rem;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.lead-modal__media {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(160deg, rgba(10,127,160,.35), rgba(6,56,74,.55)),
    var(--lead-img) center/cover no-repeat;
  color: #fff;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.lead-modal__media-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,50,70,.15) 10%, rgba(6,40,55,.78) 100%);
  pointer-events: none;
}
.lead-modal__media-body { position: relative; z-index: 1; }
.lead-modal__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.lead-modal__quote {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.25;
  font-weight: 550;
}
.lead-modal__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.lead-modal__chips li {
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 0.72rem;
  font-weight: 650;
}
.lead-modal__form-wrap {
  padding: 24px 22px 18px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.lead-modal__form-wrap h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--sky-deep);
  font-weight: 600;
}
.lead-modal__sub {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}
.lead-form {
  display: grid;
  gap: 10px;
}
.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lead-field {
  display: grid;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pine-deep);
}
.lead-field input,
.lead-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: #f7fbfd;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.lead-field input:focus,
.lead-field select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(16,168,200,.18);
  background: #fff;
}
.lead-form__submit {
  width: 100%;
  margin-top: 4px;
}
.lead-form__note {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.35;
}
.lead-form__ok {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(16,168,200,.12);
  color: var(--sky-deep);
  font-size: 0.86rem;
  font-weight: 650;
}
.lead-modal__contacts {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.lead-modal__contacts a {
  color: var(--sky-deep);
  text-decoration: none;
  font-weight: 700;
}
.lead-modal__contacts a:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .lead-modal__dialog {
    grid-template-columns: 1fr;
    max-height: min(92vh, 720px);
    overflow: auto;
  }
  .lead-modal__media {
    min-height: 150px;
    padding: 16px;
  }
  .lead-modal__quote { font-size: 1.1rem; margin-bottom: 8px; }
  .lead-modal__chips { display: none; }
  .lead-modal__form-wrap { padding: 18px 16px 16px; }
}

/* floating contact FAB */
.fab {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 180;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.fab__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 0 0;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2BC0DC, #0A7FA0);
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(16,168,200,.45);
  transition: transform .2s, box-shadow .2s;
}
.fab__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16,168,200,.55);
}
.fab__btn-ico {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.fab__btn-ico svg { width: 22px; height: 22px; }
.fab__btn-ico--close { display: none; }
.fab.is-open .fab__btn-ico--open { display: none; }
.fab.is-open .fab__btn-ico--close { display: grid; }
.fab__btn-label { padding-right: 4px; letter-spacing: .02em; }
.fab.is-open .fab__btn {
  background: linear-gradient(135deg, #0B5A6E, #083642);
}

.fab__panel {
  width: min(300px, calc(100vw - 36px));
  max-height: min(70vh, 520px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(16,168,200,.18);
  box-shadow: 0 22px 50px rgba(8,40,55,.28);
  padding: 14px;
  animation: fabPop .28s cubic-bezier(.22,1,.36,1);
}
.fab__panel[hidden] { display: none !important; }
@keyframes fabPop {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.fab__head {
  display: grid;
  gap: 2px;
  margin-bottom: 10px;
  padding: 4px 4px 10px;
  border-bottom: 1px solid var(--line);
}
.fab__head strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--sky-deep);
  font-weight: 600;
}
.fab__head span {
  font-size: 0.78rem;
  color: var(--muted);
}
.fab__info {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16,168,200,.1), rgba(229,230,200,.35));
  color: var(--pine-deep);
  font-size: 0.8rem;
  line-height: 1.35;
}
.fab__info p { margin: 0; }
.fab__info p + p { margin-top: 2px; color: var(--muted); }
.fab__group { display: grid; gap: 4px; margin-bottom: 10px; }
.fab__group:last-child { margin-bottom: 0; }
.fab__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 6px 2px;
}
.fab__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  font: inherit;
  transition: background .18s;
}
.fab__item:hover { background: var(--sky-mist); }
.fab__ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.fab__ico svg { width: 18px; height: 18px; }
.fab__ico--phone { background: linear-gradient(135deg, #2BC0DC, #0A7FA0); }
.fab__ico--viber { background: #7360f2; }
.fab__ico--tg { background: #2AABEE; }
.fab__ico--wa { background: #25D366; }
.fab__ico--mail { background: linear-gradient(135deg, #5a7d8c, #0B5A6E); }
.fab__ico--book { background: linear-gradient(135deg, #35b5a5, #1E6B4E); }
.fab__ico--calc { background: linear-gradient(135deg, #10A8C8, #0A7FA0); }
.fab__ico--lk { background: linear-gradient(135deg, #8aa4b0, #3d5a66); }
.fab__ico--map { background: linear-gradient(135deg, #c4b896, #8a7a55); }
.fab__txt {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.fab__txt b {
  font-size: 0.88rem;
  font-weight: 750;
  color: var(--pine-deep);
}
.fab__txt small {
  font-size: 0.74rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .fab { left: 12px; bottom: 12px; }
  .fab__btn-label { display: none; }
  .fab__btn { padding: 0; width: 54px; justify-content: center; }
  .fab__btn-ico { margin: 0; }
}

/* nutrition CTA callout per TZ 3.7 */
.nutrition-cta {
  margin-top: 8px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16,168,200,.12), rgba(10,127,160,.1));
  border: 1px solid rgba(16, 168, 200, 0.25);
}
.nutrition-cta p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 0.95rem;
}
.nutrition-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* cabinet page */
.cabinet-page { background: var(--sand-light); min-height: 100vh; }
.cabinet-hero {
  background: linear-gradient(135deg, var(--pine-deep), var(--pine));
  color: #fff;
  padding: 48px 0 40px;
}
.cabinet-hero h1 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.cabinet-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  padding: 28px 0 48px;
}
.cabinet-nav {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.cabinet-nav a {
  display: block;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}
.cabinet-nav a:hover,
.cabinet-nav a.is-active {
  background: var(--mint);
  color: var(--sky-deep);
}
.cabinet-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15,76,92,.05);
}
.cabinet-panel h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  color: var(--pine-deep);
  font-size: 1.4rem;
}
.cabinet-panel p { margin: 0 0 16px; color: var(--muted); }
.status-list { list-style: none; padding: 0; margin: 0; }
.status-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.status-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16,168,200,.15);
  color: var(--sky-deep);
  font-size: 0.78rem;
  font-weight: 700;
}
.auth-switch { display: flex; gap: 8px; margin-bottom: 16px; }
.auth-switch button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
}
.auth-switch button.is-active {
  background: var(--sky);
  border-color: var(--sky-deep);
  color: #fff;
}
.auth-form { display: none; }
.auth-form.is-active { display: grid; gap: 12px; }

/* auth popup */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: none;
  place-items: center;
  padding: 16px;
}
.auth-modal.is-open { display: grid; }
.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 30, 40, 0.72);
  backdrop-filter: blur(6px);
}
.auth-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(10, 90, 110, 0.35);
  animation: leadPop .32s cubic-bezier(.22,1,.36,1);
}
.auth-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--sky-deep);
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.auth-modal__side {
  position: relative;
  min-height: 100%;
  padding: 24px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(6,50,70,.2), rgba(6,40,55,.82)),
    var(--img) center/cover no-repeat;
}
.auth-modal__quote {
  margin: 10px 0 14px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.25;
}
.auth-modal__form {
  padding: 24px 22px 20px;
}
.auth-modal__form h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  color: var(--sky-deep);
  font-size: 1.4rem;
}
.auth-modal__sub {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}
.auth-fill { justify-self: start; }
.auth-modal__hint {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.auth-modal__hint code {
  background: var(--sky-mist);
  padding: 1px 6px;
  border-radius: 6px;
  color: var(--sky-deep);
  font-size: 0.76rem;
}
@media (max-width: 700px) {
  .auth-modal__dialog { grid-template-columns: 1fr; }
  .auth-modal__side { min-height: 140px; }
}

/* cabinet upgrade */
.cab-top { gap: 10px; }
.cab-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cab-user__avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2BC0DC, #0A7FA0);
  color: #fff;
  font-weight: 800;
}
.cab-user__meta { display: grid; line-height: 1.2; }
.cab-user__meta strong { font-size: 0.88rem; color: var(--pine-deep); }
.cab-user__meta small { font-size: 0.72rem; color: var(--muted); }

.cab-gate {
  padding: 40px 0 60px;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(16,168,200,.18), transparent 60%),
    var(--sand-light);
}
.cab-gate__card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(10,90,110,.12);
}
.cab-gate__visual {
  min-height: 320px;
  background:
    linear-gradient(160deg, rgba(10,127,160,.35), rgba(6,56,74,.55)),
    var(--img) center/cover no-repeat;
}
.cab-gate__body { padding: 32px 28px; }
.cab-gate__body h1 {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--sky-deep);
  line-height: 1.15;
}
.cab-gate__body > p { color: var(--muted); margin: 0 0 18px; }
.cab-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.cab-gate__perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.cab-gate__perks li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sky-mist);
  color: var(--sky-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.cab-hero {
  background: linear-gradient(135deg, #06384a 0%, #0B5A6E 45%, #0A7FA0 100%) !important;
}
.cab-hero__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.cab-hero__hello {
  display: block;
  font-size: 0.78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 4px;
  font-weight: 700;
}
.cab-hero__stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cab-stat {
  min-width: 100px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  text-align: center;
}
.cab-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.cab-stat span { font-size: 0.74rem; opacity: .85; }

.cab-nav-dot {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 6px;
  border-radius: 999px;
  background: #e85d4c;
  color: #fff;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}
.cab-nav-logout {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 12px 14px;
  border-radius: 10px;
  color: #b42318;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: inherit;
}
.cab-nav-logout:hover { background: #ffe8e6; }

.cab-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.cab-card {
  text-align: left;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7fbfd);
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.cab-card:hover {
  transform: translateY(-2px);
  border-color: rgba(16,168,200,.4);
  box-shadow: 0 12px 28px rgba(16,168,200,.12);
}
.cab-card__ico { font-size: 1.3rem; display: block; margin-bottom: 8px; }
.cab-card strong { display: block; color: var(--sky-deep); margin-bottom: 4px; }
.cab-card span { color: var(--muted); font-size: 0.86rem; }
.cab-dash-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cab-mini {
  padding: 16px;
  border-radius: 14px;
  background: var(--sky-mist);
  border: 1px solid rgba(16,168,200,.18);
}
.cab-mini h3 { margin: 0 0 8px; font-size: 0.95rem; color: var(--pine-deep); }
.cab-mini p { margin: 0 0 10px; font-size: 0.9rem; }
.cab-mini small { color: var(--muted); font-size: 0.78rem; }
.cab-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(16,168,200,.18);
  overflow: hidden;
  margin-bottom: 8px;
}
.cab-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #2BC0DC, #0A7FA0);
  border-radius: inherit;
}
.cab-progress--gold i { background: linear-gradient(90deg, #ffe88a, #c4b896); }

.cab-menu-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.cab-menu-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}
.cab-dishes { display: grid; gap: 8px; }
.cab-dish {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.cab-dish strong { display: block; color: var(--pine-deep); font-size: 0.92rem; }
.cab-dish span { color: var(--muted); font-size: 0.78rem; }
.cab-cart {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7fbfd, #eef7fa);
  border: 1px solid rgba(16,168,200,.2);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.cab-cart h3 { margin: 0 0 10px; font-size: 1rem; color: var(--sky-deep); }
.cab-cart__list { list-style: none; margin: 0 0 12px; padding: 0; display: grid; gap: 6px; }
.cab-cart__list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 10px;
  font-size: 0.86rem;
}
.cab-cart__list button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
}
.cab-cart__empty { color: var(--muted); font-size: 0.86rem; padding: 8px 0; }
.cab-kbju {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}
.cab-kbju div {
  text-align: center;
  padding: 8px 4px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
}
.cab-kbju b { display: block; color: var(--sky-deep); font-size: 0.95rem; }
.cab-kbju span { font-size: 0.68rem; color: var(--muted); }
.cab-cart .btn { width: 100%; margin-bottom: 8px; }

.cab-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.cab-filters .chip,
.cab-filter {
  border: 1.5px solid rgba(16,168,200,.22);
  background: rgba(255,255,255,.9);
  color: var(--sky-deep);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.cab-filters .chip.is-on,
.cab-filter.is-on {
  background: linear-gradient(135deg, #2BC0DC, #0A7FA0);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(16,168,200,.28);
}
.cab-filter:hover:not(.is-on) {
  border-color: var(--sky);
  transform: translateY(-1px);
}

.cab-panel--orders {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(43,192,220,.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(229,230,200,.35), transparent 50%),
    #fff;
  border: 1px solid rgba(16,168,200,.16);
  padding: 0;
}
.cab-panel--orders::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg, #2BC0DC, #0A7FA0 50%, #E5E6C8);
}
.cab-orders-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 24px 24px 0;
}
.cab-panel--orders h2 { margin: 0 0 6px; }
.cab-panel--orders > .cab-orders-head p,
.cab-panel--orders .cab-orders-head p {
  margin: 0;
  color: var(--muted);
}
.cab-orders-sum {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cab-orders-sum span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(16,168,200,.08);
  border: 1px solid rgba(16,168,200,.16);
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 650;
}
.cab-orders-sum b {
  color: var(--sky-deep);
  font-size: 1rem;
  font-family: var(--font-display);
}
.cab-panel--orders .cab-filters {
  padding: 16px 24px 0;
  margin-bottom: 12px;
}
.cab-orders {
  list-style: none;
  margin: 0;
  padding: 4px 16px 8px;
  display: grid;
  gap: 10px;
}
.cab-order {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(16,168,200,.12);
  box-shadow: 0 8px 22px rgba(10,90,110,.05);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.cab-order:hover {
  transform: translateY(-2px);
  border-color: rgba(16,168,200,.32);
  box-shadow: 0 14px 32px rgba(16,168,200,.12);
}
.cab-order--empty {
  display: block;
  text-align: center;
  color: var(--muted);
  padding: 28px 16px;
  grid-template-columns: 1fr;
}
.cab-order__ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(43,192,220,.22), rgba(10,127,160,.18));
  color: var(--sky-deep);
  flex-shrink: 0;
}
.cab-order__ico svg { width: 22px; height: 22px; }
.cab-order--processing .cab-order__ico {
  background: linear-gradient(145deg, rgba(234,179,8,.28), rgba(201,140,40,.18));
  color: #92650a;
}
.cab-order--ready .cab-order__ico {
  background: linear-gradient(145deg, rgba(43,192,220,.3), rgba(16,168,200,.2));
  color: var(--sky-deep);
}
.cab-order--draft .cab-order__ico {
  background: linear-gradient(145deg, rgba(100,116,139,.18), rgba(71,85,105,.12));
  color: #475569;
}
.cab-order__main { min-width: 0; }
.cab-order__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.cab-order__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.cab-order__main strong {
  display: block;
  color: var(--pine-deep);
  font-size: 0.98rem;
  margin-bottom: 4px;
  line-height: 1.3;
}
.cab-order__meta {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}
.cab-order__note {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--sky-deep);
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(16,168,200,.08);
  display: inline-block;
}
.cab-order--processing .cab-order__note {
  color: #92650a;
  background: rgba(234,179,8,.12);
}
.cab-order--draft .cab-order__note {
  color: #475569;
  background: rgba(100,116,139,.1);
}
.status-badge {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 750;
  white-space: nowrap;
}
.status-badge--processing { background: rgba(234,179,8,.22); color: #92650a; }
.status-badge--ready { background: rgba(16,168,200,.16); color: var(--sky-deep); }
.status-badge--draft { background: rgba(100,116,139,.16); color: #475569; }
.cab-orders-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 24px 22px;
  margin-top: 6px;
  border-top: 1px solid rgba(16,168,200,.12);
  background: linear-gradient(180deg, transparent, rgba(16,168,200,.04));
}
.cab-orders-hint {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted);
}
.cab-actions-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 0; }

.cab-promo { display: grid; gap: 10px; margin-bottom: 16px; }
.cab-promo__card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16,168,200,.16), rgba(229,230,200,.4));
  border: 1px solid rgba(16,168,200,.25);
}
.cab-promo__card strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--sky-deep);
  letter-spacing: .04em;
}
.cab-promo__card--soft {
  background: #fff;
  border-color: var(--line);
}
.cab-promo-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.cab-notes { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.cab-notes li {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
}
.cab-notes li.is-new {
  border-color: rgba(16,168,200,.35);
  background: linear-gradient(135deg, rgba(16,168,200,.08), #fff);
}
.cab-notes strong { display: block; color: var(--sky-deep); margin-bottom: 4px; }
.cab-notes p { margin: 0 0 6px; color: var(--muted); font-size: 0.9rem; }
.cab-notes time { font-size: 0.74rem; color: var(--muted); }

@media (max-width: 900px) {
  .cab-gate__card,
  .cab-menu-grid,
  .cab-dash-row,
  .cab-cards { grid-template-columns: 1fr; }
  .cab-menu-filters { grid-template-columns: 1fr; }
  .cab-promo-form { grid-template-columns: 1fr; }
  .cab-user__meta { display: none; }
}

@media (max-width: 980px) {
  .cabinet-grid { grid-template-columns: 1fr; }
  .cabinet-nav { position: static; display: flex; flex-wrap: wrap; gap: 4px; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: grid; }
  .adv-grid, .rooms-grid, .treat-grid, .promo-grid { grid-template-columns: 1fr 1fr; }
  .nutrition, .contacts-grid, .tab-panel.is-active, .footer__grid, .reviews-grid, .other-grid { grid-template-columns: 1fr; }
  .calc-row,
  .calc-row--2 { grid-template-columns: 1fr; }
  .calc-box { padding: 18px 16px; }
  .header__phone { display: none; }

  .header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo book burger";
    align-items: center;
    gap: 10px;
    width: min(1180px, calc(100% - 28px));
  }
  .logo {
    grid-area: logo;
    justify-self: start;
  }
  .header__actions {
    display: contents;
  }
  .header__cta-group {
    grid-area: book;
    justify-self: center;
    display: flex;
    justify-content: center;
  }
  .header__cta--mid,
  .header__cta--soft {
    display: none !important;
  }
  .header__cta-group .btn--primary {
    padding: 9px 16px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .burger {
    grid-area: burger;
    justify-self: end;
  }

  body.nav-open .nav {
    display: flex;
    position: fixed;
    inset: calc(var(--header-h) + 34px) 16px auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 2px;
    box-shadow: var(--shadow);
    z-index: 95;
    max-height: min(70vh, 520px);
    overflow: auto;
    grid-area: unset;
  }
  body.nav-open .nav > a {
    font-size: 0.92rem;
    padding: 12px 14px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
  }
  body.nav-open .nav__more {
    display: contents;
  }
  body.nav-open .nav__more-btn { display: none; }
  body.nav-open .nav__more-menu {
    display: contents;
    position: static;
    min-width: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  body.nav-open .nav__more-menu a {
    display: block;
    font-size: 0.92rem;
    padding: 12px 14px;
    font-weight: 700;
  }
}

@media (max-width: 640px) {
  .adv-grid, .rooms-grid, .treat-grid, .promo-grid, .form-grid, .calc-row, .calc-row--2 { grid-template-columns: 1fr; }
  .calc-box { padding: 16px 14px; }
  .hero h1 { max-width: none; }
  .header {
    height: var(--header-h);
    min-height: var(--header-h);
    padding: 0;
  }
  .header__inner {
    flex-wrap: nowrap;
  }
  .header__cta-group {
    width: auto;
    order: unset;
  }
  .header__cta-group .btn {
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 0.76rem;
  }
  .logo img { height: 38px; }
}

/* ========== Contacts page ========== */
.nav a.is-current {
  color: var(--sky-deep);
  background: var(--sky-mist);
}
.contacts-page .demo-ribbon a { text-decoration: underline; }

.c-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(72px, 12vw, 120px) 0 clamp(88px, 12vw, 130px);
  background: linear-gradient(145deg, #042f3c 0%, #0A7FA0 48%, #10A8C8 78%, #2BC0DC 100%);
  isolation: isolate;
}
.c-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.c-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  animation: cGridDrift 24s linear infinite;
  opacity: .55;
}
@keyframes cGridDrift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-48px, -48px, 0); }
}
.c-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .75;
  animation: cOrbFloat 8s ease-in-out infinite;
}
.c-hero__orb--a {
  width: 280px; height: 280px;
  left: -60px; top: -40px;
  background: radial-gradient(circle, rgba(255,255,255,.35), rgba(43,192,220,.15) 45%, transparent 70%);
}
.c-hero__orb--b {
  width: 220px; height: 220px;
  right: 8%; top: 20%;
  background: radial-gradient(circle, rgba(255,232,138,.35), transparent 65%);
  animation-delay: -2.5s;
}
.c-hero__orb--c {
  width: 340px; height: 340px;
  left: 35%; bottom: -120px;
  background: radial-gradient(circle, rgba(16,168,200,.55), transparent 68%);
  animation-delay: -4s;
}
@keyframes cOrbFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(12px, -18px, 0) scale(1.06); }
}
.c-hero__ring {
  position: absolute;
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 50%;
  animation: cRingPulse 6s ease-in-out infinite;
}
.c-hero__ring--a {
  width: 420px; height: 420px;
  right: -80px; bottom: -100px;
}
.c-hero__ring--b {
  width: 260px; height: 260px;
  left: 12%; top: 18%;
  animation-delay: -2s;
  border-color: rgba(255,232,138,.25);
}
@keyframes cRingPulse {
  0%, 100% { transform: scale(1); opacity: .55; }
  50% { transform: scale(1.08); opacity: 1; }
}
.c-hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  color: #fff;
  line-height: 0;
}
.c-hero__wave svg {
  display: block;
  width: 100%;
  height: clamp(48px, 8vw, 100px);
}
.c-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.c-hero__kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: cFadeUp .7s ease both;
}
.c-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: cFadeUp .7s ease .08s both;
}
.c-hero h1 em {
  font-style: italic;
  color: #b8f0ff;
}
.c-hero__inner > p {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  max-width: 42rem;
  animation: cFadeUp .7s ease .16s both;
}
.c-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  animation: cFadeUp .7s ease .24s both;
}
.c-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  animation: cFadeUp .7s ease .32s both;
}
.c-hero__pills span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 0.8rem;
  font-weight: 650;
}
@keyframes cFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.c-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -8px;
}
.c-quick__card {
  display: grid;
  gap: 6px;
  padding: 18px 16px;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(16,168,200,.16);
  box-shadow: 0 12px 30px rgba(10,90,110,.07);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.c-quick__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16,168,200,.4);
  box-shadow: 0 18px 40px rgba(16,168,200,.14);
}
.c-quick__ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  background: linear-gradient(145deg, rgba(43,192,220,.25), rgba(10,127,160,.18));
  color: var(--sky-deep);
}
.c-quick__ico svg { width: 20px; height: 20px; }
.c-quick__card strong {
  font-size: 0.95rem;
  color: var(--pine-deep);
}
.c-quick__card > span:last-child {
  font-size: 0.86rem;
  color: var(--sky-deep);
  font-weight: 700;
}

.c-people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.c-person {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16,168,200,.12);
  box-shadow: 0 8px 22px rgba(10,90,110,.05);
  display: grid;
  gap: 6px;
  transition: transform .2s, box-shadow .2s;
}
.c-person:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(16,168,200,.12);
}
.c-person--accent {
  background: linear-gradient(160deg, rgba(16,168,200,.12), #fff 55%);
  border-color: rgba(16,168,200,.28);
}
.c-person__role {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sky);
}
.c-person h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--pine-deep);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
}
.c-person a {
  color: var(--sky-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}
.c-person a:hover { text-decoration: underline; }
.c-person > span:not(.c-person__role) {
  color: var(--muted);
  font-size: 0.86rem;
}
.c-more-note {
  margin: 18px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.c-more-note a { color: var(--sky-deep); font-weight: 700; }

.c-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.c-route-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f7fbfd);
  border: 1px solid rgba(16,168,200,.14);
  box-shadow: 0 10px 28px rgba(10,90,110,.06);
}
.c-route-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  color: var(--sky-deep);
  font-size: 1.2rem;
}
.c-route-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.c-route-card li { margin-bottom: 8px; }
.c-route-card li strong { color: var(--pine-deep); }
.c-route-card--coords {
  background: linear-gradient(160deg, #0B5A6E, #10A8C8);
  color: #fff;
  border: 0;
}
.c-route-card--coords h3 { color: #fff; }
.c-route-card--coords p { margin: 0 0 12px; color: rgba(255,255,255,.85); font-size: 0.9rem; }
.c-coords {
  display: grid;
  gap: 4px;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
  cursor: pointer;
  font: inherit;
  transition: background .2s;
}
.c-coords:hover { background: rgba(255,255,255,.2); }
.c-coords strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.c-coords span { font-size: 0.78rem; opacity: .85; }

.c-map {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.c-map__canvas {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(10,127,160,.35), rgba(6,56,74,.55)),
    url("../img/hero3.jpg") center/cover;
  box-shadow: 0 16px 40px rgba(10,90,110,.15);
  display: grid;
  place-items: center;
}
.c-map__pin {
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #2BC0DC;
  box-shadow: 0 0 0 10px rgba(43,192,220,.25), 0 12px 28px rgba(0,0,0,.3);
  animation: cPinBounce 2.2s ease-in-out infinite;
}
@keyframes cPinBounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-8px); }
}
.c-map__label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  color: var(--sky-deep);
  font-size: 0.84rem;
  font-weight: 750;
}
.c-map__side {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(16,168,200,.14);
  box-shadow: 0 12px 32px rgba(10,90,110,.08);
}
.c-map__side h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  color: var(--sky-deep);
}
.c-map__side > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .c-quick { grid-template-columns: 1fr 1fr; }
  .c-people, .c-route-grid, .c-map { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .c-quick { grid-template-columns: 1fr; }
  .c-hero__actions .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .c-hero__orb, .c-hero__ring, .c-hero__grid, .c-map__pin,
  .c-hero__kicker, .c-hero h1, .c-hero__inner > p, .c-hero__actions, .c-hero__pills {
    animation: none !important;
  }
}

/* ========== About page ========== */
.a-hero {
  background: linear-gradient(145deg, #031f2a 0%, #0B5A6E 42%, #10A8C8 72%, #4FC0D4 100%);
}
.a-hero__photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(3,31,42,.88) 15%, rgba(10,127,160,.55) 55%, rgba(16,168,200,.35) 100%),
    var(--img) center/cover no-repeat;
  opacity: .55;
  animation: aPhotoKen 18s ease-in-out infinite alternate;
  mix-blend-mode: soft-light;
}
@keyframes aPhotoKen {
  from { transform: scale(1.05) translate3d(0,0,0); }
  to { transform: scale(1.14) translate3d(-2%, 1%, 0); }
}

.a-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.a-story__copy h2 {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--pine-deep);
  line-height: 1.15;
}
.a-story__copy h2 em { font-style: italic; color: var(--sky); }
.a-story__copy p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.a-story__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.a-story__stats div {
  min-width: 110px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(16,168,200,.12), rgba(229,230,200,.35));
  border: 1px solid rgba(16,168,200,.18);
}
.a-story__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sky-deep);
}
.a-story__stats span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 650;
}
.a-story__visual {
  position: relative;
  min-height: 380px;
}
.a-story__img {
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 44px rgba(10,90,110,.18);
}
.a-story__img--main {
  position: absolute;
  inset: 0 12% 18% 0;
}
.a-story__img--soft {
  position: absolute;
  width: 48%;
  height: 48%;
  right: 0;
  bottom: 0;
  border: 4px solid #fff;
}
.a-story__float {
  position: absolute;
  left: 8%;
  bottom: 8%;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  color: var(--sky-deep);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(10,90,110,.15);
  animation: cOrbFloat 5s ease-in-out infinite;
}

.a-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.a-pillar {
  padding: 22px 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(16,168,200,.14);
  box-shadow: 0 10px 28px rgba(10,90,110,.06);
  display: grid;
  gap: 8px;
  transition: transform .25s, box-shadow .25s;
}
.a-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16,168,200,.14);
}
.a-pillar__n {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--sky);
  font-weight: 600;
}
.a-pillar h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--pine-deep);
}
.a-pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.a-pillar a {
  color: var(--sky-deep);
  font-weight: 750;
  text-decoration: none;
  font-size: 0.88rem;
}
.a-pillar a:hover { text-decoration: underline; }

.a-infra {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.a-infra__card {
  padding: 18px 16px;
  border-radius: 16px;
  background: linear-gradient(160deg, #fff, #f4fbfd);
  border: 1px solid rgba(16,168,200,.14);
  display: grid;
  gap: 4px;
  transition: transform .2s, border-color .2s;
}
.a-infra__card:hover {
  transform: translateY(-3px);
  border-color: rgba(16,168,200,.4);
}
.a-infra__card strong {
  color: var(--pine-deep);
  font-size: 1rem;
}
.a-infra__card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.a-comfort {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.a-comfort h2 {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--pine-deep);
  line-height: 1.15;
}
.a-comfort h2 em { font-style: italic; color: var(--sky); }
.a-check {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.a-check li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(16,168,200,.12);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.4;
}
.a-check li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, #2BC0DC, #0A7FA0);
  box-shadow: inset 0 0 0 4px #fff;
}
.a-comfort__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.a-hours {
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(160deg, #0B5A6E, #10A8C8);
  color: #fff;
  display: grid;
  gap: 8px;
  box-shadow: 0 18px 40px rgba(10,127,160,.28);
}
.a-hours h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.a-hours p {
  margin: 0 0 8px;
  color: rgba(255,255,255,.85);
  font-size: 0.92rem;
  line-height: 1.45;
}
.a-hours a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.05rem;
}
.a-hours a:hover { opacity: .9; }
.a-hours > span {
  margin-top: 6px;
  font-size: 0.8rem;
  opacity: .85;
}

.a-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.a-news__card {
  padding: 20px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16,168,200,.14);
  box-shadow: 0 10px 28px rgba(10,90,110,.06);
  display: grid;
  gap: 8px;
  transition: transform .22s, box-shadow .22s;
}
.a-news__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16,168,200,.14);
}
.a-news__card time {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sky);
}
.a-news__card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--pine-deep);
  line-height: 1.25;
}
.a-news__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.a-news__card a {
  color: var(--sky-deep);
  font-weight: 750;
  text-decoration: none;
  font-size: 0.88rem;
}

.a-bottom-cta {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(16,168,200,.12), rgba(229,230,200,.4));
  border: 1px solid rgba(16,168,200,.2);
}
.a-bottom-cta h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  color: var(--sky-deep);
  font-size: 1.35rem;
}
.a-bottom-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .a-story,
  .a-comfort { grid-template-columns: 1fr; }
  .a-pillars,
  .a-infra,
  .a-news { grid-template-columns: 1fr 1fr; }
  .a-story__visual { min-height: 300px; }
}
@media (max-width: 640px) {
  .a-pillars,
  .a-infra,
  .a-news { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .a-hero__photo { animation: none !important; }
}

/* —— Admin cabinet —— */
.admin-page .demo-ribbon { background: #06384a; }
.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c4b896, #a89060);
  color: #2a2418;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cab-user__avatar--admin {
  background: linear-gradient(135deg, #c4b896, #06384a) !important;
}
.admin-gate__card { border-color: rgba(6,56,74,.2); }
.admin-gate__visual { position: relative; }
.admin-gate__overlay {
  position: absolute;
  inset: auto 20px 24px 20px;
  color: #fff;
  z-index: 1;
}
.admin-gate__overlay span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
  font-weight: 700;
}
.admin-gate__overlay strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.admin-gate__hint {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.admin-gate__hint code {
  background: var(--sky-mist);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.78rem;
}
.admin-gate__switch {
  margin: 10px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}
.admin-gate__switch a { color: var(--sky); font-weight: 700; }
.admin-hero {
  background: linear-gradient(135deg, #041e28 0%, #06384a 40%, #0A7FA0 100%) !important;
}
.admin-nav a.is-active {
  background: rgba(16,168,200,.15);
  color: var(--sky-deep);
}
.admin-kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.admin-kpi__item {
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}
.admin-kpi__item b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--sky-deep);
}
.admin-kpi__item span {
  font-size: 0.75rem;
  color: var(--muted);
}
.admin-todo, .admin-feed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.admin-todo label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.88rem;
  cursor: pointer;
}
.admin-feed li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--pine-deep);
}
.admin-feed time {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}
.admin-stats-filters { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.admin-charts {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.admin-chart-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.admin-chart-card h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: var(--pine-deep);
}
.admin-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 140px;
  padding: 8px 0;
}
.admin-bars span {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}
.admin-bars i {
  display: block;
  width: 100%;
  max-width: 28px;
  height: var(--h, 40%);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #2BC0DC, #0A7FA0);
}
.admin-bars em {
  font-size: 0.65rem;
  font-style: normal;
  color: var(--muted);
  font-weight: 700;
}
.admin-chart-legend {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}
.admin-occ { display: grid; gap: 12px; }
.admin-occ__row {
  display: grid;
  grid-template-columns: 90px 1fr 40px;
  gap: 10px;
  align-items: center;
  font-size: 0.82rem;
}
.admin-occ__row b { text-align: right; color: var(--sky-deep); }
.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 14px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.admin-table th,
.admin-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.admin-table th {
  background: var(--sky-mist);
  color: var(--sky-deep);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 800;
}
.admin-table tr:last-child td { border-bottom: 0; }
.admin-table small { color: var(--muted); }
.admin-table .up { color: #0d7a4f; font-weight: 800; }
.admin-table .down { color: #b42318; font-weight: 800; }
.admin-table code {
  background: var(--sky-mist);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.78rem;
}
.admin-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}
.admin-status--new { background: #fff1e8; color: #b54708; }
.admin-status--processing { background: #e8f6fb; color: #0a7fa0; }
.admin-status--done { background: #e8f8ef; color: #0d7a4f; }
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.btn--xs {
  padding: 5px 8px !important;
  font-size: 0.72rem !important;
  border-radius: 8px !important;
}
.admin-search-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.admin-news-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  margin-bottom: 16px;
  background: var(--sky-mist);
  border-radius: 14px;
  border: 1px solid rgba(16,168,200,.2);
}
.admin-news-form .full { grid-column: 1 / -1; }
.admin-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.admin-news-item,
.admin-review-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.admin-news-item strong,
.admin-review-item strong {
  display: inline;
  margin-right: 8px;
  color: var(--sky-deep);
}
.admin-news-item p,
.admin-review-item p {
  margin: 6px 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.admin-news-item time,
.admin-review-item time {
  font-size: 0.75rem;
  color: var(--muted);
}
.admin-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.admin-edit-card {
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
}
.admin-edit-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--pine-deep);
}
.admin-edit-card > p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}
.admin-review-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.admin-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}
.admin-tag--dir { background: #fff4d6; color: #7a5b12; }
.admin-tag--mgr { background: #e8f6fb; color: #0a7fa0; }
.admin-tag--ed { background: #f0e8fb; color: #6b3fa0; }
.admin-tag--med { background: #e8f8ef; color: #0d7a4f; }
.admin-auth-side {
  background:
    linear-gradient(160deg, rgba(6,56,74,.75), rgba(10,127,160,.55)),
    var(--img) center/cover no-repeat !important;
}
.auth-side-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.auth-side-list li {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: #06384a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  box-shadow: 0 12px 32px rgba(6,56,74,.35);
}
.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Footer dual login extras */
.footer__account--staff {
  background: rgba(196,184,150,.14);
  border-color: rgba(196,184,150,.35);
}
.footer__account--staff .footer__ico {
  background: rgba(196,184,150,.25);
  color: #e8dcc0;
}
.footer__account-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.footer__account--staff .footer__account-label { color: rgba(232,220,192,.7); }
.footer__account-actions .btn--admin {
  background: linear-gradient(135deg, #c4b896, #a89060);
  color: #2a2418 !important;
  border: 0;
  box-shadow: 0 8px 22px rgba(0,0,0,.2);
}
.footer__account-actions .btn--admin:hover {
  filter: brightness(1.06);
  color: #1a160e !important;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .admin-kpi,
  .admin-charts,
  .admin-content-grid,
  .footer__accounts { grid-template-columns: 1fr; }
  .admin-search-row,
  .admin-news-form { grid-template-columns: 1fr; }
  .admin-occ__row { grid-template-columns: 70px 1fr 36px; }
}
