/* Шишка — хвоя #133f32, туман #dee5d7, листва #b5ccc2 */
:root {
  --pine: #133f32;
  --pine-deep: #0e2a22;
  --pine-soft: #153e35;
  --sage: #b5ccc2;
  --mist: #dee5d7;
  --cream: #f9f4f2;
  --bg-page: #0f2420;
  --bg-card: rgba(19, 63, 50, 0.45);
  --text: var(--mist);
  --text-muted: rgba(222, 229, 215, 0.72);
  --border: rgba(222, 229, 215, 0.12);
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-mono: "PT Mono", ui-monospace, monospace;
  --font-serif: "Spectral", Georgia, serif;
  --radius: 16px;
  --header-h: 76px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-page);
  min-height: 100vh;
}

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

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow {
  display: none;
  position: fixed;
  width: min(70vw, 420px);
  height: min(70vw, 420px);
  margin: calc(min(70vw, 420px) / -2) 0 0 calc(min(70vw, 420px) / -2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 204, 194, 0.14) 0%, transparent 68%);
  pointer-events: none;
  z-index: 50;
  transition: opacity 0.35s var(--ease);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow {
    display: block;
    opacity: 0;
  }

  body.is-ready .cursor-glow {
    opacity: 1;
  }
}

a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

a:hover {
  color: var(--cream);
}

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

/* ——— Header ——— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(
    to bottom,
    rgba(15, 36, 32, 0.92),
    rgba(15, 36, 32, 0.72) 50%,
    transparent
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), min-height 0.35s var(--ease);
}

.header--scrolled {
  min-height: 64px;
  background: rgba(14, 42, 34, 0.88);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo__halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 204, 194, 0.35) 0%, transparent 62%);
  filter: blur(12px);
  opacity: 0.55;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease-spring);
  pointer-events: none;
}

.logo:hover .logo__halo {
  opacity: 0.85;
  transform: scale(1.08);
}

.logo__orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  border-radius: 50%;
  border: 1px dashed rgba(181, 204, 194, 0.35);
  animation: orbitSpin 14s linear infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.logo:hover .logo__orbit {
  opacity: 1;
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.logo__disc {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(181, 204, 194, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.55s var(--ease-spring), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.logo:hover .logo__disc {
  transform: scale(1.06) rotate(-4deg);
  border-color: rgba(249, 244, 242, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 14px 36px rgba(0, 0, 0, 0.4);
}

.logo__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.08) brightness(1.02);
  transition: filter 0.45s var(--ease), transform 0.65s var(--ease-out);
}

.logo:hover .logo__photo {
  filter: saturate(1.25) contrast(1.1) brightness(1.05);
  transform: scale(1.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--mist);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s var(--ease-spring), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.45rem, 1.5vw, 1.1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--sage), transparent);
  transition: width 0.35s var(--ease-out);
}

.nav__list a:hover {
  color: var(--cream);
}

.nav__list a:hover::after {
  width: 100%;
}

.nav__cta {
  flex-shrink: 0;
}

/* ——— Buttons ——— */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.45rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn--shine::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.22) 48%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.22) 52%,
    transparent 58%
  );
  transform: translateX(-100%) rotate(12deg);
  transition: transform 0s;
  pointer-events: none;
}

.btn--shine:hover::after {
  transform: translateX(100%) rotate(12deg);
  transition: transform 0.65s var(--ease-out);
}

