:root{
  --a1:#2a1810;
  --a2:#d9531d;
  --a3:#f5b53c;
  --a4:#f97316;
  --text:#2a1810;
  --muted:#475569;
  --line:rgba(42,24,16,.12);
  --card:rgba(255,255,255,.88);
  --shadow:0 14px 40px rgba(92,40,24,.10);
  --shadow2:0 10px 24px rgba(92,40,24,.10);
  --r-xl:26px;
  --r-lg:18px;
  --r-md:14px;
  --max:1120px;
}

.btn{
  transition: background .15s ease, border-color .15s ease, transform .12s ease, box-shadow .15s ease;
}

.btn.active{
  background: rgba(217,83,29,.12);
  border-color: rgba(217,83,29,.32);
  box-shadow: 0 6px 18px rgba(217,83,29,.18);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(217,83,29,.12), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(245,181,60,.12), transparent 55%),
    radial-gradient(900px 600px at 30% 100%, rgba(245,181,60,.10), transparent 60%),
    linear-gradient(180deg, #fff, #fbfbff 45%, #fff 100%);
  min-height:100vh;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
a:focus, button:focus{ outline: 3px solid rgba(217,83,29,.25); outline-offset:2px; border-radius:12px; }
.container{ width:min(var(--max), calc(100% - 36px)); margin:0 auto; }

/* Top nav */
.topbar{
  position:sticky; top:0; z-index:50;
  -webkit-backdrop-filter:saturate(140%) blur(12px);
  backdrop-filter:saturate(140%) blur(12px);
  background:rgba(255,255,255,.70);
  border-bottom:1px solid var(--line);
}
.navwrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  min-width: 0;
  flex: 1 1 auto;
}
@media (min-width: 880px){
  .brand{ flex: 0 0 auto; min-width: 220px; }
}
.mark{
  width:36px; height:36px; border-radius:12px;
  background:
    radial-gradient(18px 18px at 25% 35%, rgba(255,255,255,.9), rgba(255,255,255,0)),
    linear-gradient(135deg, var(--a1), var(--a2));
  box-shadow: var(--shadow2);
  position:relative;
}
.mark::after{
  content:"";
  position:absolute; inset:9px;
  border-radius:10px;
  background: linear-gradient(135deg, rgba(245,181,60,.85), rgba(217,83,29,.85));
  mix-blend-mode:multiply;
  opacity:.45;
}
.brand .name{
  display:flex; flex-direction:column; line-height:1.05;
}
.brand .name strong{ font-size:14px; letter-spacing:.2px; }
.brand .name span{ font-size:12px; color:var(--muted); }

.navlinks{
  display:none;
  align-items:center; gap:10px;
  padding:6px 10px;
}
.navlinks a{
  font-size:13px;
  padding:10px 10px;
  border-radius:12px;
  color:rgba(42,24,16,.78);
}
.navlinks a:hover{ background: rgba(217,83,29,.08); color:rgba(42,24,16,.95); }

.actions{
  display:flex; align-items:center; gap:10px;
  justify-content:flex-end;
  min-width: 220px;
}
@media (max-width: 879px){
  .actions{ min-width: 0; gap: 6px; flex: 0 0 auto; }
  .actions > .btn:not(.hamburger),
  .actions > .cta,
  .actions > .ghost,
  .actions > a.btn,
  .actions > a.cta { display: none; }
}
.lang{
  display:flex; gap:6px; align-items:center;
  border:1px solid var(--line);
  background:rgba(255,255,255,.70);
  border-radius:999px;
  padding:4px;
}
.chip{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:0;
  background:transparent;
  cursor:pointer;
  color:rgba(42,24,16,.78);
  transition: transform .12s ease, background .12s ease;
}
.chip.active{
  background: rgba(217,83,29,.12);
  color: rgba(42,24,16,.95);
}
.chip[disabled]{ opacity:.45; cursor:not-allowed; }
.btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.80);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  cursor:pointer;
  box-shadow: 0 6px 18px rgba(92,40,24,.06);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(92,40,24,.10); }

