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

:root {
  --forest: #1F4332;
  --forest-deep: #15301F;
  --forest-mid: #2C5A45;
  --moss: #4A7C5F;
  --amber: #D4A45C;
  --amber-deep: #B5853C;
  --cream: #F4EDE0;
  --cream-deep: #E9DFCB;
  --slate: #2C3E40;
  --slate-soft: #4F6063;
  --text: #1F2A2A;
  --text-light: #5A6663;
  --border: #DCD3BD;
  --white: #FFFCF6;
  --shadow: 0 1px 3px rgba(31,67,50,0.08), 0 4px 12px rgba(31,67,50,0.06);
  --shadow-lg: 0 4px 24px rgba(31,67,50,0.12), 0 12px 40px rgba(31,67,50,0.08);
  --radius: 6px;
  --radius-lg: 14px;
  --max: 1200px;
}

*, *::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, h4 { font-family: 'Spectral', Georgia, serif; font-weight: 600; color: var(--forest-deep); letter-spacing: -0.01em; 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.25rem; font-weight: 600; }
p { color: var(--text-light); }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 0.82rem;
  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.5rem; opacity: 0.92; }
.topbar-tagline svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar a { color: var(--amber); text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--cream); }
.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;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--cream-deep), 0 0 0 3px var(--amber);
}
.logo-mark svg { width: 22px; height: 22px; color: var(--amber); }
.logo-text { font-family: 'Spectral', Georgia, serif; font-size: 1.35rem; font-weight: 600; color: var(--forest-deep); letter-spacing: -0.01em; }
.logo-text span { color: var(--moss); 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.92rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--forest); }
.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--forest-deep); transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: 5rem 1.5rem 6rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(212,164,92,0.15), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(31,67,50,0.08);
  color: var(--forest-deep);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(31,67,50,0.14);
}
.hero-eyebrow::before { content: '•'; color: var(--amber); font-size: 1.2rem; line-height: 0.8; }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--moss); font-weight: 500; }
.hero-lede {
  font-size: 1.15rem;
  color: var(--slate-soft);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
.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.95rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary {
  background: transparent;
  color: var(--forest-deep);
  border: 1.5px solid var(--forest);
}
.btn-secondary:hover { background: var(--forest); color: var(--cream); }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  list-style: none;
  font-size: 0.9rem;
  color: var(--slate);
}
.hero-points li { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.hero-points li::before { content: '✓'; color: var(--moss); font-weight: 800; }

/* hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 380px;
}
.hero-card-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.2rem;
}
.hero-card-head .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--moss); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(74,124,95,0.18); }
.hero-card-head h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--forest-deep); letter-spacing: 0.2px; }
.hero-card-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.hero-card-stat .num { font-family: 'Spectral', serif; font-size: 1.7rem; font-weight: 700; color: var(--forest); line-height: 1; }
.hero-card-stat .lbl { font-size: 0.78rem; color: var(--text-light); margin-top: 0.3rem; }

/* ---- SECTIONS ---- */
section { padding: 4.5rem 1.5rem; }
.container { max-width: var(--max); margin: 0 auto; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--moss);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-head h2 { margin-bottom: 0.9rem; }
.section-head p { font-size: 1.05rem; }

/* ---- TRUST STRIP ---- */
.trust {
  background: var(--forest);
  padding: 2.5rem 1.5rem;
  color: var(--cream);
}
.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: 'Spectral', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.trust-item .lbl {
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.88;
  letter-spacing: 0.3px;
}

/* ---- SECTORS ---- */
.sectors-bg { background: var(--cream); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.sector-card {
  background: var(--white);
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.sector-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--amber);
  transition: width 0.3s;
}
.sector-card:hover { transform: translateY(-3px); border-color: var(--moss); box-shadow: var(--shadow); }
.sector-card:hover::before { width: 100%; }
.sector-card .icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,67,50,0.08);
  border-radius: var(--radius);
  color: var(--forest);
  margin-bottom: 0.9rem;
}
.sector-card .icon svg { width: 20px; height: 20px; }
.sector-card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--forest-deep); }
.sector-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.5; }

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.why-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1.1rem;
}
.why-card .icon-circle svg { width: 26px; height: 26px; }
.why-card h3 { margin-bottom: 0.6rem; }
.why-card p { font-size: 0.95rem; line-height: 1.65; }

/* ---- PROCESS ---- */
.process-bg { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-step {
  background: var(--white);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.process-step .step-num {
  position: absolute;
  top: -22px;
  left: 1.8rem;
  background: var(--amber);
  color: var(--forest-deep);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Spectral', serif;
  font-weight: 700;
  font-size: 1.2rem;
  border: 3px solid var(--cream);
}
.process-step h3 { margin: 1rem 0 0.5rem; }

/* ---- LOCATIONS ---- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.location-pill {
  padding: 0.85rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--forest-deep);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.location-pill::before { content: '◐'; color: var(--moss); }

/* ---- FAQ ---- */
.faq-bg { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.2rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--forest-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(--amber);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.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(--forest-deep);
  color: var(--cream);
  text-align: center;
  padding: 4.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,164,92,0.16), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--cream); position: relative; }
.cta-banner h2 em { color: var(--amber); font-style: italic; }
.cta-banner p { color: rgba(244,237,224,0.85); margin: 1rem auto 2rem; max-width: 580px; position: relative; }
.cta-banner .btn { position: relative; }
.cta-banner .btn-primary { background: var(--amber); color: var(--forest-deep); }
.cta-banner .btn-primary:hover { background: var(--cream); }

/* ---- FOOTER ---- */
.footer {
  background: var(--slate);
  color: rgba(244,237,224,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.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(244,237,224,0.14);
}
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--amber); 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(244,237,224,0.78); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--amber); }
.footer-brand p { margin-top: 0.8rem; max-width: 320px; line-height: 1.6; color: rgba(244,237,224,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(244,237,224,0.55);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---- INNER PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  color: var(--cream);
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,164,92,0.18), transparent 70%);
  pointer-events: none;
}
.page-header h1 { color: var(--cream); position: relative; margin-bottom: 1rem; }
.page-header h1 em { font-style: italic; color: var(--amber); font-weight: 500; }
.page-header p { color: rgba(244,237,224,0.85); max-width: 640px; margin: 0 auto; position: relative; font-size: 1.1rem; }
.crumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(244,237,224,0.7);
  margin-top: 1.5rem;
  position: relative;
}
.crumbs a { color: var(--amber); 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; }
.prose h3 { margin: 1.8rem 0 0.7rem; }
.prose ul { padding-left: 1.4rem; margin-bottom: 1.1rem; color: var(--text-light); }
.prose ul li { margin-bottom: 0.4rem; }

/* ---- 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-radius: var(--radius);
  padding: 2rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .ci {
  width: 40px;
  height: 40px;
  background: rgba(31,67,50,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.contact-row .ci svg { width: 18px; height: 18px; }
.contact-row .lbl { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 0.2rem; font-weight: 600; }
.contact-row .val { color: var(--forest-deep); font-weight: 500; }
.contact-row .val a { color: var(--forest-deep); text-decoration: none; }
.form-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem;
  min-height: 560px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { margin-top: 1rem; }
  .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; }
  .hero { padding: 3.5rem 1.5rem 4.5rem; }
  .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; }
}