.btn--primary {
  background: var(--cream);
  color: var(--pine);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn--primary:hover {
  background: #fff;
  color: var(--pine-deep);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--mist);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: rgba(181, 204, 194, 0.45);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost-light {
  background: transparent;
  color: var(--pine);
  border-color: rgba(19, 63, 50, 0.35);
}

.btn--ghost-light:hover {
  border-color: var(--pine);
  background: rgba(19, 63, 50, 0.06);
}

.btn--loyalty {
  background: var(--cream);
  color: var(--pine-deep);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.btn--loyalty:hover {
  background: #fff;
  color: #061210;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.22);
}

.btn--secondary {
  background: rgba(181, 204, 194, 0.18);
  color: var(--cream);
  border-color: rgba(181, 204, 194, 0.45);
}

.btn--secondary:hover {
  background: rgba(181, 204, 194, 0.3);
  color: #fff;
}

/* ——— Hero: эмблема в потоке, CTA и «вниз» в одном доке без наложений ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: calc(var(--header-h) + 0.75rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1.75rem, 4vh, 2.5rem);
  overflow: hidden;
  overflow-x: clip;
  background: #060f0c;
}

.hero__intro-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: min(8vh, 4rem);
}

.hero__watermark {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 22vw, 14rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: rgba(222, 229, 215, 0.028);
  user-select: none;
  transform: translateY(-6%);
  transition: opacity 1.4s var(--ease-out), transform 1.4s var(--ease-out);
}

.hero:not(.hero--ready) .hero__watermark {
  opacity: 0;
  transform: translateY(-6%) scale(0.97);
}

.hero.hero--ready .hero__watermark {
  opacity: 1;
  transform: translateY(-6%) scale(1);
}

.hero__stage {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 2vh, 1.5rem) 1rem clamp(0.75rem, 2vh, 1.25rem);
  min-height: min(44vh, 400px);
  z-index: 2;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 1.05s var(--ease-out), transform 1.05s var(--ease-out);
}

.hero.hero--ready .hero__stage {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  color: #040a08;
}

.hero__mist {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% -5%, rgba(90, 130, 112, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 15% 60%, rgba(181, 204, 194, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse 65% 45% at 88% 45%, rgba(255, 248, 240, 0.04) 0%, transparent 42%),
    radial-gradient(ellipse 120% 90% at 50% 110%, rgba(0, 0, 0, 0.55) 0%, transparent 55%),
    linear-gradient(185deg, #0c1c16 0%, #0f2e24 28%, #133f32 52%, #0a1814 88%, #050a08 100%);
  animation: mistPulse 16s ease-in-out infinite alternate;
}

@keyframes mistPulse {
  from {
    opacity: 0.94;
  }
  to {
    opacity: 1;
  }
}

.hero__bokeh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bokeh span {
  position: absolute;
  border-radius: 50%;
  background: rgba(222, 229, 215, 0.045);
  animation: bokehFloat 18s ease-in-out infinite;
}

.hero__bokeh span:nth-child(1) {
  width: 120px;
  height: 120px;
  left: 8%;
  top: 22%;
  animation-delay: 0s;
}

.hero__bokeh span:nth-child(2) {
  width: 80px;
  height: 80px;
  right: 12%;
  top: 35%;
  animation-delay: -4s;
}

.hero__bokeh span:nth-child(3) {
  width: 200px;
  height: 200px;
  right: -4%;
  bottom: 28%;
  animation-delay: -7s;
}

.hero__bokeh span:nth-child(4) {
  width: 60px;
  height: 60px;
  left: 35%;
  bottom: 38%;
  animation-delay: -10s;
}

@keyframes bokehFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(12px, -18px) scale(1.05);
    opacity: 0.85;
  }
}

.hero__trees {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  max-width: none;
  height: min(34vh, 280px);
  margin-left: -50vw;
  color: #020806;
  display: block;
  pointer-events: none;
  opacity: 0.92;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 42% at 50% 32%, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.4) 100%);
  mix-blend-mode: multiply;
  opacity: 1;
}

/*
  Белая шишка: PNG white-on-black + mix-blend-mode: lighten на тёмном «сценическом» фоне.
  Чёрный в PNG уходит в фон, белая геометрия остаётся — без mask (она часто пропадает в Chrome).
*/
.hero__emblem {
  position: relative;
  z-index: 3;
  width: min(58vw, 360px);
  max-width: 100%;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}

.hero__emblem-tilt {
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease-out);
  pointer-events: auto;
}

.hero__emblem-stage {
  position: relative;
  isolation: isolate;
  border-radius: clamp(20px, 4.5vw, 38px);
  padding: clamp(14px, 3.2vw, 32px);
  background: radial-gradient(ellipse 85% 75% at 50% 40%, #1b5244 0%, #0f2a22 50%, #070f0c 100%);
  box-shadow:
    0 0 0 1px rgba(222, 229, 215, 0.1),
    0 32px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -40px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: scale(0.94);
  opacity: 0.88;
  transition: transform 1.1s 0.12s var(--ease-out), opacity 0.95s 0.12s var(--ease-out);
}

.hero.hero--ready .hero__emblem-stage {
  transform: scale(1);
  opacity: 1;
}

.hero__emblem-sheen {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160%;
  height: 160%;
  margin: -80% 0 0 -80%;
  background: conic-gradient(from 210deg, transparent 0deg, rgba(255, 252, 248, 0.07) 60deg, transparent 120deg, rgba(181, 204, 194, 0.05) 200deg, transparent 280deg);
  opacity: 0.85;
  animation: emblemSheenSpin 22s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes emblemSheenSpin {
  to {
    transform: rotate(360deg);
  }
}

.hero__spark {
  position: absolute;
  left: var(--sx);
  top: var(--sy);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.95);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.55), 0 0 22px rgba(181, 204, 194, 0.35);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: heroSpark 3.8s ease-in-out infinite;
  animation-delay: var(--sd);
}

@keyframes heroSpark {
  0%,
  40%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }
  55%,
  72% {
    opacity: 0.9;
    transform: scale(1);
  }
}

