/* Golden Rule Alignment & Muffler - simple, fast, responsive site
   Author: ChatGPT (custom build)
*/

:root{
  --bg:#0b0f19;
  --panel:#11182a;
  --panel2:#0e1526;
  --text:#e9eefc;
  --muted:#b8c2df;
  --brand:#f4c542;     /* warm gold */
  --brand2:#c62828;    /* red accent */
  --line:rgba(255,255,255,.10);
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius:18px;
  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 10% 0%, rgba(244,197,66,.10), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(198,40,40,.10), transparent 60%),
              var(--bg);
  line-height:1.55;
}

a{color:inherit}
img{max-width:100%; display:block}
.container{max-width:var(--container); margin:0 auto; padding:0 20px}
.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;
}
.skip{
  position:absolute; left:-999px; top:10px;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
}
.skip:focus{left:10px; z-index:9999}

.topbar{
  border-bottom:1px solid var(--line);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:12px;
}
.topbar__left{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.topbar__right{display:flex; align-items:center; gap:14px}
.topbar__link{color:var(--muted); text-decoration:none}
.topbar__link:hover{color:var(--text)}
.pill{
  display:inline-flex; align-items:center;
  padding:6px 10px; border-radius:999px;
  background: rgba(244,197,66,.13);
  border:1px solid rgba(244,197,66,.22);
  color:var(--text);
  font-weight:600;
  font-size:13px;
}
.dot{color:rgba(255,255,255,.35)}

.header{
  position:sticky; top:0; z-index:100;
  background: rgba(11,15,25,.70);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand__logo{
  width:44px; height:44px; border-radius:10px;
  object-fit:cover; border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 18px rgba(0,0,0,.25);
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{color:var(--muted); font-size:13px; margin-top:2px}

.nav__menu{
  display:flex; align-items:center; gap:18px;
}
.nav__menu a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}
.nav__menu a:hover{color:var(--text)}
.nav__toggle{
  display:none;
  background:transparent; border:1px solid var(--line);
  width:44px; height:44px; border-radius:12px; color:#fff;
}
.nav__toggleLines{
  display:block; width:20px; height:2px; background:#fff; margin:0 auto;
  position:relative;
}
.nav__toggleLines::before,
.nav__toggleLines::after{
  content:""; position:absolute; left:0; width:20px; height:2px; background:#fff;
}
.nav__toggleLines::before{top:-6px}
.nav__toggleLines::after{top:6px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(244,197,66,.95), rgba(244,197,66,.75));
  border:1px solid rgba(244,197,66,.35);
  color:#10131b;
  font-weight:800;
  text-decoration:none;
  box-shadow: var(--shadow);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter:saturate(1.05)}
.btn--ghost{
  background: transparent;
  border:1px solid rgba(255,255,255,.18);
  color:var(--text);
  box-shadow:none;
}
.btn--ghost:hover{border-color:rgba(255,255,255,.35)}
.btn--small{padding:10px 14px; border-radius:12px}

.hero{border-bottom:1px solid var(--line)}
.hero__slider{
  position:relative;
  min-height: 68vh;
  overflow:hidden;
}
.slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .6s ease, transform 1.2s ease;
}
.slide.is-active{
  opacity:1;
  transform: scale(1.0);
}
.slide__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,15,25,.88), rgba(11,15,25,.40) 55%, rgba(11,15,25,.20));
}
.slide__content{
  position:relative;
  padding: 64px 0;
  max-width: 760px;
}
.hero h1, .hero h2{
  margin:0 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.hero p{
  margin:0 0 18px;
  color: rgba(233,238,252,.92);
  font-size: 17px;
}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top: 10px}
.heroBadges{display:flex; gap:10px; flex-wrap:wrap; margin-top: 18px}
.badge{
  display:inline-flex; align-items:center;
  padding:8px 10px; border-radius:999px;
  background: rgba(17,24,42,.60);
  border:1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-weight:700;
  font-size:13px;
}

