@font-face {
  font-family: 'Highliner';
  src: url('../assets/fonts/Highliner-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --vw: min(1vw, 21px);
  --edge-extra: max(0px, (100vw - 2100px) / 2);
  --red: #D90126;
  --red-dark: #B4141A;
  --black: #000000;
  --white: #ffffff;
  --gold: #E8A33D;
  --gap: 20px;

  --display: 'PT Serif', Georgia, serif;
  --text: 'Roboto Condensed', sans-serif;
}

* { box-sizing: border-box; }

/* ---------- Age gate ---------- */
.agegate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.agegate.is-hidden { display: none; }
.agegate__modal {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 32px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
}
.agegate__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 56px;
  color: var(--red);
  margin: 0 0 20px;
  line-height: 1;
}
.agegate__text {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0 0 28px;
}
.agegate__accent {
  color: var(--red);
  text-decoration: underline;
}
.agegate__buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.agegate__btn {
  flex: 1;
  padding: 14px 8px;
  border-radius: 999px;
  font-family: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: none;
}
.agegate__btn--no {
  border: 1px solid #999;
  color: #999;
}
.agegate__btn--yes {
  border: 1px solid var(--red);
  color: var(--red);
}
.agegate__hint {
  font-size: 12px;
  color: #999;
  margin: 0;
}
@media (max-width: 380px) {
  .agegate__buttons { flex-direction: column; }
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.arrow { display: inline-block; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--text);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .03em;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn--white {
  background: var(--white);
  color: var(--red);
}
.btn--red {
  background: var(--red);
  color: var(--white);
}
.btn-glow {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 377px;
  height: 50px;
  background: var(--red);
  color: var(--white);
  font-family: var(--text);
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  text-decoration: none;
  opacity: .7;
  box-shadow: 0 0 1px var(--red), 0 0 2px var(--red), 0 0 3px var(--red), 0 0 5px var(--red), 0 0 10px var(--red), 0 0 25px rgba(255,255,255,.25), 0 0 15px rgba(255,255,255,.5), 0 0 5px #fff;
}

/* ---------- Topbar ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(1.389 * var(--vw)) calc(13.889 * var(--vw) + var(--edge-extra));
  background: var(--white);
}
.topbar__reg {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--red);
  color: var(--white);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 20px;
  height: 44px;
  position: relative;
  transition: transform .25s ease;
  transform-origin: center;
}
.topbar__reg:hover {
  transform: scale(1.08);
}
.topbar__reg > * { position: relative; }
.arrow--tri {
  display: inline-block;
  flex: none;
  width: 15px;
  height: 20px;
  font-size: 0;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.topbar__badge {
  position: absolute;
  top: calc(6.528 * var(--vw));
  left: 0;
  right: 0;
  padding: 0 calc(13.889 * var(--vw) + var(--edge-extra));
  text-align: center;
  font-family: var(--text);
  font-size: max(14px, calc(1.25 * var(--vw)));
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--red);
  text-transform: uppercase;
  box-sizing: border-box;
}
.topbar__menu {
  border: 1px solid var(--red);
  background: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  flex: none;
}
.topbar__menu span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.topbar__menu-wrap {
  position: relative;
  flex: none;
}
.topbar__dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: var(--white);
  padding: 28px 24px 0 0;
  min-width: 264px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  pointer-events: none;
}
.topbar__menu-wrap:hover .topbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.topbar__dropdown a {
  display: block;
  width: 100%;
  text-align: right;
  padding: 12px 0 12px;
  border-top: 1px solid var(--red);
  color: var(--red);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s ease;
}
.topbar__dropdown a:hover { opacity: .6; }

/* ---------- Hero ----------
   Positions below are traced 1:1 from the Figma "Frame 5" export
   (1440px reference width) and expressed in vw so the whole stage
   scales proportionally at any viewport width. 1 design-px = 100/1440 vw. */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__stage {
  position: relative;
  width: 100%;
  min-height: calc(36.389 * var(--vw));
}
.hero__wordmark {
  position: absolute;
  left: calc(13.889 * var(--vw));
  top: calc(8.819 * var(--vw));
  width: calc(73.125 * var(--vw));
  max-width: 1536px;
  z-index: 1;
}
.hero__text {
  position: absolute;
  left: calc(13.889 * var(--vw));
  top: calc(25.171 * var(--vw));
  width: calc(22.284 * var(--vw));
  min-width: 240px;
  font-size: max(14px, calc(1.05 * var(--vw)));
  line-height: 1.5;
  color: #333;
  margin: 0;
  z-index: 2;
}
.hero__text strong { font-weight: 700; }
.hero__note { font-size: 0.7em; vertical-align: super; }
.hero__bottle-m { display: none; }

/* ---------- Dates ---------- */
.dates {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: calc(2.778 * var(--vw)) calc(13.889 * var(--vw) + var(--edge-extra));
  border-radius: calc(4.167 * var(--vw)) calc(4.167 * var(--vw)) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(2.778 * var(--vw));
  position: relative;
}
.dates__bottle {
  position: absolute;
  left: calc(79.93 * var(--vw));
  top: calc(-91.67 * var(--vw));
  width: calc(52.194 * var(--vw));
  max-width: 1096px;
  z-index: 2;
  pointer-events: none;
}
.dates__title {
  display: flex;
  align-items: flex-start;
  gap: calc(3 * var(--vw));
}
.dates__title img:first-child { width: calc(21.46 * var(--vw)); max-width: 451px; }
.dates__title img:last-child { width: calc(47.77 * var(--vw)); max-width: 1003px; }
.dates__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(1.319 * var(--vw));
  background: var(--white);
  color: var(--red);
  text-decoration: none;
  padding: 0 calc(10.069 * var(--vw));
  width: calc(35.417 * var(--vw));
  min-width: 400px;
  min-height: calc(7.639 * var(--vw));
  box-sizing: border-box;
}
.dates__link > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--text);
  font-weight: 600;
  font-size: min(44px, calc(2.083 * var(--vw)));
  text-transform: uppercase;
}
.dates__sub {
  font-family: var(--text);
  font-size: min(26px, calc(1.25 * var(--vw)));
  font-weight: 600;
  color: var(--black);
  opacity: 1;
}
.dates__link span.rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--black);
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
}
.ticker__track {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  animation: ticker 65s linear infinite;
  font-family: var(--text);
  font-weight: 400;
  font-size: 20px;
  white-space: nowrap;
}
.ticker__track span { color: var(--white); }
.ticker__track span:nth-child(even) { width: 35px; height: 1px; background: var(--white); font-size: 0; }
.ticker--white { background: var(--white); }
.ticker--white .ticker__track span { color: var(--black); }
.ticker--white .ticker__track span:nth-child(even) { background: var(--black); }
.ticker--slow .ticker__track { animation-duration: 80s; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about {
  padding: calc(1.146 * var(--vw)) calc(13.889 * var(--vw) + var(--edge-extra)) calc(4.861 * var(--vw));
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 655px;
}
.about__text p {
  font-family: var(--text);
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
}
.about__text p:first-child { font-size: 20px; }
.recipe-card {
  position: relative;
  flex: none;
  width: calc(26.042 * var(--vw));
  max-width: 547px;
}
.recipe-card img { width: 100%; display: block; }
.recipe-card__item {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--text);
  font-weight: 500;
  font-size: 26px;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  white-space: nowrap;
}
.recipe-card__item--campari { top: 26.5%; }
.recipe-card__item--gin { top: 53.8%; color: #440106; }
.recipe-card__item--vermouth { top: 77.9%; }

/* ---------- Stages / key dates ---------- */
.stages {
  background: var(--black);
  color: var(--white);
  padding: calc(2.778 * var(--vw)) calc(2.778 * var(--vw) + var(--edge-extra));
}
.stages__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: calc(2.778 * var(--vw));
}
.stages__intro {
  font-family: var(--text);
  font-style: italic;
  font-size: min(38px, calc(1.806 * var(--vw)));
  line-height: 1.3;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  width: 100%;
}
.stages__intro strong { font-weight: 800; }
.stages__note { font-size: 0.6em; vertical-align: super; }
.stages__subrow {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}
.stages__reg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--red);
  border: 1px solid var(--red);
  box-sizing: border-box;
  color: var(--white);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 20px;
  height: 44px;
  width: calc(17.569 * var(--vw));
  max-width: 369px;
  flex: none;
  position: absolute;
  left: calc(25px + max(220px, min(557px, calc(26.528 * var(--vw)))) + min(236px, calc(11.25 * var(--vw))));
  top: 50%;
  margin-top: -22px;
  transition: transform .25s ease;
  transform-origin: center;
}
.stages__reg:hover { transform: scale(1.08); }
.stages__hint {
  font-family: var(--text);
  font-size: 18px;
  line-height: 1.1;
  color: var(--white);
  text-align: left;
  margin: 0 0 0 auto;
  white-space: normal;
  flex: none;
  width: calc(25.486 * var(--vw));
  max-width: 535px;
  padding-right: 73px;
  box-sizing: border-box;
  position: relative;
}
.stages__hint-arrow {
  position: absolute;
  left: 70%;
  top: 61.11%;
  width: 8.72%;
  max-width: 32px;
  pointer-events: none;
}
.stages__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex: none;
  width: calc(37.292 * var(--vw));
}
.stages__heading img:first-child { width: calc(21.042 * var(--vw)); max-width: 442px; }
.stages__heading img:last-child { width: calc(12.472 * var(--vw)); max-width: 262px; margin-top: 10px; }
.stages__grid {
  display: flex;
  align-items: center;
  gap: min(58px, calc(2.778 * var(--vw)));
}
.stages__list {
  list-style: none;
  margin: 0;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.stages__list li {
  display: grid;
  grid-template-columns: minmax(220px, min(557px, calc(26.528 * var(--vw)))) minmax(150px, 1fr);
  gap: min(236px, calc(11.25 * var(--vw)));
  align-items: center;
  opacity: .5;
  transition: opacity .2s ease;
}
.stages__list li.is-active {
  opacity: 1;
  align-items: flex-start;
  position: relative;
}
.stages__list li.is-active::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 40px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--red);
}
.stages__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  min-width: 0;
}
.stages__list li.is-active .stages__label { align-items: flex-start; gap: 0px; }
.stages__date {
  display: block;
  color: var(--white);
  font-family: var(--text);
  font-size: min(26px, calc(1.25 * var(--vw)));
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}
.stages__list li.is-active .stages__date { font-size: min(32px, calc(1.528 * var(--vw))); }
.stages__name {
  display: block;
  font-family: var(--text);
  font-weight: 400;
  font-size: min(44px, calc(2.083 * var(--vw)));
  text-transform: uppercase;
  text-align: left;
  color: var(--red);
  text-shadow: 0 0 10px var(--red), 0 0 5px var(--red), 0 0 3px var(--red), 0 0 2px var(--red), 0 0 1px var(--red);
}
.stages__list li.is-active .stages__name {
  font-size: min(58px, calc(2.778 * var(--vw)));
  text-shadow: 0 0 13.6px var(--red), 0 0 6.8px var(--red), 0 0 4.1px var(--red), 0 0 2.7px var(--red), 0 0 1.4px var(--red);
}
.stages__desc {
  font-family: var(--text);
  font-size: min(23px, calc(1.111 * var(--vw)));
  color: var(--white);
  line-height: 1.15;
  text-transform: uppercase;
  text-align: left;
  flex: none;
  width: auto;
  min-width: 0;
  margin: 0;
}
.stages__list li.is-active .stages__desc { font-size: min(29px, calc(1.389 * var(--vw))); }
.stages__line { display: block; white-space: normal; }
.stages__line + .stages__line { margin-top: 4px; }
.stages__desc mark {
  background: var(--red);
  color: var(--white);
  padding: 0 4px;
  font-weight: 400;
}
.stages__wheel {
  flex: none;
  width: min(642px, calc(30.556 * var(--vw)));
}
.stages__wheel--m { display: none; }
.stages__wheel--m-wrap { display: contents; }
.stages__hint--mobile { display: none; }
.wheel {
  position: relative;
  width: min(642px, calc(30.556 * var(--vw)));
  height: min(642px, calc(30.556 * var(--vw)));
  margin: 0 auto;
}
.wheel__ring {
  position: absolute;
  inset: 0;
  margin: auto;
}
.wheel__ring--cw { animation: wheel-spin-cw 22s linear infinite; }
.wheel__ring--ccw { animation: wheel-spin-ccw 22s linear infinite; }
.wheel__ring--obonianie { width: 100%;   height: 100%; }
.wheel__ring--zrenie    { width: 93.35%; height: 93.35%; }
.wheel__ring--osyazanie { width: 91.31%; height: 91.31%; }
.wheel__ring--vkus      { width: 60.78%; height: 60.78%; }
.wheel__ring--sluh      { width: 59.46%; height: 59.46%; }
.wheel__glass {
  position: absolute;
  left: 21%;
  top: 23.25%;
  width: 58%;
  transform: rotate(-20deg);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.5));
}
@keyframes wheel-spin-cw { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes wheel-spin-ccw { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

/* ---------- Perks ---------- */
.perks {
  background: var(--white);
  position: relative;
  border-radius: calc(4.167 * var(--vw)) calc(4.167 * var(--vw)) 0 0;
  height: calc(39.79 * var(--vw));
  overflow: hidden;
}
.perks__heading {
  position: absolute;
  left: calc(2.778 * var(--vw));
  top: calc(5.556 * var(--vw));
  width: calc(72.222 * var(--vw));
}
.perks__box {
  position: absolute;
  left: calc(52.153 * var(--vw));
  top: calc(-5.86 * var(--vw));
  width: calc(53.056 * var(--vw));
  max-width: 1114px;
}
.perks__item {
  position: absolute;
  top: calc(34.9 * var(--vw));
  display: flex;
  align-items: flex-start;
  gap: min(22px, calc(1.042 * var(--vw)));
}
.perks__item--1 { left: calc(2.778 * var(--vw)); width: calc(28.9 * var(--vw)); }
.perks__item--4 { left: calc(41.58 * var(--vw)); width: calc(55.64 * var(--vw)); }
.perks__marker { order: -1; }
.perks__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
}
.perks__name {
  display: block;
  font-family: var(--text);
  font-weight: 400;
  font-size: min(38px, calc(1.806 * var(--vw)));
  text-transform: uppercase;
  color: var(--red);
  text-shadow: 0 0 10px var(--red), 0 0 5px var(--red), 0 0 3px var(--red), 0 0 2px var(--red), 0 0 1px var(--red);
  line-height: 1.14;
}
.perks__desc {
  display: block;
  font-family: var(--text);
  font-size: min(23px, calc(1.111 * var(--vw)));
  color: var(--black);
  line-height: 1.3;
  text-transform: uppercase;
}
.perks__note { font-size: 0.35em; vertical-align: super; text-shadow: none; position: relative; top: -0.3em; }
.perks__marker {
  flex: none;
  width: min(22px, calc(1.042 * var(--vw)));
  height: min(29px, calc(1.389 * var(--vw)));
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.perks__marker--left,
.perks__marker--right { background-image: url('../assets/perks-marker-right.svg'); }

/* ---------- Embassies ---------- */
.embassies {
  background: var(--white);
  color: var(--black);
  padding: calc(2.778 * var(--vw)) calc(2.778 * var(--vw) + var(--edge-extra));
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.embassies__vertical {
  flex: none;
  display: block;
}
.embassies__vertical img { height: 100%; width: auto; display: block; }
.embassies__vertical--right { transform: rotate(180deg); }
.embassies__corner-note {
  position: absolute;
  width: 7px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.embassies__corner-note--top { left: 36px; top: 24.61px; }
.embassies__corner-note--bottom { right: 40px; bottom: 23px; }
.embassies__corner-note-inner {
  font-family: var(--text);
  font-size: 10px;
  font-weight: 400;
  color: var(--red);
  white-space: nowrap;
  transform: rotate(-90deg);
}
.embassies__corner-note-inner--right { transform: rotate(90deg); }
.embassies__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.embassies__row1 {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background .35s ease, color .35s ease;
}
.embassies__row1.is-active { background: var(--red); color: var(--white); }
.embassies__row2plus {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.embassies__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.embassies__list li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0px;
  height: 60px;
  padding: 0 20px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background .35s ease, color .35s ease;
}
.embassies__list li.is-active { background: var(--red); color: var(--white); }
.embassies__city {
  font-family: var(--text);
  font-size: 18px;
  text-transform: uppercase;
}
.embassies__bar {
  font-family: var(--text);
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
}
.embassies__list li.is-active .embassies__bar,
.embassies__row1.is-active .embassies__bar {
  color: var(--white);
  text-shadow: 0 0 10px #fff, 0 0 5px #fff, 0 0 3px #fff, 0 0 2px #fff, 0 0 1px #fff;
}
.embassies__list li:not(.is-active) .embassies__bar,
.embassies__row1:not(.is-active) .embassies__bar {
  color: var(--red);
  text-shadow: 0 0 10px var(--red), 0 0 5px var(--red), 0 0 3px var(--red), 0 0 2px var(--red), 0 0 1px var(--red);
}
.embassies__photo-wrap {
  flex: none;
  width: 275px;
  height: 372px;
  overflow: hidden;
  position: relative;
  background: #7c7c7c;
}
.embassies__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .4s ease;
}
.embassies__heading-m { display: none; }

/* ---------- Ambassadors ---------- */
.ambassadors {
  background: var(--red);
  padding: calc(2.778 * var(--vw)) calc(2.778 * var(--vw) + var(--edge-extra)) 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
}
.ambassadors__head {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.ambassadors__heading { height: 86px; width: auto; display: block; }
.ambassadors__heading--m { display: none; }
.ambassadors__heading-box { position: relative; display: inline-block; line-height: 0; }
.ambassadors__note {
  font-family: var(--text);
  font-size: 10px;
  line-height: normal;
  color: var(--white);
}
.ambassadors__note--d { position: absolute; left: 275px; top: 1px; }
.ambassadors__note--m { display: none; }
.ambassadors__carousel {
  display: flex;
  align-items: flex-start;
  gap: min(117px, calc(5.556 * var(--vw)));
  width: 100%;
}
.ambassadors__arrow {
  flex: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: min(22px, calc(1.042 * var(--vw)));
  margin-top: 15px;
}
.ambassadors__arrow img { width: 100%; display: block; }
.ambassadors__track {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(29px, calc(1.389 * var(--vw)));
  min-width: 0;
  height: min(687px, calc(32.708 * var(--vw)));
  padding-top: 15px;
  box-sizing: border-box;
  overflow: hidden;
}
.amb-card {
  flex: none;
  display: flex;
  flex-direction: column;
  transition: opacity .2s ease;
}
.amb-card--side { width: min(262px, calc(12.465 * var(--vw))); opacity: .6; }
.amb-card--center { width: min(570px, calc(27.153 * var(--vw))); }
.amb-card__name {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--text);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 5px #fff, 0 0 3px #fff, 0 0 2px #fff, 0 0 1px #fff;
  line-height: 1.14;
}
.amb-card__namelines { display: flex; flex-direction: column; }
.amb-card--side .amb-card__name {
  font-size: min(34px, calc(1.597 * var(--vw)));
  height: min(79px, calc(3.75 * var(--vw)));
  gap: 6px;
  text-shadow: 0 0 8px #fff, 0 0 4px #fff, 0 0 2px #fff, 0 0 1.5px #fff, 0 0 1px #fff;
}
.amb-card--center .amb-card__name {
  font-size: min(44px, calc(2.083 * var(--vw)));
  height: min(102px, calc(4.861 * var(--vw)));
}
.amb-card__sparkle {
  flex: none;
  width: min(86px, calc(4.111 * var(--vw)));
  height: min(84px, calc(4 * var(--vw)));
  align-self: flex-start;
  margin-top: 2px;
  transform: translate(6px, -6px);
}
.amb-card--side .amb-card__sparkle { width: min(63px, calc(3 * var(--vw))); height: min(61px, calc(2.917 * var(--vw))); }
.amb-card__photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--red);
}
.amb-card--side .amb-card__photo { height: min(452px, calc(21.528 * var(--vw))); }
.amb-card--center .amb-card__photo { height: min(585px, calc(27.847 * var(--vw))); }
.amb-card__photo img {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: 90%;
  height: 88%;
  object-fit: cover;
  object-position: center top;
}
.amb-card__photo--wide img {
  width: 90%;
}
.amb-card__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background: linear-gradient(to bottom, rgba(217,1,38,0) 0%, var(--red) 90%);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 70%);
}
.amb-card__bio {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-family: var(--text);
  padding: 0 16px;
  box-sizing: border-box;
}
.amb-card--side .amb-card__bio { gap: 8px; font-size: min(17px, calc(0.833 * var(--vw))); }
.amb-card--center .amb-card__bio { gap: 12px; font-size: min(23px, calc(1.111 * var(--vw))); }
.amb-card__bioline {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.amb-card__bioline span { flex: none; }
.amb-card__bioline p { margin: 0; }

/* ---------- Sponsors ---------- */
.sponsors {
  background: var(--white);
  border-radius: calc(4.167 * var(--vw)) calc(4.167 * var(--vw)) 0 0;
  padding: calc(5.556 * var(--vw)) calc(13.889 * var(--vw) + var(--edge-extra));
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sponsors__heading {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.sponsors__heading img:first-child { width: calc(10.89 * var(--vw)); max-width: 229px; }
.sponsors__heading img:last-child { width: calc(36.05 * var(--vw)); max-width: 757px; }
.sponsors__row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}
.sponsors__item {
  position: relative;
  flex: 1 0 0;
  min-width: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.sponsors__item img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72.36%;
  height: 72.36%;
  object-fit: cover;
}
.sponsors__item--tall img {
  width: 71.95%;
  height: 83.74%;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: calc(2.778 * var(--vw)) calc(13.889 * var(--vw) + var(--edge-extra));
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}
.footer__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 0;
}
.footer__title {
  font-family: var(--text);
  font-weight: 500;
  font-size: 32px;
  text-transform: uppercase;
  line-height: .95;
  margin: 0;
  max-width: 770px;
}
.footer__tg {
  display: flex;
  align-items: center;
  position: relative;
  width: 460px;
  min-height: 74px;
  height: auto;
  box-sizing: border-box;
  background: var(--white);
  border: 1px solid var(--white);
  padding: 20px 30px;
  text-decoration: none;
  flex: none;
}
.footer__tg-icon {
  position: absolute;
  right: 10px;
  top: 12px;
}
.footer__tg span {
  font-family: var(--text);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--black);
  text-transform: uppercase;
}
.footer__tg span .footer__tg-accent {
  color: #3e70d3;
}
.footer__tg-icon { width: 29px; height: 25.58px; flex: none; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: none;
}
.footer__links a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--text);
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  border: 1px solid var(--white);
  width: 229px;
  height: 50px;
  padding: 20px 30px;
  box-sizing: border-box;
}
.footer__links a::before {
  content: '';
  position: absolute;
  left: 228px;
  top: -26px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,1,38,.55) 0%, rgba(217,1,38,0) 70%);
  pointer-events: none;
}
.footer__links a .arrow { position: relative; margin-left: auto; }
.footer__legal-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  text-align: center;
  font-family: var(--text);
  font-size: 14px;
  text-transform: uppercase;
  color: var(--white);
}
.footer__disclaimer {
  margin: 0;
  line-height: 1.1;
}
.footer__warning {
  margin: 0;
  line-height: 1.1;
  opacity: .5;
}
.footer__notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.footer__note {
  font-family: var(--text);
  font-size: 14px;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
  text-align: left;
}
.footer__note strong { font-weight: 700; }

