*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #faf8f5; --surface: #ffffff; --text: #1a1a1a; --soft: #4a4a4a;
  --muted: #888; --border: #e5e0d8; --accent: #2d5a3d; --accent-hover: #1e4029;
  --accent-light: #eef4f0; --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --shadow: 0 2px 16px rgba(0,0,0,0.07); --radius: 12px;
}
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.site-header { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); flex-shrink: 0; }
.logo-abbr { background: var(--accent); color: #fff; width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; flex-shrink: 0; }
.logo-full { font-size: 13px; font-weight: 600; color: var(--soft); line-height: 1.3; max-width: 180px; }
nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
nav a { text-decoration: none; color: var(--soft); font-size: 14px; font-weight: 500; padding: 6px 12px; border-radius: 6px; transition: background 0.15s, color 0.15s; white-space: nowrap; }
nav a:hover { background: var(--bg); color: var(--text); }
nav a.active { color: var(--accent); font-weight: 700; }
.btn-nav { background: var(--accent) !important; color: #fff !important; padding: 8px 18px !important; border-radius: 8px !important; font-weight: 700 !important; margin-left: 8px; }
.btn-nav:hover { background: var(--accent-hover) !important; }
.hero { background: var(--accent); color: #fff; padding: 80px 24px 72px; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-bottom: 16px; }
.hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; max-width: 700px; }
.hero p { font-size: 17px; opacity: 0.85; line-height: 1.7; max-width: 560px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: #fff; color: var(--accent); padding: 13px 26px; border-radius: 8px; font-weight: 700; font-size: 15px; text-decoration: none; transition: opacity 0.15s; display: inline-block; }
.btn-primary:hover { opacity: 0.9; }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; padding: 13px 26px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; border: 1px solid rgba(255,255,255,0.3); transition: background 0.15s; display: inline-block; }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.page-hero { background: var(--accent); color: #fff; padding: 56px 24px 48px; }
.page-hero h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 10px; }
.page-hero p { font-size: 15px; opacity: 0.75; }
section { padding: 64px 24px; }
section.alt { background: var(--surface); }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-size: clamp(22px, 4vw, 34px); font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.section-body { font-size: 15px; color: var(--soft); line-height: 1.8; max-width: 640px; margin-bottom: 28px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); }
.card-icon { width: 44px; height: 44px; background: var(--accent-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--soft); line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-item { padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); }
.service-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.service-item p { font-size: 13px; color: var(--soft); line-height: 1.6; }
.locations-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 32px; }
.location-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.location-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.location-card address { font-style: normal; font-size: 14px; color: var(--soft); line-height: 1.8; margin-bottom: 16px; }
.location-card a { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 15px; }
.cta-band { background: var(--accent); color: #fff; padding: 64px 24px; text-align: center; }
.cta-band h2 { font-size: clamp(22px, 4vw, 34px); font-weight: 800; margin-bottom: 12px; }
.cta-band p { font-size: 16px; opacity: 0.85; margin-bottom: 28px; }
.quote-banner { background: var(--accent-light); border-left: 4px solid var(--accent); padding: 28px 32px; margin: 48px 0; border-radius: 0 var(--radius) var(--radius) 0; }
.quote-banner blockquote { font-size: 17px; font-style: italic; color: var(--soft); line-height: 1.8; }
.policy-intro { font-size: 15px; color: var(--soft); line-height: 1.8; padding: 20px 24px; background: var(--accent-light); border-left: 3px solid var(--accent); border-radius: 0 10px 10px 0; margin-bottom: 40px; }
.policy-section { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.policy-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.policy-section h2 { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.policy-section p { font-size: 15px; color: var(--soft); line-height: 1.8; white-space: pre-line; }
.contact-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin-top: 10px; }
.contact-block p { font-size: 14px; color: var(--soft); line-height: 2; }
.contact-block a { color: var(--accent); text-decoration: none; font-weight: 600; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--soft); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-family: var(--font); font-size: 15px; background: var(--surface); color: var(--text); outline: none; transition: border-color 0.15s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { height: 120px; resize: vertical; }
.btn-submit { background: var(--accent); color: #fff; border: none; padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--font); transition: background 0.15s; width: 100%; margin-top: 4px; }
.btn-submit:hover { background: var(--accent-hover); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
.stat-box { text-align: center; padding: 20px; background: var(--accent-light); border-radius: var(--radius); }
.stat-box .num { font-size: 32px; font-weight: 900; color: var(--accent); }
.stat-box .lbl { font-size: 12px; color: var(--soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
footer { background: #1a1a1a; color: #aaa; padding: 40px 24px; font-size: 13px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
footer a { color: #ccc; text-decoration: none; }
footer a:hover { color: #fff; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 768px) {
  .card-grid-3, .services-grid, .about-grid { grid-template-columns: 1fr; }
  .card-grid-2, .locations-grid { grid-template-columns: 1fr; }
  nav a:not(.btn-nav) { display: none; }
  .logo-full { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
