:root{
  --bg:#070308;
  --bg2:#0f0710;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.09);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.58);
  --red:#7a0a0a;
  --red2:#b10f0f;
  --gold:#d4af37;
  --gold2:#f4d16a;
  --ring:rgba(212,175,55,.35);
  --shadow:0 20px 55px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:26px;
  --container:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
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(900px 450px at 15% 15%, rgba(212,175,55,.18), transparent 55%),
    radial-gradient(900px 450px at 85% 25%, rgba(177,15,15,.25), transparent 55%),
    radial-gradient(1000px 650px at 50% 95%, rgba(122,10,10,.25), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
a:hover{color:var(--gold2)}

.container{max-width:var(--container);margin:0 auto;padding:0 20px}
.skip-link{
  position:absolute;left:-999px;top:0;
  background:#111;color:#fff;padding:10px 12px;border-radius:10px;z-index:9999;
}
.skip-link:focus{left:14px;top:14px;outline:2px solid var(--gold)}

.topbar{
  position:sticky;top:0;z-index:30;
  backdrop-filter:saturate(140%) blur(16px);
  background:linear-gradient(180deg, rgba(7,3,8,.86), rgba(7,3,8,.55));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}
.brand{display:flex;align-items:center;gap:10px}
.brand__mark{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(212,175,55,.25), rgba(177,15,15,.25));
  border:1px solid rgba(212,175,55,.22);
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.brand__text{font-weight:750;letter-spacing:.2px}
.nav{display:flex;align-items:center;gap:16px}
.nav a{font-weight:650;color:var(--muted)}
.nav a:hover{color:var(--text)}
.nav__cta{
  padding:10px 12px;border-radius:999px;
  background:linear-gradient(135deg, rgba(212,175,55,.22), rgba(177,15,15,.22));
  border:1px solid rgba(212,175,55,.25);
  color:var(--text);
}

.phonePill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.28);
  background:linear-gradient(135deg, rgba(212,175,55,.18), rgba(0,0,0,.10));
  color:rgba(255,255,255,.92);
  font-weight:850;
  letter-spacing:.2px;
  box-shadow:0 12px 28px rgba(0,0,0,.22);
  white-space:nowrap;
}
.phonePill:hover{
  color:#201306;
  background:linear-gradient(135deg, var(--gold2), var(--gold));
  border-color:rgba(212,175,55,.40);
}
.phonePill__icon{
  width:26px;height:26px;
  display:grid;place-items:center;
  border-radius:10px;
  background:rgba(212,175,55,.14);
  border:1px solid rgba(212,175,55,.22);
}

.hero{padding:34px 0 18px}
.hero__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:9px 12px;border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  margin:0 0 12px;
}
.pill__dot{width:9px;height:9px;border-radius:50%;background:var(--gold);box-shadow:0 0 0 6px rgba(212,175,55,.12)}
.hero__title{
  font-size:clamp(30px, 4vw, 52px);
  line-height:1.05;
  margin:0 0 12px;
  letter-spacing:-.6px;
}
.hero__titleAccent{
  background:linear-gradient(90deg, var(--gold2), var(--gold));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero__sub{color:var(--muted);font-size:16px;line-height:1.55;margin:0 0 18px;max-width:56ch}
.hero__actions{display:flex;gap:12px;flex-wrap:wrap;margin:0 0 18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  font-weight:750;letter-spacing:.2px;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:focus{outline:2px solid var(--ring);outline-offset:2px}
.btn:hover{transform:translateY(-1px);box-shadow:0 14px 34px rgba(0,0,0,.35)}
.btn--gold{
  background:linear-gradient(135deg, var(--gold2), var(--gold));
  color:#201306;
  border-color:rgba(212,175,55,.35);
}
.btn--ghost{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.14);
  color:var(--text);
}

.stats{
  display:grid;grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;margin:0;padding:0;
}
.stats__item{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:12px 12px;
  box-shadow:0 12px 28px rgba(0,0,0,.22);
}
.stats dt{color:var(--muted2);font-size:12px;margin:0 0 6px}
.stats dd{margin:0;font-weight:800;font-size:15px}

.hero__media{
  margin:0;
  border-radius:var(--radius2);
  overflow:hidden;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(212,175,55,.16);
  box-shadow:var(--shadow);
  position:relative;
}
.hero__media img{display:block;width:100%;height:auto}
.hero__caption{
  position:absolute;left:14px;right:14px;bottom:14px;
  margin:0;
  padding:12px 12px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.35));
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.88);
  font-size:13px;
  backdrop-filter:blur(10px);
}