.hero__emblem-echo {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(222, 229, 215, 0.22);
  pointer-events: none;
  z-index: 0;
  animation: emblemEcho 4.2s ease-out infinite;
}

.hero__emblem-echo--b {
  animation-delay: 2.1s;
}

@keyframes emblemEcho {
  0% {
    transform: scale(1);
    opacity: 0.35;
  }
  100% {
    transform: scale(1.14);
    opacity: 0;
  }
}

.hero__emblem-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(222, 229, 215, 0.14);
  pointer-events: none;
  z-index: 1;
  animation: emblemRing 6s ease-in-out infinite;
}

@keyframes emblemRing {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.9;
  }
}

.hero__emblem-bloom {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 95%;
  height: auto;
  max-height: 115%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: blur(30px) brightness(1.2);
  opacity: 0.55;
  animation: emblemBloom 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes emblemBloom {
  0%,
  100% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.hero__emblem-shimmer {
  position: absolute;
  inset: -20%;
  z-index: 3;
  background: linear-gradient(
    118deg,
    transparent 36%,
    rgba(255, 255, 255, 0.07) 48%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.08) 52%,
    transparent 64%
  );
  mix-blend-mode: soft-light;
  animation: emblemShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes emblemShimmer {
  0% {
    transform: translateX(-70%) skewX(-14deg);
    opacity: 0;
  }
  12% {
    opacity: 0;
  }
  48% {
    transform: translateX(70%) skewX(-14deg);
    opacity: 1;
  }
  52% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    transform: translateX(70%) skewX(-14deg);
    opacity: 0;
  }
}

.hero__emblem-core {
  position: relative;
  z-index: 4;
  display: block;
  width: 100%;
  height: auto;
  max-height: min(48vh, 460px);
  margin: 0 auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter:
    drop-shadow(0 0 40px rgba(255, 255, 255, 0.3))
    drop-shadow(0 28px 60px rgba(0, 0, 0, 0.55));
  animation: emblemFloat 10s var(--ease) infinite;
}

@keyframes emblemFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-10px) scale(1.02);
  }
  70% {
    transform: translateY(6px) scale(0.99);
  }
}

.hero__dock {
  position: relative;
  z-index: 4;
  flex-shrink: 0;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s 0.28s var(--ease-out), transform 0.85s 0.28s var(--ease-out);
}

