:root{
  /* Fender-ish Lake Placid Blue (approx; we can tweak) */
  --lpb: #6EA7C8;
  --lpb-dark: #4A89AE;
  --ink: #0F172A;          /* deep slate */
  --muted: #475569;        /* slate */
  --paper: #ffffff;
  --soft: #F4F7FB;         /* cool, light */
  --line: #E6EDF5;
  --shadow: 0 18px 45px rgba(15, 23, 42, .08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --edge: #1b1f24;
  --edge-w: 24px;
  --header-h: 66px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  position: relative;
}

body::before,
body::after{
  content:"";
  position: fixed;
  top: calc(var(--header-h) + 1px);
  bottom: 0;
  width: var(--edge-w);
  background: var(--edge);
  z-index: 40;
  pointer-events: none;
}
body::before{ left: 0; }
body::after{ right: 0; }

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

a{ color: inherit; text-decoration:none; }
.link{
  color: var(--lpb-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(74,137,174,.25);
}
.link:hover{ border-bottom-color: rgba(74,137,174,.65); }

.muted{ color: var(--muted); }
.fineprint{ color: var(--muted); font-size: 0.92rem; margin: 10px 0 0; }
.label{ font-size: .85rem; color: var(--muted); margin-bottom: 4px; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width: 38px; height: 38px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(110,167,200,.95), rgba(110,167,200,.35));
  border: 1px solid rgba(110,167,200,.45);
  box-shadow: 0 10px 22px rgba(110,167,200,.20);
}
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-name{
  font-family: Fraunces, serif;
  font-weight: 600;
  letter-spacing: .2px;
  font-size: 1.06rem;
}
.brand-sub{
  font-size: .9rem;
  color: var(--muted);
}

.nav{ display:flex; gap: 18px; align-items:center; }
.nav a{ color: var(--muted); font-weight: 500; }
.nav a:hover{ color: var(--ink); }

.nav-toggle{
  display:none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width: 18px;
  height: 2px;
  background: var(--muted);
  margin: 4px 0;
  border-radius: 2px;
}

.mobile-nav{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  padding: 12px 20px 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.mobile-nav a{ color: var(--muted); font-weight:500; }
.mobile-nav[hidden]{
  display: none !important;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--lpb-dark);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(74,137,174,.22);
  border: 1px solid rgba(74,137,174,.25);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn-sm{ padding: 10px 12px; border-radius: 12px; font-size: .95rem; }
.btn-ghost{
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover{ border-color: rgba(74,137,174,.35); }

/* Hero */
.hero{
  padding: 44px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 26px;
  align-items: start;
}
.eyebrow{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(110,167,200,.14);
  color: #1f3b4b;
  border: 1px solid rgba(110,167,200,.22);
  font-weight: 600;
  font-size: .9rem;
}
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(2.05rem, 3.1vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.lede{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 54ch;
}
.hero-cta{ display:flex; gap: 12px; flex-wrap: wrap; }

.trust-row{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill{
  font-size: .92rem;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}

/* Cards */
.card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}
.card-title{
  margin: 6px 0 10px;
  font-size: 1.05rem;
}
.checklist{
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
}
.checklist li{ margin: 10px 0; }
.card-footer{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

/* Sections */
.section{ padding: 54px 0; }
.section-soft{ background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0;
  font-size: 1.75rem;
  letter-spacing: -.01em;
}
.section-head p{ margin: 0; color: var(--muted); max-width: 62ch; }

/* Grids */
.grid{
  display:grid;
  gap: 16px;
}
.services-grid{
  grid-template-columns: repeat(3, 1fr);
}
.service{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 25px rgba(15,23,42,.06);
}
.service h3{ margin: 0 0 8px; }
.service p{ margin: 0 0 12px; color: var(--muted); }
.service ul{ margin: 0; padding-left: 18px; color: var(--muted); }
.service li{ margin: 8px 0; }

.why-grid{
  grid-template-columns: repeat(4, 1fr);
}
.why{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
}
.why h3{ margin: 0 0 6px; font-size: 1.05rem; }
.why p{ margin: 0; color: var(--muted); }

.steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 14px;
}
.steps li{
  display:grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.step-num{
  width: 42px; height: 42px;
  border-radius: 14px;
  background: rgba(110,167,200,.18);
  border: 1px solid rgba(110,167,200,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  color: #1f3b4b;
}
.step-body h3{ margin: 0 0 4px; }
.step-body p{ margin: 0; color: var(--muted); }

.note{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(110,167,200,.12);
  border: 1px solid rgba(110,167,200,.22);
  color: #1f3b4b;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px;
  align-items:start;
}
.contact-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 25px rgba(15,23,42,.06);
}
.contact-lines{
  display:grid;
  gap: 12px;
  margin: 14px 0 6px;
}
.mini-faq{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.mini-faq h4{ margin: 0 0 8px; }
.mini-faq ul{ margin: 0; padding-left: 18px; color: var(--muted); }

.form{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 25px rgba(15,23,42,.06);
}
.field{ margin-bottom: 12px; }
label{ display:block; margin-bottom: 6px; font-weight: 600; color: var(--ink); }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(74,137,174,.55);
  box-shadow: 0 0 0 4px rgba(110,167,200,.18);
}

/* Footer */
.footer{
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-brand{
  font-family: Fraunces, serif;
  font-weight: 600;
}
.footer-links{ display:flex; gap: 14px; }

/* Responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr 1fr; }
  .why-grid{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav{ display:none; }
  .nav-toggle{ display:block; }
  .services-grid{ grid-template-columns: 1fr; }
  .section-head{ flex-direction: column; align-items: flex-start; }
}
