@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --burgundy: #6B2436;
  --burgundy-deep: #4D1825;
  --burgundy-light: #8C3A4D;
  --slate: #404B5A;
  --slate-deep: #2A3340;
  --slate-soft: #5C6B7C;
  --beige: #E5DCC8;
  --beige-light: #F2EDDF;
  --beige-deep: #D6CAB0;
  --gold: #C8A158;
  --gold-deep: #A4823F;
  --text: #2D2A26;
  --text-light: #6B655C;
  --border: #DBD0B6;
  --white: #FBF8F1;
  --shadow: 0 1px 3px rgba(45,42,38,0.08), 0 4px 12px rgba(107,36,54,0.06);
  --shadow-lg: 0 6px 24px rgba(107,36,54,0.14), 0 14px 36px rgba(45,42,38,0.10);
  --radius: 2px;
  --radius-lg: 6px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Lora', Georgia, serif; font-weight: 600; color: var(--burgundy-deep); letter-spacing: -0.005em; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.18rem; font-family: 'Inter', sans-serif; font-weight: 600; }
p { color: var(--text-light); }

/* ---- TOPBAR (with gold stripe) ---- */
.gold-stripe { height: 3px; background: linear-gradient(to right, var(--gold-deep), var(--gold), var(--gold-deep)); }
.topbar {
  background: var(--slate-deep);
  color: var(--beige);
  font-size: 0.84rem;
  letter-spacing: 0.3px;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar-tagline { display: flex; align-items: center; gap: 0.55rem; opacity: 0.94; }
.topbar-tagline svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); }
.topbar-meta { display: flex; gap: 1.4rem; align-items: center; font-size: 0.78rem; opacity: 0.85; }

/* ---- NAV ---- */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(45,42,38,0.04);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  border-radius: var(--radius-lg);
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  pointer-events: none;
}
.logo-mark svg { width: 22px; height: 22px; color: var(--gold); }
.logo-text { font-family: 'Lora', Georgia, serif; font-size: 1.32rem; font-weight: 600; color: var(--burgundy-deep); letter-spacing: -0.01em; }
.logo-text span { color: var(--gold-deep); font-style: italic; font-weight: 500; }
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-weight: 500;
  font-size: 0.94rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-cta {
  background: var(--burgundy);
  color: var(--beige) !important;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--burgundy-deep); transform: translateY(-1px); }

/* ---- HERO (split panel) ---- */
.hero {
  position: relative;
  background: var(--beige-light);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 540px;
  position: relative;
}
.hero-left {
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
  color: var(--beige);
  padding: 5rem 3rem 5rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold-deep), var(--gold), var(--gold-deep));
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,161,88,0.15), transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(200,161,88,0.18);
  color: var(--gold);
  border: 1px solid rgba(200,161,88,0.4);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  align-self: flex-start;
  position: relative;
}
.hero-left h1 { color: var(--beige); margin-bottom: 1.4rem; position: relative; }
.hero-left h1 em { color: var(--gold); font-style: italic; font-weight: 500; }
.hero-lede {
  font-size: 1.12rem;
  color: rgba(229,220,200,0.92);
  margin-bottom: 2.2rem;
  max-width: 480px;
  line-height: 1.65;
  position: relative;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--gold);
  color: var(--burgundy-deep);
}
.btn-primary:hover { background: var(--beige); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(200,161,88,0.32); }
.btn-secondary {
  background: transparent;
  color: var(--beige);
  border: 1.5px solid var(--gold);
}
.btn-secondary:hover { background: var(--gold); color: var(--burgundy-deep); }

