
:root{
  --bg0:#0b0706;
  --bg1:#160f0b;
  --card:rgba(20,14,10,.72);
  --card2:rgba(20,14,10,.82);
  --stroke:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --gold:#d9b067;
  --gold2:#f0d69a;
  --red:#e33a2f;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:22px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1200px 900px at 20% 20%, rgba(210,160,90,.10), transparent 55%),
    radial-gradient(900px 600px at 80% 30%, rgba(220,70,55,.10), transparent 55%),
    radial-gradient(1200px 900px at 40% 90%, rgba(210,160,90,.08), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

/* subtle grain */
body:before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.35;
}

a{color:inherit}
.top{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  padding:18px 18px 10px;
  max-width:1100px;
  margin:0 auto;
}
.brand{display:flex; gap:12px; align-items:center;}
.logo{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
}
.brand-name{font-weight:800; font-size:20px; letter-spacing:.2px;}
.brand-tag{font-size:13px; color:var(--muted); margin-top:2px;}

.langs{display:flex; gap:10px;}
.lang-pill{
  width:54px;height:40px;border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--stroke);
  color:var(--text);
  font-weight:800;
}
.lang-pill.active{
  border-color:rgba(227,58,47,.55);
  box-shadow:0 0 0 4px rgba(227,58,47,.10);
}

.nav{
  max-width:1100px;
  margin:0 auto;
  padding:10px 18px 14px;
}
.nav-grid{
  display:flex; flex-wrap:wrap;
  gap:12px;
}
.nav-pill{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(10,6,5,.35);
  text-decoration:none;
  color:rgba(255,255,255,.82);
  backdrop-filter: blur(8px);
}
.nav-pill.active{
  border-color:rgba(227,58,47,.55);
  box-shadow:0 0 0 4px rgba(227,58,47,.08);
}
.insta{
  display:block;
  margin-top:14px;
  padding:14px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(10,6,5,.25);
  text-decoration:none;
  text-align:center;
  color:rgba(255,255,255,.85);
}

.main{
  max-width:1100px;
  margin:0 auto;
  padding:0 18px 40px;
}

.hero{
  margin-top:10px;
  border-radius: var(--radius);
  overflow:hidden;
  min-height: clamp(420px, 52vh, 620px);
  position:relative;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.78)),
    url("img/teddy.jpg") center/cover no-repeat;
}
.hero:after{
  content:"";
  position:absolute; inset:-80px;
  background:
    radial-gradient(700px 320px at 50% 30%, rgba(255,212,120,.12), transparent 60%),
    radial-gradient(500px 240px at 50% 80%, rgba(227,58,47,.10), transparent 60%);
  pointer-events:none;
}
.hero-card{
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  justify-content:center; align-items:center;
  padding:28px 18px;
  text-align:center;
}
.hero-stop{
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 1000;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  text-shadow: 0 12px 40px rgba(0,0,0,.75);
}
.hero-sub{
  font-size: clamp(14px, 2.0vw, 18px);
  font-weight: 900;
  letter-spacing: 2px;
  color: rgba(255,255,255,.90);
  margin-top: 10px;
  text-transform: uppercase;
}
.hero-slogan{
  margin-top: 18px;
  color: rgba(255,255,255,.88);
  font-size: clamp(14px, 1.8vw, 18px);
  max-width: 720px;
  text-shadow: 0 10px 30px rgba(0,0,0,.65);
}

.flags-orbit{margin-top:18px; width:min(860px, 92%); height:120px; position:relative;}
.orbit{
  position:absolute; left:50%; top:50%;
  width:min(860px, 92vw);
  height:120px;
  transform:translate(-50%,-50%);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.6));
}
.flag{
  position:absolute;
  width:26px; height:26px;
  display:grid; place-items:center;
  font-size:20px;
  transform-origin: 0 0;
  opacity:.95;
}

