/* styles.css */
:root{
  --bg:#0b0c0e;
  --panel:#121419;
  --panel2:#0f1115;
  --text:#e9ecf1;
  --muted:#b7bfcc;
  --muted2:#8f99aa;
  --line:#262b35;

  --brand:#e01111;
  --brand2:#c60f0f;

  --radius:14px;
  --shadow: 0 12px 30px rgba(0,0,0,.35);

  --wrap:1120px;
  --header-h:72px;

  --focus: 0 0 0 3px rgba(224,17,17,.35);
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height:1.5;
  overflow-x:hidden;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
button, input, select, textarea{ font:inherit; }
:focus-visible{ outline:none; box-shadow: var(--focus); border-radius:10px; }

.container{
  width: min(100% - 32px, var(--wrap));
  margin-inline:auto;
}

.section{ padding: 44px 0; }
@media (min-width: 820px){ .section{ padding: 64px 0; } }

.kicker{
  margin:0 0 8px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing:.02em;
}
.h2{
  margin:0 0 10px;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing:-.02em;
}
.h1{
  margin:0;
  font-size: clamp(28px, 4.2vw, 46px);
  letter-spacing:-.03em;
  line-height:1.08;
}
.p{ margin:0; color: var(--muted); }
.small{ font-size:13px; color: var(--muted2); }

.panel{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pad{ padding:18px; }

.grid{ display:grid; gap:14px; }
@media (min-width: 820px){
  .grid.cols-2{ grid-template-columns: 1.05fr .95fr; }
  .grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
}

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(11,12,14,.92);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  height: var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand img{
  width:60px;
  height:60px;
  object-fit:contain;
  border-radius: 12px;
  background:#0b0c0e;
}
.brand-text{ min-width:0; }
.brand-title{
  margin:0;
  font-weight: 900;
  letter-spacing:-.02em;
  font-size: 16px;
  line-height:1.15;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Logo-style title (Option B) */
.logo-title{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  gap:2px;
}
.logo-title .lt-top{
  font-weight: 1000;
  letter-spacing: -.04em;
  font-size: 18px;
  background: linear-gradient(180deg, #ff4b4b 0%, #e01111 45%, #a90d0d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(0,0,0,.85);
  text-shadow:
    0 1px 0 rgba(255,255,255,.10),
    0 3px 10px rgba(0,0,0,.55);
}
.logo-title .lt-bottom{
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color:#f4f6fb;
  -webkit-text-stroke: .9px rgba(0,0,0,.85);
  text-shadow: 0 2px 8px rgba(0,0,0,.55);
}

.brand-tagline{
  margin:3px 0 0;
  color: var(--muted2);
  font-size: 12px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nav{
  display:flex;
  align-items:center;
  gap:12px;
}
.nav-links{
  display:none;
  align-items:center;
  gap:6px;
}
.nav-links a{
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 750;
  font-size: 14px;
}
.nav-links a:hover{
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.nav-links a[aria-current="page"]{
  color: var(--text);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

.hamburger{
  border:1px solid rgba(255,255,255,.12);
  background: transparent;
  color: var(--text);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
}
.hamburger svg{ width:22px; height:22px; }

@media (min-width: 920px){
  .nav-links{ display:flex; }
  .hamburger{ display:none; }
  .brand img{ width:52px; height:52px; }
  .brand-title{ font-size: 16px; }
  .logo-title .lt-top{ font-size: 18px; }
  .logo-title .lt-bottom{ font-size: 12px; }
}

/* Mobile menu */
.mobile-menu{
  display:none;
  border-top:1px solid var(--line);
  background: rgba(11,12,14,.98);
}
.mobile-menu.open{ display:block; }
.mobile-menu .container{ padding: 10px 0 14px; }
.mobile-menu a{
  display:block;
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
}
.mobile-menu a:hover{ background: rgba(255,255,255,.04); color: var(--text); }
.mobile-menu a[aria-current="page"]{
  color: var(--text);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 900;
  letter-spacing:.01em;
}
.btn:hover{ background: rgba(255,255,255,.09); }
.btn.primary{
  background: var(--brand);
  border-color: rgba(0,0,0,.25);
  color:#fff;
}
.btn.primary:hover{ background: var(--brand2); }
.btn.ghost{
  background: transparent;
  border-color: rgba(255,255,255,.14);
  color: var(--text);
}

/* Hero */
.hero{
  position:relative;
  border-bottom:1px solid var(--line);
  padding: 26px 0;
}
.hero-grid{
  display:grid;
  gap:14px;
  align-items:stretch;
}
@media (min-width: 920px){
  .hero-grid{ grid-template-columns: 1.45fr .95fr; }
}

.hero-media{
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:#0a0b0d;
  box-shadow: var(--shadow);
}
.hero-media img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  background:#0a0b0d;
}

.hero-copy .sub{
  margin: 10px 0 0;
  color: rgba(233,236,241,.92);
  font-size: 15px;
  max-width: 60ch;
}
.hero-meta{
  margin: 12px 0 0;
  color: rgba(233,236,241,.85);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .01em;
}
.hero-actions{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

/* Cards */
.cards{
  display:grid;
  gap:14px;
  margin-top: 14px;
}
@media (min-width: 820px){
  .cards{ grid-template-columns: repeat(3, 1fr); }
}
.card{
  padding:16px;
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card h3{
  margin:0 0 8px;
  font-size: 16px;
  font-weight: 950;
  letter-spacing:-.01em;
}
.card p{ margin:0; color: var(--muted); font-size:14px; }

/* About */
.about{
  display:grid;
  gap:14px;
  margin-top: 14px;
}
@media (min-width: 920px){
  .about{ grid-template-columns: 1fr 1fr; }
}
.about-logo{
  display:flex;
  align-items:center;
  justify-content:center;
}
.about-logo img{
  width: 140px;
  height:auto;
  object-fit:contain;
}

/* Bullets */
.bullets{ display:grid; gap:12px; }
.bullet{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.bullet .dot{
  width:10px;
  height:10px;
  border-radius:99px;
  background: var(--brand);
  flex: 0 0 10px;
  margin-top: 6px;
}
.bullet b{ display:block; }
.bullet span{ color: var(--muted); display:block; margin-top:2px; }

/* Facebook embeds */
.embed-grid{
  display:grid;
  gap:14px;
  margin-top: 14px;
}
@media (min-width: 820px){
  .embed-grid{ grid-template-columns: repeat(2, 1fr); }
}
.embed{
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:#0a0b0d;
  box-shadow: var(--shadow);
}
.ratio{ aspect-ratio: 16/9; }
.embed iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  background:#090a0c;
  padding: 34px 0 22px;
}
.footer-top{
  display:grid;
  gap:18px;
}
.footer-brand{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.footer-brand img{
  width: 92px;
  height: 92px;
  border-radius: 16px;
  background:#0b0c0e;
  object-fit:contain;
}
.footer-title{
  margin:0;
  font-size: 18px;
  font-weight: 950;
}
.footer-sub{
  margin: 6px 0 0;
  color: var(--muted);
}
.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top:1px solid var(--line);
  color: var(--muted2);
  font-size: 13px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:space-between;
}
.footer-credit a{ color: var(--muted); }
.footer-credit a:hover{ color: var(--text); }

/* Utilities */
.hr{ border:0; border-top:1px solid var(--line); margin:16px 0; }

/* Reveal animations (simple + clean) */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-in{
  opacity:1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* Back to top */
.to-top{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(18,20,25,.86);
  color: var(--text);
  box-shadow: var(--shadow);
  display:grid;
  place-items:center;
  opacity:0;
  pointer-events:none;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}
.to-top:hover{ background: rgba(18,20,25,.95); }
.to-top.show{
  opacity:1;
  pointer-events:auto;
  transform: translateY(0);
}
.to-top svg{ width:20px; height:20px; }

/* Desktop/Laptop sizing guard (prevents "too big" on PC) */
@media (min-width: 1024px){
  .container{ width: min(100% - 48px, 1120px); }
  .section{ padding: 56px 0; }
  .h1{ font-size: 40px; }
  .h2{ font-size: 28px; }

  .btn{ padding: 10px 12px; font-size: 14px; }
  .card{ padding: 14px; }
  .card h3{ font-size: 15px; }
  .card p{ font-size: 13.5px; }

  .footer-brand img{ width: 84px; height: 84px; }
}
