:root {
  --ink: #102b2b;
  --ink-soft: #1a3b39;
  --cream: #f7f3e8;
  --paper: #fffdf7;
  --sand: #e9dfcc;
  --muted: #64716e;
  --line: rgba(16, 43, 43, 0.16);
  --lime: #d9ef78;
  --gold: #f3c969;
  --coral: #ef846d;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(9, 27, 27, 0.18);
  --radius: 26px;
  --container: 1180px;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); line-height: 1.55; }
body, button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button, a { cursor: pointer; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.narrow { max-width: 760px; }
.skip-link { position: fixed; z-index: 20; left: 18px; top: -60px; background: var(--lime); color: var(--ink); padding: 12px 16px; border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 18px; }

.utility-bar { background: var(--lime); color: var(--ink); font-size: 0.71rem; letter-spacing: 0.13em; text-transform: uppercase; }
.utility-inner { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; }
.utility-note { opacity: 0.72; letter-spacing: 0.05em; text-transform: none; }

.site-header { position: relative; z-index: 10; background: var(--ink); color: var(--white); }
.nav { min-height: 86px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { position: relative; width: 42px; height: 42px; display: inline-flex; flex-direction: column; justify-content: center; gap: 4px; padding: 8px; border-radius: 13px; background: var(--gold); transform: rotate(-7deg); }
.brand-mark i { display: block; width: 100%; height: 3px; border-radius: 99px; background: var(--ink); }
.brand-name { display: grid; gap: 0; line-height: 1; }
.brand-name strong { font-size: 1.02rem; letter-spacing: 0.02em; }
.brand-name small { margin-top: 5px; color: var(--gold); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a { padding: 10px 13px; border-radius: 999px; color: rgba(255, 255, 255, 0.7); font-size: 0.87rem; transition: 180ms ease; }
.nav-links a:hover, .nav-links a.active { background: rgba(255, 255, 255, 0.1); color: var(--white); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 13px 17px; border: 1px solid rgba(255,255,255,0.28); border-radius: 999px; color: var(--lime); font-size: 0.78rem; font-weight: 800; white-space: nowrap; transition: 180ms ease; }
.nav-cta:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.3); border-radius: 12px; background: transparent; color: var(--white); }

.hero { position: relative; overflow: hidden; }
.home-hero { min-height: 730px; background: var(--ink); color: var(--white); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 68% center; opacity: 0.88; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 31, 31, 0.96) 0%, rgba(10, 31, 31, 0.86) 35%, rgba(10, 31, 31, 0.28) 78%, rgba(10, 31, 31, 0.44) 100%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 470px); align-items: center; gap: 90px; min-height: 690px; padding: 80px 0 100px; }
.hero-copy { max-width: 660px; }
.hero-kicker, .section-kicker, .strip-eyebrow, .eyebrow, .footer-label, .callback-label { margin: 0 0 16px; color: var(--gold); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.17em; text-transform: uppercase; }
.hero-copy h1, .page-hero h1 { margin: 0; max-width: 740px; font-size: clamp(3.65rem, 7vw, 6.9rem); line-height: 0.91; letter-spacing: -0.075em; }
h1 em, h2 em, h3 em { color: var(--lime); font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -0.07em; }
.hero-lede { max-width: 590px; margin: 30px 0 28px; color: rgba(255,255,255,0.8); font-size: clamp(1.06rem, 1.8vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 13px 18px; border: 1px solid transparent; border-radius: 999px; font-size: 0.82rem; font-weight: 850; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-lime { background: var(--lime); color: var(--ink); }
.button-lime:hover { background: #efffa9; }
.button-ghost { border-color: rgba(255,255,255,0.38); color: var(--white); }
.button-ghost:hover { background: rgba(255,255,255,0.11); border-color: var(--white); }
.button-dark { background: var(--ink); color: var(--lime); }
.button-dark:hover { background: var(--ink-soft); }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 34px; color: rgba(255,255,255,0.63); font-size: 0.75rem; }
.proof-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(217,239,120,0.12); }
.proof-divider { color: var(--gold); }
.hero-wave, .section-wave { position: absolute; bottom: -1px; left: -3%; width: 106%; height: 76px; background: var(--cream); clip-path: ellipse(60% 60% at 50% 100%); }

.callback-card { align-self: center; padding: 30px; border-radius: var(--radius); background: rgba(255, 253, 247, 0.98); color: var(--ink); box-shadow: var(--shadow); }
.callback-heading { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.callback-label { margin-bottom: 10px; color: var(--coral); }
.callback-title { margin: 0; font-size: 2.65rem; line-height: 0.92; letter-spacing: -0.06em; }
.callback-heading > p:last-child { margin: 15px 0 0; color: var(--muted); font-size: 0.88rem; }
.form-progress { display: flex; gap: 7px; margin: 20px 0; }
.form-progress span { height: 5px; flex: 1; border-radius: 99px; background: var(--sand); }
.form-progress span.active { background: var(--coral); }
.form-step { min-width: 0; margin: 0; padding: 0; border: 0; }
.form-step[hidden] { display: none; }
.form-step legend { margin-bottom: 15px; font-size: 0.9rem; font-weight: 850; }
.field { display: grid; gap: 6px; margin-top: 13px; }
.field label { color: var(--muted); font-size: 0.74rem; font-weight: 750; }
.field label span { opacity: 0.65; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--ink); font-size: 0.9rem; }
.field input, .field select { min-height: 45px; padding: 10px 12px; }
.field textarea { min-height: 92px; padding: 11px 12px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9a9f99; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--coral); outline: 3px solid rgba(239,132,109,0.18); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.field-full { grid-column: 1 / -1; }
.checkbox-field { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 8px; color: var(--muted); font-size: 0.72rem; line-height: 1.45; }
.checkbox-field input { width: 17px; height: 17px; margin-top: 1px; accent-color: var(--coral); }
.checkbox-field a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.form-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 20px; }
.form-actions .button { min-height: 43px; padding: 10px 15px; }
.button-back { border-color: var(--line); background: transparent; color: var(--muted); }
.button-back:hover { background: var(--sand); }
.form-message { margin: 17px 0 0; color: var(--muted); font-size: 0.72rem; line-height: 1.45; }
.success-message { padding: 30px; border-radius: var(--radius); background: var(--lime); color: var(--ink); box-shadow: var(--shadow); }
.success-message strong { font-size: 1.25rem; }
.success-message span { display: block; margin-top: 10px; font-size: 0.86rem; }

