:root {
  --green-950: #17382c;
  --green-900: #214a3a;
  --green-800: #2e6a53;
  --green-700: #3d7c62;
  --green-100: #e8f2ed;
  --sage: #a8bba6;
  --cream: #f8f4ea;
  --sand: #e9ddca;
  --gold: #c99a4d;
  --ink: #1e2924;
  --muted: #65716b;
  --white: #fff;
  --line: rgba(30, 41, 36, .12);
  --shadow: 0 22px 60px rgba(24, 55, 43, .14);
  --shadow-soft: 0 10px 32px rgba(24, 55, 43, .09);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
html.font-large { font-size: 18px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
address { font-style: normal; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999;
  padding: .7rem 1rem; color: #fff; background: var(--green-950); border-radius: 10px;
}
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.site-shell { overflow: clip; }

.topbar { background: var(--green-950); color: rgba(255,255,255,.9); font-size: .88rem; }
.topbar__inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar__contact { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar__tools { display: flex; gap: .4rem; }
.tool-button {
  min-width: 32px; height: 28px; padding: 0 .45rem; border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px; color: #fff; background: transparent; cursor: pointer;
}
.tool-button:hover, .tool-button[aria-pressed="true"] { background: #fff; color: var(--green-950); }

.site-header {
  position: sticky; top: 0; z-index: 1000; height: var(--header-h);
  background: rgba(255,255,255,.94); border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px); transition: box-shadow .25s, border-color .25s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(23,56,44,.08); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; min-width: max-content; }
.brand__mark {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%;
  background: var(--green-100); box-shadow: inset 0 0 0 1px rgba(46,106,83,.1);
}
.brand__mark svg, .brand__mark img { width: 33px; height: 33px; object-fit: contain; fill: var(--green-800); }
.brand__mark svg circle { fill: var(--gold); }
.brand__leaf { fill: none; stroke: var(--green-700); stroke-width: 4; stroke-linecap: round; }
.brand__text { display: grid; line-height: 1.15; }
.brand__text strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.52rem; color: var(--green-950); letter-spacing: -.02em; }
.brand__text small { margin-top: .18rem; color: var(--muted); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 1.05rem; font-size: .94rem; font-weight: 650; }
.nav-item { position: relative; }
.nav-item > a { position: relative; display: inline-flex; align-items: center; gap: .25rem; text-decoration: none; padding: .8rem .1rem; }
.nav-item > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .35rem; height: 2px; background: var(--green-700);
  transform: scaleX(0); transform-origin: center; transition: transform .2s;
}
.nav-item > a:hover::after, .nav-item > a.is-active::after { transform: scaleX(1); }
.nav-item > a.is-active { color: var(--green-800); }
.nav-caret { font-size: .72rem; }
.nav-submenu { position: absolute; left: -.8rem; top: calc(100% - .2rem); min-width: 220px; padding: .55rem; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s; }
.nav-submenu a { display: block; padding: .65rem .75rem; border-radius: 10px; color: var(--ink); text-decoration: none; white-space: nowrap; }
.nav-submenu a:hover { color: var(--green-900); background: var(--green-100); }
.nav-item:hover .nav-submenu, .nav-item:focus-within .nav-submenu { opacity: 1; visibility: visible; transform: none; }
.nav-toggle { display: none; align-items: center; gap: .6rem; background: transparent; border: 0; color: var(--green-950); font-weight: 700; cursor: pointer; }
.nav-toggle__bars { display: grid; gap: 4px; }
.nav-toggle__bars i { display: block; width: 23px; height: 2px; border-radius: 4px; background: currentColor; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .72rem 1.15rem; border: 1px solid transparent; border-radius: 999px;
  font-weight: 750; text-decoration: none; cursor: pointer; transition: transform .18s, box-shadow .18s, background .18s;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--green-800); box-shadow: 0 10px 24px rgba(46,106,83,.2); }
