/* ---------- Design Tokens ---------- */
:root {
  --navy: #0f2a4a;
  --navy-dark: #081a30;
  --navy-light: #1c3f68;
  --gold: #b8863e;
  --gold-light: #d9a75c;
  --bg: #ffffff;
  --bg-alt: #f4f6f9;
  --text: #1f2937;
  --text-muted: #5b6572;
  --border: #e3e7ed;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(15, 42, 74, 0.08);
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; color: var(--text-muted); }

a { color: var(--navy); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6em;
}
.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.section-title.center { text-align: center; }
.section-sub {
  max-width: 640px;
  font-size: 1.05rem;
}
.section-sub.center { margin: 0 auto 2.5em; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 16px rgba(184, 134, 62, 0.35);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--bg-alt); }

.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.brand-mark.small { width: 36px; height: 36px; font-size: 0.75rem; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.08rem; }
.brand-tagline { font-size: 0.72rem; color: var(--text-muted); }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { color: var(--navy); font-weight: 600; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: #fff;
  padding: 80px 0 90px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.4em;
}

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 560px;
}

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

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 24px; }

.hero-trust {
  list-style: none;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.hero-trust li { position: relative; padding-left: 18px; }
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
}

.hero-panel-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: var(--gold-light); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

/* ---------- Strip ---------- */
.strip {
  background: var(--gold);
  color: #fff;
}
.strip-inner { padding: 12px 24px; text-align: center; font-size: 0.92rem; }
.strip-inner p { color: #fff; margin: 0; }
.strip a { color: #fff; text-decoration: underline; font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }

/* ---------- Service Cards ---------- */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 1 1 320px;
  max-width: calc((100% - 48px) / 3);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { font-size: 0.94rem; margin: 0; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-highlight {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
}
.about-highlight blockquote {
  font-family: var(--font-head);
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0 0 16px;
  font-style: italic;
}
.about-highlight-name {
  color: var(--gold-light);
  font-weight: 600;
  margin: 0;
  font-size: 0.92rem;
}

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  padding: 24px 4px;
  border-top: 3px solid var(--gold);
}
.why-item h3 { font-size: 1.05rem; }
.why-item p { font-size: 0.93rem; margin: 0; }

/* ---------- Areas ---------- */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}
.area-pill.primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  font-weight: 700;
}
.areas-note { text-align: center; margin: 24px 0 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.contact-details svg { color: var(--gold); flex-shrink: 0; }
.contact-details a { color: var(--text); text-decoration: none; font-weight: 600; }
.contact-details a:hover { color: var(--gold); }

.contact-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row { margin-bottom: 18px; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--text);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.form-note {
  font-size: 0.8rem;
  text-align: center;
  margin: 12px 0 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-name { color: #fff; font-weight: 700; margin: 10px 0 2px; }
.footer-tag { font-size: 0.85rem; margin: 0; color: rgba(255,255,255,0.75); }
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 20px 24px;
  font-size: 0.82rem;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.6); margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .card { max-width: calc((100% - 24px) / 2); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .site-header.nav-open .header-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(76px + 200px);
    left: 0;
    right: 0;
    background: #fff;
    padding: 0 24px 20px;
    gap: 12px;
  }

  .card { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
  .section { padding: 56px 0; }
}
