:root {
  --navy: #0d2336;
  --navy-2: #17384f;
  --gold: #c99b4a;
  --gold-light: #e8cf9d;
  --cream: #f6f2e9;
  --paper: #fffdf8;
  --ink: #1e2a33;
  --muted: #66737c;
  --line: #dfe4e7;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(13, 35, 54, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 35, 54, .08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 82px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: var(--gold-light); font-family: "Playfair Display", serif;
  font-weight: 700; letter-spacing: .04em; border: 2px solid var(--gold);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.18; }
.brand-copy strong { font-family: "Playfair Display", serif; font-size: 1.08rem; }
.brand-copy small { color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-size: .66rem; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 30px; font-weight: 600; font-size: .94rem; }
.main-nav a:hover { color: var(--gold); }
.nav-cta { padding: 12px 18px; border: 1px solid var(--navy); border-radius: 999px; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--navy); }

.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero-pattern {
  position: absolute; inset: 0; opacity: .45;
  background-image: linear-gradient(30deg, rgba(201,155,74,.12) 12%, transparent 12.5%, transparent 87%, rgba(201,155,74,.12) 87.5%, rgba(201,155,74,.12)), linear-gradient(150deg, rgba(201,155,74,.12) 12%, transparent 12.5%, transparent 87%, rgba(201,155,74,.12) 87.5%, rgba(201,155,74,.12));
  background-size: 90px 156px;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: center; min-height: 700px; padding: 90px 0; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 700; margin: 0 0 12px; }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.16; margin-top: 0; color: var(--navy); }
h1 { font-size: clamp(3rem, 5vw, 5rem); letter-spacing: -.035em; margin-bottom: 24px; }
h2 { font-size: clamp(2.25rem, 3.4vw, 3.5rem); letter-spacing: -.02em; }
h3 { font-size: 1.5rem; }
.hero-text { font-size: 1.15rem; max-width: 700px; color: #4f5e67; }
.hero-actions { display: flex; gap: 14px; margin: 34px 0 30px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 7px; padding: 15px 22px; font-weight: 700; border: 1px solid transparent; cursor: pointer; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: white; }
.btn-secondary { border-color: var(--navy); color: var(--navy); background: rgba(255,255,255,.5); }
.btn-gold { background: var(--gold); color: var(--navy); width: 100%; font-size: 1rem; }
.hero-highlights { display: flex; gap: 12px 22px; flex-wrap: wrap; color: var(--navy-2); font-weight: 600; font-size: .9rem; }
.hero-highlights span::before { content: "✓"; color: var(--gold); margin-right: 7px; }
.hero-card { background: var(--white); padding: 38px; border-radius: 18px; box-shadow: var(--shadow); border-top: 4px solid var(--gold); }
.hero-card h2 { font-size: 2rem; }
.hero-card ul, .service-card ul { padding-left: 20px; color: var(--muted); }
.seal { width: 82px; height: 82px; border-radius: 50%; border: 2px solid var(--gold); outline: 1px solid var(--gold-light); outline-offset: 5px; display: grid; place-items: center; background: var(--navy); color: var(--gold-light); font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.4rem; margin-bottom: 30px; }
.text-link { color: var(--navy); font-weight: 700; display: inline-flex; gap: 8px; }

.trust-strip { background: var(--navy); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--gold-light); font-family: "Playfair Display", serif; font-size: 1.25rem; }
.trust-grid span { color: rgba(255,255,255,.72); font-size: .86rem; }