.button--primary:hover { background: var(--green-900); box-shadow: 0 14px 30px rgba(46,106,83,.28); }
.button--light { color: var(--green-950); background: #fff; box-shadow: var(--shadow-soft); }
.button--ghost { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.08); }
.button--outline { border-color: var(--green-800); color: var(--green-800); background: transparent; }
.button--small { min-height: 42px; padding: .58rem .95rem; font-size: .88rem; }
.button-row { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.text-link { display: inline-flex; gap: .45rem; align-items: center; color: var(--green-800); font-weight: 750; text-decoration: none; }
.text-link::after { content: "→"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }

.hero {
  position: relative; min-height: 690px; display: grid; align-items: center; color: #fff;
  background: var(--green-950); isolation: isolate;
}
.hero__background { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; z-index:-2; }

.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(15,42,32,.92) 0%, rgba(23,56,44,.74) 46%, rgba(23,56,44,.17) 76%, rgba(23,56,44,.05));
}
.hero__content { width: min(720px, 100%); padding: 6.5rem 0 7.5rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1rem; color: var(--green-800);
  font-size: .8rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.hero .eyebrow { color: #dce9df; }
.hero h1, .page-hero h1, .display-title {
  margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.04; letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(3.1rem, 7vw, 6.35rem); max-width: 720px; }
.hero h1 em { display: block; color: #d9e8db; font-style: italic; }
.hero__lead { max-width: 650px; margin: 1.45rem 0 2rem; color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero__meta { margin-top: 2.3rem; display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero__meta-item { display: grid; }
.hero__meta-item strong { font-size: 1.45rem; font-family: Georgia, serif; }
.hero__meta-item span { color: rgba(255,255,255,.72); font-size: .82rem; }
.hero__card {
  position: absolute; right: max(1rem, calc((100vw - var(--container))/2)); bottom: -48px; width: min(390px, calc(100% - 2rem));
  padding: 1.25rem; color: var(--ink); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero__card-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.hero__card h2 { margin: 0; font-size: 1rem; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #47a65e; box-shadow: 0 0 0 5px rgba(71,166,94,.13); }
.hero__card p { margin: .55rem 0 1rem; color: var(--muted); font-size: .9rem; }
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.quick-action { padding: .78rem; border-radius: 14px; background: var(--cream); text-decoration: none; font-size: .83rem; font-weight: 750; text-align: center; }
.quick-action:hover { background: var(--green-100); color: var(--green-900); }

.section { padding: 7.2rem 0; }
.section--compact { padding: 4.7rem 0; }
.section--cream { background: var(--cream); }
.section--green { color: #fff; background: var(--green-950); }
.section--soft { background: linear-gradient(180deg, #f3f7f4, #fff); }
.section-header { display: grid; grid-template-columns: 1fr minmax(280px, 520px); gap: 2rem; align-items: end; margin-bottom: 3rem; }
.section-header h2, .split-copy h2, .content-card h2, .cta-panel h2 {
  margin: 0; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.25rem, 4.4vw, 4rem); line-height: 1.08; font-weight: 500; letter-spacing: -.03em;
}
.section--green .section-header h2, .section--green .split-copy h2 { color: #fff; }
.section-header p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section--green .section-header p { color: rgba(255,255,255,.74); }

.trust-strip { padding: 5.8rem 0 3rem; background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.trust-item { padding: 1.4rem; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-item strong { display: block; color: var(--green-800); font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 500; line-height: 1; }
.trust-item span { display: block; margin-top: .55rem; color: var(--muted); font-size: .9rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card {
  position: relative; min-height: 360px; overflow: hidden; border-radius: var(--radius); color: #fff; box-shadow: var(--shadow-soft); isolation: isolate;
}
.service-card__background { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; z-index:-2; transition:transform .5s; }
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 26%, rgba(12,37,27,.92)); }
.service-card:hover .service-card__background { transform: scale(1.04); }
.service-card__content { position: absolute; inset: auto 0 0; padding: 1.7rem; }
.service-card h3 { margin: 0 0 .45rem; font-family: Georgia, serif; font-size: 1.75rem; font-weight: 500; }
.service-card p { margin: 0 0 1rem; color: rgba(255,255,255,.82); }
.service-card a { color: #fff; }

.split { display: grid; grid-template-columns: 1.06fr .94fr; gap: 4.5rem; align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; min-height: 470px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-media__badge {
  position: absolute; right: -18px; bottom: 24px; max-width: 230px; padding: 1rem 1.15rem; border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft);
}
.split-media__badge strong { display: block; color: var(--green-800); font-family: Georgia, serif; font-size: 1.5rem; }
.split-media__badge span { font-size: .82rem; color: var(--muted); }
.split-copy > p { color: var(--muted); font-size: 1.04rem; }
.check-list { padding: 0; margin: 1.5rem 0 2rem; list-style: none; display: grid; gap: .75rem; }
.check-list li { display: flex; align-items: flex-start; gap: .7rem; }
.check-list li::before { content: "✓"; display: grid; place-items: center; flex: 0 0 24px; height: 24px; border-radius: 50%; color: #fff; background: var(--green-800); font-size: .75rem; font-weight: 900; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.feature-card { padding: 1.45rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--green-900); background: var(--green-100); font-size: 1.35rem; }
.feature-card h3 { margin: 1rem 0 .4rem; color: var(--green-950); font-size: 1.05rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.quote-panel { padding: 3rem; border-radius: var(--radius-lg); color: #fff; background: var(--green-800); box-shadow: var(--shadow); }
.quote-panel blockquote { margin: 0; max-width: 880px; font-family: Georgia, serif; font-size: clamp(1.75rem, 3.3vw, 3.1rem); line-height: 1.25; }
.quote-panel cite { display: block; margin-top: 1.35rem; color: rgba(255,255,255,.76); font-style: normal; }

.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.event-card { padding: 1.55rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.event-date { display: inline-flex; align-items: center; gap: .45rem; margin-bottom: .9rem; color: var(--green-800); font-weight: 800; font-size: .83rem; }
.event-card h3 { margin: 0 0 .45rem; color: var(--green-950); font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; }
.event-card p { margin: 0 0 1rem; color: var(--muted); }

.cta-section { padding: 2rem 0 7rem; }
.cta-panel {
  position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius-lg); color: #fff;
  background: linear-gradient(120deg, var(--green-950), var(--green-800)); box-shadow: var(--shadow);
}
.cta-panel::after { content: ""; position: absolute; width: 360px; height: 360px; right: -90px; top: -170px; border: 70px solid rgba(255,255,255,.07); border-radius: 50%; }
.cta-panel h2 { position: relative; color: #fff; max-width: 750px; }
.cta-panel p { position: relative; max-width: 680px; color: rgba(255,255,255,.78); }
.cta-panel .button-row { position: relative; }

.page-hero {
  position: relative; min-height: 470px; display: grid; align-items: end; padding: 6rem 0 4.5rem; color: #fff; isolation: isolate;
  background: var(--green-950);
}
.page-hero__background { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; z-index:-2; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(16,43,33,.93), rgba(16,43,33,.45)); }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
.page-hero p { max-width: 680px; margin: 1rem 0 0; color: rgba(255,255,255,.86); font-size: 1.14rem; }
.breadcrumbs { display: flex; gap: .45rem; margin-bottom: 1.3rem; color: rgba(255,255,255,.72); font-size: .82rem; }
.breadcrumbs a { text-decoration: none; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 3rem; align-items: start; }
.content-card { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.content-card h2 { font-size: 2rem; }
.content-card h3 { color: var(--green-950); }
.content-card p, .content-card li { color: var(--muted); }
.sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 1rem; }
.info-card { padding: 1.35rem; border-radius: var(--radius); background: var(--cream); }
.info-card h2, .info-card h3 { margin-top: 0; color: var(--green-950); font-size: 1.05rem; }
.info-card p { color: var(--muted); }
.info-list { margin: 0; padding: 0; list-style: none; display: grid; gap: .7rem; }
.info-list li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .65rem; border-bottom: 1px solid rgba(30,41,36,.1); }
.info-list li:last-child { border: 0; padding-bottom: 0; }

.gallery-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-auto-rows: 240px; gap: .8rem; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.gallery-grid img:first-child { grid-row: span 2; }

.timeline { position: relative; display: grid; gap: 1rem; }
.timeline::before { content: ""; position: absolute; left: 22px; top: 20px; bottom: 20px; width: 2px; background: var(--sand); }
.timeline-item { position: relative; padding: 1.2rem 1.2rem 1.2rem 4.2rem; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.timeline-item::before { content: ""; position: absolute; left: 14px; top: 1.45rem; width: 18px; height: 18px; border: 5px solid #fff; border-radius: 50%; background: var(--green-800); box-shadow: 0 0 0 1px var(--line); }
.timeline-item strong { color: var(--green-800); }
.timeline-item p { margin: .25rem 0 0; color: var(--muted); }

.faq { display: grid; gap: .7rem; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.faq-button { width: 100%; display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; border: 0; text-align: left; color: var(--green-950); background: #fff; font-weight: 780; cursor: pointer; }
.faq-button::after { content: "+"; font-size: 1.4rem; font-weight: 400; }
.faq-button[aria-expanded="true"]::after { content: "−"; }
.faq-panel { padding: 0 1.2rem 1.15rem; color: var(--muted); }

.form-card { padding: clamp(1.4rem, 4vw, 2.4rem); border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: .35rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: var(--green-950); font-weight: 750; font-size: .88rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; min-height: 48px; padding: .75rem .85rem; border: 1px solid rgba(30,41,36,.22); border-radius: 12px; color: var(--ink); background: #fff;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 3px solid rgba(61,124,98,.2); border-color: var(--green-700); }
.form-field .is-invalid { border-color: #b43232; background: #fff7f7; }
.checkbox-field { display: flex; align-items: flex-start; gap: .7rem; font-size: .84rem; color: var(--muted); }
.checkbox-field input { margin-top: .3rem; }
.form-note { margin-top: 1rem; color: var(--muted); font-size: .82rem; }
.alert { padding: 1rem; border-radius: 12px; margin-bottom: 1rem; }
.alert--success { color: #184e2b; background: #e5f5e9; }
.alert--error { color: #7e2525; background: #fdeaea; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.contact-card h2 { margin: .8rem 0 .4rem; color: var(--green-950); font-size: 1.18rem; }
.contact-card p { margin: 0; color: var(--muted); }
.map-frame { width: 100%; min-height: 460px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-soft); }

.legal { max-width: 850px; }
.legal h1 { font-family: Georgia, serif; color: var(--green-950); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 500; }
.legal h2 { margin-top: 2.2rem; color: var(--green-950); }
.legal p, .legal li { color: var(--muted); }
.notice-box { padding: 1rem 1.2rem; border-left: 4px solid var(--gold); background: var(--cream); border-radius: 0 12px 12px 0; }

.site-footer { padding: 4.8rem 0 1.2rem; color: rgba(255,255,255,.78); background: var(--green-950); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr .8fr; gap: 2.2rem; }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text small { color: rgba(255,255,255,.58); }
.footer-brand p { max-width: 340px; }
.footer-title { margin: .35rem 0 1rem; color: #fff; font-size: .92rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-links { margin: 0; padding: 0; list-style: none; display: grid; gap: .6rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 1rem; }

.back-to-top {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 900; width: 46px; height: 46px; border: 0; border-radius: 50%;
  color: #fff; background: var(--green-800); box-shadow: var(--shadow-soft); cursor: pointer; opacity: 0; transform: translateY(10px); pointer-events: none; transition: .2s;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

.high-contrast {
  --green-950: #061b13; --green-900: #0a402a; --green-800: #075b36; --green-700: #087543;
  --green-100: #dff5e7; --cream: #fffdf5; --muted: #364039; --line: rgba(0,0,0,.3);
}
.high-contrast body { color: #000; }
.high-contrast .hero::after, .high-contrast .page-hero::after { background: rgba(0,0,0,.74); }

@media (max-width: 1080px) {
  :root { --header-h: 78px; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; top: calc(40px + var(--header-h)); left: 1rem; right: 1rem; max-height: calc(100vh - 140px); overflow-y: auto;
    display: grid; align-content: start; gap: .15rem; padding: 1rem; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow);
    opacity: 0; transform: translateY(-14px); pointer-events: none; transition: .2s;
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-item > a { width: 100%; padding: .8rem; border-radius: 10px; }
  .nav-item > a:hover, .nav-item > a.is-active { background: var(--green-100); }
  .nav-item > a::after { display: none; }
  .nav-submenu { position: static; min-width: 0; padding: .15rem 0 .3rem 1rem; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-submenu a { padding: .55rem .75rem; font-size: .88rem; }
  .nav-cta { margin-top: .6rem; }
  .split { gap: 2.5rem; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .topbar__contact a:last-child { display: none; }
  .hero { min-height: 720px; align-items: start; }
  .hero__content { padding: 5rem 0 11rem; }
  .hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .hero__card { left: 1rem; right: 1rem; bottom: -64px; width: auto; }
  .trust-strip { padding-top: 7rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; }
  .section { padding: 5.5rem 0; }
  .section-header { grid-template-columns: 1fr; gap: 1rem; }
  .card-grid, .events-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .split, .content-grid { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: initial; }
  .split-media__badge { right: 12px; }
  .sidebar { position: static; grid-row: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .gallery-grid img:first-child { grid-column: span 2; grid-row: auto; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 1.2rem), var(--container)); }
  .topbar__inner { min-height: 38px; }
  .topbar__contact { font-size: .8rem; }
  .brand__mark { width: 42px; height: 42px; }
  .brand__text strong { font-size: 1.3rem; }
  .brand__text small { font-size: .62rem; }
  .nav-toggle span:last-child { display: none; }
  .main-nav { top: calc(38px + var(--header-h)); left: .6rem; right: .6rem; }
  .hero__content { padding-top: 4rem; }
  .hero__lead { font-size: 1rem; }
  .hero__meta { gap: 1rem 1.7rem; }
  .hero__meta-item strong { font-size: 1.25rem; }
  .quick-actions { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .feature-grid, .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .split-media img { min-height: 340px; }
  .split-media__badge { position: static; margin: -35px 12px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img:first-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .button-row .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}


/* CMS integration while preserving the original template */
.admin-shortcut { display: inline-grid; place-items: center; text-decoration: none; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.public-form { display: block; }
.form-display-title { margin-bottom: .8rem; font-size: clamp(2rem,4vw,3.2rem); }
.form-card > p { color: var(--muted); }
.form-message { padding: 1rem; margin-bottom: 1rem; border-radius: 12px; }
.form-message--success { color: #184e2b; background: #e5f5e9; }
.form-message--error { color: #7e2525; background: #fdeaea; }
.map-image { object-fit: cover; }
.section--green .eyebrow { color: #dce9df; }
.section--green .feature-card { color: var(--ink); }
.section--green .text-link { color: #fff; }
.content-card .check-list { margin-bottom: 0; }
@media (max-width: 1080px) { .nav-item { width: 100%; } }
