/* Branch Ranch - base styles (shared) */
:root{
  --bg: #0b0f14;
  --bg2:#0f1722;
  --surface:#121b26;
  --card:#0f1722;
  --text:#eef2f6;
  --muted:#b5c0cf;
  --line:rgba(255,255,255,.10);

  --accent:#ffb454;
  --accent2:#7ad7c6;

  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;

  --max: 1180px;
  --h1: clamp(2.2rem, 4vw, 3.2rem);
  --h2: clamp(1.5rem, 2.2vw, 2.1rem);
  --p: 1.05rem;
}

*{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(1100px 600px at 20% -10%, rgba(255,180,84,.18), transparent 55%),
              radial-gradient(900px 550px at 90% 10%, rgba(122,215,198,.14), transparent 50%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.55;
}
img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
p{font-size:var(--p); color:var(--muted); margin:0 0 1rem}
h1,h2,h3{margin:0 0 .8rem; line-height:1.15}
h1{font-size:var(--h1); letter-spacing:-.02em}
h2{font-size:var(--h2); letter-spacing:-.01em}
h3{font-size:1.25rem}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:84px 0}
.section.compact{padding:60px 0}
.sectionTitle{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:26px}
.kicker{color:rgba(255,255,255,.75); text-transform:uppercase; letter-spacing:.18em; font-size:.78rem}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  padding:10px 14px;
  border-radius:999px;
  font-size:.92rem;
  color:rgba(255,255,255,.88);
  backdrop-filter: blur(8px);
}

.grid{display:grid; gap:18px}
.grid.two{grid-template-columns: repeat(2, minmax(0,1fr))}
.grid.three{grid-template-columns: repeat(3, minmax(0,1fr))}
@media (max-width: 980px){
  .grid.two,.grid.three{grid-template-columns:1fr}
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card.pad{padding:22px}
.card.soft{box-shadow:none}

.btnRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
  font-weight:600;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.20)}
.btn.primary{
  background:linear-gradient(135deg, rgba(255,180,84,.95), rgba(255,128,64,.92));
  border-color: rgba(255,180,84,.35);
  color:#1b1208;
}
.btn.primary:hover{background:linear-gradient(135deg, rgba(255,190,105,.98), rgba(255,140,76,.95))}
.btn.ghost{background:transparent}
.btn.dark{background:rgba(0,0,0,.22)}

.headerWrap{
  position:sticky; top:0; z-index:40;
  background:rgba(10,14,20,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.header{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; font-weight:800;
  letter-spacing:.02em;
}
.brandLogo{
  width:36px; height:36px; border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
}
.nav{display:flex; align-items:center; gap:10px}
.nav a{
  padding:10px 12px; border-radius:999px;
  color:rgba(255,255,255,.86);
  border:1px solid transparent;
}
.nav a:hover{border-color:rgba(255,255,255,.14); background:rgba(255,255,255,.04)}
.nav a.active{border-color:rgba(255,180,84,.35); background:rgba(255,180,84,.10); color:rgba(255,255,255,.96)}
.nav .cta{margin-left:6px}

.drop{position:relative}
.dropBtn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px; border-radius:999px;
  color:rgba(255,255,255,.86);
  border:1px solid transparent;
  background:transparent;
  cursor:pointer; font: inherit;
}
.dropBtn:hover{border-color:rgba(255,255,255,.14); background:rgba(255,255,255,.04)}
.dropMenu{
  position:absolute; top:44px; left:0;
  min-width: 320px;
  padding:10px;
  background:rgba(15,23,34,.92);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display:none;
}
.dropMenu a{display:block; padding:10px 12px; border-radius:12px}
.dropMenu a:hover{background:rgba(255,255,255,.06)}
.drop.open .dropMenu{display:block}

.burger{display:none}
@media (max-width: 980px){
  .nav{display:none}
  .burger{display:inline-flex}
}

.mobileSheet{
  position:fixed; inset:0; z-index:60;
  display:none;
  background:rgba(0,0,0,.55);
}
.mobileSheet.open{display:block}
.mobilePanel{
  position:absolute; top:0; right:0; height:100%;
  width:min(420px, 92vw);
  background:rgba(15,23,34,.98);
  border-left:1px solid rgba(255,255,255,.12);
  padding:18px;
  overflow:auto;
}
.mobilePanel a, .mobilePanel button{
  width:100%;
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.88);
  font-weight:650;
  margin-bottom:10px;
}
.mobilePanel a:hover, .mobilePanel button:hover{background:rgba(255,255,255,.07)}
.mobilePanel .sub a{font-weight:600; border-style:dashed; opacity:.95}
.mobilePanel .sub{padding-left:10px}
.mobilePanel .spacer{height:6px}
.mobilePanel .closeRow{display:flex; gap:10px; margin-bottom:12px}
.mobilePanel .closeRow button{width:auto; margin:0}
.mobilePanel .brandSmall{display:flex; gap:10px; align-items:center; padding:8px 0 14px; border-bottom:1px solid rgba(255,255,255,.10); margin-bottom:14px}
.mobilePanel .campBottom{margin-top:10px}