.section { padding: 100px 0; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading p:last-child { color: var(--muted); font-size: 1.05rem; }
.section-heading.compact { margin-bottom: 34px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 32px; transition: .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card.featured { border-color: var(--gold-light); background: linear-gradient(180deg, #fffdf8, #fbf4e7); }
.icon { width: 48px; height: 48px; border-radius: 10px; display: grid; place-items: center; background: var(--cream); color: var(--gold); font-size: 1.4rem; margin-bottom: 22px; }
.service-card p, .service-card li { color: var(--muted); }

.split-section { background: #eef2f3; }
.split-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: stretch; }
.quote-panel { background: var(--navy); color: white; padding: 55px; border-radius: 16px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 520px; position: relative; overflow: hidden; }
.quote-panel::before { content: "“"; position: absolute; top: 12px; left: 28px; font-family: "Playfair Display", serif; color: rgba(201,155,74,.25); font-size: 13rem; line-height: 1; }
.quote-panel p { font-family: "Playfair Display", serif; font-size: 2.2rem; line-height: 1.3; position: relative; }
.quote-panel span { color: var(--gold-light); text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }
.content-panel { padding: 30px 0; }
.content-panel > p { color: var(--muted); }
.check-list { margin-top: 36px; }
.check-list div { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid #cdd6da; }
.check-list span { color: var(--gold); font-family: "Playfair Display", serif; font-size: 1.2rem; }
.check-list p { margin: 0; color: var(--muted); }
.check-list strong { color: var(--navy); }

.coverage { background: var(--cream); }
.coverage-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.coverage-grid > div:first-child p { color: var(--muted); margin-bottom: 28px; }
.county-list { background: white; border-radius: 14px; box-shadow: var(--shadow); overflow: hidden; }
.county-list div { display: flex; justify-content: space-between; gap: 20px; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.county-list div:last-child { border-bottom: 0; }
.county-list strong { color: var(--navy); }
.county-list span { color: var(--muted); text-align: right; }

.faq-section { background: white; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 20px 0; }
summary { cursor: pointer; font-weight: 700; color: var(--navy); font-size: 1.04rem; list-style: none; display: flex; justify-content: space-between; gap: 20px; }
summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); max-width: 850px; }

.contact-section { background: var(--navy); color: white; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-section h2 { color: white; }
.contact-section > .container > div:first-child > p { color: rgba(255,255,255,.72); }
.eyebrow.light { color: var(--gold-light); }
.contact-details { margin-top: 34px; display: grid; gap: 16px; }
.contact-details a, .contact-details div { color: white; }
.contact-details span { display: block; color: var(--gold-light); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 700; }
.contact-form { background: white; color: var(--ink); padding: 34px; border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,.22); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-weight: 700; color: var(--navy); font-size: .9rem; margin-bottom: 17px; }
input, select, textarea { width: 100%; margin-top: 7px; border: 1px solid #cdd5da; border-radius: 7px; padding: 13px 14px; font: inherit; color: var(--ink); background: #fff; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold-light); border-color: var(--gold); }
.form-note { font-size: .76rem; color: var(--muted); margin-bottom: 0; }

footer { background: #081925; color: rgba(255,255,255,.72); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr 1fr; gap: 60px; padding-bottom: 45px; }
.footer-brand .brand-copy strong { color: white; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid strong { color: white; }
.footer-grid a:hover { color: var(--gold-light); }
.copyright { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0 26px; font-size: .82rem; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; left: 0; right: 0; top: 82px; padding: 24px 20px 30px; background: var(--paper); flex-direction: column; align-items: stretch; gap: 10px; border-bottom: 1px solid var(--line); display: none; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 8px 0; }
  .nav-cta { text-align: center; margin-top: 4px; }
  .hero-grid, .split-grid, .coverage-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 70px 0; gap: 45px; }
  .card-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .split-grid, .coverage-grid, .contact-grid { gap: 42px; }
  .quote-panel { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand-copy strong { font-size: .95rem; }
  .brand-copy small { font-size: .58rem; }
  .brand-mark { width: 46px; height: 46px; }
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }
  .section { padding: 72px 0; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form, .hero-card, .service-card { padding: 25px; }
  .county-list div { flex-direction: column; gap: 4px; }
  .county-list span { text-align: left; }
  .quote-panel { padding: 34px; }
  .quote-panel p { font-size: 1.75rem; }
}
