:root {
  --emerald: #0e2216;      /* Deep Emerald Green — headings, logo, icons, primary dark surfaces */
  --emerald-2: #09301f;    /* Forest Green — footer, industry cards, accents, nav text, icon badges, buttons */
  --sage: #c5cdbc;         /* Soft Sage — background boxes */
  --light-sage: #bac7b6;   /* Light Sage — secondary backgrounds */
  --cream: #edeeea;        /* Off White — main background */
  --gold: #b8892a;         /* Light Gold — highlights, decorative elements, icon badge glyphs */
  --gold-dark: #9c916e;    /* Muted Gold — fine line accents */
  --gold-champagne: #c9a66b; /* Champagne Gold — button fills */
  --text: #495937;         /* Dark Olive — body text */
  --line: #a2a59c;         /* Warm Gray — neutral borders/dividers */
  --shadow: 0 10px 30px rgba(14, 34, 22, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--emerald);
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, 92%); margin: auto; }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--emerald);
  color: #fff;
  padding: 10px 18px;
  z-index: 100;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; top: 0; }

/* Header / nav */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 98px;
}
section[id] { scroll-margin-top: 98px; }
.logo { width: 225px; max-height: 92px; object-fit: contain; }
nav { display: flex; gap: 32px; align-items: center; font-size: 13px; }
nav a {
  padding: 12px 0;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.075em;
  color: var(--emerald-2);
  white-space: nowrap;
}
nav a.active:after,
nav a:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--gold-dark);
}
.nav-cta {
  background: linear-gradient(135deg, #f3d68a 0%, var(--gold) 45%, var(--gold-champagne) 100%);
  color: var(--emerald) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px !important;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(211, 166, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.nav-cta:hover {
  box-shadow: 0 4px 14px rgba(211, 166, 74, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}
.nav-cta:after { display: none !important; }
.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 1.7rem;
  color: var(--emerald);
  cursor: pointer;
}

/* Hero */
.hero { background: var(--cream); padding: 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 480px; align-items: center; }
.hero-copy { padding: 56px 56px 44px 0; display: flex; flex-direction: column; justify-content: center; }
h1 { font-size: clamp(2.45rem, 4.5vw, 4.3rem); line-height: 1.05; margin: 0 0 22px; letter-spacing: -0.02em; }
.hero-copy h1 { color: #1e5c3a; white-space: nowrap; }
.gold-rule { width: 46px; height: 2px; background: var(--gold-dark); margin: 0 0 20px; }
.hero-copy p { font-size: 1.05rem; max-width: 590px; margin: 0 0 18px; }
.tagline { font-size: 1.28rem !important; color: var(--emerald); margin-top: 6px !important; }
.tagline strong { color: var(--gold); font-weight: 500; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--gold);
  padding: 15px 22px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary { background: var(--emerald-2); border-color: var(--emerald-2); color: #fff; }
.btn-primary:hover { background: var(--emerald); border-color: var(--emerald); }

.hero-image {
  background-image:
    radial-gradient(circle at 0% 0%, var(--cream) 0%, rgba(237, 238, 234, 0.55) 20%, transparent 42%),
    linear-gradient(rgba(14, 34, 22, 0.04), rgba(14, 34, 22, 0.04)),
    url("chadEmeraldHERO.png");
  background-size: cover;
  background-position: center;
  min-height: 480px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Shared section styles */
section { padding: 64px 0; }
.section-title { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 38px; }
.section-title span { width: 58px; height: 1px; background: var(--gold-dark); }
.section-title h2 { margin: 0; font-size: 1.55rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* Services */
.services-intro { max-width: 720px; margin: -14px auto 44px; text-align: center; font-size: 1rem; }

.service-group { margin-bottom: 46px; }
.service-group:last-child { margin-bottom: 0; }
.service-group-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.icon-badge { border-radius: 50%; display: grid; place-items: center; }
.service-group-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  background: #1e5c3a;
  color: var(--gold);
  font-size: 1.4rem;
}
.service-group-header h3 { font-size: 1.35rem; margin: 0 0 4px; }
.service-group-header p { font-size: 0.9rem; margin: 0; max-width: 640px; }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.svc-grid-3 { grid-template-columns: repeat(3, 1fr); }

.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.svc-card:hover, .industry-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-card[open] { z-index: 5; }
.svc-card summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}
.svc-card summary::-webkit-details-marker { display: none; }
.svc-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  background: #1e5c3a;
  color: var(--gold);
  font-size: 1.05rem;
}
.svc-text { flex: 1 1 auto; min-width: 0; }
.svc-title { display: block; font-weight: 700; font-size: 0.95rem; color: var(--emerald); }
.svc-sub { display: block; font-size: 0.82rem; margin-top: 3px; }
.svc-toggle {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.svc-card[open] .svc-toggle { transform: rotate(45deg); }
.svc-list {
  margin: 0;
  padding: 14px 20px 20px 78px;
  font-size: 0.85rem;
  display: grid;
  gap: 6px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 60vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow);
}

/* Industries */
#industries { background: #fff; }
.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.industry-card {
  text-align: center;
  background: #1e5c3a;
  border-radius: 8px;
  padding: 26px 16px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.industry-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--cream);
  color: var(--gold);
  font-size: 1.3rem;
}
.industry-card h3 { font-size: 0.98rem; margin: 0 0 8px; line-height: 1.25; color: #fff; }
.industry-card p { font-size: 0.82rem; margin: 0; color: rgba(255, 255, 255, 0.85); }
.industries-note {
  text-align: center;
  max-width: 640px;
  margin: 36px auto 0;
  font-size: 0.92rem;
}
.industries-note strong { color: var(--emerald); }

/* Steps */
.steps { padding: 8px 0 70px; background: var(--cream); }
.steps-card {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(14, 34, 22, 0.14), 0 2px 10px rgba(14, 34, 22, 0.06);
  padding: 56px 48px;
}
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.step { text-align: center; position: relative; }
.step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 43px;
  right: -31px;
  width: 60px;
  border-top: 2px dotted var(--gold-dark);
}
.num {
  width: 42px;
  height: 42px;
  background: #1e5c3a;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1;
  margin: 0 auto 12px;
}
.step-icon { height: 48px; color: var(--gold); margin-bottom: 9px; }
.step-icon svg { width: 48px; height: 48px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.step h3 { font-size: 1rem; margin: 0 0 6px; text-transform: uppercase; }
.step p { font-size: 0.85rem; margin: 0 auto; max-width: 205px; }

.section-divider { background: #fff; }
.section-divider .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.section-divider span { flex: 1 1 auto; height: 1px; background: var(--line); }
.section-divider i { flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-dark); font-style: normal; }

/* About page */
#about.about-page { padding: 0; background: var(--cream); }
.eyebrow { color: var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background: linear-gradient(120deg, #fff 0%, #fff 56%, var(--light-sage) 56%, var(--light-sage) 100%);
}
.about-hero:before,
.about-hero:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.about-hero:before { width: 230px; height: 230px; background: var(--gold); opacity: 0.14; top: -70px; right: 9%; }
.about-hero:after { width: 170px; height: 170px; background: var(--emerald); opacity: 0.08; bottom: -60px; left: 3%; }
.about-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.about-hero-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 10px 0 18px; line-height: 1.1; color: var(--emerald-2); }
.about-hero-copy p { font-size: 1.05rem; max-width: 560px; margin: 0; }
.about-hero-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(14, 34, 22, 0.16);
}
.about-hero-card h3 { font-size: 1.4rem; margin: 0 0 12px; line-height: 1.2; }
.about-hero-card p { font-size: 0.92rem; color: var(--text); margin: 0; }

.about-beliefs {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  text-align: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(61, 105, 72, 0.16), transparent 38%),
    radial-gradient(circle at 6% 88%, rgba(237, 238, 234, 0.55), transparent 32%),
    var(--light-sage);
}
.about-beliefs h2 { color: var(--emerald-2); }
.about-beliefs:before {
  content: "\201C";
  position: absolute;
  top: -60px;
  left: 5%;
  font-family: "Cormorant Garamond", serif;
  font-size: 260px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
  z-index: 0;
}
.about-beliefs:after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 2px solid var(--emerald-2);
  border-radius: 50%;
  bottom: -45px;
  right: 7%;
  opacity: 0.3;
  z-index: 0;
}
.about-belief-box { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.about-belief-box h2 { font-size: 1.9rem; margin: 10px 0 18px; }
.about-belief-box p { font-size: 1.05rem; }

.about-founder {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(14, 34, 22, 0.12);
  margin: 72px 0;
}
.about-founder-visual {
  background: #1e5c3a;
  color: #fff;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.monogram {
  width: 96px;
  height: 96px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 20px;
}
.about-founder-visual h3 { color: #fff; font-size: 1.7rem; margin: 0 0 4px; }
.about-founder-visual p { color: var(--sage); font-weight: 700; letter-spacing: 0.04em; margin: 0; }
.about-founder-copy { position: relative; overflow: hidden; padding: 44px; }
.about-founder-copy:before {
  content: "\201C";
  position: absolute;
  top: -22px;
  left: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
.about-founder-copy .eyebrow,
.about-founder-copy h2 { position: relative; z-index: 1; }
.about-founder-copy h2 { font-size: 1.85rem; margin: 10px 0 16px; color: var(--emerald-2); }
.about-founder-copy p {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--emerald-2);
  margin: 0 0 14px;
}
.about-founder-copy p:last-child {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 700;
  color: var(--emerald);
}

.about-reasons { background: var(--light-sage); padding: 72px 0; }
.about-reasons .section-title h2 { color: var(--emerald-2); }
.about-reasons-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reason-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  padding: 22px;
}
.reason-card h3 { font-size: 1rem; margin: 0 0 8px; }
.reason-card p { font-size: 0.85rem; margin: 0; }

/* CTA band */
.cta-band { background: #1e5c3a; color: #fff; padding: 34px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { color: #fff; margin: 0; font-size: 1.85rem; }
.cta-band p { margin: 4px 0 0; font-size: 1rem; }
.cta-pointer {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--gold);
}
.cta-pointer-text {
  position: relative;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 3.0rem;
  line-height: 1.2;
  white-space: nowrap;
  transform: rotate(-3deg);
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
  text-shadow: 0 0 0 rgba(211, 166, 74, 0);
  transition: text-shadow 0.3s ease, color 0.3s ease;
}
.cta-pointer-text:hover,
.cta-pointer-text:focus-visible,
.cta-pointer-text.glow-active {
  text-shadow: 0 0 14px rgba(211, 166, 74, 0.85), 0 0 28px rgba(211, 166, 74, 0.5);
}
.cta-pointer-text.glow-active { z-index: 151; }

/* Footer */
footer { background: #fff; }
.footer-main { padding: 18px 0 10px; display: grid; grid-template-columns: 1.4fr 0.9fr 1.25fr; gap: 28px; }
.footer-col { padding-right: 18px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.footer-col:last-child { border-right: 0; }
.footer-col:first-child { text-align: center; padding-right: 60px; }
.footer-col:first-child p { display: block; }
.footer-logo { width: 215px; margin: 0 auto 10px; }
.footer-col h4 {
  color: var(--emerald);
  font-size: 0.93rem;
  margin: 0 0 8px;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-col p { font-size: 0.79rem; margin: 2px 0; display: flex; align-items: center; gap: 8px; }
.footer-col-florida { text-align: center; }
.footer-florida-map { display: block; width: 100%; max-width: 170px; height: auto; margin: 10px auto 0; }
.footer-col a:hover { color: var(--gold-dark); }
.footer-icon { width: 14px; flex: 0 0 auto; display: inline-flex; justify-content: center; opacity: 0.85; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.footer-col-contact { text-align: center; padding-right: 0; }
.footer-col-contact p { justify-content: center; }
.footer-col-contact .socials { justify-content: center; }
.social {
  width: 26px;
  height: 26px;
  background: #1e5c3a;
  color: #fff;
  font-size: 0.8rem;
  transition: background 0.15s ease;
}
.social:not(.social-instagram):hover { background: var(--gold-dark); }
.social-instagram {
  background: none;
  transition: transform 0.15s ease;
}
.social-instagram:hover { transform: translateY(-2px); }
.copyright {
  background: #1e5c3a;
  color: #fff;
  padding: 10px 24px;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.copyright-credit { color: rgba(255, 255, 255, 0.6); transition: color 0.15s ease; }
.copyright-credit:hover { color: #fff; }

/* Contact Us footer spotlight */
.page-dim-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 34, 22, 0.6);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.page-dim-overlay.active { opacity: 1; }
.spotlight-target {
  position: relative;
  z-index: 151;
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  margin: -18px;
  animation: spotlight-flash 0.5s ease-in-out 4;
}
@keyframes spotlight-flash {
  0%, 100% { box-shadow: 0 0 0 2px rgba(211, 166, 74, 0); }
  50% { box-shadow: 0 0 0 3px var(--gold); }
}

/* Consultation modal */
body.modal-open { overflow: hidden; }
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 34, 22, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: #fff;
  border-radius: 8px;
  padding: 36px 40px;
  width: min(480px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(14, 34, 22, 0.3);
  position: relative;
  transform: translateY(-12px);
  transition: transform 0.2s ease;
}
.modal.modal-intake { width: min(820px, 100%); }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: none;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--emerald-2);
  cursor: pointer;
  border-radius: 50%;
}
.modal-close:hover { color: var(--gold-dark); background: var(--sage); }
.modal h3 { margin: 0 0 8px; font-size: 1.5rem; padding-right: 20px; }
.modal-intro { margin: 0 0 22px; font-size: 0.92rem; }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-form label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--emerald);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-form input,
.modal-form textarea,
.modal-form select {
  font: inherit;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: var(--cream);
}
.modal-form input:focus,
.modal-form textarea:focus,
.modal-form select:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.modal-form textarea { resize: vertical; min-height: 70px; }
.modal-status { margin: 4px 0 0; font-size: 0.85rem; color: var(--emerald-2); font-weight: 600; }

.modal-success { text-align: center; padding: 20px 0 4px; }
.modal-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: #1e5c3a;
  color: #fff;
  font-size: 1.8rem;
}
.modal-success h4 { font-size: 1.5rem; margin: 0 0 10px; }
.modal-success p { font-size: 0.95rem; color: var(--text); max-width: 380px; margin: 0 auto 22px; }

/* Consultation intake form sections */
.im-section {
  border: 0;
  border-top: 1px solid var(--line);
  padding: 0;
  margin: 36px 0 0;
  min-width: 0;
}
.im-section:first-child { border-top: 0; margin-top: 0; }
.im-section legend {
  display: block;
  width: 100%;
  margin: 0 0 6px;
  padding: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--emerald-2);
}
.im-hint { margin: 0 0 12px; font-size: 0.82rem; color: var(--text); font-weight: 400; text-transform: none; letter-spacing: 0; }
.im-subgroup-title {
  margin: 4px 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gold-dark);
}
.im-subgroup-title:not(:first-of-type) { margin-top: 18px; }
.im-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.im-grid-3 { grid-template-columns: repeat(3, 1fr); }
.im-grid-address { margin-top: 14px; grid-template-columns: repeat(3, 1fr); }
.im-field { display: flex; flex-direction: column; gap: 6px; }
.im-field label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--emerald);
}
.im-field-full { grid-column: 1 / -1; }
.im-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 16px;
}
.im-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--text);
  cursor: pointer;
}
.im-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--emerald-2);
  padding: 0;
}
.im-consent {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  align-items: flex-start !important;
  font-size: 0.85rem;
}
.im-consent input[type="checkbox"] { margin-top: 3px; }
.im-actions { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
.im-btn-secondary { background: none; border-color: var(--line); color: var(--text); }
.im-btn-secondary:hover { background: var(--cream); }

/* Flatpickr theme alignment */
.flatpickr-calendar {
  box-shadow: 0 12px 30px rgba(14, 34, 22, 0.2);
  border-radius: 8px;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--emerald-2);
  border-color: var(--emerald-2);
}
.flatpickr-day.today { border-color: var(--gold); }
.flatpickr-day:hover { background: var(--sage); }
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: var(--emerald-2);
}
.flatpickr-current-month input.cur-year { font-family: "Montserrat", Arial, sans-serif; }
span.flatpickr-weekday { color: var(--emerald-2); }
.flatpickr-day.selected.today { border-color: var(--emerald-2); }