.stats-strip{
  margin-top:14px;
  border-radius: var(--radius);
  background: rgba(10,6,5,.35);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  backdrop-filter: blur(10px);
}
.stat{
  padding: 10px 10px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.20);
}
.stat .v{
  font-size: 22px;
  font-weight: 950;
  color: rgba(255,255,255,.95);
}
.stat .l{
  font-size: 12px;
  color: rgba(255,255,255,.72);
  margin-top: 4px;
}

.panel{
  margin-top:18px;
  border-radius: var(--radius);
  background: rgba(10,6,5,.30);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.h1{margin:4px 0 10px; font-size:32px; letter-spacing:.2px}
.h2{margin:12px 0 8px; font-size:26px; letter-spacing:.2px}
.muted{color:var(--muted)}

.home-grid{display:flex; flex-direction:column; gap:16px;}
.about-slab{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:stretch;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  overflow:hidden;
}
.about-text{padding:16px;}
.about-text .h2{font-size:20px; line-height:1.25; margin:0 0 12px}
.about-photo{position:relative; min-height:240px;}
.about-photo img{width:100%; height:100%; object-fit:cover; display:block;}

.cta-row{display:flex; gap:12px; margin-top:12px; flex-wrap:wrap;}
.btn{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  text-decoration:none;
  font-weight:800;
}
.btn-primary{
  border-color: rgba(227,58,47,.55);
  background: rgba(227,58,47,.10);
}

.cards{display:flex; flex-direction:column; gap:12px}
.card{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
  padding: 14px;
}
.card h3{margin:0 0 8px; font-size:16px}
.rich h3{margin:18px 0 8px}
.rich p, .rich li{color:rgba(255,255,255,.82); line-height:1.55}
.rich ul{padding-left:18px}
.two-col{display:grid; grid-template-columns: 1.25fr .75fr; gap:18px;}
.sticky-photo{position:sticky; top:14px; align-self:start;}
.sticky-photo img{width:100%; border-radius: 18px; border:1px solid rgba(255,255,255,.10); box-shadow:var(--shadow)}
.caption{margin-top:10px; color:rgba(255,255,255,.70); font-size:12px}

.why-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;}
.why-card{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
  padding: 14px;
}
.why-icon{font-size:22px}
.why-title{font-weight:900; margin-top:6px}
.why-text{color:rgba(255,255,255,.74); margin-top:6px; line-height:1.45}

.thumbs{display:flex; gap:12px; overflow:auto; padding-bottom:6px;}
.thumbs img{
  width:76px; height:76px; object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  flex:0 0 auto;
}

.mapbox{
  display:flex; gap:12px; align-items:center;
  padding:16px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
}
.map-pin{font-size:28px}
.map-title{font-weight:900}
.map-text{color:rgba(255,255,255,.74); margin-top:4px; line-height:1.45}

.footer{
  margin-top:18px;
  padding:16px 4px 0;
  display:flex;
  gap:12px;
  justify-content:space-between;
  align-items:flex-end;
  color:rgba(255,255,255,.72);
}
.footer a{color:rgba(255,255,255,.86)}
.footer-title{font-weight:900; color:rgba(255,255,255,.88)}
.footer-meta{margin-top:6px; font-size:13px}
.footer-right{font-size:13px}

@media (max-width: 860px){
  .stats-strip{grid-template-columns: repeat(2, 1fr);}
  .two-col{grid-template-columns: 1fr;}
  .sticky-photo{position:relative; top:auto;}
  .about-slab{grid-template-columns: 1fr;}
  .why-grid{grid-template-columns: 1fr;}
}

.hero-stop.pulse{animation:pulse 0.8s ease-out;}
@keyframes pulse{0%{transform:scale(1);filter:drop-shadow(0 0 0 rgba(227,58,47,0));}35%{transform:scale(1.03);filter:drop-shadow(0 0 14px rgba(227,58,47,.35));}100%{transform:scale(1);filter:drop-shadow(0 0 0 rgba(227,58,47,0));}}