.hero.hero--ready .hero__dock {
  opacity: 1;
  transform: translateY(0);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.hero__address {
  margin: 0 0 0.9rem;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 2.2vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(222, 229, 215, 0.72);
}

.hero__address a {
  color: inherit;
  border-bottom: 1px solid rgba(222, 229, 215, 0.32);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.hero__address a:hover {
  color: var(--cream);
  border-bottom-color: var(--sage);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  margin: 0;
  padding-top: 1.35rem;
}

.hero__hours {
  display: flex;
  flex-wrap: wrap;
  gap: 2.75rem;
  justify-content: center;
  margin: 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(222, 229, 215, 0.1);
  width: 100%;
}

.hero__hours dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin: 0 0 0.4rem;
}

.hero__hours dd {
  margin: 0;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--cream);
}

/* Не кнопка: текстовая ссылка «вниз», отдельно от CTA */
.hero__next {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.85rem;
  padding: 0.5rem 0.75rem 0.25rem;
  text-decoration: none;
  color: rgba(222, 229, 215, 0.42);
  transition: color 0.35s var(--ease);
}

.hero__next:hover {
  color: rgba(222, 229, 215, 0.85);
}

.hero__next-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero__next-line {
  width: 1px;
  height: 1.25rem;
  background: linear-gradient(180deg, rgba(222, 229, 215, 0.35), rgba(222, 229, 215, 0.08));
}

.hero__next-chev {
  width: 7px;
  height: 7px;
  margin-top: -2px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
  animation: heroNextNudge 2.4s ease-in-out infinite;
}

@keyframes heroNextNudge {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: rotate(45deg) translateY(5px);
    opacity: 0.95;
  }
}

/* ——— Мост герой → контент (без бегущей строки) ——— */
.hero-bridge {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(auto, 36rem) 1fr;
  align-items: center;
  gap: clamp(1rem, 4vw, 2rem);
  padding: clamp(1.35rem, 4vw, 2.25rem) clamp(1.25rem, 5vw, 3rem);
  background: linear-gradient(180deg, #060f0c 0%, #0a1814 45%, #0c1f1a 100%);
  border-top: 1px solid rgba(222, 229, 215, 0.05);
}

.hero-bridge::before,
.hero-bridge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: min(48%, 3.5rem);
  margin-top: calc(min(48%, 3.5rem) / -2);
  background: linear-gradient(180deg, transparent, rgba(181, 204, 194, 0.12), transparent);
  opacity: 0.65;
  animation: bridgeSidePulse 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-bridge::before {
  left: clamp(0.75rem, 3vw, 1.5rem);
}

.hero-bridge::after {
  right: clamp(0.75rem, 3vw, 1.5rem);
  animation-delay: 1.2s;
}

@keyframes bridgeSidePulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.85;
  }
}

.hero-bridge__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(222, 229, 215, 0.14), transparent);
}

.hero-bridge__text {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.4vw, 1.12rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(222, 229, 215, 0.58);
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 640px) {
  .hero-bridge {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    justify-items: center;
  }

  .hero-bridge::before,
  .hero-bridge::after {
    display: none;
  }

  .hero-bridge__rule {
    width: min(120px, 40vw);
    margin: 0 auto;
  }
}

/* ——— Wave ——— */
.wave {
  line-height: 0;
  color: var(--pine-deep);
  margin-top: -1px;
}

.wave svg {
  display: block;
  width: 100%;
  height: clamp(36px, 8vw, 52px);
}

.wave--to-about {
  color: var(--pine-deep);
}

/* ——— Sections ——— */
.section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2.5rem);
}

/* Линия «завершения» секции снизу — не пересекается с верхними акцентами меню */
.section::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  top: auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 204, 194, 0.24), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1s var(--ease-out);
  pointer-events: none;
  z-index: 2;
}

.section.section--inview::after {
  transform: scaleX(1);
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 0.65rem;
  opacity: 0.9;
}

.section__eyebrow--on-dark {
  color: rgba(181, 204, 194, 0.85);
}

.section__head {
  margin-bottom: 2rem;
}

.section__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--cream);
}

.section__sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section--about {
  background: linear-gradient(180deg, var(--pine-deep) 0%, var(--bg-page) 55%);
  margin-top: -2px;
}