/* ---------- Closing banner ---------- */
.closing {
  background: var(--black);
  padding: calc(2.778 * var(--vw)) calc(13.889 * var(--vw) + var(--edge-extra));
}
.closing__logo { width: 100%; display: block; }

/* ---------- Age disclaimer bar (always pinned to viewport bottom) ---------- */
.age-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: calc(.694 * var(--vw)) calc(14.028 * var(--vw) + var(--edge-extra));
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  pointer-events: none;
}
.age-bar__text-wrap {
  flex: none;
  width: calc(63.403 * var(--vw));
  max-width: 1331px;
  height: calc(3.958 * var(--vw));
  max-height: 83px;
  position: relative;
  overflow: hidden;
}
.age-bar__text {
  position: absolute;
  left: 0;
  top: calc(-3.125 * var(--vw));
  margin: 0;
  font-family: 'Highliner', var(--text);
  font-weight: 300;
  font-size: calc(7.767 * var(--vw));
  line-height: normal;
  color: #fff;
  opacity: .2;
  mix-blend-mode: exclusion;
  text-transform: uppercase;
  white-space: nowrap;
}
.age-bar__badge {
  flex: none;
  width: calc(3.889 * var(--vw));
  height: calc(3.889 * var(--vw));
  max-width: 82px;
  max-height: 82px;
  border: 6px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: exclusion;
  opacity: .2;
}
.age-bar__badge img { width: 55%; height: auto; }


