
:root {
  --ink: #14201e;
  --evergreen: #043f36;
  --green: #078a72;
  --green-2: #076554;
  --sage: #bfe8d0;
  --sage-soft: #e5f6ed;
  --ivory: #fff4e8;
  --ivory-2: #fffaf3;
  --copper: #f06c32;
  --copper-strong: #ad3f18;
  --copper-soft: #ffd9c4;
  --lime: #8fce3f;
  --lime-soft: #edf8dc;
  --sun: #f6c85f;
  --white: #fff;
  --line: rgba(7,63,54,.16);
  --shadow-sm: 0 12px 34px rgba(7,63,54,.10);
  --shadow-md: 0 24px 64px rgba(7,63,54,.16);
  --shadow-lg: 0 34px 100px rgba(7,63,54,.22);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --max: 1180px;
  --header-h: 88px;
  --sans: Inter, Aptos, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory-2);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--green); text-underline-offset: .18em; }
a:hover { color: var(--evergreen); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 {
  margin: 0 0 .55em;
  color: var(--evergreen);
  line-height: 1.1;
  letter-spacing: -.025em;
}
h1 { font-family: var(--serif); font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 700; }
h2 { font-family: var(--serif); font-size: clamp(2.1rem, 4.5vw, 3.7rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1.25rem; }
ul, ol { padding-left: 1.25rem; }
strong { color: var(--evergreen); }
small { line-height: 1.45; }
::selection { background: var(--sage); color: var(--evergreen); }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: clamp(78px, 9vw, 126px) 0; position: relative; }
.section--compact { padding: clamp(54px, 7vw, 86px) 0; }
.section--green { background: linear-gradient(135deg, var(--evergreen), var(--green-2)); color: rgba(255,255,255,.88); }
.section--green h2, .section--green h3, .section--green strong { color: var(--white); }
.section--sage { background: var(--sage-soft); }
.section--ivory { background: var(--ivory); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--copper); }
.section--green .eyebrow { color: var(--sage); }
.lede { max-width: 740px; font-size: clamp(1.12rem, 2vw, 1.35rem); color: #4c5754; }
.section--green .lede { color: rgba(255,255,255,.78); }
.kicker { color: var(--green); font-weight: 800; letter-spacing: .02em; }
.muted { color: #65706d; }
.text-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 800; text-decoration: none;
}
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 9999; padding: 12px 16px;
  background: var(--evergreen); color: #fff; border-radius: 8px; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.utility-bar {
  background: linear-gradient(90deg, var(--evergreen), var(--green)); color: rgba(255,255,255,.94); font-size: .85rem;
}
.utility-bar .container { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-bar a { color: #fff; text-decoration: none; font-weight: 700; }
.utility-list { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,250,243,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo { flex: 0 0 auto; text-decoration: none; }
.logo img { width: min(430px, 36vw); min-width: 245px; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a, .nav-dropdown > button {
  color: var(--evergreen); text-decoration: none; background: none; border: 0;
  padding: 13px 11px; font-size: .93rem; font-weight: 750; border-radius: 10px;
}
.main-nav > a:hover, .nav-dropdown > button:hover, .main-nav > a[aria-current="page"] {
  background: linear-gradient(135deg, var(--sage-soft), var(--lime-soft)); color: var(--green);
}
.nav-dropdown { position: relative; }
.nav-dropdown > button { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown > button::after { content: "⌄"; font-size: .9em; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 265px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: .2s ease;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 12px; border-radius: 9px; color: var(--evergreen);
  text-decoration: none; font-size: .92rem; font-weight: 680;
}
.dropdown-menu a:hover { background: var(--sage-soft); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; color: var(--evergreen); border-radius: 12px;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 12px 22px; border-radius: 12px; border: 1px solid transparent;
  text-decoration: none; font-weight: 800; line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--green), var(--green-2)); color: #fff; box-shadow: 0 14px 30px rgba(12,124,104,.28), inset 0 1px 0 rgba(255,255,255,.18); }
.btn--primary:hover { background: linear-gradient(135deg, var(--evergreen), var(--green)); color: #fff; box-shadow: 0 18px 38px rgba(7,63,54,.32); }
.btn--secondary { background: transparent; border-color: var(--green); color: var(--evergreen); }
.btn--secondary:hover { background: linear-gradient(135deg, var(--sage-soft), var(--lime-soft)); color: var(--evergreen); border-color: var(--lime); }
.btn--light { background: #fff; color: var(--evergreen); }
.btn--light:hover { background: var(--sage-soft); color: var(--evergreen); }
.btn--ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn--small { min-height: 42px; padding: 10px 16px; font-size: .9rem; }
.btn svg { width: 18px; height: 18px; }

.hero {
  overflow: hidden;
  padding: clamp(62px, 7vw, 105px) 0 clamp(82px, 9vw, 125px);
  background:
    radial-gradient(circle at 92% 8%, rgba(232,111,53,.24), transparent 27%),
    radial-gradient(circle at 7% 90%, rgba(140,198,63,.25), transparent 30%),
    radial-gradient(circle at 48% 18%, rgba(246,200,95,.16), transparent 24%),
    linear-gradient(135deg, var(--ivory-2), #fff3e5 58%, #eef8e7);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: clamp(44px, 7vw, 90px); }
.hero h1 { max-width: 800px; }
.hero h1 em { color: var(--green); font-style: normal; background: linear-gradient(90deg, var(--green), #5cae3b); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-copy { max-width: 720px; font-size: clamp(1.1rem, 1.9vw, 1.32rem); color: #4c5754; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 34px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--evergreen); font-size: .94rem; font-weight: 750; }
.trust-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--sage-soft), var(--lime-soft)); color: var(--green); }
.hero-art { position: relative; }
.hero-art::before {
  content: ""; position: absolute; inset: 9% -5% -5% 9%; border-radius: 46px;
  border: 2px solid rgba(232,111,53,.38); transform: rotate(3deg); z-index: -1;
}
.hero-art img { width: 100%; filter: drop-shadow(0 32px 44px rgba(7,63,54,.18)); }

.trust-strip { position: relative; margin-top: -36px; z-index: 3; }
.trust-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); background: #fff;
  border: 1px solid var(--line); border-top: 4px solid var(--lime); border-radius: 24px; box-shadow: var(--shadow-md);
  overflow: hidden;
}
.trust-stat { padding: 28px; text-align: center; border-right: 1px solid var(--line); }
.trust-stat:last-child { border-right: 0; }
.trust-stat strong { display: block; font-family: var(--serif); font-size: 1.85rem; }
.trust-stat span { color: #65706d; font-size: .9rem; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(46px, 8vw, 100px); align-items: center; }
.split > * { min-width: 0; }
.split--reverse > :first-child { order: 2; }
.media-frame { position: relative; }
.media-frame img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.media-frame::after {
  content: ""; position: absolute; width: 42%; height: 42%; right: -4%; bottom: -5%;
  border-radius: 28px; border: 2px solid var(--copper); z-index: -1; opacity: .5;
}
.content-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 14px; }
.content-list li { position: relative; padding-left: 34px; }
.content-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 23px; height: 23px; display: grid;
  place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--sage-soft), var(--lime-soft)); color: var(--green); font-size: .78rem; font-weight: 900;
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(232,111,53,.38); }
.card-icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px;
  background: linear-gradient(135deg, var(--sage-soft), var(--lime-soft)); color: var(--green); margin-bottom: 20px; font-weight: 900; font-size: 1.25rem;
}
.card p { color: #596360; font-size: .98rem; }
.card .text-link { margin-top: 6px; }
.card--dark { background: linear-gradient(145deg, var(--evergreen), var(--green-2)); color: rgba(255,255,255,.84); }
.card--dark h3, .card--dark strong { color: #fff; }
.card--dark p { color: rgba(255,255,255,.72); }
.card--accent { background: linear-gradient(145deg, var(--sage-soft), var(--lime-soft)); }
.card-number { font-family: var(--serif); font-size: 2.8rem; color: var(--copper); line-height: 1; margin-bottom: 16px; }

.pathway-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 38px; }
.pathway {
  min-height: 245px; display: flex; flex-direction: column; justify-content: flex-end; position: relative;
  padding: 28px; color: #fff; text-decoration: none; background: var(--evergreen); border-radius: 24px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.pathway::before {
  content: ""; position: absolute; width: 160px; height: 160px; border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%; top: -58px; right: -48px; transition: transform .3s ease;
}
.pathway:hover { color: #fff; transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pathway:hover::before { transform: scale(1.15); }
.pathway:nth-child(2) { background: var(--green); }
.pathway:nth-child(3) { background: #2d7565; }
.pathway:nth-child(4) { background: var(--copper-strong); }
.pathway span { color: rgba(255,255,255,.68); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.pathway strong { color: #fff; font-size: 1.35rem; margin-top: 6px; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 42px; }
.step { position: relative; padding: 34px 30px; border-top: 1px solid var(--line); }
.step::before {
  counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 24px;
  font-family: var(--serif); color: var(--copper); font-size: 2rem;
}
.step:not(:last-child)::after { content: "→"; position: absolute; right: -16px; top: 34px; color: var(--sage); font-size: 1.6rem; }

.page-hero {
  padding: clamp(72px, 8vw, 118px) 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(232,111,53,.22), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(140,198,63,.18), transparent 28%),
    linear-gradient(150deg, var(--ivory-2), var(--sage-soft));
  border-bottom: 1px solid var(--line);
}
.page-hero-grid { display: grid; grid-template-columns: 1.08fr .72fr; gap: 70px; align-items: center; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
.page-hero-art img { border-radius: 32px; box-shadow: var(--shadow-md); }

.attorney-hero-art { overflow: hidden; border-radius: 32px; box-shadow: var(--shadow-md); background: #e9dfd3; }
.attorney-hero-art img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center; border-radius: 0; box-shadow: none; }

.faq-hero-art { overflow: hidden; border-radius: 32px; box-shadow: var(--shadow-md); background: #f4f1ec; }
.faq-hero-art img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center; border-radius: 0; box-shadow: none; }
.breadcrumbs { margin-bottom: 24px; color: #65706d; font-size: .86rem; }
.breadcrumbs a { color: var(--green); text-decoration: none; }
.breadcrumbs span { margin: 0 7px; opacity: .55; }

.prose { font-size: 1.06rem; }
.prose h2 { margin-top: 2.1em; font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.prose h3 { margin-top: 1.7em; }
.prose p, .prose ul, .prose ol { max-width: 760px; }
.prose blockquote {
  margin: 36px 0; padding: 28px 32px; background: linear-gradient(135deg, var(--ivory), var(--copper-soft)); border-left: 4px solid var(--copper);
  border-radius: 0 18px 18px 0; font-family: var(--serif); font-size: 1.28rem; color: var(--evergreen);
}
.prose .callout { margin: 38px 0; padding: 28px; border-radius: 20px; background: var(--ivory); border: 1px solid var(--line); }
.prose .alert { border-left: 5px solid #9f3d35; background: #fff3f1; }

.article-feature-image { margin: 32px 0 40px; max-width: 860px; }
.article-feature-image img { display: block; width: 100%; height: auto; border-radius: 24px; box-shadow: var(--shadow-md); }
.article-feature-image figcaption { margin-top: 12px; color: #64706d; font-size: .92rem; line-height: 1.6; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 72px; align-items: start; }
.sidebar { position: sticky; top: calc(var(--header-h) + 30px); }
.sidebar-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 25px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.sidebar-card ul { margin: 0; padding-left: 18px; }
.sidebar-card li + li { margin-top: 8px; }
.meta-row { display: flex; gap: 16px; flex-wrap: wrap; color: #66716e; font-size: .9rem; margin: 20px 0; }
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0; }
.tag { padding: 5px 11px; border-radius: 999px; background: linear-gradient(135deg, var(--sage-soft), var(--lime-soft)); color: var(--green); font-size: .78rem; font-weight: 750; }

.blog-controls { display: grid; grid-template-columns: 1fr auto; gap: 14px; margin: 32px 0 42px; }
.search-field {
  width: 100%; min-height: 52px; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--line); background: #fff;
}
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter-btn {
  border: 1px solid var(--line); background: #fff; color: var(--evergreen); border-radius: 999px;
  padding: 9px 14px; font-weight: 700; font-size: .86rem;
}
.filter-btn.is-active, .filter-btn:hover { background: var(--evergreen); color: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  display: flex; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; box-shadow: var(--shadow-sm); transition: .22s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb {
  min-height: 185px; display: grid; place-items: center; position: relative; overflow: hidden;
  background: linear-gradient(140deg,var(--sage-soft),var(--lime-soft) 48%,var(--copper-soft));
}
.blog-thumb::after { content: ""; width: 125px; height: 125px; border: 2px solid rgba(23,107,97,.23); border-radius: 50%; }
.blog-thumb span { position: absolute; font-family: var(--serif); color: var(--green); font-size: 2.5rem; }
.blog-card-body { display: flex; flex-direction: column; flex: 1; padding: 26px; }
.blog-card h3 { font-family: var(--serif); font-size: 1.55rem; }
.blog-card p { color: #596360; font-size: .94rem; }
.blog-card .text-link { margin-top: auto; }
.no-results { display: none; padding: 30px; background: var(--sage-soft); border-radius: 16px; }

.quote {
  position: relative; padding: 36px; background: #fff; border: 1px solid var(--line);
  border-radius: 24px; box-shadow: var(--shadow-sm);
}
.quote::before { content: "“"; position: absolute; top: 12px; right: 24px; font-family: var(--serif); font-size: 5rem; color: var(--sage); line-height: 1; }
.quote p { position: relative; font-family: var(--serif); font-size: 1.2rem; color: var(--evergreen); }
.quote cite { font-style: normal; font-weight: 800; color: var(--green); }

.faq-list { display: grid; gap: 12px; margin-top: 34px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.faq-button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 22px; border: 0; background: #fff; text-align: left; color: var(--evergreen); font-weight: 800;
}
.faq-button::after { content: "+"; flex: 0 0 auto; font-size: 1.35rem; color: var(--copper); }
.faq-button[aria-expanded="true"]::after { content: "−"; }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-panel > div { overflow: hidden; }
.faq-panel p { padding: 0 22px 22px; margin: 0; color: #596360; }
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }

.cta-band {
  position: relative; overflow: hidden; background: linear-gradient(135deg, var(--evergreen), var(--green) 72%, #4a9c45); color: #fff; border-radius: 34px;
  padding: clamp(36px, 6vw, 68px); box-shadow: var(--shadow-lg);
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
}
.cta-band::before { width: 260px; height: 260px; right: -70px; top: -110px; }
.cta-band::after { width: 170px; height: 170px; right: 100px; bottom: -100px; }
.cta-band h2 { color: #fff; max-width: 700px; }
.cta-band p { max-width: 650px; color: rgba(255,255,255,.75); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 25px; }

.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.info-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px; }
.info-card h3 { margin-bottom: 12px; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 40px; align-items: start; }
.contact-panel { background: linear-gradient(145deg, var(--evergreen), var(--green)); color: rgba(255,255,255,.84); border-radius: 28px; padding: 36px; box-shadow: var(--shadow-md); }
.contact-panel h2, .contact-panel h3, .contact-panel strong { color: #fff; }
.contact-panel a { color: #fff; }
.contact-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 20px; }
.contact-list li { padding-left: 0; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: clamp(26px,5vw,46px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
label { color: var(--evergreen); font-size: .92rem; font-weight: 800; }
input, select, textarea {
  width: 100%; border: 1px solid #bfcac6; background: #fff; color: var(--ink);
  border-radius: 11px; padding: 13px 14px; min-height: 50px; transition: border-color .2s, box-shadow .2s;
}
textarea { min-height: 135px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(12,124,104,.16); }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #9f3d35; }
.field-error { min-height: 1.2em; color: #8f302a; font-size: .8rem; }
.form-status { display: none; padding: 14px 16px; margin: 18px 0; border-radius: 10px; font-weight: 700; }
.form-status.is-success { display: block; background: #e2f1e9; color: #155c43; }
.form-status.is-error { display: block; background: #fff0ef; color: #8f302a; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.privacy-note { color: #65706d; font-size: .82rem; }

.site-footer { background: linear-gradient(145deg, #052f29, #0a5447); color: rgba(255,255,255,.76); padding-top: 74px; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1.1fr; gap: 42px; padding-bottom: 54px; }
.footer-brand img { width: 310px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 360px; margin-top: 22px; }
.site-footer h3 { color: #fff; font-size: 1rem; letter-spacing: .05em; text-transform: uppercase; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0 92px;
  display: flex; justify-content: space-between; gap: 20px; font-size: .84rem;
}
.mobile-action-bar {
  display: none; position: fixed; z-index: 1100; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.97); border-top: 1px solid var(--line); padding: 9px 12px max(9px, env(safe-area-inset-bottom));
  box-shadow: 0 -12px 34px rgba(7,63,54,.16);
}
.mobile-action-bar a { flex: 1; min-height: 46px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }


/* Vibrant premium color accents */
.card-grid .card:nth-child(3n+2) .card-icon { background: var(--copper-soft); color: var(--copper-strong); }
.card-grid .card:nth-child(3n+3) .card-icon { background: var(--lime-soft); color: #39731d; }
.card-number, .step::before { color: var(--copper); }
.eyebrow::before { width: 34px; height: 3px; border-radius: 99px; background: linear-gradient(90deg, var(--copper), var(--sun)); }
.text-link { color: var(--green-2); }
.text-link:hover { color: var(--copper-strong); }
.trust-stat strong { color: var(--evergreen); }
.trust-stat:nth-child(2) strong { color: var(--green); }
.trust-stat:nth-child(3) strong { color: var(--copper-strong); }
.trust-stat:nth-child(4) strong { color: #39731d; }
.blog-card:hover { border-color: rgba(140,198,63,.65); }
.filter-btn.is-active, .filter-btn:hover { background: linear-gradient(135deg, var(--evergreen), var(--green)); color: #fff; border-color: transparent; }
.faq-button::after { color: var(--copper); }
::selection { background: var(--sun); color: var(--evergreen); }

@media (max-width: 1100px) {
  .logo img { width: 280px; min-width: 230px; }
  .main-nav > a, .nav-dropdown > button { padding-inline: 8px; font-size: .88rem; }
  .nav-actions .btn { display: none; }
  .pathway-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  :root { --header-h: 74px; }
  .utility-bar { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    display: none; align-items: stretch; flex-direction: column; gap: 4px; padding: 18px 20px 28px;
    background: var(--ivory-2); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a, .nav-dropdown > button { width: 100%; text-align: left; padding: 13px 14px; font-size: 1rem; }
  .dropdown-menu { position: static; display: none; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin: 2px 0 8px 14px; }
  .nav-dropdown.is-open .dropdown-menu { display: block; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.is-open:hover .dropdown-menu { display: block; }
  .hero-grid, .split, .page-hero-grid, .contact-grid, .article-layout { grid-template-columns: 1fr; }
  .hero-art { max-width: 660px; margin-inline: auto; }
  .page-hero-art { max-width: 570px; }
  .split--reverse > :first-child { order: initial; }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
  body { font-size: 16px; padding-bottom: 70px; }
  .container, .container--narrow { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 72px; }
  .logo img { width: 238px; min-width: 0; }
  .hero { padding-top: 44px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; gap: 12px; }
  .trust-strip { margin-top: -20px; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-stat:nth-child(2) { border-right: 0; }
  .trust-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .pathway-grid, .blog-grid, .info-grid, .info-grid--two { grid-template-columns: minmax(0, 1fr); }
  .pathway { min-height: 190px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .blog-controls { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; padding-bottom: 22px; }
  .mobile-action-bar { display: flex; gap: 9px; }
  .page-hero { padding-block: 54px; }
  .section { padding-block: 72px; }
}


/* Premium conversion polish — v2 */
.utility-bar { position: relative; }
.utility-bar::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--sun), var(--copper));
}
.hero { isolation: isolate; }
.hero::before,
.hero::after {
  content: ""; position: absolute; z-index: -1; border-radius: 999px; pointer-events: none;
}
.hero::before {
  width: 320px; height: 320px; left: -150px; top: 12%;
  border: 1px solid rgba(12,124,104,.16); box-shadow: 0 0 0 38px rgba(140,198,63,.04), 0 0 0 78px rgba(232,111,53,.035);
}
.hero::after {
  width: 210px; height: 210px; right: 3%; bottom: -95px;
  border: 1px solid rgba(232,111,53,.18); box-shadow: 0 0 0 32px rgba(246,200,95,.05);
}
.hero-availability {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; padding: 8px 13px;
  color: var(--evergreen); background: rgba(255,255,255,.76); border: 1px solid rgba(7,138,114,.22);
  border-radius: 999px; box-shadow: 0 8px 24px rgba(7,63,54,.08); font-size: .82rem; font-weight: 800;
}
.availability-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 5px rgba(143,206,63,.16);
}
.hero-action-note { margin: -18px 0 28px; color: #66716e; font-size: .86rem; font-weight: 650; }
.hero-art--enhanced { min-height: 540px; display: grid; place-items: center; }
.hero-art-card {
  position: relative; width: 100%; padding: clamp(14px, 2vw, 24px); border-radius: 44px;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,244,232,.76));
  border: 1px solid rgba(255,255,255,.95); box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.hero-art-card::before {
  content: ""; position: absolute; inset: 12px; border-radius: 34px; border: 1px solid rgba(7,138,114,.16); pointer-events: none;
}
.hero-art--enhanced img { filter: none; transform: rotate(-1.2deg); }
.hero-art--enhanced::before { inset: 6% -4% -5% 8%; border-width: 3px; }
.floating-proof {
  position: absolute; z-index: 2; display: grid; gap: 1px; min-width: 168px; padding: 14px 18px;
  background: rgba(255,255,255,.94); border: 1px solid rgba(7,63,54,.12); border-radius: 16px;
  box-shadow: 0 18px 40px rgba(7,63,54,.16); backdrop-filter: blur(12px);
}
.floating-proof strong { font-family: var(--serif); font-size: 1.25rem; line-height: 1.1; }
.floating-proof span { color: #66716e; font-size: .76rem; font-weight: 700; }
.floating-proof--top { top: 7%; right: -5%; }
.floating-proof--bottom { left: -6%; bottom: 10%; }
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.22), transparent 72%);
  transform: translateX(-140%); transition: transform .55s ease;
}
.btn--primary:hover::after { transform: translateX(140%); }
.btn--secondary { background: rgba(255,255,255,.52); }
.trust-strip-inner { position: relative; }
.trust-strip-inner::before {
  content: ""; position: absolute; left: 0; right: 0; top: -4px; height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--green), var(--sun), var(--copper));
}
.card { overflow: hidden; }
.card::after {
  content: ""; position: absolute; width: 95px; height: 95px; right: -48px; bottom: -48px;
  border-radius: 50%; background: rgba(143,206,63,.09); transition: transform .25s ease;
}
.card:hover::after { transform: scale(1.35); }
.visit-info-grid { margin: 28px 0; }
.booking-benefits { list-style: none; padding: 0; margin: 20px 0 26px; display: grid; gap: 9px; }
.booking-benefits li { position: relative; padding-left: 27px; color: rgba(255,255,255,.84); font-size: .93rem; }
.booking-benefits li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--lime); font-weight: 900;
}

@media (max-width: 1100px) {
  .floating-proof--top { right: 1%; }
  .floating-proof--bottom { left: 1%; }
}
@media (max-width: 900px) {
  .hero-art--enhanced { min-height: auto; padding: 36px 0 12px; }
  .floating-proof--top { right: 2%; top: 8%; }
  .floating-proof--bottom { left: 2%; bottom: 6%; }
}
@media (max-width: 680px) {
  .hero-availability { font-size: .76rem; }
  .hero-art-card { border-radius: 30px; padding: 10px; }
  .hero-art-card::before { inset: 8px; border-radius: 24px; }
  .floating-proof { min-width: 136px; padding: 11px 13px; }
  .floating-proof strong { font-size: 1.05rem; }
  .floating-proof span { font-size: .68rem; }
  .floating-proof--top { right: 0; top: 5%; }
  .floating-proof--bottom { left: 0; bottom: 4%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media print {
  .utility-bar,.site-header,.mobile-action-bar,.site-footer,.cta-band,.btn { display:none!important; }
  body { background:#fff; color:#000; font-size:12pt; }
  .section,.page-hero { padding:24px 0; }
  a { color:#000; text-decoration:none; }
}


/* Service image cards */
.service-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 30px;
}
.service-detail-grid .service-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.service-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sage-soft);
  border-bottom: 1px solid var(--line);
}
.service-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}
.service-card:hover .service-card-media img { transform: scale(1.035); }
.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}
.service-card-body h3 { margin-bottom: 12px; }
.service-card-body p {
  flex: 1;
  margin-bottom: 18px;
  line-height: 1.72;
}
.service-card-body .text-link { margin-top: auto; }
.service-card--wide { grid-column: 1 / -1; }
@media (min-width: 901px) {
  .service-card--wide {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .service-card--wide .service-card-media {
    aspect-ratio: auto;
    min-height: 100%;
  }
}
@media (max-width: 680px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 22px; }
  .service-card-body { padding: 24px; }
  .service-card-media { aspect-ratio: 1 / 1; }
}


/* About page text-only layout */
.page-hero-copy { max-width: 860px; }
.about-bio-copy { max-width: 920px; }