/* Одна ровная рамка только вокруг заголовка и текста — сетка карточек снаружи */
.about__editorial {
  max-width: 52rem;
  margin: 0 auto 2.75rem;
  padding: clamp(1.35rem, 3.2vw, 2rem) clamp(1.25rem, 3.5vw, 2.25rem);
  border: 1px solid rgba(222, 229, 215, 0.11);
  border-radius: var(--radius);
  background: rgba(10, 24, 20, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about__editorial .section__head {
  margin-bottom: 1.35rem;
}

.about__editorial .section__head h2 {
  margin-bottom: 0.45rem;
}

.about__text p {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  max-width: 52rem;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.15rem;
}

.about__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem 1.5rem;
  backdrop-filter: blur(10px);
  transition: border-color 0.35s var(--ease), box-shadow 0.45s var(--ease);
  overflow: hidden;
}

.about__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  opacity: 0.42;
  background:
    linear-gradient(rgba(181, 204, 194, 0.55), rgba(181, 204, 194, 0.55)) 0 0 / 22px 1px no-repeat,
    linear-gradient(rgba(181, 204, 194, 0.55), rgba(181, 204, 194, 0.55)) 0 0 / 1px 22px no-repeat,
    linear-gradient(rgba(181, 204, 194, 0.4), rgba(181, 204, 194, 0.4)) 100% 100% / 22px 1px no-repeat,
    linear-gradient(rgba(181, 204, 194, 0.4), rgba(181, 204, 194, 0.4)) 100% 100% / 1px 22px no-repeat;
  transition: opacity 0.45s var(--ease);
}

.about__card:hover::after {
  opacity: 0.85;
}

.about__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(181, 204, 194, 0.08) 0%, transparent 48%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.about__card:hover::before {
  opacity: 1;
}

.hover-lift {
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.about__icon {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--sage);
  margin-bottom: 0.8rem;
}

.about__card h3 {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  margin: 0 0 0.5rem;
  color: var(--cream);
}

.about__card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* ——— Showcase slider ——— */
.section--showcase {
  background: linear-gradient(180deg, var(--pine-deep) 0%, var(--bg-page) 28%);
  padding-top: clamp(2.5rem, 7vw, 4rem);
  padding-bottom: clamp(3.5rem, 9vw, 5.5rem);
  border-top: 1px solid rgba(222, 229, 215, 0.06);
}

.showcase {
  max-width: 100%;
}

.showcase__intro {
  max-width: min(720px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3rem);
}

.showcase__head {
  display: block;
  text-align: left;
}

.showcase__eyebrow {
  margin: 0 0 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(181, 204, 194, 0.48);
}

.showcase__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1.15;
}

.showcase__lede {
  margin: 0;
  max-width: 34em;
  font-size: clamp(0.95rem, 2.1vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.showcase__chrome {
  position: relative;
  max-width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(3px, 0.45vw, 5px);
  border-radius: clamp(18px, 3.2vw, 26px);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(14, 42, 34, 0.85) 0%, rgba(6, 15, 12, 0.95) 100%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.showcase__chrome-aura {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150%;
  height: 180%;
  margin: -90% 0 0 -75%;
  background: conic-gradient(
    from 200deg,
    transparent 0deg,
    rgba(181, 204, 194, 0.11) 55deg,
    transparent 110deg,
    rgba(222, 229, 215, 0.06) 220deg,
    transparent 300deg
  );
  animation: showcaseAuraSpin 16s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes showcaseAuraSpin {
  to {
    transform: rotate(360deg);
  }
}

.showcase__viewport-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.25rem);
  margin: 0 auto;
  padding: clamp(0.35rem, 1vw, 0.65rem) clamp(0.5rem, 2vw, 1.15rem);
  border-radius: clamp(16px, 3vw, 22px);
  background: rgba(5, 12, 10, 0.55);
  backdrop-filter: blur(8px);
}

.showcase__viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: clamp(16px, 3vw, 24px);
  outline: none;
}

.showcase__viewport::-webkit-scrollbar {
  display: none;
}

.showcase__viewport:focus-visible {
  box-shadow: 0 0 0 2px var(--bg-page), 0 0 0 4px rgba(181, 204, 194, 0.55);
}

.showcase__track {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 1rem;
  display: flex;
  gap: clamp(1rem, 3vw, 1.75rem);
  width: max-content;
}

.showcase__slide {
  flex: 0 0 min(82vw, 640px);
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.showcase__card {
  position: relative;
  border-radius: clamp(14px, 2.5vw, 20px);
  overflow: hidden;
  border: 1px solid rgba(222, 229, 215, 0.1);
  background: var(--pine);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 36px 90px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 640px);
}

.showcase__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  z-index: 1;
}

