:root {
  --ink: #171714;
  --paper: #f2eee4;
  --paper-light: #fbfaf6;
  --burgundy: #861b3d;
  --burgundy-dark: #64122d;
  --line: rgba(23, 23, 20, 0.28);
  --muted: #6f6b63;
  --white: #fff;
  --content: 1240px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); }
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid #d75478; outline-offset: 4px; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(calc(100% - 64px), var(--content));
  height: 88px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.32);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
}
.site-header nav { display: flex; align-items: center; gap: 32px; font-size: 14px; }
.site-header nav a { transition: opacity .2s ease; }
.site-header nav a:hover { opacity: .65; }
.nav-action { padding: 11px 18px; border: 1px solid rgba(255,255,255,.6); border-radius: 4px; }

.hero {
  position: relative;
  min-height: 720px;
  height: 88svh;
  max-height: 880px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: #0c0c0b;
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.12); pointer-events: none; }
.hero-content { position: relative; z-index: 2; width: min(calc(100% - 64px), var(--content)); margin: 42px auto 0; }
.hero-date { margin: 0 0 34px; font-size: 16px; text-transform: uppercase; }
.hero h1 { margin: 0; max-width: 750px; font-family: Georgia, 'Times New Roman', serif; font-size: 94px; font-weight: 400; line-height: .9; }
.hero-lead { max-width: 560px; margin: 34px 0; font-size: 20px; line-height: 1.5; }
.primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--burgundy);
  border-radius: 4px;
  background: var(--burgundy);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero .primary-button { border-color: var(--white); background: var(--white); color: var(--ink); }
.primary-button:hover, .secondary-button:hover { transform: translateY(-2px); }
.hero-index { position: absolute; z-index: 2; right: 32px; bottom: 28px; font-size: 13px; }

.spectrum, .comparison, .choice { padding: 120px max(32px, calc((100% - var(--content)) / 2)); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
.section-heading > p, .locations-copy > p, .choice > p { margin: 10px 0 0; color: var(--burgundy); font-size: 14px; font-weight: 700; text-transform: uppercase; }
.section-heading h2, .locations h2, .choice h2 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: 62px; font-weight: 400; line-height: 1.04; }
.spectrum-line { margin: 76px 0 0; height: 1px; background: var(--ink); display: flex; justify-content: space-around; }
.spectrum-line span { width: 16px; height: 16px; margin-top: -8px; border-radius: 50%; background: var(--burgundy); }
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.scenario-card { min-height: 440px; padding: 34px 36px; border-left: 1px solid var(--line); display: flex; flex-direction: column; }
.scenario-card:last-child { border-right: 1px solid var(--line); }
.scenario-card.featured { background: var(--paper-light); }
.scenario-number { color: var(--burgundy); font-family: Georgia, 'Times New Roman', serif; font-size: 36px; }
.scenario-meta { margin: 52px 0 20px; display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 13px; }
.scenario-card h3 { margin: 0; max-width: 280px; font-family: Georgia, 'Times New Roman', serif; font-size: 38px; font-weight: 400; line-height: 1.08; }
.scenario-card p { margin: 20px 0 32px; color: var(--muted); line-height: 1.55; }
.select-button { margin-top: auto; padding: 14px 0; border: 0; border-top: 1px solid var(--ink); background: transparent; text-align: left; font-weight: 700; cursor: pointer; }
.select-button:hover { color: var(--burgundy); }