/* Hamburger */
.hamburger{
  width:42px; height:42px;
  display:grid; place-items:center;
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(255,255,255,.80);
  cursor:pointer;
  position:relative;
}
.hamburger span{
  width:18px; height:2px; background: rgba(42,24,16,.75);
  position:relative; display:block;
  border-radius:2px;
  transition: transform .18s ease, opacity .18s ease;
}
.hamburger span::before, .hamburger span::after{
  content:"";
  position:absolute; left:0;
  width:18px; height:2px; border-radius:2px;
  background: rgba(42,24,16,.75);
  transition: transform .18s ease, top .18s ease, bottom .18s ease;
}
.hamburger span::before{ top:-6px; }
.hamburger span::after{ bottom:-6px; }
.hamburger[aria-expanded="true"] span{ opacity:0; }
.hamburger[aria-expanded="true"] span::before{ top:0; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span::after{ bottom:0; transform: rotate(-45deg); }

/* Mobile drawer */
.drawer{
  position:fixed; inset: 72px 12px auto 12px;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow:hidden;
  transform: translateY(-10px);
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index:60;
}
.drawer.open{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.drawer .dhead{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 14px;
  border-bottom:1px solid var(--line);
}
.drawer .dhead .hint{ font-size:12px; color:var(--muted); }
.drawer nav{
  display:grid;
  padding: 10px;
  gap:6px;
}
.drawer nav a{
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid transparent;
  color: rgba(42,24,16,.90);
  background: rgba(217,83,29,.06);
}
.drawer nav a:hover{
  border-color: rgba(217,83,29,.22);
  background: rgba(217,83,29,.10);
}
.drawer .foot{
  padding: 10px 14px 14px;
  color: var(--muted);
  font-size: 12px;
}

/* Hero */
.hero{
  padding: 34px 0 14px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items:stretch;
}
.heroCard{
  border:1px solid var(--line);
  background: var(--card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding: 22px;
  position:relative;
  overflow:hidden;
}
.heroCard::before{
  content:"";
  position:absolute; inset:-80px -120px auto auto;
  width:260px; height:260px; border-radius:50%;
  background: radial-gradient(circle at 35% 35%, rgba(217,83,29,.22), rgba(217,83,29,.18), transparent 70%);
  filter: blur(6px);
}
.kicker{
  display:inline-flex;
  gap:8px; align-items:center;
  font-size:12px;
  color: rgba(42,24,16,.72);
  background: rgba(245,181,60,.10);
  border: 1px solid rgba(245,181,60,.18);
  padding: 8px 10px;
  border-radius: 999px;
}
.kicker b{
  color: rgba(42,24,16,.92);
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 4.8vw, 44px);
  letter-spacing: -0.7px;
  line-height: 1.06;
}
.lead{
  margin:0;
  font-size: 15px;
  color: rgba(42,24,16,.78);
  line-height: 1.65;
  max-width: 70ch;
}
.bullets{
  margin: 14px 0 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 8px;
}
.bullets li{
  display:flex; gap:10px;
  align-items:flex-start;
  color: rgba(42,24,16,.80);
  font-size: 14px;
  line-height: 1.5;
}
.dot{
  flex:0 0 auto;
  width:10px; height:10px; border-radius: 999px;
  margin-top:6px;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  box-shadow: 0 8px 18px rgba(217,83,29,.18);
}
.heroActions{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.cta{
  border:0;
  cursor:pointer;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 14px;
  color: white;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  box-shadow: 0 12px 30px rgba(217,83,29,.20);
  transition: transform .12s ease, box-shadow .12s ease;
}
.cta:hover{ transform: translateY(-1px); box-shadow: 0 16px 36px rgba(217,83,29,.25); }
.ghost{
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  color: rgba(42,24,16,.90);
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 14px;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 0 8px 20px rgba(92,40,24,.06);
}
.ghost:hover{ transform: translateY(-1px); box-shadow: 0 12px 26px rgba(92,40,24,.08); }

.heroSide{
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding: 18px;
  position:relative;
  overflow:hidden;
}
.heroSide::before{
  content:"";
  position:absolute; inset:auto -80px -80px auto;
  width:260px; height:260px; border-radius:50%;
  background: radial-gradient(circle at 35% 35%, rgba(245,181,60,.18), rgba(245,181,60,.14), transparent 72%);
  filter: blur(6px);
}
.miniTitle{
  margin:0 0 10px;
  font-size: 14px;
  color: rgba(42,24,16,.92);
  letter-spacing:.2px;
}
.miniText{
  margin:0 0 12px;
  font-size: 13px;
  color: rgba(42,24,16,.72);
  line-height: 1.6;
}
.cards{
  display:grid;
  gap: 10px;
}
.card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(92,40,24,.06);
  transition: transform .12s ease;
}
.card:hover{ transform: translateY(-1px); }
.card .row{
  display:flex; align-items:center; justify-content:space-between; gap: 10px;
}
.tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(217,83,29,.16);
  background: rgba(217,83,29,.08);
  color: rgba(42,24,16,.80);
  white-space: nowrap;
}
.card h3{
  margin: 0;
  font-size: 14px;
  letter-spacing: -0.2px;
}
.card p{
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(42,24,16,.72);
  line-height: 1.55;
}

/* Sections */
section{
  padding: 22px 0;
}
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.sectionHead h2{
  margin:0;
  font-size: 20px;
  letter-spacing: -0.2px;
}
.sectionHead .sub{
  margin:0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 64ch;
}

.grid2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.panel{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding: 18px;
  position:relative;
  overflow:hidden;
}
.panel::before{
  content:"";
  position:absolute; inset:-120px -140px auto auto;
  width:320px; height:320px; border-radius:50%;
  background: radial-gradient(circle at 35% 35%, rgba(245,181,60,.18), rgba(217,83,29,.14), transparent 70%);
  filter: blur(8px);
  pointer-events:none;
}
.panel h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.panel p{
  margin:0;
  color: rgba(42,24,16,.78);
  line-height: 1.65;
  font-size: 14px;
}
.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(42,24,16,.78);
  line-height: 1.7;
  font-size: 14px;
}