.intro-strip { background: var(--cream); }
.intro-strip-inner { display: grid; grid-template-columns: 0.7fr 1.4fr 1fr; align-items: end; gap: 36px; padding: 74px 0 78px; }
.strip-eyebrow { margin: 0; color: var(--coral); }
.intro-strip h2, .section-heading h2, .approach-copy h2, .cta-band h2, .content-grid h2, .page-hero h1, .contact-intro h2, .article-detail h2 { margin: 0; font-size: clamp(2.4rem, 4.5vw, 4.6rem); line-height: 0.96; letter-spacing: -0.075em; }
.intro-strip-inner > p:last-child { margin: 0; color: var(--muted); }

.services-section { position: relative; overflow: hidden; background: var(--ink); color: var(--white); padding: 84px 0 118px; }
.section-heading { max-width: 740px; margin-bottom: 38px; }
.section-heading h2 { color: var(--ink); }
.section-heading p:last-child { max-width: 640px; margin: 19px 0 0; color: var(--muted); }
.section-heading-light h2 { color: var(--white); }
.section-heading-light p:last-child { color: rgba(255,255,255,0.67); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { min-height: 240px; display: flex; flex-direction: column; padding: 24px; border: 1px solid rgba(255,255,255,0.18); border-radius: 18px; background: rgba(255,255,255,0.045); transition: 180ms ease; }
.service-card:hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(255,255,255,0.085); }
.service-number { color: var(--gold); font-size: 0.75rem; font-weight: 850; letter-spacing: 0.14em; }
.service-card h3 { margin: 35px 0 9px; color: var(--white); font-size: 1.25rem; letter-spacing: -0.03em; }
.service-card p { margin: 0; color: rgba(255,255,255,0.68); font-size: 0.88rem; }
.service-card a, .section-link-light a { margin-top: auto; padding-top: 24px; color: var(--lime); font-size: 0.78rem; font-weight: 800; }
.section-link-light { margin: 25px 0 0; }
.section-link-light a { display: inline-flex; gap: 8px; padding: 0; }

.locations-section { padding: 90px 0; background: var(--cream); }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.location-card, .article-card { min-height: 230px; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,253,247,0.62); }
.location-card:hover, .article-card:hover { border-color: var(--coral); }
.eyebrow { margin-bottom: 14px; color: var(--coral); font-size: 0.66rem; }
.location-card h3, .article-card h3 { margin: 0; font-size: 1.35rem; letter-spacing: -0.04em; }
.location-card p:not(.eyebrow), .article-card p:not(.eyebrow) { margin: 12px 0 0; color: var(--muted); font-size: 0.86rem; }
.location-card a, .article-card a, .section-link, .text-link { display: inline-flex; gap: 8px; margin-top: auto; padding-top: 22px; color: var(--ink); font-size: 0.78rem; font-weight: 850; }
.section-link { margin-bottom: 0; }
.section-link a { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 5px; }

