:root{
  --bg:#1f2d26;
  --bg2:#263a31;
  --card:#2c4338;
  --text:#f5f1e6;
  --muted: rgba(245,241,230,.75);
  --stroke: rgba(245,241,230,.18);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.wrap{max-width:1100px;margin:0 auto;padding:0 20px}

.site-header{
  position: sticky; top:0; z-index:10;
  background: rgba(31,45,38,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text)}
.brand-mark{
  width:34px; height:34px; display:grid; place-items:center;
  border:1px solid var(--stroke); border-radius:10px;
  font-weight:700; letter-spacing:.5px;
}
.brand-name{font-weight:650}

.nav{display:flex; gap:16px}
.nav a{color:var(--muted); text-decoration:none; font-weight:550}
.nav a:hover{color:var(--text)}

.hero{
  
  padding: 90px 0 40px;

  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('IMG_0559.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-bottom: 1px solid var(--stroke);

}
.hero-inner{display:flex; flex-direction:column; gap:16px}
.eyebrow{color:var(--muted); letter-spacing:.14em; text-transform:uppercase; font-size:12px}
.hero-title{font-size:44px; line-height:1.05; margin:0}
.hero-sub{color:var(--muted); margin:0; max-width:60ch}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
.btn{
  display:inline-block; padding:12px 16px; border-radius:14px;
  border:1px solid var(--stroke);
  text-decoration:none; color:var(--text);
}
.btn.primary{
  background: var(--text);
  color: var(--bg);
  border-color: transparent;
  font-weight:700;
}

.card-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.card{
  background: rgba(44,67,56,.65);
  border: 1px solid var(--stroke);
  border-radius:18px;
  padding:16px;
}
.card h3{margin:0 0 6px}
.card p{margin:0;color:var(--muted)}

.section{padding:64px 0}
.section.alt{background: rgba(38,58,49,.45); border-top:1px solid var(--stroke); border-bottom:1px solid var(--stroke)}
h2{margin:0 0 12px; font-size:28px}
.muted{color:var(--muted)}
.small{font-size:13px}

.embed{
  border:1px dashed var(--stroke);
  border-radius:18px;
  padding:18px;
  margin:14px 0;
}
.embed-placeholder{color:var(--muted); padding:40px 0; text-align:center}

.links-row{display:flex; gap:10px; flex-wrap:wrap}
.link-chip{
  border:1px solid var(--stroke);
  padding:10px 12px;
  border-radius:999px;
  text-decoration:none;
  color:var(--text);
}

.table{margin-top:14px}
.row{
  display:grid;
  grid-template-columns: 120px 1fr 1fr 120px;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid var(--stroke);
}
.row.head{color:var(--muted); font-weight:650; border-bottom:1px solid var(--stroke)}
.row a{color:var(--text)}

.two-col{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:start;
}
.list{margin:10px 0 0; padding-left:18px}
.list li{margin:8px 0}
.list a{color:var(--text)}

.contact-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:16px;
}
.contact-card{
  display:block;
  text-decoration:none;
  color:var(--text);
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:14px;
  background: rgba(44,67,56,.45);
}
.label{color:var(--muted); font-size:12px; letter-spacing:.12em; text-transform:uppercase}
.value{font-weight:650; margin-top:6px}

.site-footer{
  padding:30px 0;
  border-top:1px solid var(--stroke);
}
.footer-inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}

@media (max-width: 860px){
  .card-grid{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .row{grid-template-columns: 90px 1fr}
  .nav{gap:12px}
  .hero-title{font-size:34px}
}