.showcase__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1s var(--ease-out);
}

.showcase__slide.is-active .showcase__card img {
  transform: scale(1);
}

.showcase__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(222, 229, 215, 0.14);
  background: rgba(14, 42, 34, 0.65);
  backdrop-filter: blur(12px);
  color: var(--cream);
  cursor: pointer;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease-spring);
}

.showcase__arrow:hover {
  border-color: rgba(222, 229, 215, 0.35);
  background: rgba(19, 63, 50, 0.75);
  transform: scale(1.06);
}

.showcase__arrow:active {
  transform: scale(0.96);
}

.showcase__arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.showcase__arrow--prev::before {
  transform: rotate(45deg) translate(2px, -2px);
}

.showcase__arrow--next::before {
  transform: rotate(-135deg) translate(2px, -2px);
}

.showcase__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  max-width: min(1180px, 100%);
  margin: 1.5rem auto 0;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.showcase__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.showcase__counter {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(222, 229, 215, 0.38);
  white-space: nowrap;
}

.showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
  border: none;
  background: rgba(222, 229, 215, 0.2);
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.showcase__dot:hover {
  background: rgba(222, 229, 215, 0.45);
  transform: scale(1.15);
}

.showcase__dot.is-active {
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(181, 204, 194, 0.2);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .showcase__viewport-wrap {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .showcase__arrow {
    display: none;
  }

  .showcase__slide {
    flex: 0 0 88vw;
  }

  .showcase__footer {
    flex-direction: column;
    align-items: center;
  }
}

/* ——— Menu ——— */
.section--menu {
  background: var(--pine-deep);
}

.section--menu-glow {
  position: relative;
}

.section--menu-glow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(181, 204, 194, 0.22) 50%, transparent 95%);
  opacity: 0.75;
  animation: menuEdgeShimmer 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes menuEdgeShimmer {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.95;
  }
}

.menu-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2.25rem;
  align-items: center;
}

.menu-strip--framed {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(222, 229, 215, 0.06);
  background: linear-gradient(165deg, rgba(19, 63, 50, 0.25) 0%, transparent 55%);
}

.menu-strip--framed .menu-strip__content {
  position: relative;
  padding-left: clamp(1rem, 2.5vw, 1.35rem);
}

.menu-strip--framed .menu-strip__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 2px;
  border-radius: 1px;
  background: linear-gradient(180deg, transparent, rgba(181, 204, 194, 0.15) 15%, rgba(181, 204, 194, 0.45) 50%, rgba(181, 204, 194, 0.12) 85%, transparent);
  animation: menuAccentFlow 6s ease-in-out infinite;
}

@keyframes menuAccentFlow {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.04);
  }
}

.menu-strip__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  max-height: 440px;
}

.menu-strip__parallax {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.menu-strip__shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 42, 34, 0.45) 100%);
  pointer-events: none;
}

.menu-strip__parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  display: block;
}

.menu-strip__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 1rem;
  color: var(--cream);
}

.menu-strip__content p {
  margin: 0 0 1.45rem;
  color: var(--text-muted);
}

/* ——— Loyalty ——— */
.section--loyalty {
  background: linear-gradient(180deg, var(--bg-page) 0%, rgba(181, 204, 194, 0.1) 50%, var(--bg-page) 100%);
}

.loyalty__card {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: 2.75rem 2rem;
  background: rgba(181, 204, 194, 0.12);
  border: 1px solid rgba(181, 204, 194, 0.32);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.loyalty__card--framed {
  position: relative;
  overflow: visible;
}

.loyalty__card--framed::before,
.loyalty__card--framed::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(222, 229, 215, 0.14);
  pointer-events: none;
  animation: loyaltyHalo 5s ease-out infinite;
}

