*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #081220;
  --text: #E8EDF4;
  --accent: #C41E3A;
  --accent-bright: #E8354F;
  --gold: #C9A227;
  --muted: #8A9BB0;
  --panel: rgba(8, 16, 32, 0.96);
  --line: rgba(201, 162, 39, 0.18);
  --line-strong: rgba(201, 162, 39, 0.38);
  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; height: 100%; overflow: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
  height: 100svh;
  max-height: 100svh;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 32% 68%;
  align-items: stretch;
  opacity: 0;
}

.hero__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-height: 100svh;
  padding: clamp(1.2rem, 2.4vw, 1.9rem) clamp(1rem, 2vw, 1.4rem);
  border-right: 1px solid var(--line);
  background:
    radial-gradient(ellipse 90% 45% at 0% 50%, rgba(196, 30, 58, 0.08) 0%, transparent 65%),
    linear-gradient(180deg, #081220 0%, #0A1628 55%, #060E1A 100%);
  overflow: hidden;
}

.aside-top { flex-shrink: 0; text-align: left; opacity: 0; padding-left: 0.35rem; }

.aside-top__ornament { display: block; margin-bottom: 0.85rem; }

.aside-top__mark {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--accent-bright);
  line-height: 1;
}

.hero__logo {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

.aside-top__tagline {
  font-size: clamp(0.86rem, 1.5vw, 1rem);
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.aside-top__stock {
  margin-top: 0.45rem;
  font-size: clamp(0.92rem, 1.55vw, 1.08rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.03em;
  line-height: 1.4;
  background: linear-gradient(
    105deg,
    #8B6914 0%,
    #C9A227 18%,
    #F5E6A3 38%,
    #FFF3C4 50%,
    #E8C547 62%,
    #C9A227 82%,
    #8B6914 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
  text-decoration-color: rgba(201, 162, 39, 0.85);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
  animation: gold-shimmer 3.8s ease-in-out infinite;
}

@keyframes gold-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.aside-center {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 0.5rem 0;
}

.aside-panel {
  position: relative;
  width: 100%;
  padding: clamp(0.85rem, 1.4vw, 1.1rem) clamp(0.85rem, 1.3vw, 1.1rem) clamp(0.85rem, 1.4vw, 1.1rem) clamp(1.1rem, 1.6vw, 1.3rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0 10px 10px 0;
  box-shadow: 4px 0 0 var(--accent), 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateX(-16px);
}

.aside-panel--bar .aside-panel__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-bright), var(--gold));
}

.aside-panel__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.aside-panel__label {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.aside-panel__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.benefits-carousel { border-top: 1px solid rgba(201, 162, 39, 0.1); padding-top: 0.7rem; }

.benefits-carousel__stage { position: relative; min-height: clamp(9rem, 19vw, 12.5rem); }

.benefit-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  padding-right: 0.25rem;
}

.benefit-card.is-active { visibility: visible; }

.benefit-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.55rem;
  line-height: 1.18;
}

.benefit-card p {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.48;
  color: var(--text);
  opacity: 0.9;
}

.benefits-carousel__dots {
  display: flex;
  justify-content: flex-start;
  gap: 0.3rem;
  margin-top: 0.75rem;
}

.benefits-carousel__dots span {
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background: var(--accent-bright);
  opacity: 0.25;
  transform: rotate(45deg);
  transition: opacity 0.3s;
}

.benefits-carousel__dots span.is-active { opacity: 0.95; }

.aside-bottom {
  flex-shrink: 0;
  text-align: center;
  opacity: 0;
  overflow: visible;
  position: relative;
  z-index: 30;
}

.aside-bottom__link {
  font-size: clamp(0.8rem, 1.2vw, 0.92rem);
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  padding-bottom: 2px;
}

.aside-bottom__link:hover { color: var(--accent-bright); }

.hero__visual {
  position: relative;
  overflow: hidden;
  height: 100svh;
  max-height: 100svh;
}

.hero__glow {
  position: absolute;
  width: clamp(150px, 23vw, 290px);
  height: clamp(150px, 23vw, 290px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.5) 0%, transparent 70%);
  opacity: 0;
  top: 14%;
  right: 6%;
  transform: scale(0);
  z-index: 0;
}

