:root {
  --paper: #f4efe5;
  --paper-light: #fbf8f1;
  --ink: #16271e;
  --muted: #667168;
  --gold: #d9b65f;
  --terracotta: #b94e28;
  --line: rgba(22, 39, 30, .18);
  --shadow: 0 24px 80px rgba(22, 39, 30, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 7%, rgba(217,182,95,.23), transparent 25rem),
    var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; }

.topbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark {
  width: 49px; height: 49px; display: grid; place-items: center;
  border: 1.5px solid var(--ink); border-radius: 13px;
  font-family: "Prata", serif; font-size: 20px;
}
.brand-name { text-transform: uppercase; font-size: 11px; line-height: 1.35; letter-spacing: .13em; font-weight: 700; }
.topbar-note { font-size: 12px; letter-spacing: .04em; padding-bottom: 3px; border-bottom: 1px solid var(--ink); }

main, footer { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.hero { padding: 76px 0 88px; }
.eyebrow { margin: 0 0 20px; color: var(--terracotta); text-transform: uppercase; letter-spacing: .2em; font-size: 11px; font-weight: 700; }
h1, h2 { font-family: "Prata", Georgia, serif; font-weight: 400; }
h1 { max-width: 930px; margin: 0; font-size: clamp(58px, 8.2vw, 112px); line-height: .98; letter-spacing: -.05em; }
h1 em, .how h2 em { color: var(--terracotta); font-style: italic; }
.hero-copy { max-width: 650px; margin: 32px 0 0 auto; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }

.route-line { display: grid; grid-template-columns: auto 1fr auto 1fr auto; gap: 13px; align-items: center; margin: 58px 0 24px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.route-line i { height: 1px; background: var(--line); position: relative; }
.route-line i::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.choices { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.choice { background: var(--paper-light); box-shadow: var(--shadow); overflow: hidden; border-radius: 4px; }
.choice-photo { height: 330px; position: relative; overflow: hidden; }
.choice-photo::after { content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(16,32,23,.4), transparent 60%); }
.choice-photo img { width:100%; height:100%; object-fit:cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.choice:hover .choice-photo img { transform: scale(1.025); }
.choice-number { position:absolute; z-index:1; right:22px; bottom:18px; color:white; font-family:"Prata",serif; font-size:36px; }
.choice-body { padding: 38px 40px 40px; }
.choice-label { color:var(--terracotta); margin:0 0 12px; font-size:10px; text-transform:uppercase; letter-spacing:.16em; font-weight:700; }
.choice h2 { margin:0; font-size:clamp(39px,5vw,62px); line-height:1.02; letter-spacing:-.04em; }
.choice ul { list-style:none; padding:0; margin:30px 0 34px; border-top:1px solid var(--line); }
.choice li { padding:12px 0 12px 23px; border-bottom:1px solid var(--line); position:relative; font-size:13px; color:var(--muted); }
.choice li::before { content:"✦"; color:var(--gold); position:absolute; left:0; }
.telegram-button { min-height:68px; padding:16px 20px; display:flex; align-items:center; justify-content:space-between; background:var(--ink); color:white; text-decoration:none; font-size:13px; font-weight:700; transition:transform .2s ease, background .2s ease; }
.telegram-button:hover { background:#244333; transform:translateY(-2px); }
.telegram-button:focus-visible { outline:3px solid var(--gold); outline-offset:3px; }
.telegram-button span { color:var(--gold); font-size:25px; font-weight:400; }

.how { margin-bottom:20px; padding:70px; display:grid; grid-template-columns:1fr 1fr; gap:70px; background:var(--ink); color:white; }
.how h2 { margin:0; font-size:clamp(41px,5vw,67px); line-height:1.05; letter-spacing:-.04em; }
.how ol { list-style:none; padding:0; margin:0; }
.how li { display:grid; grid-template-columns:45px 1fr; gap:15px; align-items:start; padding:18px 0; border-bottom:1px solid rgba(255,255,255,.18); }
.how li span { width:32px; height:32px; display:grid; place-items:center; border:1px solid var(--gold); border-radius:50%; color:var(--gold); font-size:12px; }
.how li p { margin:4px 0; color:rgba(255,255,255,.78); line-height:1.55; }
.how li strong { color:white; }
.trust { margin-bottom:80px; padding:35px 0; display:grid; grid-template-columns:1fr 2fr; gap:40px; border-block:1px solid var(--line); }
.trust p { margin:0; font-family:"Prata",serif; font-size:22px; }
.trust span { color:var(--muted); line-height:1.7; }
footer { padding:0 0 40px; display:flex; justify-content:space-between; color:var(--muted); font-size:11px; text-transform:uppercase; letter-spacing:.08em; }

.return-hint { position:fixed; z-index:10; left:50%; bottom:max(16px,env(safe-area-inset-bottom)); transform:translateX(-50%); width:min(520px,calc(100% - 24px)); padding:19px 48px 19px 20px; background:var(--ink); color:white; box-shadow:0 15px 50px rgba(0,0,0,.28); }
.return-hint strong,.return-hint span { display:block; }
.return-hint strong { font-family:"Prata",serif; margin-bottom:5px; }
.return-hint span { color:rgba(255,255,255,.72); font-size:12px; line-height:1.5; }
.return-hint button { position:absolute; right:12px; top:10px; border:0; background:transparent; color:white; font-size:22px; cursor:pointer; }

@media (max-width: 760px) {
  .topbar, main, footer { width:min(100% - 28px,1180px); }
  .topbar { min-height:78px; }
  .brand-mark { width:42px; height:42px; border-radius:11px; font-size:17px; }
  .brand-name { font-size:9px; }
  .topbar-note { max-width:105px; text-align:right; font-size:9px; line-height:1.45; }
  .hero { padding:48px 0 58px; }
  .eyebrow { font-size:9px; margin-bottom:15px; }
  h1 { font-size:clamp(49px,16.4vw,72px); line-height:1.01; }
  .hero-copy { margin:22px 0 0; font-size:15px; line-height:1.6; }
  .route-line { margin:37px 0 18px; gap:8px; font-size:8px; }
  .choices { grid-template-columns:1fr; gap:16px; }
  .choice-photo { height:240px; }
  .choice-body { padding:28px 22px 24px; }
  .choice h2 { font-size:45px; }
  .choice ul { margin:24px 0; }
  .telegram-button { min-height:64px; font-size:12px; }
  .how { padding:42px 24px; grid-template-columns:1fr; gap:28px; }
  .how h2 { font-size:43px; }
  .how li p { font-size:14px; }
  .trust { margin-bottom:48px; padding:30px 4px; grid-template-columns:1fr; gap:12px; }
  .trust p { font-size:20px; }
  .trust span { font-size:13px; }
  footer { padding-bottom:28px; gap:20px; font-size:9px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; transition:none !important; }
}