.approach-section { padding: 92px 0 0; background: var(--sand); }
.approach-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 110px; align-items: start; }
.approach-copy h2 { max-width: 600px; }
.approach-copy > p:not(.section-kicker) { max-width: 480px; margin: 24px 0; color: var(--muted); }
.approach-list { display: grid; gap: 0; }
.approach-list article { display: grid; grid-template-columns: 54px 1fr; gap: 16px; padding: 0 0 27px; margin-bottom: 27px; border-bottom: 1px solid var(--line); }
.approach-list article:last-child { margin-bottom: 0; }
.approach-list article > span, .principles-grid article > span { color: var(--coral); font-weight: 850; letter-spacing: 0.09em; }
.approach-list h3 { margin: 0 0 6px; font-size: 1.1rem; }
.approach-list p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.approach-image-wrap { margin-top: 78px; }
.approach-image { width: 100%; max-height: 480px; object-fit: cover; object-position: center 68%; border-radius: 26px 26px 0 0; filter: saturate(0.82); }

.guide-section { padding: 90px 0; background: var(--paper); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.article-grid-wide { grid-template-columns: repeat(3, 1fr); }

.cta-band { background: var(--gold); color: var(--ink); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 72px 0; }
.cta-band .section-kicker { color: var(--ink); opacity: 0.62; }
.cta-band h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.cta-band p:last-child { margin: 15px 0 0; color: rgba(16,43,43,0.72); }

.page-hero { position: relative; overflow: hidden; padding: 100px 0 112px; background: var(--ink); color: var(--white); }
.page-hero::after { content: ""; position: absolute; right: 10%; bottom: -140px; width: 320px; height: 320px; border-radius: 50%; border: 60px solid rgba(243,201,105,0.18); }
.page-hero h1 { max-width: 800px; color: var(--white); }
.page-lede { max-width: 670px; margin: 28px 0 0; color: rgba(255,255,255,0.72); font-size: 1.12rem; }
.content-section, .directory-section, .contact-intro, .article-detail { padding: 88px 0; background: var(--cream); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 80px; align-items: start; }
.content-grid h2 { max-width: 620px; }
.content-grid p:not(.section-kicker) { max-width: 670px; color: var(--muted); }
.content-grid h3, .article-detail h3 { margin: 38px 0 8px; font-size: 1.15rem; }
.note-card { padding: 27px; border-radius: 20px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.note-card .eyebrow { color: var(--gold); }
.note-card p { margin: 0; color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.note-card ul { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.note-card li { position: relative; padding-left: 22px; color: rgba(255,255,255,0.77); font-size: 0.88rem; }
.note-card li::before { content: ""; position: absolute; left: 0; top: 0.56em; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.note-card .text-link { color: var(--lime); }
.related-section { padding: 82px 0 90px; background: var(--paper); }
.related-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.related-links a { display: flex; justify-content: space-between; gap: 10px; padding: 18px; border: 1px solid var(--line); border-radius: 15px; font-size: 0.82rem; font-weight: 800; }
.related-links a:hover { border-color: var(--coral); background: var(--cream); }

.directory-section { background: var(--paper); }
.directory-grid { display: grid; gap: 10px; }
.directory-card { display: grid; grid-template-columns: 55px 1fr 30px; align-items: center; gap: 15px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--cream); transition: 180ms ease; }
.directory-card:hover { transform: translateX(4px); border-color: var(--coral); background: var(--white); }
.directory-card > span { color: var(--coral); font-size: 0.76rem; font-weight: 850; }
.directory-card h3 { margin: 0; font-size: 1.05rem; }
.directory-card p { margin: 3px 0 0; color: var(--muted); font-size: 0.82rem; }
.directory-card b { color: var(--coral); text-align: right; }
.form-section { padding: 90px 0; background: var(--sand); }
.form-section-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 470px); gap: 90px; align-items: start; }
.form-section-grid > div { padding-top: 35px; }
.form-section-grid h2 { max-width: 620px; }
.form-section-grid > div > p:not(.section-kicker) { max-width: 520px; margin: 24px 0 0; color: var(--muted); }

.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 60px; }
.principles-grid article { padding: 21px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.principles-grid h3 { margin: 27px 0 8px; font-size: 1.05rem; }
.principles-grid p { margin: 0; color: var(--muted); font-size: 0.84rem; }
.contact-intro { background: var(--paper); }
.contact-intro h2 { max-width: 640px; }
.contact-intro p:not(.section-kicker) { max-width: 650px; color: var(--muted); }
.article-detail { background: var(--paper); }
.article-detail h2 { max-width: 760px; }
.article-detail p:not(.section-kicker) { max-width: 700px; color: var(--muted); font-size: 1.04rem; }
.article-callout { max-width: 700px; margin: 36px 0 8px; padding: 22px; border-left: 5px solid var(--coral); background: var(--cream); color: var(--muted); }
.article-callout strong { color: var(--ink); }
.faq-section { padding: 86px 0; background: var(--paper); }
.faq-list { margin-top: 35px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; list-style: none; font-size: 1.02rem; font-weight: 800; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--coral); font-size: 1.4rem; font-weight: 400; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; margin: -5px 0 23px; color: var(--muted); }

.site-footer { background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.7fr 0.8fr; gap: 70px; padding: 70px 0 58px; }
.footer-brand { margin-bottom: 20px; }
.footer-grid > div:first-child > p { max-width: 420px; color: rgba(255,255,255,0.6); font-size: 0.84rem; }
.footer-grid > div > a:not(.brand) { display: block; width: fit-content; margin: 12px 0; color: rgba(255,255,255,0.69); font-size: 0.83rem; }
.footer-grid > div > a:not(.brand):hover { color: var(--lime); }
.footer-grid > div > p:not(.footer-label) { margin: 0; color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.footer-label { margin-bottom: 18px; color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0 24px; border-top: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.46); font-size: 0.7rem; }

@media (max-width: 980px) {
  .hero-grid, .form-section-grid { grid-template-columns: 1fr; gap: 42px; }
  .home-hero { min-height: auto; }
  .hero-grid { padding: 80px 0 120px; }
  .hero-copy { max-width: 760px; }
  .callback-card { max-width: 560px; }
  .intro-strip-inner { grid-template-columns: 1fr 1.35fr; }
  .intro-strip-inner > p:last-child { grid-column: 2; }
  .services-grid, .locations-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: 1fr; gap: 50px; }
  .content-grid { grid-template-columns: 1fr; gap: 38px; }
  .note-card { max-width: 500px; }
  .related-links { grid-template-columns: repeat(2, 1fr); }
  .form-section-grid > div { padding-top: 0; }
}