/* Station grid */
.stationGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.stationCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  border-radius: var(--r-xl);
  padding: 16px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.stationCard::after{
  content:"";
  position:absolute; inset:auto -40px -40px auto;
  width:180px; height:180px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(217,83,29,.18), rgba(245,181,60,.14), transparent 70%);
  filter: blur(8px);
  opacity:.9;
  pointer-events:none;
}
.stationCard header{
  display:flex; align-items:center; justify-content:space-between; gap: 10px;
  margin-bottom: 8px;
}
.icon{
  width:38px; height:38px; border-radius: 14px;
  display:grid; place-items:center;
  border:1px solid rgba(42,24,16,.08);
  background: linear-gradient(135deg, rgba(217,83,29,.12), rgba(245,181,60,.10));
  box-shadow: 0 10px 22px rgba(92,40,24,.06);
  flex: 0 0 auto;
}
.stationCard h3{ margin:0; font-size: 16px; }
.stationCard p{ margin: 6px 0 0; font-size: 13px; color: rgba(42,24,16,.72); line-height:1.6; }
.stationCard .linkrow{
  margin-top: 12px;
  display:flex; gap: 10px; flex-wrap:wrap;
}
.smallLink{
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 0 8px 20px rgba(92,40,24,.06);
}
.smallLink:hover{ transform: translateY(-1px); box-shadow: 0 12px 26px rgba(92,40,24,.08); }

/* Writings */
.wGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.post{
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  border-radius: var(--r-xl);
  padding: 16px;
  box-shadow: var(--shadow);
}
.post .meta{
  display:flex; gap:8px; align-items:center; flex-wrap:wrap;
  color: rgba(42,24,16,.62);
  font-size: 12px;
}
.pill{
  border:1px solid rgba(245,181,60,.18);
  background: rgba(245,181,60,.08);
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(42,24,16,.78);
  font-size: 12px;
}
.post h3{
  margin: 10px 0 8px;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.post p{
  margin:0 0 12px;
  color: rgba(42,24,16,.75);
  font-size: 13px;
  line-height: 1.65;
}
.post .do{
  border-left: 3px solid rgba(217,83,29,.35);
  padding-left: 10px;
  color: rgba(42,24,16,.80);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Community */
.rules{
  margin: 12px 0 0;
  display:grid;
  gap: 10px;
}
.rule{
  display:flex; gap:10px; align-items:flex-start;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(92,40,24,.06);
}
.rule .n{
  width:28px; height:28px; border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(217,83,29,.10);
  border:1px solid rgba(217,83,29,.18);
  color: rgba(42,24,16,.90);
  font-size: 12px;
  flex:0 0 auto;
  margin-top: 2px;
}
.rule p{
  margin:0;
  color: rgba(42,24,16,.78);
  font-size: 13px;
  line-height:1.6;
}

/* Contact */
.contactGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.copyRow{
  display:flex; gap: 10px; flex-wrap:wrap;
  align-items:center;
  margin-top: 10px;
}
.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  font-size: 13px;
  padding: 10px 12px;
  border:1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
}

/* Footer */
footer{
  padding: 26px 0 36px;
  color: rgba(42,24,16,.62);
  font-size: 12px;
}
.fwrap{
  display:flex; flex-wrap:wrap;
  gap: 10px;
  align-items:center;
  justify-content:space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.fwrap a{
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: rgba(42,24,16,.70);
}
.fwrap a:hover{ background: rgba(245,181,60,.08); border-color: rgba(245,181,60,.12); }

/* Motion (respect reduced motion) */
.reveal{
  opacity:0;
  transform: translateY(8px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.show{ opacity:1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .cta:hover,.ghost:hover,.btn:hover,.card:hover,.smallLink:hover{ transform:none; }
}

/* Responsive */
@media (min-width: 880px){
  .navlinks{ display:flex; }
  .drawer{ display:none; }
  .hamburger{ display:none; }
  .heroGrid{ grid-template-columns: 1.35fr .65fr; gap: 16px; }
  .grid2{ grid-template-columns: 1fr 1fr; }
  .stationGrid{ grid-template-columns: 1fr 1fr; }
  .wGrid{ grid-template-columns: 1fr 1fr; }
  .contactGrid{ grid-template-columns: 1fr 1fr; }
}

/* Skip link */
.skip{
  position:absolute; left:-999px; top: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: var(--shadow2);
  z-index: 100;
}
.skip:focus{ left: 12px; }
