:root {
  --navy: #0f2438;
  --navy-light: #1c3a54;
  --charcoal: #2b2b28;
  --offwhite: #f7f5f1;
  --white: #ffffff;
  --gold: #b8842f;
  --gold-light: #d3a24f;
  --green: #4a6741;
  --border: #e2ddd3;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--navy); margin: 0 0 .5em; }
p { margin: 0 0 1em; }
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
section { padding: 64px 0; }
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 4px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none; font-size: 1rem;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.disclaimer { background: var(--charcoal); color: #ddd; text-align: center; font-size: .8rem; padding: 8px 16px; }
.demo-bar { background: var(--navy); color: var(--white); text-align: center; font-size: .9rem; padding: 10px 16px; }
.demo-bar a { color: var(--gold-light); font-weight: 600; text-decoration: none; }
.demo-bar a:hover { text-decoration: underline; }
.demo-bar .label { background: var(--gold); color: var(--navy); padding: 2px 10px; border-radius: 3px; font-weight: 700; margin-right: 10px; font-size: .75rem; letter-spacing: .04em; }

/* Simple, plain nav — deliberately not "modern," matches Basic's understated feel */
.site-nav { background: var(--white); border-bottom: 1px solid var(--border); }
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.site-nav .brand { font-family: Georgia, serif; font-weight: 700; color: var(--navy); font-size: 1.1rem; text-decoration: none; }
.site-nav .links { display: flex; gap: 24px; align-items: center; }
.site-nav .links a { text-decoration: none; color: var(--charcoal); font-size: .95rem; font-weight: 600; }
.site-nav .links a.current { color: var(--gold); }
.site-nav .links a:hover { color: var(--navy); }

.hero { background: var(--navy); color: var(--white); padding: 56px 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero img { width: 100%; border-radius: 6px; display: block; }
.hero h1 { color: var(--white); font-size: 2.3rem; line-height: 1.2; }
.hero p.sub { color: #d6dee6; font-size: 1.1rem; }
.hero p.area { color: #9fb3c4; font-size: .9rem; }
.hero-ctas { margin-top: 24px; display: flex; gap: 14px; flex-wrap: wrap; }

.page-header { background: var(--navy); color: var(--white); padding: 44px 0; text-align: center; }
.page-header h1 { color: var(--white); }
.page-header p { color: #c9d4dd; max-width: 560px; margin: 0 auto; }

.request-form { background: var(--white); color: var(--charcoal); border-radius: 8px; padding: 24px; margin-top: 28px; border: 1px solid var(--border); }
.request-form h3 { margin-bottom: 4px; }
.request-form .intro { font-size: .9rem; color: #555; }
.request-form label { display: block; font-size: .85rem; font-weight: 600; margin: 12px 0 4px; }
.request-form input { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 4px; font-size: 1rem; }
.request-form .helper { font-size: .75rem; color: #888; margin-top: 10px; }
.request-form button { margin-top: 16px; width: 100%; }
.form-success { display: none; background: #eef4ec; border: 1px solid var(--green); color: var(--green); padding: 14px; border-radius: 6px; font-size: .9rem; }

.trust-strip { background: var(--offwhite); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust-grid .item {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 24px 14px; font-weight: 600; font-size: .92rem; color: var(--navy);
  box-shadow: 0 1px 3px rgba(15,36,56,.06);
}
.badge-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy);
  color: var(--gold-light); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.badge-icon svg { width: 22px; height: 22px; }
.trust-intro { text-align: center; color: #666; margin-bottom: 28px; }

.stars-row { display: inline-flex; gap: 2px; color: var(--gold); }
.stars-row svg { width: 22px; height: 22px; }

.reviews { text-align: center; }
.reviews h2 { margin-top: 8px; }
.review-count { color: #666; margin-bottom: 20px; }
.review-summary-card {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--offwhite); border: 1px solid var(--border); border-radius: 10px;
  padding: 20px 32px; margin-bottom: 20px;
}

.avatar {
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--white); font-weight: 700; font-size: .9rem;
  flex-shrink: 0;
}

.services h2 { text-align: center; }
.services .intro { text-align: center; max-width: 640px; margin: 0 auto 36px; color: #555; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { border: 1px solid var(--border); border-radius: 8px; padding: 24px; }
.service-card h3 { font-size: 1.15rem; }
.also-line { text-align: center; margin-top: 32px; color: #666; font-size: .9rem; }

.trust-banner { background: var(--navy); color: var(--white); text-align: center; }
.trust-banner h2 { color: var(--white); font-size: 1.8rem; }
.trust-banner p { color: #cdd8e1; max-width: 560px; margin: 0 auto; }

.faq h2 { text-align: center; margin-bottom: 32px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 18px 4px; font-size: 1.05rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 4px; color: #555; font-size: .95rem; }
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 18px; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.chev { transition: transform .2s ease; font-size: 1.3rem; color: var(--gold); }

.testimonial { background: var(--offwhite); text-align: center; }
.testimonial blockquote { font-family: Georgia, serif; font-size: 1.3rem; color: var(--navy); max-width: 680px; margin: 0 auto 16px; font-style: italic; }
.testimonial .name { color: #666; font-weight: 600; }
.testimonial .note { font-size: .75rem; color: #999; margin-top: 12px; }

.why h2 { text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.why-grid .item h3 { font-size: 1.1rem; }
.why-grid .item p { color: #555; font-size: .95rem; }

.about-body { max-width: 720px; margin: 0 auto; }
.about-body h2 { margin-top: 1.2em; }

.closing { text-align: center; background: var(--offwhite); }
.closing-ctas { display: flex; justify-content: center; gap: 14px; margin-top: 20px; flex-wrap: wrap; }

footer { background: var(--charcoal); color: #bbb; font-size: .85rem; padding: 40px 0; }
footer .wrap > * { margin-bottom: 8px; }
footer .links a { margin-right: 16px; color: #ddd; text-decoration: none; }
footer .links a:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .trust-grid, .service-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .site-nav .links { gap: 14px; font-size: .85rem; }
}
@media (max-width: 560px) {
  .trust-grid, .service-grid, .why-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .site-nav .wrap { flex-direction: column; gap: 10px; }
}