@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 34px)); }
  .utility-inner { align-items: flex-start; flex-direction: column; gap: 3px; padding: 9px 0; }
  .utility-note { display: none; }
  .nav { min-height: 72px; gap: 14px; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 2px; padding: 12px 17px 16px; background: var(--ink); border-top: 1px solid rgba(255,255,255,0.12); box-shadow: 0 22px 30px rgba(0,0,0,0.2); }
  .nav-links[data-open="true"] { display: flex; }
  .nav-links a { border-radius: 9px; }
  .nav-cta { margin-left: auto; padding: 10px 12px; font-size: 0.68rem; }
  .nav-cta span { display: none; }
  .brand-mark { width: 36px; height: 36px; padding: 7px; }
  .brand-name strong { font-size: 0.88rem; }
  .brand-name small { font-size: 0.56rem; }
  .hero-grid { padding: 62px 0 102px; }
  .hero-copy h1, .page-hero h1 { font-size: clamp(3.25rem, 16vw, 5rem); }
  .hero-lede { margin-top: 25px; font-size: 1rem; }
  .hero-proof { align-items: flex-start; flex-direction: column; gap: 7px; }
  .proof-divider { display: none; }
  .callback-card { padding: 23px; border-radius: 20px; }
  .callback-title { font-size: 2.3rem; }
  .intro-strip-inner { display: block; padding: 62px 0; }
  .intro-strip h2 { margin: 17px 0 20px; }
  .services-section, .locations-section, .guide-section, .content-section, .directory-section, .contact-intro, .article-detail { padding: 66px 0; }
  .services-grid, .locations-grid, .article-grid, .principles-grid, .related-links { grid-template-columns: 1fr; }
  .service-card, .location-card, .article-card { min-height: 0; }
  .service-card h3 { margin-top: 26px; }
  .approach-section { padding-top: 68px; }
  .approach-image-wrap { margin-top: 55px; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; padding: 58px 0; }
  .page-hero { padding: 72px 0 80px; }
  .content-grid { gap: 28px; }
  .related-section, .form-section, .faq-section { padding: 66px 0; }
  .directory-card { grid-template-columns: 40px 1fr 24px; padding: 16px; }
  .form-section-grid { gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding: 58px 0 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
