
:root{
  --navy:#0b1f3b;
  --navy-2:#102743;
  --beige:#d9c6a5;
  --beige-2:#c7b38b;
  --ink:#0e1320;
  --sand:#f5f3ee;
  --muted:#7c8698;
  --shadow:0 10px 30px rgba(0,0,0,.15);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--sand);background:var(--navy);scroll-behavior:smooth}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{width:min(1100px,92%);margin:0 auto}
.btn{display:inline-block;padding:.9rem 1.2rem;border-radius:14px;background:var(--beige);color:var(--ink);font-weight:600;box-shadow:var(--shadow);transition:.2s transform}
.btn:hover{transform:translateY(-2px)}
.btn.outline{background:transparent;border:1.5px solid var(--beige);color:var(--sand)}

header{position:sticky;top:0;z-index:50;background:rgba(11,31,59,.8);backdrop-filter:blur(8px);border-bottom:1px solid rgba(217,198,165,.15)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:.6rem 0}
.brand{display:flex;align-items:center;gap:.7rem}
.brand img{width:150px;height:auto}
.nav .links{display:flex;gap:1.2rem}
.nav .links a{opacity:.9}
.mobile-toggle{display:none;background:none;border:0;color:var(--sand);font-size:1.6rem}

.hero{position:relative;padding:6rem 0 4rem;background:
  radial-gradient(1200px 500px at 80% -10%, rgba(217,198,165,.15), transparent),
  linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 60%);
  overflow:hidden}
.hero::after{content:'';position:absolute;inset:0;background:
  repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 10px);
  mix-blend:overlay;opacity:.2;pointer-events:none}
.hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:2rem;align-items:center}
.hero h1{font-size:clamp(2rem,3.5vw,3.2rem);line-height:1.15;margin:0 0 .6rem}
.hero p{color:#dde1ea;opacity:.95;font-size:1.05rem;margin:0 0 1.2rem}
.badges{display:flex;flex-wrap:wrap;gap:.6rem;margin:1rem 0 1.4rem}
.badge{border:1px solid rgba(217,198,165,.35);border-radius:999px;padding:.4rem .75rem;font-size:.86rem;color:#e9e6df;opacity:.9}

.card{background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));border:1px solid rgba(255,255,255,.08);border-radius:18px;box-shadow:var(--shadow)}

.section{padding:4rem 0;border-top:1px solid rgba(217,198,165,.15)}
.section h2{font-size:clamp(1.6rem,2.4vw,2.2rem);margin:0 0 .6rem}
.section p.lead{color:#dde1ea;opacity:.95}

.services{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-top:1.3rem}
.service{padding:1rem}
.service h3{margin:.6rem 0 .25rem;font-size:1.05rem;color:#fff}
.service p{margin:.2rem 0;color:#dfe4ee;font-size:.95rem;opacity:.95}

.process{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1rem}
.step{padding:1.2rem}
.step .num{width:38px;height:38px;border-radius:8px;display:grid;place-items:center;background:var(--beige);color:var(--ink);font-weight:700;margin-bottom:.6rem}

.area-list{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem;margin-top:1rem}
.area-list .chip{padding:.55rem .8rem;border-radius:999px;border:1px solid rgba(217,198,165,.35);display:inline-block}
.split{display:grid;grid-template-columns:1fr 1fr;gap:1rem;align-items:start;margin-top:1rem}

.faq{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:1rem}
.faq .q{padding:1rem;cursor:pointer}
.faq .q h3{font-size:1rem;margin:.2rem 0}
.faq .q p{margin:.4rem 0 0;color:#dde1ea;display:none}

footer{padding:2.2rem 0;background:rgba(0,0,0,.25);border-top:1px solid rgba(217,198,165,.15)}
footer .grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:1rem}
footer small{color:#c8cfdd;opacity:.85}

.notice{font-size:.88rem;color:#c8cfdd;opacity:.9;margin-top:.5rem}
.kicker{letter-spacing:.2em;font-weight:700;color:var(--beige);font-size:.8rem}

@media (max-width: 900px){
  .hero-grid, .split, .services, .process, .faq, footer .grid{
    grid-template-columns:1fr;
  }
  .services{grid-template-columns:1fr 1fr}
  .area-list{grid-template-columns:1fr 1fr}
  .nav .links{display:none}
  .mobile-toggle{display:block}
}
/* Section skeleton */
.services-section { padding-block: 2rem; }
.h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color:#fff; margin:0 0 .5rem; }
.subhead { color: rgba(255,255,255,.8); margin:0 0 1rem; }

/* Filter bar */
.filter-bar { display:flex; flex-wrap:wrap; gap:.5rem; margin: 1rem 0 1.25rem; }
.chip{
  background: transparent; color:#d4b98a; border:1px solid #d4b98a;
  padding:.35rem .7rem; border-radius:999px; font-size:.9rem; cursor:pointer;
}
.chip.is-active, .chip:hover{ background:#d4b98a; color:#0d1b2a; }

/* Grid + cards (keeps your rounded, subtle shadow vibe) */
.services-grid{
  display:grid; gap:1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card{
  background:#0d1b2a; color:#fff; border-radius:16px;
  padding:1rem; box-shadow: 0 1px 8px rgba(0,0,0,.2);
  border:1px solid rgba(255,255,255,.08);
}
.card .label{
  margin-top:.6rem; font-size:.72rem; letter-spacing:.08em;
  text-transform:uppercase; opacity:.8;
}

/* Title + small beige icon */
.title{ display:flex; align-items:center; gap:.5rem; margin:0 0 .35rem; line-height:1.2; font-weight:700; }
.ico{ width:20px; height:20px; color:#d4b98a; flex:0 0 20px; }
.ico svg{ width:100%; height:100%; }
.card p{ opacity:.9; font-size:.95rem; }
/* ==== VERITY: Services quick fix pack ==== */
#services.services-section * { box-sizing: border-box; }

/* Force the grid back into cards */
#services .services-grid{
  display: grid !important;
  gap: 16px !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
}

/* Make each card look like your original rounded navy tiles */
#services .card{
  background: #0d1b2a !important;
  color: #fff !important;
  padding: 16px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 1px 8px rgba(0,0,0,.2) !important;
  display: block !important;
  border-bottom: none !important;   /* kill any global “list item” underline */
}

/* Title row + small beige icon inline */
#services .title{
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 .35rem 0 !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}
#services .ico{
  width: 20px !important;
  height: 20px !important;
  color: #d4b98a !important; /* beige */
  flex: 0 0 20px !important;
}
#services .ico svg{ width: 100% !important; height: 100% !important; }

/* Hide any old big icons that might be above the title */
#services .card > svg,
#services .card .icon-large{
  display: none !important;
}

/* Labels + body copy */
#services .card .label{
  margin-top: .6rem !important;
  font-size: .72rem !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  opacity: .8 !important;
}
#services .card p{ opacity: .9 !important; font-size: .95rem !important; }

/* Filter chips style (if using the filter bar) */
#services .chip{
  background: transparent !important;
  color: #d4b98a !important;
  border: 1px solid #d4b98a !important;
  padding: .35rem .7rem !important;
  border-radius: 999px !important;
  font-size: .9rem !important;
  cursor: pointer !important;
}
#services .chip.is-active,
#services .chip:hover{
  background: #d4b98a !important;
  color: #0d1b2a !important;
}