/* Responsive */
@media (max-width: 900px) {
  .nav-wrap { min-height: 78px; }
  section[id] { scroll-margin-top: 78px; }
  nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 10px 5%;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  }
  nav.open { display: flex; }
  nav a { padding: 14px 0; width: 100%; }
  .menu-btn { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 52px 0 30px; }
  .hero-copy h1 { white-space: normal; }
  .hero-image { min-height: 360px; clip-path: none; }
  .svc-grid, .svc-grid-3 { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step:after { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .about-hero { background: linear-gradient(155deg, #fff 0%, #fff 55%, var(--light-sage) 55%, var(--light-sage) 100%); }
  .about-hero-inner, .about-founder { grid-template-columns: 1fr; }
  .about-founder-visual { min-height: 220px; }
  .about-reasons-grid { grid-template-columns: 1fr 1fr; }
  .about-beliefs:before { font-size: 180px; top: -40px; }
  .about-beliefs:after { width: 100px; height: 100px; }
  .modal.modal-intake { width: min(600px, 100%); }
  .im-grid, .im-grid-3, .im-grid-address { grid-template-columns: 1fr 1fr; }
  .im-check-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .logo { width: 190px; }
  h1 { font-size: 2.6rem; }
  .steps-grid, .footer-main { grid-template-columns: 1fr; }
  .steps-card { padding: 36px 22px; border-radius: 18px; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .footer-col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 14px;
  }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-pointer { display: none; }
  .section-title h2 { font-size: 1.25rem; text-align: center; }
  .section-title span { width: 32px; }
  .modal { padding: 28px 22px; }
  .im-grid, .im-grid-3, .im-grid-address, .im-check-grid { grid-template-columns: 1fr; }
  .im-actions { flex-direction: column-reverse; align-items: stretch; }
  .service-group-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .svc-card summary { align-items: flex-start; }
  .svc-list { padding-left: 20px; }
  .about-hero:before, .about-hero:after { display: none; }
  .about-beliefs:before, .about-beliefs:after { display: none; }
  .about-reasons-grid { grid-template-columns: 1fr; }
  .about-founder-copy { padding: 28px 22px; }
  .about-hero-card { padding: 24px; }
}