.stickyContact{
  position:fixed; right:18px; bottom:18px; z-index:70;
  display:none;
}
.stickyContact a{
  display:inline-flex; align-items:center; gap:10px;
  padding:13px 16px; border-radius:999px;
  background:linear-gradient(135deg, rgba(255,180,84,.95), rgba(255,128,64,.92));
  color:#1b1208; font-weight:800;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
@media (max-width: 980px){
  .stickyContact{display:block}
}

.hero{
  padding:74px 0 40px;
}
.heroGrid{
  display:grid; gap:18px;
  grid-template-columns: 1.15fr .85fr;
  align-items:stretch;
}
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .hero{padding:54px 0 24px}
}
.heroMedia{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.heroMedia img{width:100%; height:100%; object-fit:cover; min-height:360px}
.heroCopy{padding:22px}
.heroLead{font-size:1.12rem; color:rgba(255,255,255,.80)}
.heroMeta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.list{
  margin:0; padding-left:18px; color:var(--muted)
}
.list li{margin:8px 0}

.hr{height:1px; background:rgba(255,255,255,.10); margin:18px 0}

.footer{
  padding:46px 0 26px;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
}
.footerGrid{display:grid; gap:18px; grid-template-columns: 1.1fr .9fr .9fr}
@media(max-width:980px){.footerGrid{grid-template-columns:1fr}}
.small{font-size:.95rem; color:rgba(255,255,255,.72)}
.mini{font-size:.88rem; color:rgba(255,255,255,.66)}
.footer a{color:rgba(255,255,255,.82)}
.footer a:hover{text-decoration:underline}

.gallery{
  display:grid; gap:12px;
  grid-template-columns: repeat(12, 1fr);
}
.gallery .g1{grid-column: span 7}
.gallery .g2{grid-column: span 5}
.gallery .g3{grid-column: span 4}
.gallery .g4{grid-column: span 8}
@media (max-width:980px){
  .gallery{grid-template-columns:1fr}
  .gallery > div{grid-column:auto !important}
}
.gallery > div{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
}
.gallery img{width:100%; height:100%; object-fit:cover; min-height:220px}

.faqItem{border:1px solid rgba(255,255,255,.10); border-radius:16px; overflow:hidden; background:rgba(255,255,255,.03)}
.faqQ{
  width:100%; text-align:left;
  padding:14px 14px;
  background:transparent;
  border:0;
  cursor:pointer;
  color:rgba(255,255,255,.92);
  font-weight:750;
  display:flex; justify-content:space-between; gap:14px;
}
.faqA{display:none; padding:0 14px 14px; color:var(--muted)}
.faqItem.open .faqA{display:block}

.notice{
  padding:14px 16px; border-radius:16px;
  border:1px solid rgba(255,180,84,.22);
  background:rgba(255,180,84,.10);
  color:rgba(255,255,255,.86);
}