.loyalty__card--framed::after {
  animation-delay: 2.5s;
}

@keyframes loyaltyHalo {
  0% {
    transform: scale(1);
    opacity: 0.35;
  }
  100% {
    transform: scale(1.035);
    opacity: 0;
  }
}

.loyalty__card h2 {
  font-family: var(--font-serif);
  margin: 0 0 0.9rem;
  color: var(--cream);
}

.loyalty__card p {
  margin: 0 0 1.45rem;
  color: var(--text-muted);
}

/* ——— VIP ——— */
.section--vip {
  background: var(--bg-page);
}

.section--vip-accent .vip__text {
  position: relative;
  padding-left: clamp(0.85rem, 2vw, 1.15rem);
}

.section--vip-accent .vip__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(181, 204, 194, 0.08), rgba(181, 204, 194, 0.35) 45%, rgba(181, 204, 194, 0.1));
  animation: vipStripeGlow 7s ease-in-out infinite;
}

@keyframes vipStripeGlow {
  0%,
  100% {
    filter: brightness(0.9);
  }
  50% {
    filter: brightness(1.25);
  }
}

.vip {
  display: grid;
  grid-template-columns: 1fr minmax(0, 360px);
  gap: 2.25rem;
  align-items: center;
}

.vip__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 1rem;
  color: var(--cream);
}

.vip__text p {
  margin: 0 0 1.45rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.vip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vip__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  max-height: 460px;
}

.vip__frame--ornate {
  border-color: rgba(222, 229, 215, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.vip__frame-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  z-index: 4;
  pointer-events: none;
  border-color: rgba(222, 229, 215, 0.38);
  border-style: solid;
  border-width: 0;
  transition: border-color 0.45s var(--ease), transform 0.55s var(--ease-out);
}

.vip__frame-corner--tl {
  top: 12px;
  left: 12px;
  border-top-width: 1px;
  border-left-width: 1px;
}

.vip__frame-corner--tr {
  top: 12px;
  right: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
}

.vip__frame-corner--bl {
  bottom: 12px;
  left: 12px;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.vip__frame-corner--br {
  bottom: 12px;
  right: 12px;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.vip__frame--ornate:hover .vip__frame-corner {
  border-color: rgba(222, 229, 215, 0.72);
  transform: scale(1.06);
}

.vip__parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.vip__shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.vip__parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ——— Contacts ——— */
.section--contacts {
  background: var(--pine-deep);
}

.contacts {
  display: grid;
  grid-template-columns: 1fr min(480px, 100%);
  gap: 2rem;
  align-items: stretch;
}

.contacts__info h2 {
  font-family: var(--font-serif);
  margin: 0 0 1.1rem;
  color: var(--cream);
}

.contacts__address {
  font-style: normal;
  margin: 0 0 1.1rem;
  font-size: 1.08rem;
  line-height: 1.5;
}

.contacts__address a {
  color: var(--cream);
}

.contacts__hours {
  margin: 0 0 1.45rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contacts__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 300px;
  background: var(--pine);
}

.contacts__map--framed {
  position: relative;
  border-color: rgba(222, 229, 215, 0.1);
}

.contacts__map-pulse {
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(181, 204, 194, 0.22);
  pointer-events: none;
  z-index: 2;
  animation: contactsMapPulse 4.5s ease-in-out infinite;
}

@keyframes contactsMapPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.008);
  }
}

.contacts__map--framed iframe {
  position: relative;
  z-index: 1;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  transition: filter 0.4s var(--ease);
}

.contacts__map:hover iframe {
  filter: saturate(1) contrast(1.05);
}

