:root {
  --navy: #1B2B4B;
  --gold: #C4975A;
  --cream: #F5F0E8;
  --light: #FDFCFA;
  --muted: #6B7280;
  --border: #E5DDD0;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--navy);
  background: var(--light);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  margin: 0;
  color: var(--navy);
}

p { margin: 0; }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
}

.eyebrow-light { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-gold {
  background: var(--gold);
  color: var(--light);
}
.btn-gold:hover { opacity: 0.9; }

.btn-navy {
  background: var(--navy);
  color: var(--light);
}
.btn-navy:hover { opacity: 0.9; }

.btn-outline-light {
  background: transparent;
  color: var(--light);
  border-color: rgba(253, 252, 250, 0.5);
}
.btn-outline-light:hover { background: rgba(253, 252, 250, 0.1); }

.btn-block { width: 100%; text-align: center; border: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  font-weight: 600;
}

.logo-text sup {
  font-size: 0.55em;
  color: var(--gold);
  margin-left: 2px;
}

.main-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
}

.main-nav a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
}

/* Hero */
.hero {
  background: var(--navy);
  padding: 120px 0 90px;
  text-align: center;
}

.hero-inner { max-width: 780px; }

.hero h1 {
  color: var(--light);
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-sub {
  color: rgba(253, 252, 250, 0.8);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-line {
  width: 1px;
  height: 60px;
  margin: 56px auto 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Trust bar */
.trust-bar {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
}

.trust-bar-inner .dot { color: var(--gold); }

/* Sections generic */
section { padding: 100px 0; }

.services { text-align: center; }

.section-sub {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.services h2, .why-us h2, .quote-section h2 {
  font-size: 2.25rem;
}

.services-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}

.service-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 24px;
}

.service-icon {
  display: inline-flex;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.learn-more {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
}

.learn-more:hover { text-decoration: underline; }

/* Why us */
.why-us {
  background: var(--cream);
  text-align: center;
}

.why-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: left;
}

.why-card {
  background: var(--light);
  border-left: 3px solid var(--gold);
  padding: 28px 24px;
  border-radius: 2px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Quote / lead form */
.quote-section {
  background: var(--navy);
  text-align: center;
}

.quote-inner { max-width: 640px; }

.quote-section h2.light { color: var(--light); }

.quote-sub {
  color: rgba(253, 252, 250, 0.8);
  margin: 16px 0 48px;
  font-size: 1.05rem;
}

.quote-form {
  background: var(--light);
  border-radius: 6px;
  padding: 40px;
  text-align: left;
}

.form-row { margin-bottom: 20px; }

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--light);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea { resize: vertical; }

.form-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--gold);
  text-align: center;
  min-height: 1.2em;
}

/* Service area strip */
.areas {
  background: var(--light);
  text-align: center;
  padding: 80px 0 100px;
}

.area-tagline {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 40px;
}

.city-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.city-pill {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--border);
}

.city-pill.anchor {
  background: var(--navy);
  color: var(--light);
  border-color: var(--navy);
}

/* Footer */
.site-footer {
  background: var(--navy);
  padding: 40px 0;
  text-align: center;
}

.footer-name {
  font-family: var(--font-heading);
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.footer-tagline {
  color: rgba(253, 252, 250, 0.6);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.3rem; }
}

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; }
  .main-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 10px 0;
    border-top: 1px solid var(--border);
  }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 60px; }
  .hero h1 { font-size: 1.9rem; }
  section { padding: 70px 0; }
  .quote-form { padding: 28px 20px; }
  .header-inner .btn-navy { display: none; }
}