/* hero right - compass + regional info card */
.hero-right {
  background: var(--beige);
  padding: 5rem 1.5rem 5rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
}
.hero-compass {
  width: 90px;
  height: 90px;
  margin-bottom: 1.5rem;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: flex-start;
}
.hero-compass::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--burgundy);
  border-radius: 50%;
  pointer-events: none;
}
.hero-compass-mark {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: -0.5px;
  position: relative;
}
.hero-compass-mark::before {
  content: 'N';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.74rem;
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: 1px;
}
.hero-compass-mark::after {
  content: 'W';
  position: absolute;
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
  font-size: 0.74rem;
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: 1px;
}
.hero-statline {
  font-family: 'Lora', Georgia, serif;
  color: var(--burgundy-deep);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  margin-bottom: 1.6rem;
  max-width: 360px;
}
.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--slate-deep);
  font-weight: 500;
  max-width: 380px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding-left: 0;
}
.hero-bullets li::before {
  content: '◆';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* ---- SECTIONS ---- */
section { padding: 5rem 1.5rem; }
.container { max-width: var(--max); margin: 0 auto; }
.section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head h2 em { font-style: italic; color: var(--burgundy); }
.section-head p { font-size: 1.05rem; line-height: 1.7; }

/* ---- TRUST STRIP ---- */
.trust {
  background: var(--beige);
  padding: 2.6rem 1.5rem;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item .num {
  font-family: 'Lora', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
}
.trust-item .lbl {
  font-size: 0.84rem;
  color: var(--slate);
  letter-spacing: 0.3px;
}

/* ---- SECTORS ---- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.sector-card {
  background: var(--white);
  padding: 1.7rem 1.5rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--burgundy);
  transition: all 0.25s;
}
.sector-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.sector-card .icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige-light);
  border-radius: var(--radius);
  color: var(--burgundy);
  margin-bottom: 0.95rem;
  border: 1px solid var(--border);
}
.sector-card .icon svg { width: 20px; height: 20px; }
.sector-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--burgundy-deep); }
.sector-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.55; }

/* ---- WHY US ---- */
.why-bg { background: var(--beige-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--gold);
  position: relative;
}
.why-card .icon-pill {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.2rem;
  border-radius: var(--radius-lg);
}
.why-card .icon-pill svg { width: 24px; height: 24px; }
.why-card h3 { margin-bottom: 0.55rem; font-family: 'Lora', Georgia, serif; font-size: 1.22rem; color: var(--burgundy-deep); }
.why-card p { font-size: 0.95rem; line-height: 1.65; }

/* ---- PROCESS ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  position: relative;
}
.process-step {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border);
  position: relative;
}
.process-step .step-num {
  position: absolute;
  top: -22px;
  left: 1.8rem;
  background: var(--burgundy);
  color: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.2rem;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(107,36,54,0.24);
}
.process-step h3 { margin: 1rem 0 0.5rem; font-family: 'Lora', Georgia, serif; font-size: 1.25rem; color: var(--burgundy-deep); }

/* ---- LOCATIONS ---- */
.locations-bg { background: var(--beige); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.location-pill {
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--burgundy-deep);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.location-pill:hover { background: var(--beige-light); border-left-color: var(--burgundy); }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.2rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--burgundy-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold-deep);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 1.4rem 1.3rem; color: var(--text-light); line-height: 1.7; }

/* ---- FINAL CTA ---- */
.cta-banner {
  background: var(--burgundy-deep);
  color: var(--beige);
  text-align: center;
  padding: 4.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,161,88,0.18), transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--beige); position: relative; }
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p { color: rgba(229,220,200,0.88); margin: 1rem auto 2rem; max-width: 600px; position: relative; font-size: 1.04rem; }
.cta-banner .btn { position: relative; }

/* ---- FOOTER ---- */
.footer {
  background: var(--slate-deep);
  color: rgba(229,220,200,0.78);
  padding: 4rem 1.5rem 1.5rem;
  font-size: 0.92rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(229,220,200,0.14);
}
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.4px; color: var(--gold); margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { color: rgba(229,220,200,0.78); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-brand p { margin-top: 0.9rem; max-width: 320px; line-height: 1.6; color: rgba(229,220,200,0.7); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(229,220,200,0.55);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---- INNER PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--burgundy-deep), var(--burgundy));
  color: var(--beige);
  padding: 4.8rem 1.5rem 4.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
.page-header::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,161,88,0.18), transparent 70%);
  pointer-events: none;
}
.page-header h1 { color: var(--beige); position: relative; margin-bottom: 1rem; }
.page-header h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
.page-header p { color: rgba(229,220,200,0.88); max-width: 660px; margin: 0 auto; position: relative; font-size: 1.1rem; }
.crumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: rgba(229,220,200,0.7);
  margin-top: 1.5rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.crumbs a { color: var(--gold); text-decoration: none; }

/* ---- ABOUT/SERVICES PROSE ---- */
.prose { max-width: 820px; margin: 0 auto; }
.prose p { font-size: 1rem; margin-bottom: 1.1rem; line-height: 1.75; color: var(--text-light); }
.prose h2 { margin: 2.5rem 0 1rem; font-family: 'Lora', Georgia, serif; }
.prose h3 { margin: 1.8rem 0 0.7rem; font-family: 'Inter', sans-serif; font-weight: 700; color: var(--burgundy-deep); }
.prose ul { padding-left: 1.4rem; margin-bottom: 1.1rem; color: var(--text-light); }
.prose ul li { margin-bottom: 0.4rem; }
.prose strong { color: var(--burgundy-deep); }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2.2rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-row:last-of-type { border-bottom: 0; }
.contact-row .ci {
  width: 40px;
  height: 40px;
  background: var(--beige-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}
.contact-row .ci svg { width: 18px; height: 18px; }
.contact-row .lbl { font-size: 0.74rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 0.2rem; font-weight: 700; }
.contact-row .val { color: var(--burgundy-deep); font-weight: 500; }
.form-frame {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.6rem;
  min-height: 560px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3.5rem 1.5rem; }
  .hero-left::after { left: 0; right: 0; top: auto; bottom: -1px; height: 4px; width: 100%; background: linear-gradient(to right, var(--gold-deep), var(--gold), var(--gold-deep)); }
  .hero-right { padding: 3.5rem 1.5rem; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .process-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-inner { height: 64px; }
  .topbar-inner { justify-content: center; gap: 0.4rem; }
  .topbar-meta { display: none; }
  .sectors-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 3.5rem 1.5rem; }
}