.hero__image-wrap { position: absolute; inset: 0; z-index: 1; }

.hero-image {
  position: absolute;
  inset: 0;
  clip-path: inset(100% 0 0 0);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 54%;
  display: block;
}

.hero__btn-wrap {
  position: absolute;
  bottom: clamp(3.5rem, 8vw, 6rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-start;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  z-index: 3;
  pointer-events: none;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1.8rem, 4vw, 2.8rem);
  background: linear-gradient(135deg, var(--accent) 0%, #8B1528 100%);
  color: var(--text);
  font-size: clamp(0.98rem, 2.3vw, 1.18rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 3px;
  opacity: 0;
  transform: scale(0.85);
  transition: filter 0.25s;
  pointer-events: auto;
}

.hero__btn:hover { filter: brightness(1.1); }

@media (max-width: 768px) {
  html, body { height: auto; min-height: 100svh; max-height: none; overflow-x: hidden; overflow-y: auto; }
  .hero { display: flex; flex-direction: column; height: auto; min-height: 100svh; max-height: none; overflow: visible; }
  .hero__visual { order: 1; height: 70svh; min-height: 70svh; max-height: 70svh; }
  .hero__aside { order: 2; border-right: none; border-top: 1px solid var(--line); padding: 1rem; max-height: none; height: auto; }
  .aside-bottom { display: none; }
  .hero-image img { object-position: center 62%; }
  .hero__btn-wrap { justify-content: center; padding-left: 0; bottom: clamp(0.85rem, 3vw, 1.25rem); padding: 0 1rem; }
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero__visual { height: 100svh; min-height: 100svh; max-height: 100svh; }
  .hero-image img { object-position: center 62%; }
  .hero__btn-wrap { bottom: clamp(0.65rem, 2.5vw, 1rem); }
}

.requisites { position: relative; display: inline-flex; }

.requisites__btn {
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.38rem 0.7rem;
  border-radius: 3px;
  cursor: pointer;
}

.requisites__btn:hover { color: var(--gold); }

.requisites__popup {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 15rem;
  padding: 0.8rem 0.95rem;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  z-index: 300;
  text-align: left;
}

.requisites__popup[hidden] { display: none !important; }

.requisites__label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.12rem;
}

.requisites__field { font-size: 0.78rem; line-height: 1.4; }

.requisites__name { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.55rem; }

.requisites--panel { margin-top: 0.65rem; }

.site-foot--dock {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 50;
  padding: 0.65rem 0.85rem;
  pointer-events: none;
}

.site-foot--dock .requisites { pointer-events: auto; }

@media (min-width: 769px) { .site-foot--dock { display: none; } }
@media (max-width: 768px) {
  .requisites--panel { display: none; }
  .site-foot--dock {
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 0.65rem 1rem;
  }
  .site-foot--dock .requisites__popup {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    min-width: min(15rem, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
  }
}

/* без скриптов */
.hero { opacity: 1 !important; }
.hero-image { clip-path: none !important; }
.aside-top, .aside-panel, .aside-bottom, .hero__btn, .hero__glow { opacity: 1 !important; transform: none !important; }
.aside-panel { transform: none !important; }
.benefit-card:first-child { opacity: 1 !important; visibility: visible !important; position: relative !important; }
.benefit-card:not(:first-child) { display: none !important; }
.benefits-carousel__dots { display: none !important; }
.requisites { position: relative; display: inline-flex; flex-direction: column; align-items: center; }
.requisites summary.requisites__btn { list-style: none; cursor: pointer; font-family: inherit; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); background: transparent; border: 1px solid var(--line); padding: 0.38rem 0.7rem; border-radius: 20px; }
.requisites summary.requisites__btn::-webkit-details-marker { display: none; }
.requisites__popup { position: absolute; bottom: calc(100% + 0.5rem); left: 50%; transform: translateX(-50%); min-width: 15rem; padding: 0.85rem 1rem; background: var(--panel); border: 1px solid var(--line-strong); border-radius: 12px; box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5); z-index: 300; text-align: left; }
.requisites:not([open]) .requisites__popup { display: none; }
.requisites__name { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.35rem; }
.requisites__field { font-size: 0.78rem; line-height: 1.4; }
.requisites--panel { margin-top: 0.65rem; }