/* ——— Footer ——— */
.footer {
  position: relative;
  padding: 2.25rem clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--border);
  background: var(--bg-page);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 204, 194, 0.28), transparent);
  opacity: 0.85;
  animation: footerGlowLine 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes footerGlowLine {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleX(0.92);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__brand {
  margin: 0;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.88rem;
}

.footer__brand-mark {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.04em;
}

.footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__copy a {
  color: var(--sage);
}

/* ——— Reveal (при скролле) ——— */
.reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.88s var(--ease-out),
    transform 0.88s var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.reveal--soft {
  transition-duration: 1.12s, 1.12s;
}

.reveal--fade {
  transform: none;
}

.reveal--fade.is-visible {
  transform: none;
}

.reveal--left {
  transform: translate3d(-36px, 22px, 0);
}

.reveal--left.is-visible {
  transform: translate3d(0, 0, 0);
}

.reveal--right {
  transform: translate3d(36px, 22px, 0);
}

.reveal--right.is-visible {
  transform: translate3d(0, 0, 0);
}

.reveal--scale {
  transform: translate3d(0, 20px, 0) scale(0.96);
}

.reveal--scale.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal--delay-1 {
  transition-delay: 0.08s;
}

.reveal--delay-2 {
  transition-delay: 0.16s;
}

.reveal--delay-3 {
  transition-delay: 0.24s;
}

.reveal--delay-4 {
  transition-delay: 0.34s;
}

.reveal--delay-5 {
  transition-delay: 0.44s;
}

.reveal--delay-6 {
  transition-delay: 0.54s;
}

/* ——— Mobile ——— */
@media (max-width: 880px) {
  .menu-strip,
  .vip,
  .contacts {
    grid-template-columns: 1fr;
  }

  .menu-strip__visual {
    order: -1;
    max-height: 340px;
  }

  .menu-strip--framed .menu-strip__content {
    padding-left: 0;
    padding-top: 1.15rem;
    margin-top: 0.35rem;
    border-top: 1px solid rgba(222, 229, 215, 0.07);
  }

  .menu-strip--framed .menu-strip__content::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    z-index: 102;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 320px);
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 1.75rem;
    padding: var(--header-h) 1.5rem 2rem;
    background: rgba(181, 204, 194, 0.97);
    backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-spring);
    border-left: 1px solid rgba(19, 63, 50, 0.12);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .nav__list a {
    font-size: 1rem;
    color: var(--pine);
  }

  .nav__list a:hover {
    color: var(--pine-deep);
  }

  .nav__cta {
    width: 100%;
    text-align: center;
  }

  .hero__next {
    margin-top: 1.5rem;
  }

  .hero__watermark {
    font-size: clamp(3.5rem, 18vw, 7rem);
  }

  .hero__stage {
    min-height: min(42vh, 360px);
    padding-bottom: 0.5rem;
  }

  .hero__emblem {
    width: min(72vw, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__stage,
  .hero__dock,
  .hero__watermark,
  .hero__emblem-stage {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .section::after {
    transform: scaleX(1);
    transition: none;
  }

  .js-parallax {
    transform: none !important;
    will-change: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__emblem-ring,
  .hero__emblem-bloom,
  .hero__emblem-shimmer,
  .hero__emblem-core,
  .hero__emblem-sheen,
  .hero__emblem-echo,
  .hero__spark {
    animation: none !important;
  }

  .hero__emblem-bloom {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  .hero__emblem-sheen {
    opacity: 0.4;
  }

  .hero__spark {
    opacity: 0;
  }

  .hero__mist,
  .hero__bokeh span,
  .hero__next-chev,
  .logo__orbit {
    animation: none !important;
  }

  .hero-bridge::before,
  .hero-bridge::after,
  .showcase__chrome-aura,
  .section--menu-glow::before,
  .menu-strip--framed .menu-strip__content::before,
  .loyalty__card--framed::before,
  .loyalty__card--framed::after,
  .section--vip-accent .vip__text::before,
  .contacts__map-pulse,
  .footer::before {
    animation: none !important;
  }

  .showcase__chrome-aura {
    transform: none;
  }

  .vip__frame--ornate:hover .vip__frame-corner {
    transform: none;
  }

  .btn--shine::after {
    display: none;
  }

  .showcase__card img,
  .hover-lift {
    transition: none;
  }

  .hover-lift:hover {
    transform: none;
  }

  .cursor-glow {
    display: none !important;
  }
}