.sliderBtn{
  position:absolute; top:50%; transform: translateY(-50%);
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color:#fff;
  font-size:32px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.sliderBtn:hover{background: rgba(0,0,0,.50)}
.sliderBtn.prev{left:14px}
.sliderBtn.next{right:14px}

.dots{
  position:absolute; left:50%; bottom:16px; transform: translateX(-50%);
  display:flex; gap:8px; align-items:center;
}
.dotBtn{
  width:10px; height:10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  cursor:pointer;
}
.dotBtn.is-active{
  background: rgba(244,197,66,.95);
  border-color: rgba(244,197,66,.95);
}

.trust{padding: 24px 0 8px}
.trust__inner{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.trustCard{
  border:1px solid var(--line);
  background: rgba(17,24,42,.55);
  border-radius: var(--radius);
  padding:14px;
  display:flex; gap:12px; align-items:flex-start;
}
.trustIcon{font-size:22px}
.trustTitle{font-weight:800}
.trustText{color:var(--muted); font-size:13px; margin-top:2px}

.section{padding: 62px 0}
.section--alt{background: rgba(17,24,42,.25); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.sectionHead{margin-bottom: 18px}
.sectionHead h2{margin:0 0 8px; font-size: 30px}
.sectionHead p{margin:0; color:var(--muted)}

.grid{
  display:grid;
  gap:16px;
}
.grid--3{grid-template-columns: repeat(3, minmax(0, 1fr))}
.card{
  border:1px solid var(--line);
  background: rgba(17,24,42,.55);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 12px; color:var(--muted)}
.bullets{margin:0; padding-left:18px; color:rgba(233,238,252,.92)}
.bullets li{margin:6px 0}
.mediaRow img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:center;
}
.split--reverse{grid-template-columns: .9fr 1.1fr}
.split__media .imgCard{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(0,0,0,.25);
  box-shadow: var(--shadow);
}
.split__media img{width:100%; height:340px; object-fit:cover}
.caption{color:var(--muted); font-size:13px; margin:10px 0 0}
.callout{
  margin-top:14px;
  border-radius: var(--radius);
  padding:14px;
  border:1px solid rgba(244,197,66,.22);
  background: rgba(244,197,66,.08);
}
.callout strong{display:block; margin-bottom:8px}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.gitem{
  padding:0;
  border:none;
  background:transparent;
  cursor:pointer;
}
.gitem img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  transition: transform .15s ease, filter .15s ease;
}
.gitem:hover img{transform: translateY(-2px); filter: contrast(1.03)}

.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 24px;
  z-index: 9999;
}
.lightbox.is-open{display:flex}
.lightbox__img{
  max-width:min(1080px, 100%);
  max-height: 85vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.15);
  box-shadow: 0 25px 60px rgba(0,0,0,.55);
}
.lightbox__close{
  position:absolute; top:18px; right:18px;
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.40);
  color:#fff;
  font-size:30px;
  cursor:pointer;
}

.contactCard{
  border:1px solid var(--line);
  background: rgba(17,24,42,.55);
  border-radius: var(--radius);
  padding: 16px;
}
.contactRow{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.contactRow:last-child{border-bottom:none}
.contactLabel{color:var(--muted); font-weight:700}
.contactValue a{text-decoration:none}
.contactRow--note .contactValue{color: rgba(233,238,252,.92)}
.mapCard{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.mapCard iframe{
  width:100%;
  height: 360px;
  border:0;
}
.note{
  margin-top: 14px;
  color: var(--muted);
  border:1px dashed rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(17,24,42,.35);
}

.footer{
  border-top:1px solid var(--line);
  padding: 22px 0 14px;
  background: rgba(0,0,0,.30);
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
}
.footer__right{display:flex; gap:14px; flex-wrap:wrap}
.footer__right a{color:var(--muted); text-decoration:none; font-weight:700; font-size:14px}
.footer__right a:hover{color:var(--text)}
.footerBrand{display:flex; gap:10px; align-items:center}
.footerBrand img{
  width:38px; height:38px; border-radius:10px; object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
}
.footerBrand__name{font-weight:900}
.footerBrand__meta{color:var(--muted); font-size:13px; margin-top:2px}
.footer__bottom{
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
  color: rgba(233,238,252,.80);
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:12px;
  margin-top: 14px;
}
.footer__tiny{color:var(--muted); font-size:13px}

/* Responsive */
@media (max-width: 980px){
  .trust__inner{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .grid--3{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .split{grid-template-columns: 1fr; }
  .split--reverse{grid-template-columns: 1fr}
  .split__media img{height:300px}
}
@media (max-width: 720px){
  .nav__toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav__menu{
    position:absolute;
    right:20px; top:68px;
    background: rgba(11,15,25,.95);
    border:1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding:12px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    width: min(260px, calc(100vw - 40px));
    box-shadow: var(--shadow);
  }
  .nav__menu.is-open{display:flex}
  .hero__slider{min-height: 62vh}
  .slide__content{padding: 54px 0}
  .gallery{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .gitem img{height:190px}
}
@media (max-width: 430px){
  .gallery{grid-template-columns: 1fr}
  .gitem img{height:210px}
}
