:root {
  --bg: #f6fafb;
  --surface: #ffffff;
  --surface-2: #edf5f2;
  --card: #ffffff;
  --text: #15304d;
  --muted: #51657b;
  --accent: #19b36b;
  --accent-2: #0d7a4a;
  --line: rgba(21, 48, 77, 0.12);
  --shadow: rgba(15, 23, 42, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(25, 179, 107, 0.10), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 45%, #f3f8fb 100%);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container { width: min(1160px, calc(100% - 24px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.brand { font-size: 1.15rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { color: var(--muted); font-weight: 600; }
.nav-links a:hover { color: var(--text); }
.menu-toggle { display: none; background: transparent; color: var(--text); border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; }

.hero-section { padding: 56px 0 30px; }
.hero-grid, .two-col, .footer-grid { display: grid; gap: 24px; }
.hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; gap: 28px; }
.hero-copy, .hero-card, .card, .cta-box, .contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 42px var(--shadow);
}
.hero-copy { padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.hero-card { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; color: var(--accent-2); font-weight: 700; }
.hero-copy h1, .page-intro h1, .section-heading h2, .two-col h2 { line-height: 1.1; margin: 0 0 14px; font-size: clamp(2rem, 5vw, 3.4rem); }
.lede, .page-intro p, .hero-card p, .card p, .section-heading p, .cta-box p { color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 12px 16px; font-weight: 700; border: 1px solid transparent; transition: transform 0.16s ease, background 0.2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), #17a96d); color: #062014; }
.btn-secondary { border-color: var(--line); color: var(--text); background: rgba(255,255,255,0.98); }
.mini-bullets { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 18px 0 0; }
.mini-bullets li { border: 1px solid var(--line); border-radius: 999px; padding: 8px 10px; color: var(--muted); background: rgba(255,255,255,0.92); }
.feature-chip { border: 1px solid var(--line); border-radius: 14px; padding: 10px 12px; margin-top: 10px; background: rgba(255,255,255,0.96); }
.section { padding: 28px 0; }
.alt-bg { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00)); }
.section-heading { margin-bottom: 18px; }
.section-heading h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
.card-grid { display: grid; gap: 16px; }
.two-up { grid-template-columns: repeat(2, 1fr); }
.three-up { grid-template-columns: repeat(3, 1fr); }
.four-up { grid-template-columns: repeat(4, 1fr); }
.card { padding: 18px; }
.card h3 { margin-top: 0; margin-bottom: 10px; font-size: 1.08rem; }
.brand-banner { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0; padding: 0; border: none; border-radius: 0; box-shadow: none; background: transparent; overflow: hidden; }
.brand-banner img { width: 100%; max-width: none; height: auto; max-height: 340px; border-radius: 0; object-fit: cover; }
.brand-banner > div { width: 100%; max-width: 1160px; margin: 0 auto; padding: 18px 12px 22px; }
.brand-banner h2 { margin-bottom: 8px; font-size: clamp(1.2rem, 3vw, 1.8rem); }
.brand-banner .eyebrow { margin-bottom: 6px; }
.brand-banner--compact img { width: 140px; }
.photo-grid { align-items: stretch; }
.photo-card { overflow: hidden; }
.photo-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 16px; margin-bottom: 12px; }
.banner-strip { padding: 0; background: #fff; border-bottom: 1px solid var(--line); }
.banner-img { display: block; width: 100%; height: auto; }
.accent-card { background: linear-gradient(135deg, rgba(25,179,107,0.10), rgba(255,255,255,0.98)); }
.check-list { margin: 0; padding-left: 18px; color: var(--muted); }
.cta-banner { padding-bottom: 40px; }
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 22px;
  width: 100%;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 251, 0.98));
}
.site-footer { border-top: 1px solid var(--line); padding: 22px 0 36px; background: #eff6f8; }
.footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.site-footer h3, .site-footer h4 { margin-top: 0; margin-bottom: 8px; }
.site-footer a, .site-footer span { display: block; color: var(--muted); margin-bottom: 8px; }
.page-shell { padding-bottom: 40px; }
.page-intro { padding: 10px 0 0; }
.contact-layout { grid-template-columns: 1fr 1fr; align-items: start; }
.contact-form { display: grid; gap: 12px; }
.contact-form label { display: grid; gap: 6px; color: var(--muted); font-weight: 600; }
.contact-form input, .contact-form textarea { border: 1px solid var(--line); border-radius: 14px; padding: 10px 12px; background: rgba(255,255,255,0.98); color: var(--text); }

@media (max-width: 980px) {
  .hero-grid, .two-col, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
  .three-up { grid-template-columns: 1fr 1fr; }
  .four-up { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; padding: 12px 12px 18px; }
  .nav-links.open { display: flex; }
  .three-up, .four-up { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
  .brand-banner img { max-height: 220px; }
  .brand-banner > div { padding: 14px 12px 18px; }
}