.section{padding:34px 0}
.section--alt{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin:0 0 16px}
.sectionTitle{margin:0;font-size:26px;letter-spacing:-.2px;font-weight:850}
.section__head p{margin:0;color:var(--muted);max-width:65ch;line-height:1.45}

.gallery{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
}
.gallery__item{
  padding:0;margin:0;border:0;background:none;
  cursor:pointer;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 14px 34px rgba(0,0,0,.28);
  transition:transform .12s ease, border-color .12s ease;
}
.gallery__item:hover{transform:translateY(-2px);border-color:rgba(212,175,55,.28)}
.gallery__item img{display:block;width:100%;height:190px;object-fit:cover}

.cards{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:14px 14px;
  box-shadow:0 14px 34px rgba(0,0,0,.25);
}
.card__title{margin:0 0 8px;font-size:16px;letter-spacing:-.1px;font-weight:850}
.card p{margin:0;color:var(--muted);line-height:1.55}

.cta{
  border-radius:26px;
  padding:18px 18px;
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(212,175,55,.25), transparent 65%),
    radial-gradient(700px 240px at 90% 30%, rgba(177,15,15,.30), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(212,175,55,.18);
  box-shadow:var(--shadow);
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.cta__title{margin:0 0 8px;font-size:22px;font-weight:900}
.cta__copy p{margin:0;color:var(--muted);line-height:1.45}
.cta__actions{display:flex;gap:10px;flex-wrap:wrap}

.contact{
  border-radius:22px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 16px 40px rgba(0,0,0,.25);
  padding:16px;
}
.contact__form{display:flex;flex-direction:column;gap:12px}
.contact__row{display:grid;grid-template-columns:repeat(2, minmax(0,1fr));gap:12px}
.field{display:flex;flex-direction:column;gap:8px}
.field__label{font-size:12px;color:var(--muted2);font-weight:700;letter-spacing:.2px}
.field__input{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
.field__input:focus{border-color:rgba(212,175,55,.35);box-shadow:0 0 0 4px rgba(212,175,55,.14)}
.field__textarea{resize:vertical;min-height:120px}
.notice{
  border-radius:16px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.12);
  margin:0 0 12px;
}
.notice--success{border-color:rgba(212,175,55,.28);background:rgba(212,175,55,.10);color:rgba(255,255,255,.92)}
.notice--error{border-color:rgba(177,15,15,.35);background:rgba(177,15,15,.12);color:rgba(255,255,255,.92)}

.toc{
  display:flex;gap:10px;flex-wrap:wrap;
  margin:0 0 14px;
}
.toc a{
  padding:9px 12px;border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  font-weight:650;
}
.toc a:hover{color:var(--text);border-color:rgba(212,175,55,.22)}

.article{
  border-radius:22px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 16px 40px rgba(0,0,0,.25);
  overflow:hidden;
}
.article__content{padding:18px 18px}
.article__content h1{font-size:28px;margin:0 0 10px}
.article__content h2{font-size:19px;margin:18px 0 8px}
.article__content h3{font-size:16px;margin:14px 0 8px}
.article__content p{color:var(--muted);line-height:1.68;margin:0 0 10px}
.article__content ul,.article__content ol{color:var(--muted);line-height:1.68}
.article__content a{color:var(--gold2);text-decoration:underline}
.article__content strong{color:rgba(255,255,255,.92)}

/* Inline images inside the article */
.inline-figure{
  margin:14px 0 18px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
  box-shadow:0 16px 40px rgba(0,0,0,.25);
}
.inline-figure img{display:block;width:100%;height:auto}
.inline-figure figcaption{
  margin:0;
  padding:10px 12px;
  color:var(--muted2);
  font-size:13px;
  border-top:1px solid rgba(255,255,255,.08);
}
.inline-figure--right{max-width:520px}
@media (min-width: 980px){
  .inline-figure--right{
    float:right;
    width:44%;
    margin:6px 0 12px 16px;
  }
}

/* FAQ accordion (questions must remain H3 tags) */
.faq{
  margin:10px 0 0;
}
.faq__item{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  margin:10px 0;
  overflow:hidden;
}
.faq__q{
  margin:0; /* override default h3 margins inside article */
}
.faq__btn{
  width:100%;
  border:0;
  background:none;
  cursor:pointer;
  padding:12px 14px;
  font:inherit;
  font-weight:800;
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  text-align:left;
}
.faq__btn:focus{outline:2px solid var(--ring);outline-offset:2px}
.faq__btn::after{
  content:"+";
  width:26px;height:26px;
  display:grid;place-items:center;
  border-radius:10px;
  border:1px solid rgba(212,175,55,.25);
  background:rgba(212,175,55,.10);
  color:var(--gold2);
  flex:0 0 auto;
}
.faq__btn[aria-expanded="true"]::after{content:"–"}
.faq__a{
  padding:0 14px 12px;
  color:var(--muted);
  line-height:1.68;
  border-top:1px solid rgba(255,255,255,.08);
}
.faq__a p{margin:10px 0 0}

/* States grid (6 columns on desktop) */
.states-grid{
  margin:12px 0 6px;
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:10px;
}
.state{
  margin:0;
  padding:10px 10px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  font-size:14px;
  font-weight:800;
  color:rgba(255,255,255,.90);
}
@media (max-width: 980px){
  .states-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
}
@media (max-width: 520px){
  .states-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
}

.footer{padding:26px 0}
.footer__inner{
  border-top:1px solid rgba(255,255,255,.07);
  padding-top:18px;
}
.footer__small{margin:0;color:var(--muted2);font-size:13px}
.footer__cols{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;flex-wrap:wrap}
.footer__contact{min-width:260px}
.footer__label{margin:0 0 6px;font-weight:850;letter-spacing:.2px;color:rgba(255,255,255,.90)}

/* Lightbox */
.lightbox{
  position:fixed;inset:0;
  display:none;
  z-index:60;
}
.lightbox.is-open{display:block}
.lightbox__backdrop{
  position:absolute;inset:0;background:rgba(0,0,0,.75);
}
.lightbox__panel{
  position:absolute;left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:min(980px, calc(100% - 26px));
  background:rgba(15,7,16,.94);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  box-shadow:0 25px 80px rgba(0,0,0,.55);
  overflow:hidden;
}
.lightbox__img{display:block;width:100%;height:auto;max-height:76vh;object-fit:contain;background:#000}
.lightbox__caption{margin:0;padding:12px 14px;color:var(--muted);border-top:1px solid rgba(255,255,255,.08)}
.lightbox__close{
  position:absolute;right:12px;top:10px;
  width:38px;height:38px;border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-size:22px;line-height:1;
  cursor:pointer;
}
.lightbox__nav{
  position:absolute;top:50%;
  transform:translateY(-50%);
  width:44px;height:44px;border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-size:28px;
  cursor:pointer;
}
.lightbox__nav--prev{left:10px}
.lightbox__nav--next{right:10px}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr;gap:18px}
  .nav{display:none}
  .phonePill{padding:10px 12px}
  .stats{grid-template-columns:1fr;gap:10px}
  .gallery{grid-template-columns:repeat(2, minmax(0,1fr))}
  .cards{grid-template-columns:repeat(2, minmax(0,1fr))}
  .gallery__item img{height:170px}
  .cta{flex-direction:column;align-items:flex-start}
  .contact__row{grid-template-columns:1fr}
}

@media (max-width: 520px){
  .cards{grid-template-columns:1fr}
  .gallery__item img{height:150px}
}