.experience { padding: 110px max(32px, calc((100% - var(--content)) / 2)); background: var(--paper-light); }
.experience-dark { background: var(--ink); color: var(--white); }
.experience-date { background: var(--burgundy); color: var(--white); }
.experience-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid currentColor; }
.option-label { margin: 12px 0; color: var(--burgundy); font-size: 14px; font-weight: 700; text-transform: uppercase; }
.experience-dark .option-label, .experience-date .option-label { color: #e8a9b9; }
.experience h2 { grid-column: 2; margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: 64px; font-weight: 400; line-height: 1; }
.location { grid-column: 2; margin: 14px 0 0; opacity: .72; }
.experience-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.menu-list, .experience-facts { padding: 54px 7%; }
.menu-list { border-right: 1px solid currentColor; }
.menu-list p { margin: 0; padding: 24px 0; border-bottom: 1px solid currentColor; font-family: Georgia, 'Times New Roman', serif; font-size: 30px; }
.experience-facts { display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.experience-facts strong { font-family: Georgia, 'Times New Roman', serif; font-size: 40px; font-weight: 400; }
.experience-facts span { opacity: .72; font-size: 18px; line-height: 1.5; }
.experience-facts.burgundy { color: var(--burgundy); }

.date-timeline { margin-top: 56px; display: grid; grid-template-columns: 2fr 1fr; border: 1px solid rgba(255,255,255,.7); border-radius: 4px; }
.date-timeline div { min-height: 150px; padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.date-timeline div + div { border-left: 1px solid rgba(255,255,255,.7); }
.date-timeline strong { font-family: Georgia, 'Times New Roman', serif; font-size: 30px; font-weight: 400; }
.date-timeline span { margin-top: 12px; opacity: .8; }
.date-features { margin: 34px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.45); }
.date-features li { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.45); }
.date-features li:nth-child(odd) { padding-right: 30px; }

.comparison { background: var(--paper); }
.section-heading.compact { margin-bottom: 70px; }
.comparison-table { border-top: 1px solid var(--ink); }
.comparison-row { width: 100%; display: grid; grid-template-columns: 1.3fr .8fr 1.3fr 1.2fr 1fr; gap: 22px; align-items: center; min-height: 112px; padding: 18px 12px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; }
button.comparison-row { cursor: pointer; transition: background .2s ease; }
button.comparison-row:hover { background: var(--paper-light); }
.comparison-head { min-height: 64px; color: var(--muted); font-size: 13px; text-transform: uppercase; }

.locations { padding: 120px max(32px, calc((100% - var(--content)) / 2)); background: var(--paper-light); display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.locations-list { border-top: 1px solid var(--ink); }
.locations-list > * { display: grid; grid-template-columns: 44px 1fr; gap: 8px 22px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.locations-list > a:hover strong { color: var(--burgundy); }
.locations-list span { grid-row: span 2; color: var(--burgundy); }
.locations-list strong { font-family: Georgia, 'Times New Roman', serif; font-size: 24px; font-weight: 400; }
.locations-list small { color: var(--muted); }

.choice { background: var(--ink); color: var(--white); text-align: center; }
.choice > p { color: #e8a9b9; }
.choice h2 { margin-top: 20px; }
.choice-options { margin: 48px auto 0; display: flex; justify-content: center; gap: 12px; }
.choice-options button { min-height: 48px; padding: 0 18px; border: 1px solid rgba(255,255,255,.55); border-radius: 4px; background: transparent; color: var(--white); cursor: pointer; }
.choice-options button:hover, .choice-options button.active { background: var(--white); color: var(--ink); }
.choice-result { max-width: 760px; margin: 56px auto 0; padding-top: 48px; border-top: 1px solid rgba(255,255,255,.25); }
.choice-result > span { color: #e8a9b9; font-size: 13px; text-transform: uppercase; }
.choice-result strong { display: block; margin-top: 14px; font-family: Georgia, 'Times New Roman', serif; font-size: 38px; font-weight: 400; }
.choice-result p { color: rgba(255,255,255,.7); line-height: 1.6; }
.choice-actions { margin-top: 30px; display: flex; justify-content: center; gap: 12px; }
.secondary-button { border-color: rgba(255,255,255,.55); background: transparent; }
button:disabled { opacity: .4; cursor: not-allowed; transform: none !important; }

footer { min-height: 190px; padding: 46px max(32px, calc((100% - var(--content)) / 2)); display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; background: var(--paper); }
.footer-brand { color: var(--burgundy); }
footer p { color: var(--muted); }
footer > a:last-child { text-decoration: underline; text-underline-offset: 5px; }
.toast { position: fixed; z-index: 50; left: 50%; bottom: 24px; transform: translate(-50%, 20px); padding: 12px 18px; border-radius: 4px; background: var(--white); box-shadow: 0 12px 36px rgba(0,0,0,.22); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 960px) {
  .site-header { width: calc(100% - 40px); }
  .site-header nav { gap: 18px; }
  .site-header nav a:not(.nav-action) { display: none; }
  .hero { min-height: 680px; }
  .hero-content { width: calc(100% - 48px); }
  .hero h1 { font-size: 68px; }
  .section-heading, .experience-intro, .locations { grid-template-columns: 1fr; }
  .section-heading h2, .locations h2, .choice h2 { font-size: 50px; }
  .scenario-grid { grid-template-columns: 1fr; }
  .spectrum-line { display: none; }
  .scenario-card { min-height: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .scenario-meta { margin-top: 30px; }
  .experience h2, .location { grid-column: 1; }
  .experience h2 { font-size: 52px; }
  .comparison-row { grid-template-columns: 1fr 1fr; gap: 8px 20px; }
  .comparison-row > *::before { display: block; margin-bottom: 5px; color: var(--muted); font-size: 10px; text-transform: uppercase; }
  .comparison-row > *:nth-child(1)::before { content: 'Вариант'; }
  .comparison-row > *:nth-child(2)::before { content: 'Время'; }
  .comparison-row > *:nth-child(3)::before { content: 'Напитки'; }
  .comparison-row > *:nth-child(4)::before { content: 'Приватность'; }
  .comparison-row > *:nth-child(5)::before { content: 'Меню'; }
  .comparison-head { display: none; }
  .locations { gap: 48px; }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { height: 72px; }
  .brand { font-size: 14px; }
  .nav-action { padding: 9px 12px; }
  .hero { height: 86svh; min-height: 620px; max-height: 760px; }
  .hero-media { object-position: 61% center; opacity: .66; }
  .hero::after { background: rgba(0,0,0,.25); }
  .hero-content { width: calc(100% - 40px); margin-top: 48px; }
  .hero-date { margin-bottom: 24px; font-size: 13px; }
  .hero h1 { font-size: 50px; line-height: .95; }
  .hero-lead { margin: 24px 0; font-size: 17px; }
  .hero-index { right: 20px; bottom: 18px; }
  .spectrum, .comparison, .choice, .experience, .locations { padding: 78px 20px; }
  .section-heading { gap: 24px; }
  .section-heading h2, .locations h2, .choice h2 { font-size: 40px; }
  .scenario-card { padding: 28px 24px; }
  .scenario-card h3 { font-size: 34px; }
  .experience-intro { gap: 12px; padding-bottom: 34px; }
  .experience h2 { font-size: 42px; }
  .experience-body { grid-template-columns: 1fr; }
  .menu-list { padding: 30px 0; border-right: 0; border-bottom: 1px solid currentColor; }
  .menu-list p { font-size: 25px; }
  .experience-facts { padding: 34px 0; }
  .experience-facts strong { font-size: 32px; }
  .date-timeline { grid-template-columns: 1fr; }
  .date-timeline div { min-height: 130px; padding: 26px; }
  .date-timeline div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.7); }
  .date-features { grid-template-columns: 1fr; }
  .date-features li:nth-child(odd) { padding-right: 0; }
  .comparison-row { grid-template-columns: 1fr; padding: 22px 4px; }
  .choice-options, .choice-actions { flex-direction: column; }
  .choice-options button, .choice-actions button { width: 100%; }
  .choice-result strong { font-size: 32px; }
  .locations-list strong { font-size: 21px; }
}

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