/* =========================================================
   MOBILE (<=767px) — matches Figma node 192:5799 "NEGRONI - 360"
   ========================================================= */
@media (max-width: 767px) {
  .stages__wheel, .wheel { display: none; }
  .stages__hint-arrow { display: none; }

  /* ---------- Topbar ---------- */
  .topbar {
    padding: 30px 15px 15px;
  }
  .topbar__reg {
    height: 30px;
    padding: 0 15px;
    font-size: 16px;
    gap: 10px;
  }
  .topbar__reg .arrow--tri { width: 6px; height: 8px; }
  .topbar__menu { width: 30px; height: 30px; }
  .topbar__menu span { width: 11px; height: 1.5px; }

  /* ---------- Hero ---------- */
  .hero { margin-top: 0; padding-top: 105px; box-sizing: border-box; }
  .hero__stage { min-height: 0; padding: 0 15px 30px; box-sizing: border-box; }
  .topbar__badge {
    position: static;
    padding: 0 15px;
    width: 60%;
    font-size: 10px;
    text-align: left;
    box-sizing: border-box;
  }
  .hero__wordmark {
    position: static;
    width: 62%;
    max-width: none;
    margin-top: 15px;
  }
  .hero__text {
    position: static;
    width: 62%;
    min-width: 0;
    font-size: 12px;
    margin-top: 15px;
    text-align: center;
  }
  .hero__bottle-m {
    display: block;
    position: absolute;
    left: 51.94vw;
    top: -139.44vw;
    width: 96.39vw;
    max-width: none;
    pointer-events: none;
  }
  .hero { padding-bottom: 30px; }

  /* ---------- Dates ---------- */
  .dates {
    padding: 30px 15px 15px;
    border-radius: 30px 30px 0 0;
    gap: 30px;
    align-items: stretch;
    margin-top: -30px;
    position: relative;
  }
  .dates__bottle { display: none; }
  .dates__title { flex-direction: column; gap: 0; align-items: flex-start; width: 274px; max-width: 100%; }
  .dates__title img:first-child { width: 44.9%; max-width: 123px; }
  .dates__title img:last-child { width: 100%; max-width: 274px; margin-top: 7px; }
  .dates__link {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 15px;
    gap: 10px;
  }
  .dates__link > span:first-child { font-size: 22px; gap: 15px; }
  .dates__sub { font-size: 12px; }

  /* ---------- Ticker ---------- */
  .ticker { padding: 10px 0; }
  .ticker__track { font-size: 10px; gap: 10px; }
  .ticker__track span:nth-child(even) { width: 19px; }

  /* ---------- About ---------- */
  .about {
    padding: 30px 15px;
    flex-direction: column;
    gap: 30px;
  }
  .about__text { display: contents; }
  .about__text p { font-size: 14px; order: 1; text-align: center; }
  .about__text p:first-child { font-size: 14px; }
  .about__text p + p { margin-top: -15px; }
  .recipe-card { width: 100%; max-width: 330px; margin: 0 auto; order: 2; }
  .recipe-card__item { font-size: 4.8vw; }

  /* ---------- Stages ---------- */
  .stages { padding: 30px 15px; }
  .stages__top { flex-direction: column; align-items: stretch; gap: 15px; margin-bottom: 30px; }
  .stages__intro { font-size: 14px; line-height: 1.3; }
  .stages__subrow { flex-direction: column; align-items: stretch; gap: 15px; }
  .stages__reg { position: static; margin-top: 0; align-self: stretch; justify-content: center; width: 100%; max-width: none; height: 44px; font-size: 14px; padding: 0 16px; gap: 12px; }
  .stages__reg .arrow--tri { width: 6px; height: 8px; }
  .stages__hint--desktop { display: none; }
  .stages__heading { width: 100%; margin: 0; gap: 0; flex-direction: column; align-items: flex-start; }
  .stages__heading img:first-child { width: 100%; max-width: 330px; }
  .stages__heading img:last-child { width: 58.1%; max-width: 192px; margin-top: 8px; }
  .stages__grid { flex-direction: column; align-items: stretch; gap: 30px; }
  .stages__wheel--m-wrap { display: flex; flex-direction: column; align-items: stretch; gap: 15px; }
  .stages__hint--mobile {
    display: block;
    position: relative;
    font-family: var(--text);
    font-size: 14px;
    line-height: 1.3;
    color: var(--white);
    text-align: center;
    margin: 0;
    width: 100%;
    max-width: none;
    flex: none;
    padding-right: 0;
    padding-bottom: 0;
  }
  .stages__hint-arrow--mobile {
    display: block;
    position: absolute;
    left: 63%;
    right: auto;
    top: calc(100% + 10px);
    bottom: auto;
    width: 30px;
    max-width: none;
  }
  .stages__list { padding-left: 0; gap: 20px; align-self: center; width: 100%; max-width: 300px; }
  .stages__list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .stages__list li.is-active { align-items: center; }
  .stages__list li.is-active::before { content: none; }
  .stages__list li.is-active .stages__name::before {
    content: '▸ ';
  }
  .stages__label { min-width: 0; align-items: center; }
  .stages__list li.is-active .stages__label { align-items: center; }
  .stages__date { font-size: 14px; text-align: center; }
  .stages__list li.is-active .stages__date { font-size: 14px; }
  .stages__name { font-size: 22px; text-align: center; }
  .stages__list li.is-active .stages__name { font-size: 28px; }
  .stages__desc { font-size: 12px; width: 100%; text-align: center; }
  .stages__list li.is-active .stages__desc { font-size: 14px; }
  .stages__line { white-space: normal; }

  /* ---------- Mobile wheel ---------- */
  .stages__wheel--m {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .wheel--m {
    position: relative;
    width: 330px;
    height: 330px;
    flex: none;
  }
  .wheel--m img {
    position: absolute;
    display: block;
  }
  .wheel--m__ring {
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .wheel--m__ring--4 { inset: 0%; width: 100%; height: 100%; }
  .wheel--m__ring--3 { inset: 3.33%; width: 93.35%; height: 93.35%; }
  .wheel--m__ring--5 { inset: 4.35%; width: 91.31%; height: 91.31%; }
  .wheel--m__ring--1 { inset: 19.61%; width: 60.78%; height: 60.78%; }
  .wheel--m__ring--2 { inset: 20.27%; width: 59.46%; height: 59.46%; }
  .wheel--m__ring { animation: wheel-spin-cw 22s linear infinite; }
  .wheel--m__ring--2, .wheel--m__ring--4 { animation-name: wheel-spin-ccw; }
  .wheel--m__glass {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scaleX(-1);
    width: 48%;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.5));
  }

  /* ---------- Perks ---------- */
  .perks {
    height: 610px;
    border-radius: 30px 30px 0 0;
    padding: 0;
    box-sizing: border-box;
  }
  .perks__heading { position: absolute; left: 15px; top: 30px; width: 76%; max-width: 274px; }
  .perks__box {
    position: absolute;
    left: 49.64px;
    top: 94.65px;
    width: 410.857px;
    max-width: none;
  }
  .perks__item {
    position: absolute;
    width: auto;
    min-width: 0;
    gap: 10px;
  }
  .perks__item--1 { left: 170px; top: 500px; width: 175px; justify-content: flex-start; }
  .perks__item--4 { left: 15px; top: 385px; width: 211px; justify-content: flex-start; }
  .perks__marker { order: -1; }
  .perks__marker--right { background-image: url('../assets/perks-marker-right.svg'); }
  .perks__item--1 .perks__text,
  .perks__item--4 .perks__text { align-items: flex-start; text-align: left; }
  .perks__name { font-size: 16px; }
  .perks__desc { font-size: 12px; }
  .perks__marker { width: 10px; height: 13px; }

  /* ---------- Embassies ---------- */
  .embassies { flex-direction: column; padding: 30px 15px; gap: 30px; }
  .embassies__vertical { display: none; }
  .embassies__corner-note { display: none; }
  .embassies__heading-m { display: block; width: 100%; max-width: 330px; height: auto; }
  .embassies__content { gap: 0; }
  .embassies__row1 {
    height: auto;
    padding: 10px;
    border: 1px solid var(--red);
    margin-bottom: -1px;
    justify-content: center;
    gap: 4px;
  }
  .embassies__row2plus { flex-direction: column-reverse; gap: 0; align-items: stretch; }
  .embassies__list { gap: 0; }
  .embassies__list li {
    height: auto;
    padding: 10px;
    border: 1px solid var(--red);
    margin-bottom: -1px;
    justify-content: center;
    gap: 4px;
  }
  .embassies__city { font-size: 14px; }
  .embassies__bar { font-size: 24px; }
  .embassies__photo-wrap { width: 100%; aspect-ratio: 330 / 279; height: auto; margin-bottom: -1px; }

  /* ---------- Ambassadors ---------- */
  .ambassadors { padding: 30px 15px; gap: 15px; }
  .ambassadors__head { position: relative; width: min(100%, 330px); }
  .ambassadors__heading-box { display: none; }
  .ambassadors__heading--m { display: block; height: auto; width: 100%; max-width: 330px; }
  .ambassadors__note--d { display: none; }
  .ambassadors__note--m { display: block; position: absolute; left: 43.03%; top: 68.9%; font-size: 8px; }
  .ambassadors__carousel { gap: 15px; }
  .ambassadors__arrow { width: 11px; margin-top: 0; align-self: center; }
  .ambassadors__track { height: 200px; padding-top: 0; gap: 15px; justify-content: flex-start; position: relative; }
  .amb-card__sparkle { transform: translate(2px, -2px); }
  .ambassadors__track::after {
    content: '';
    position: absolute;
    top: 24px; right: 0;
    width: 25px; height: calc(100% - 24px);
    background: linear-gradient(to left, var(--red), rgba(217, 1, 38, 0));
    pointer-events: none;
  }
  #amb-left, #amb-left2, #amb-right2 { display: none; }
  .amb-card--side { width: 107px; }
  .amb-card--center { width: 171px; }
  .amb-card--side .amb-card__name { font-size: 9.5px; height: auto; }
  .amb-card--center .amb-card__name { font-size: 12px; height: auto; }
  .amb-card__sparkle { width: 20px; height: 19px; }
  .amb-card--side .amb-card__sparkle { width: 15px; height: 14px; }
  .amb-card--side .amb-card__photo { height: 126px; }
  .amb-card--center .amb-card__photo { height: 164px; }
  .amb-card--side .amb-card__bio { font-size: 5px; gap: 3px; padding: 0 8px; }
  .amb-card--center .amb-card__bio { font-size: 10px; gap: 6px; padding: 0 8px; bottom: 10px; }

  /* ---------- Sponsors ---------- */
  .sponsors { border-radius: 30px 30px 0 0; padding: 30px 15px; gap: 15px; }
  .sponsors__heading { flex-direction: column; align-items: flex-start; gap: 9px; }
  .sponsors__heading img:first-child { width: 30.2%; max-width: 100px; }
  .sponsors__heading img:last-child { width: 100%; max-width: 330px; }
  .sponsors__row { gap: 15px; flex-wrap: wrap; }
  .sponsors__item { flex: 0 0 calc(50% - 7.5px); }

  /* ---------- Footer ---------- */
  .footer { padding: 30px 15px; gap: 30px; }
  .footer__row { flex-direction: column; gap: 30px; }
  .footer__intro { gap: 20px; width: 100%; }
  .footer__title { font-size: 18px; }
  .footer__tg { width: 100%; height: auto; flex-direction: column; align-items: flex-start; padding: 15px; gap: 0; }
  .footer__tg-icon { position: static; margin-top: 10px; }
  .footer__tg span { font-size: 18px; }
  .footer__links { width: 100%; gap: 10px; }
  .footer__links a { width: 100%; height: auto; padding: 15px; font-size: 14px; }
  .footer__legal-block { align-items: flex-start; gap: 15px; }
  .footer__disclaimer, .footer__warning { text-align: left; font-size: 10px; }
  .footer__notes { gap: 10px; }
  .footer__note { font-size: 10px; line-height: 1.4; text-align: left; }

  /* ---------- Closing banner ---------- */
  .closing { padding: 30px 15px; }

  /* ---------- Age disclaimer bar ---------- */
  .age-bar { padding: 8px 15px; gap: 10px; }
  .age-bar__text-wrap { width: 63.403vw; height: 3.958vw; max-width: none; max-height: none; }
  .age-bar__badge { width: 22px; height: 22px; max-width: none; max-height: none; border-width: 2px; }
}

@media (min-width: 379px) and (max-width: 452px) {
  #embassies-photo[src*="emb-moscow"] { object-position: center calc(20% + 7px) !important; }
}
