/* ====== Base ====== */
:root{
  --bg:#0f0b08;
  --panel:#161210;
  --panel2:#120e0b;
  --text:#f3f0ec;
  --muted:#bdb5aa;
  --brand:#d63031;
  --brand2:#6ab04c;
  --border:rgba(255,255,255,.10);
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1100px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{margin:0; padding:0; font-family:var(--sans); background:var(--bg); color:var(--text); scroll-behavior:smooth}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:20px; top:20px; width:auto; height:auto; padding:10px 12px; background:var(--panel); border:1px solid var(--border); border-radius:12px; z-index:999}

/* ====== Header/Nav ====== */
.header{position:sticky; top:0; z-index:50; backdrop-filter:saturate(150%) blur(10px);
  background:rgba(15,11,8,.85); border-bottom:1px solid var(--border)}
.header__inner{display:flex; align-items:center; justify-content:space-between; min-height:68px; gap:16px}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; font-weight:800; letter-spacing:.2px}
.brand__logo{width:42px; height:42px; object-fit:contain; border-radius:8px}
.nav{display:flex; align-items:center; gap:14px}
.nav a{opacity:.9; text-decoration:none; padding:10px 10px; border-radius:12px}
.nav a:hover{background:rgba(255,255,255,.06); opacity:1}
.nav-toggle{display:none; width:44px; height:44px; border-radius:14px; border:1px solid var(--border);
  background:rgba(255,255,255,.04); cursor:pointer}
.nav-toggle__bars{display:block; width:18px; height:2px; background:var(--text); position:relative; margin:0 auto}
.nav-toggle__bars::before,.nav-toggle__bars::after{content:""; position:absolute; left:0; width:18px; height:2px; background:var(--text)}
.nav-toggle__bars::before{top:-6px} .nav-toggle__bars::after{top:6px}
.sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0}

/* ====== Buttons ====== */
.btn{display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:12px 16px; border-radius:14px;
  text-decoration:none; font-weight:700; border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(135deg,var(--brand),#b71c1c); box-shadow:var(--shadow)}
.btn:hover{transform:translateY(-1px)}
.btn--ghost{background:rgba(255,255,255,.06); box-shadow:none}
.btn--small{padding:10px 12px; font-size:14px; border-radius:12px}

/* ====== Hero ====== */
.hero{padding:56px 0 22px}
.hero__inner{display:grid; grid-template-columns:1.15fr .85fr; gap:26px; align-items:stretch}
.kicker{display:inline-flex; gap:8px; align-items:center; font-weight:800; letter-spacing:.2px;
  color:rgba(255,255,255,.8); margin:0 0 10px}
.hero h1{font-size:44px; line-height:1.05; margin:0 0 12px}
.lead{font-size:18px; line-height:1.55; color:rgba(255,255,255,.85); margin:0 0 18px}
.hero__cta{display:flex; flex-wrap:wrap; gap:12px; margin:16px 0 8px}
.note{color:var(--muted); margin:8px 0 0}
.hero__media{border-radius:var(--radius); border:1px solid var(--border); background:
  linear-gradient(135deg, rgba(214,48,49,.25), rgba(106,176,76,.20)),
  url('assets/hero.jpg') center/cover no-repeat; min-height:320px; box-shadow:var(--shadow); position:relative; overflow:hidden}
.hero__media-card{position:absolute; left:16px; right:16px; bottom:16px; padding:14px 14px; border-radius:16px;
  background:rgba(0,0,0,.45); border:1px solid rgba(255,255,255,.15)}
.hero__media-title{margin:0 0 4px; font-weight:800}
.hero__media-sub{margin:0; color:rgba(255,255,255,.82)}
code{font-family:var(--mono); font-size:.92em}

/* ====== Sections ====== */
.section{padding:46px 0}
.section--alt{background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 8px; font-size:30px}
.section__head p{margin:0; color:var(--muted); line-height:1.6}

/* ====== Trust pills ====== */
.trust{padding:0 0 18px}
.trust__inner{display:flex; flex-wrap:wrap; gap:10px}
.pill{padding:10px 12px; border-radius:999px; background:rgba(255,255,255,.05); border:1px solid var(--border); color:rgba(255,255,255,.9)}

/* ====== Cards/Grid ====== */
.grid{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.grid--3{grid-template-columns:repeat(3,1fr)}
.card{padding:16px; border-radius:var(--radius); border:1px solid var(--border); background:rgba(255,255,255,.03)}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted); line-height:1.55}

.callout{margin-top:16px; padding:16px; border-radius:var(--radius);
  border:1px solid rgba(106,176,76,.25); background:rgba(106,176,76,.08); display:flex; align-items:center; justify-content:space-between; gap:14px}
.callout p{margin:0; color:rgba(255,255,255,.9)}

/* ====== Two-col ====== */
.two-col{display:grid; grid-template-columns:1fr 1fr; gap:16px; align-items:start; margin-top:14px}
.info{padding:16px; border-radius:var(--radius); border:1px solid var(--border); background:rgba(255,255,255,.03)}
.social{display:flex; flex-wrap:wrap; gap:12px}
.social a{padding:10px 12px; border-radius:14px; background:rgba(255,255,255,.05); border:1px solid var(--border); text-decoration:none}
.social a:hover{background:rgba(255,255,255,.08)}
.muted{color:var(--muted)}
.mono{font-family:var(--mono)}

/* ====== Hours ====== */
.hours{margin-top:10px; border-top:1px dashed rgba(255,255,255,.18); padding-top:10px}
.hours__row{display:flex; justify-content:space-between; padding:6px 0; color:rgba(255,255,255,.9)}
.hours__row span:last-child{color:var(--muted)}

/* ====== Map ====== */
.map{border-radius:var(--radius); overflow:hidden; border:1px solid var(--border); box-shadow:var(--shadow); background:var(--panel)}
.map iframe{width:100%; height:360px; border:0}

/* ====== Accordion ====== */
.accordion details{border:1px solid var(--border); border-radius:var(--radius); background:rgba(255,255,255,.03); padding:12px 14px; margin-bottom:10px}
.accordion summary{cursor:pointer; font-weight:800}
.details__body{color:var(--muted); line-height:1.6; margin-top:8px}

/* ====== CTA / Footer ====== */
.cta{padding:34px 0; border-top:1px solid var(--border); background:linear-gradient(135deg, rgba(214,48,49,.16), rgba(106,176,76,.10))}
.cta__inner{display:flex; align-items:center; justify-content:space-between; gap:18px}
.cta h2{margin:0 0 6px}
.cta p{margin:0; color:rgba(255,255,255,.85)}
.cta__actions{display:flex; gap:10px; flex-wrap:wrap}

.footer{padding:26px 0; color:rgba(255,255,255,.8)}
.footer__inner{display:flex; flex-direction:column; gap:8px}
.footer p{margin:0}
.footer .muted{color:rgba(255,255,255,.65)}

/* ====== Responsive ====== */
@media (max-width: 920px){
  .hero__inner{grid-template-columns:1fr}
  .hero h1{font-size:38px}
  .two-col{grid-template-columns:1fr}
  .grid--3{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .cta__inner{flex-direction:column; align-items:flex-start}
  .nav{position:absolute; top:68px; right:16px; left:16px; display:none; flex-direction:column; padding:12px;
    border:1px solid var(--border); border-radius:18px; background:rgba(15,11,8,.95)}
  .nav.open{display:flex}
  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
}
