
:root{
  --ink:#171717;
  --paper:#fff8eb;
  --sand:#ead6b8;
  --blue:#163f5c;
  --orange:#ef7d45;
  --green:#2c6a55;
  --muted:#6f655b;
  --line:rgba(23,23,23,.14);
  --shadow:0 28px 90px rgba(24,31,33,.16);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.72;
  overflow-x:hidden;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    linear-gradient(135deg, rgba(239,125,69,.11) 0 25%, transparent 25% 50%, rgba(22,63,92,.08) 50% 75%, transparent 75%),
    radial-gradient(circle at 88% 12%, rgba(44,106,85,.18), transparent 28%);
  background-size:34px 34px, auto;
}
img{max-width:100%;display:block}
a{color:inherit}
.header{
  position:fixed;
  top:0;left:0;width:100%;
  z-index:1000;
  padding:14px clamp(18px,4vw,58px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,248,235,.84);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:950;
  letter-spacing:-.04em;
  font-size:1.08rem;
}
.logo-mark{
  width:34px;height:34px;
  border-radius:50%;
  background:conic-gradient(from 30deg,var(--orange),var(--blue),var(--green),var(--orange));
}
.nav{display:flex;gap:21px;align-items:center}
.nav a{
  text-decoration:none;
  font-size:.9rem;
  font-weight:850;
  color:var(--muted);
}
.nav a:hover{color:var(--blue)}
.burger{
  display:none;
  border:0;
  background:var(--blue);
  color:#fff;
  width:46px;
  height:46px;
  border-radius:16px 16px 4px 16px;
  font-size:24px;
}
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:120px clamp(20px,6vw,92px) 70px;
  color:#fff;
  background:
    linear-gradient(90deg, rgba(9,22,31,.82), rgba(9,22,31,.25), rgba(9,22,31,.06)),
    url("https://images.unsplash.com/photo-1555881400-74d7acaacd8b?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}
.hero-box{
  max-width:940px;
  position:relative;
}
.tag{
  display:inline-flex;
  padding:9px 14px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.3);
  border-radius:999px;
  backdrop-filter:blur(10px);
  font-weight:900;
  margin-bottom:22px;
}
.hero h1{
  font-size:clamp(2.7rem,7vw,7.4rem);
  line-height:.88;
  letter-spacing:-.085em;
  max-width:980px;
}
.hero p{
  max-width:710px;
  margin-top:24px;
  color:rgba(255,255,255,.86);
  font-size:clamp(1.05rem,2vw,1.35rem);
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:32px}
.btn{
  display:inline-flex;
  padding:14px 22px;
  border-radius:999px 999px 999px 6px;
  background:var(--orange);
  color:#fff;
  font-weight:950;
  text-decoration:none;
}
.btn.alt{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.35);
}
.section{padding:86px clamp(20px,5vw,74px)}
.wrap{max-width:1180px;margin:0 auto}
.eyebrow{
  font-weight:950;
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.78rem;
  margin-bottom:12px;
}
h2{
  font-size:clamp(2rem,4.8vw,4.55rem);
  line-height:.98;
  letter-spacing:-.07em;
  margin-bottom:22px;
}
h3{
  font-size:1.38rem;
  line-height:1.18;
  margin-bottom:10px;
}
.lead{
  color:var(--muted);
  font-size:1.15rem;
  max-width:860px;
}
.layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:start;
}
.ticket{
  background:#fff;
  border:1px solid var(--line);
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow);
  position:relative;
}
.ticket:before,.ticket:after{
  content:"";
  position:absolute;
  width:34px;height:34px;
  border-radius:50%;
  background:var(--paper);
  top:50%;
  transform:translateY(-50%);
  border:1px solid var(--line);
}
.ticket:before{left:-18px}
.ticket:after{right:-18px}
.info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:34px;
}
.info-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 14px 45px rgba(23,23,23,.08);
}
.info-card img{height:215px;width:100%;object-fit:cover}
.info-card div{padding:24px}
.route{
  display:grid;
  gap:16px;
  margin-top:28px;
}
.route-item{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:18px;
  padding:18px;
  border:1px dashed rgba(23,23,23,.28);
  border-radius:24px;
  background:rgba(255,255,255,.66);
}
.pin{
  width:54px;height:54px;
  border-radius:50% 50% 50% 8px;
  transform:rotate(-45deg);
  background:var(--blue);
  display:grid;
  place-items:center;
}
.pin span{
  transform:rotate(45deg);
  color:#fff;
  font-weight:950;
}
.band{
  background:var(--blue);
  color:#fff;
}
.band .lead{color:rgba(255,255,255,.72)}
.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:34px;
}
.stat{
  padding:24px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  border-radius:28px;
}
.stat strong{
  display:block;
  font-size:2.4rem;
  line-height:1;
  letter-spacing:-.05em;
}
.article{
  max-width:940px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:34px;
  padding:clamp(24px,5vw,58px);
  box-shadow:var(--shadow);
}
.article h1{
  font-size:clamp(2.2rem,5vw,4.5rem);
  line-height:.95;
  letter-spacing:-.07em;
  margin-bottom:20px;
}
.article h2{
  font-size:2rem;
  margin-top:34px;
}
.article p,.article li{
  color:#514a43;
  margin-top:12px;
}
.article ul{padding-left:22px}
.form{display:grid;gap:14px;margin-top:20px}
input,textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:18px;
  padding:15px 16px;
  font:inherit;
  background:#fff;
}
textarea{min-height:140px;resize:vertical}
.submit{
  border:0;
  padding:15px 22px;
  border-radius:999px 999px 999px 6px;
  background:var(--orange);
  color:#fff;
  font-weight:950;
}
.footer{
  background:#111;
  color:#fff;
  padding:50px clamp(20px,5vw,74px);
}
.footer-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:28px;
}
.footer a{
  color:rgba(255,255,255,.72);
  text-decoration:none;
  display:inline-block;
  margin:0 16px 10px 0;
}
.small{font-size:.94rem;color:var(--muted)}
.footer .small{color:rgba(255,255,255,.58)}
@media(max-width:860px){
  .burger{display:block}
  .nav{
    display:none;
    position:absolute;
    top:76px;
    left:14px;
    right:14px;
    flex-direction:column;
    align-items:flex-start;
    background:#fff;
    padding:20px;
    border-radius:26px;
    box-shadow:var(--shadow);
  }
  .nav.open{display:flex}
  .layout,.info-grid,.stats,.footer-grid{grid-template-columns:1fr}
  .section{padding:64px 18px}
  .ticket{padding:24px}
  .ticket:before,.ticket:after{display:none}
  .route-item{grid-template-columns:1fr}
  .hero{padding-left:20px;padding-right:20px}
}

.cookie-banner{
position:fixed;left:20px;right:20px;bottom:20px;z-index:2000;
background:#fff;border:1px solid rgba(0,0,0,.12);
border-radius:20px;padding:18px;box-shadow:0 20px 50px rgba(0,0,0,.15);
display:none;gap:12px;align-items:center;justify-content:space-between;flex-wrap:wrap
}
.cookie-banner.show{display:flex}
.cookie-banner p{margin:0;max-width:800px}
.cookie-actions{display:flex;gap:10px}
.cookie-btn{border:0;padding:10px 16px;border-radius:999px;font-weight:700;cursor:pointer}
.cookie-accept{background:#163f5c;color:#fff}
.cookie-settings{background:#eee}
