/* Base */
:root{
  --fg:#0f172a;        /* slate-900 */
  --muted:#475569;     /* slate-600 */
  --bg:#ffffff;
  --bg-soft:#f8fafc;   /* slate-50 */
  --accent:#2A6F97;    /* Blue Ridge blue */
  --radius:14px;
}
*{ box-sizing:border-box; }
body{ margin:0; color:var(--fg); background:var(--bg); font:16px/1.55 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.wrap{ max-width:1100px; margin:0 auto; padding:20px; }

h1{ font-size:42px; line-height:1.1; margin:0 0 .5rem; }
h2{ font-size:26px; margin:2rem 0 1rem; }
.muted{ color:var(--muted); }

/* Header */
.site-header{ display:flex; align-items:center; justify-content:space-between; padding:14px 20px; }
.brand{ font-weight:700; }

/* Header brand with logo (added) */
.brand{
  display:flex; align-items:center; gap:10px;
}
.brand .brand-logo{
  height:28px; width:auto; display:block; border-radius:6px;
}
@media (min-width:640px){
  .brand .brand-logo{ height:32px; }
}

/* Buttons */
.button{
  display:inline-block; padding:.8rem 1.1rem; border-radius:10px;
  background:var(--accent); color:#fff; text-decoration:none; border:none; cursor:pointer;
  transition: filter .15s ease-in-out;
}
.button:hover{ filter:brightness(.95); }

/* HERO */
.hero{
  position:relative; min-height:58vh; display:flex; align-items:center;
}
/* Background layer that fades in */
.hero .hero-bg{
  position:absolute; inset:0;
  background:#0b1220 center/cover no-repeat;
  filter: brightness(0);                /* start fully black */
  transition: filter .6s ease-in;       /* animate to brightness(1) */
  z-index:0;
}
.hero .hero-bg.is-loaded{
  filter: brightness(1);                /* original image when loaded */
}

/* Light global scrim (kept subtle per your preference) */
.hero .hero-overlay{
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.25));
}

/* Text layer */
.hero .hero-inner{ position:relative; z-index:2; color:#fff; }

/* Semi‑transparent panel behind text */
.hero .hero-copy{
  display:inline-block;
  background: rgba(15, 23, 42, 0.40);
  padding:16px 20px; border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  max-width:720px;
}

/* Headline + subtle lift */
.hero h1{ font-size:48px; }
.hero .muted{ color:#e5e7eb; }
.hero h1, .hero .muted{ text-shadow:0 2px 5px rgba(0,0,0,.45); }

/* Services list */
.services{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.services li{
  background:var(--bg-soft); border:1px solid #e5e7eb; border-radius:var(--radius);
  padding:12px 14px;
}

/* Forms */
form{ display:grid; gap:.75rem; max-width:560px; }
label{ display:grid; gap:.35rem; font-weight:600; }
input, textarea{
  border:1px solid #cbd5e1; border-radius:10px; padding:.7rem .8rem; font:inherit;
}

footer{ border-top:1px solid #e5e7eb; margin-top:2rem; padding-bottom:2rem; }
