:root{
  --bg:#0b0f0d;
  --surface:#111815;
  --surface-2:#0f1512;
  --text:#e9efe9;
  --muted:#b6c3b9;
  --line:rgba(255,255,255,.12);
  --accent:#2f6f4e;
  --accent-2:#3d8a62;
  --card:rgba(255,255,255,.06);
  --shadow: 0 20px 40px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
  --pad:18px;
  --font: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}

body{
  font-family:var(--font);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(61,138,98,.25), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(47,111,78,.18), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
  overflow-x:hidden;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit}
p{margin:0 0 12px 0}

.container{
  width: min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

/* Header */
.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand-tag {
  font-size: 0.9rem;
  margin-top: 2px;
}

.nav a {
  font-size: 1rem;
  font-weight: 600;
}

.site-header .btn {
  font-size: 0.95rem;
}
.brand-mark {
  width: 48px;
  height: 48px;
  font-size: 1rem;
}
.site-header{
  position:sticky; top:0;
  background: rgba(11,15,13,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  z-index:10;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:18px;
}

.brand{display:flex;align-items:center;gap:12px; min-width:260px}
.brand-mark{
  width:44px;height:44px;
  border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight:900;
  letter-spacing:.6px;
  box-shadow: var(--shadow);
  flex:0 0 auto;
}

.brand-text{display:flex; flex-direction:column; gap:2px}
.brand-name{
  font-weight:900;
  font-size:1.05rem;
  letter-spacing:.2px;
  line-height:1.15;
}
/* ===== Header wordmark upgrade ===== */

.brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  line-height: 1.1;
}

.brand-mark {
  width: 46px;
  height: 46px;
  font-size: 1rem;
  font-weight: 900;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
}

.site-header .btn {
  font-size: 0.9rem;
}

.brand-tag{
  font-size:.95rem;
  color:var(--muted);
  line-height:1.15;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex:0 0 auto;
}

.nav a{
  opacity:.95;
  text-decoration:none;
  font-weight:700;
  font-size:1rem;
}

.nav a:hover{opacity:1}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 28px rgba(0,0,0,.30);
  white-space:nowrap;
}

.btn:hover{filter:brightness(1.06)}
.btn-outline{
  background: transparent;
  border:1px solid rgba(255,255,255,.24);
  box-shadow:none;
}

.btn-small{padding:10px 14px;border-radius:12px}
.btn-block{width:100%}

/* Hero */
.hero{
  padding:64px 0 26px;
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:start;
}

h1{
  font-size: clamp(2.2rem, 4.1vw, 3.35rem);
  margin:0 0 12px 0;
  letter-spacing:-.6px;
  line-height:1.08;
}

.lead{
  font-size:1.08rem;
  color:var(--muted);
  max-width:58ch;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0 10px
}

.hero-notes{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px
}

.pill{
  padding:9px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  font-size:.92rem;
}

.card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}

.card-title{font-weight:900;font-size:1.1rem;margin:0 0 6px 0}
.card-text{color:var(--muted);margin:0 0 14px 0}
.fineprint{margin-top:12px;color:var(--muted);font-size:.92rem; line-height:1.45}

.contact-inline{margin-top:10px; display:grid; gap:6px}
.contact-inline a{ text-decoration: underline; text-underline-offset: 3px; }

/* Sections */
.section{padding:56px 0}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

h2{
  margin:0 0 14px 0;
  font-size:1.75rem;
  letter-spacing:-.2px;
}

h3{
  margin:0 0 8px 0;
  font-size:1.12rem;
}

.muted{color:var(--muted)}
.small{font-size:.95rem}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.panel{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
}

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

.divider{
  height:1px;
  background: var(--line);
  margin:14px 0;
}

.contact-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}

.gallery-item{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
}

.gallery-item img{
  width:100%;
  aspect-ratio: 16 / 10;
  object-fit:cover;
  background: rgba(255,255,255,.03);
}

.gallery-item figcaption{
  padding:10px 12px;
  color:var(--muted);
  font-size:.95rem;
  border-top:1px solid rgba(255,255,255,.08);
}

/* Footer */
.site-footer{
  padding:22px 0;
  border-top:1px solid var(--line);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  color:var(--muted);
}

.footer-left{display:flex; flex-direction:column; gap:6px}

.footer-credit{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--muted);
  font-weight:700;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.footer-credit:hover{filter:brightness(1.06)}

.footer-icon{
  width:22px;
  height:22px;
  border-radius:999px;
  object-fit:cover;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

/* Responsive */
@media (max-width: 900px){
  .header-inner{flex-wrap:wrap}
  .brand{min-width:unset}
  .nav{width:100%; justify-content:flex-end}

  .hero-inner{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
}

@media (max-width: 520px){
  .nav{justify-content:flex-start}
  .brand-name{font-size:1rem}
  .brand-tag{font-size:.92rem}
  .btn{padding:11px 14px}
}
