:root {
  --green: #006b5d;
  --green-dark: #07564d;
  --green-deep: #063c36;
  --green-soft: #e9f3ef;
  --red: #f21f2b;
  --red-dark: #d81722;
  --ink: #10201d;
  --ink-soft: #42534f;
  --muted: #687773;
  --surface: #f7f8f5;
  --white: #ffffff;
  --line: rgba(16, 32, 29, .11);
  --shadow: 0 24px 70px rgba(7, 60, 54, .13);
  --shadow-soft: 0 18px 45px rgba(11, 47, 42, .08);
  --radius: 24px;
  --radius-lg: 34px;
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
::selection { background: rgba(0, 107, 93, .18); }
:focus-visible { outline: 3px solid rgba(242,31,43,.38); outline-offset: 4px; border-radius: 6px; }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position:fixed; top:10px; left:10px; z-index:999; transform:translateY(-150%); padding:10px 14px; border-radius:10px; background:#fff; box-shadow:var(--shadow-soft); font-weight:800; text-decoration:none; transition:transform .2s ease; }
.skip-link:focus { transform:translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 13px 0;
  transition: padding .22s ease, background .22s ease, box-shadow .22s ease;
}
.site-header.scrolled,
.site-header.menu-active {
  padding: 8px 0;
  background: rgba(247, 248, 245, .94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: block; width: 258px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: #263a35; font-size: 14px; font-weight: 750; text-decoration: none; transition: color .2s ease, background .2s ease, transform .2s ease; }
.site-nav > a:not(.nav-call):hover { color: var(--green); }
.nav-call { padding: 12px 18px; border-radius: 999px; background: var(--green); color: #fff !important; box-shadow: 0 10px 25px rgba(0,107,93,.18); }
.nav-call:hover { background: var(--green-dark); transform: translateY(-1px); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.74); align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 99px; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding: 150px 0 92px;
  background:
    radial-gradient(circle at 92% 15%, rgba(0,107,93,.12), transparent 31%),
    radial-gradient(circle at 5% 80%, rgba(242,31,43,.05), transparent 28%),
    linear-gradient(135deg, #f9faf7 0%, #f2f6f2 100%);
}
.hero::before { content:""; position:absolute; inset:0; pointer-events:none; opacity:.24; background-image: radial-gradient(rgba(5,58,52,.18) .65px, transparent .65px); background-size: 15px 15px; mask-image: linear-gradient(90deg, transparent 10%, #000 68%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .96fr) minmax(430px, .9fr); align-items: center; gap: 72px; }
.hero-copy { min-width: 0; }
.status-pill { display:inline-flex; align-items:center; gap:9px; min-height:34px; padding:6px 12px; border:1px solid rgba(0,107,93,.16); border-radius:999px; background:rgba(255,255,255,.72); color:var(--green-dark); font-size:12px; font-weight:850; letter-spacing:.01em; }
.status-pill span { width:8px; height:8px; border-radius:50%; background:#16a36e; box-shadow:0 0 0 5px rgba(22,163,110,.11); }
h1,h2,h3,p { margin-top: 0; }
h1 { margin: 24px 0 22px; max-width: 740px; font-size: clamp(55px, 6vw, 83px); line-height: .95; letter-spacing: -.057em; font-weight: 790; }
h1 em { color: var(--green); font-style: normal; }
.hero-lede { max-width: 610px; margin-bottom: 0; color: #52625d; font-size: 20px; line-height: 1.58; letter-spacing: -.012em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.button { min-height: 54px; display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:0 22px; border-radius:999px; font-size:14px; font-weight:850; text-decoration:none; transition:transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.button-primary { background: var(--green); color:#fff; box-shadow:0 14px 28px rgba(0,107,93,.2); }
.button-primary:hover { background: var(--green-dark); box-shadow:0 17px 34px rgba(0,107,93,.25); }
.button-primary svg:first-child { fill: currentColor; stroke: none; }
.button-secondary { background:#fff; color:var(--ink); border:1px solid var(--line); }
.button-secondary:hover { box-shadow:var(--shadow-soft); }
.hero-facts { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; max-width:590px; margin-top:52px; }
.hero-facts > div { padding-top:16px; border-top:1px solid var(--line); display:flex; flex-direction:column; gap:3px; }
.hero-facts strong { font-size:22px; line-height:1; letter-spacing:-.035em; }
.hero-facts span { color:var(--muted); font-size:11px; font-weight:750; }

.hero-media { position:relative; min-width:0; }
.hero-photo-wrap { position:relative; z-index:2; overflow:hidden; border-radius:var(--radius-lg); background:#dce8e4; box-shadow:var(--shadow); transform:rotate(.9deg); }
.hero-photo-wrap::after { content:""; position:absolute; inset:0; border:1px solid rgba(255,255,255,.36); border-radius:inherit; pointer-events:none; }
.hero-photo { width:100%; height:auto; aspect-ratio:4/3; object-fit:cover; object-position:center 48%; }
.photo-shade { position:absolute; inset:0; background:linear-gradient(180deg,transparent 55%,rgba(3,26,23,.38)); pointer-events:none; }
.hero-badge { position:absolute; left:20px; bottom:20px; display:flex; align-items:center; gap:12px; padding:11px 15px 11px 10px; border:1px solid rgba(255,255,255,.68); border-radius:17px; background:rgba(255,255,255,.94); backdrop-filter:blur(12px); box-shadow:0 12px 30px rgba(4,39,34,.15); }
.badge-icon { width:43px; height:43px; display:grid; place-items:center; flex:0 0 auto; border-radius:13px; background:var(--red); color:#fff; font-size:15px; font-weight:950; }
.hero-badge > span:last-child { display:flex; flex-direction:column; gap:1px; }
.hero-badge small { color:var(--muted); font-size:10px; font-weight:750; }
.hero-badge strong { font-size:14px; }
.hero-accent { position:absolute; z-index:1; right:-24px; bottom:-24px; width:160px; height:160px; border-radius:34px; background:var(--red); opacity:.96; transform:rotate(9deg); }

.quick-info { background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.quick-grid { display:grid; grid-template-columns:repeat(3,1fr); }
.quick-card { min-width:0; min-height:104px; display:flex; align-items:center; gap:13px; padding:20px 28px; border-right:1px solid var(--line); text-decoration:none; transition:background .2s ease; }
.quick-card:first-child { padding-left:0; }
.quick-card:last-child { border-right:0; }
a.quick-card:hover { background:#fafbf9; }
.quick-icon { width:44px; height:44px; display:grid; place-items:center; flex:0 0 auto; border-radius:14px; background:var(--green-soft); color:var(--green); font-size:18px; font-weight:900; }
.quick-icon.plus { font-size:26px; }
.quick-card > span:nth-child(2) { min-width:0; display:flex; flex-direction:column; gap:2px; }
.quick-card small { color:var(--muted); font-size:10px; font-weight:850; letter-spacing:.06em; text-transform:uppercase; }
.quick-card strong { overflow-wrap:anywhere; font-size:13px; }
.quick-card > b { margin-left:auto; color:#a0aaa7; font-weight:600; }

.section { padding: 112px 0; }
.section-heading { max-width: 700px; margin-bottom: 47px; }
.kicker { display:inline-block; margin-bottom:14px; color:var(--green); font-size:11px; font-weight:950; letter-spacing:.13em; text-transform:uppercase; }
.kicker.light { color:#9bdcca; }
h2 { margin-bottom:18px; font-size:clamp(40px,4.5vw,64px); line-height:1.02; letter-spacing:-.049em; }
.section-heading p { max-width:630px; margin-bottom:0; color:var(--muted); font-size:17px; line-height:1.65; }
.services { background:#fff; }
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.service-card { min-height:330px; display:flex; flex-direction:column; padding:27px; border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg,#fff,#fafbf9); transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.service-card:hover { transform:translateY(-5px); border-color:rgba(0,107,93,.24); box-shadow:var(--shadow-soft); }
.service-card-dark { background:var(--green-deep); color:#fff; border-color:transparent; }
.service-card-dark:hover { border-color:transparent; }
.service-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:auto; }
.service-top > span { color:#a3afab; font-size:11px; font-weight:900; letter-spacing:.1em; }
.service-card-dark .service-top > span { color:#82a29a; }
.service-icon { width:52px; height:52px; display:grid; place-items:center; border-radius:16px; background:var(--green-soft); color:var(--green); font-size:25px; line-height:1; font-weight:600; }
.service-icon.heart { color:var(--red); background:#feeeee; }
.service-icon.clock { background:#fff; color:var(--green-deep); font-size:13px; font-weight:950; }
.service-card h3 { margin:65px 0 9px; font-size:23px; letter-spacing:-.03em; }
.service-card p { margin:0; color:var(--muted); font-size:14px; line-height:1.7; }
.service-card-dark p { color:#bed0cb; }
.callout { margin-top:20px; padding:26px 28px; display:flex; align-items:center; justify-content:space-between; gap:28px; border:1px solid var(--line); border-radius:var(--radius); background:var(--surface); }
.callout .kicker { margin-bottom:8px; }
.callout h3 { margin-bottom:5px; font-size:22px; letter-spacing:-.03em; }
.callout p { margin-bottom:0; color:var(--muted); font-size:13px; line-height:1.55; }
.callout .button { flex:0 0 auto; }

.story { background:var(--surface); }
.story-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,.92fr); align-items:center; gap:82px; }
.story-media { position:relative; }
.story-media::before { content:""; position:absolute; inset:25px -20px -20px 25px; border-radius:30px; background:var(--green); }
.story-photo { position:relative; z-index:1; overflow:hidden; border-radius:30px; box-shadow:var(--shadow); }
.story-photo img { width:100%; height:620px; object-fit:cover; object-position:center; }
.story-label { position:absolute; z-index:2; left:20px; bottom:20px; display:flex; flex-direction:column; gap:2px; max-width:calc(100% - 40px); padding:11px 14px; border:1px solid rgba(255,255,255,.62); border-radius:14px; background:rgba(255,255,255,.94); box-shadow:0 10px 30px rgba(0,0,0,.12); backdrop-filter:blur(10px); }
.story-label span { color:var(--muted); font-size:9px; font-weight:900; letter-spacing:.07em; text-transform:uppercase; }
.story-label strong { font-size:12px; }
.story-copy .lead { color:#52615d; font-size:18px; line-height:1.65; }
.reason-list { margin-top:30px; display:grid; gap:0; border-top:1px solid var(--line); }
.reason { display:grid; grid-template-columns:38px 1fr; gap:15px; padding:19px 0; border-bottom:1px solid var(--line); }
.reason > span { color:var(--green); font-size:10px; font-weight:950; letter-spacing:.08em; }
.reason strong { display:block; margin-bottom:4px; font-size:14px; }
.reason p { margin:0; color:var(--muted); font-size:13px; line-height:1.55; }
.review-card { margin:26px 0 0; padding:20px 22px; border:1px solid var(--line); border-radius:18px; background:#fff; }
.stars { color:var(--red); font-size:13px; letter-spacing:.14em; }
.review-card blockquote { margin:8px 0 5px; font-size:18px; font-weight:800; letter-spacing:-.02em; }
.review-card figcaption { color:var(--muted); font-size:9px; font-weight:850; letter-spacing:.08em; text-transform:uppercase; }

.location { padding-top:30px; background:var(--surface); }
.location-card { min-height:560px; display:grid; grid-template-columns:1.06fr .94fr; overflow:hidden; border-radius:var(--radius-lg); background:var(--green-deep); color:#fff; box-shadow:0 28px 70px rgba(6,60,54,.17); }
.location-copy { padding:62px; }
.location-copy h2 { max-width:650px; }
.location-copy > p { max-width:610px; color:#bfd0cb; font-size:16px; line-height:1.68; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; margin:30px 0; border-top:1px solid rgba(255,255,255,.12); border-left:1px solid rgba(255,255,255,.12); }
.contact-grid > * { min-width:0; min-height:76px; padding:15px 16px; border-right:1px solid rgba(255,255,255,.12); border-bottom:1px solid rgba(255,255,255,.12); display:flex; flex-direction:column; gap:4px; text-decoration:none; }
.contact-grid small { color:#87a39b; font-size:9px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.contact-grid strong { overflow-wrap:anywhere; font-size:12px; line-height:1.4; }
.location-actions { display:flex; align-items:center; gap:22px; }
.button-white { background:#fff; color:var(--green-deep); }
.location-link { color:#fff; font-size:13px; font-weight:850; text-decoration:none; }
.location-link span { display:inline-block; margin-left:4px; transition:transform .2s ease; }
.location-link:hover span { transform:translateX(4px); }
.location-photo { position:relative; min-height:100%; overflow:hidden; color:var(--ink); text-decoration:none; }
.location-photo::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 65%,rgba(4,35,31,.36)); pointer-events:none; }
.location-photo img { width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .5s ease; }
.location-photo:hover img { transform:scale(1.02); }
.map-chip { position:absolute; z-index:2; left:20px; bottom:20px; display:flex; align-items:center; gap:8px; padding:9px 12px; border-radius:999px; background:rgba(255,255,255,.95); box-shadow:0 10px 30px rgba(0,0,0,.12); font-size:11px; font-weight:900; }
.map-chip b { width:26px; height:26px; display:grid; place-items:center; border-radius:50%; background:var(--red); color:#fff; }

.faq { background:#fff; }
.faq-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:80px; }
.faq-list { border-top:1px solid var(--line); }
details { border-bottom:1px solid var(--line); padding:5px 0; }
summary { list-style:none; position:relative; cursor:pointer; padding:21px 46px 21px 0; font-size:16px; font-weight:850; }
summary::-webkit-details-marker { display:none; }
summary::after { content:"+"; position:absolute; right:4px; top:16px; width:30px; height:30px; display:grid; place-items:center; border-radius:50%; background:var(--green-soft); color:var(--green); font-size:18px; transition:transform .2s ease; }
details[open] summary::after { transform:rotate(45deg); }
details p { margin:-3px 50px 18px 0; color:var(--muted); font-size:14px; line-height:1.7; }
details a { color:var(--green); font-weight:800; }

.site-footer { padding:56px 0 26px; background:#edf1ee; }
.footer-main { display:grid; grid-template-columns:minmax(280px,1.35fr) .65fr .65fr; gap:72px; align-items:start; padding-bottom:44px; }
.footer-brand img { width:260px; height:auto; }
.footer-brand p { max-width:390px; margin:18px 0 0; color:var(--muted); font-size:13px; line-height:1.65; }
.footer-nav { display:flex; flex-direction:column; gap:10px; }
.footer-nav > span { margin-bottom:4px; color:#9aa5a1; font-size:9px; font-weight:950; letter-spacing:.1em; text-transform:uppercase; }
.footer-nav a { color:#334640; font-size:13px; font-weight:750; text-decoration:none; }
.footer-nav a:hover { color:var(--green); }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding-top:22px; border-top:1px solid var(--line); color:#8b9894; font-size:10px; }
.mobile-actions { display:none; }

.reveal { opacity:1; transform:none; }
.js .reveal { opacity:0; transform:translateY(16px); transition:opacity .62s ease, transform .62s cubic-bezier(.2,.72,.2,1); }
.js .reveal[data-delay="1"] { transition-delay:.08s; }
.js .reveal[data-delay="2"] { transition-delay:.16s; }
.js .reveal.visible { opacity:1; transform:none; }

@media (max-width: 1020px) {
  :root { --shell:min(100% - 34px, 900px); }
  .site-nav { gap:18px; }
  .hero { min-height:auto; padding-top:132px; }
  .hero-grid { grid-template-columns:1fr; gap:50px; }
  .hero-copy { max-width:800px; }
  h1 { max-width:840px; }
  .hero-media { max-width:760px; }
  .quick-card { padding-inline:20px; }
  .service-grid { grid-template-columns:1fr; }
  .service-card { min-height:240px; }
  .service-card h3 { margin-top:44px; }
  .story-grid { grid-template-columns:1fr; gap:70px; }
  .story-media { max-width:760px; }
  .story-photo img { height:560px; }
  .story-copy { max-width:760px; }
  .location-card { grid-template-columns:1fr; }
  .location-photo { min-height:390px; }
  .faq-grid { grid-template-columns:1fr; gap:18px; }
  .footer-main { grid-template-columns:1.2fr .7fr .7fr; gap:40px; }
}

@media (max-width: 760px) {
  :root { --shell:calc(100vw - 28px); --radius:20px; --radius-lg:25px; }
  html { scroll-padding-top:76px; }
  body { padding-bottom:calc(78px + env(safe-area-inset-bottom)); }
  .site-header { padding:7px 0; background:rgba(247,248,245,.95); border-bottom:1px solid rgba(16,32,29,.06); backdrop-filter:blur(16px); }
  .site-header.scrolled, .site-header.menu-active { padding:7px 0; }
  .header-inner { min-height:56px; }
  .brand { width:196px; }
  .menu-toggle { display:flex; }
  .site-nav { position:absolute; top:68px; left:14px; right:14px; display:none; max-height:calc(100dvh - 88px); overflow:auto; flex-direction:column; align-items:stretch; gap:0; padding:10px; border:1px solid var(--line); border-radius:20px; background:#fff; box-shadow:0 20px 55px rgba(7,60,54,.16); }
  .site-nav.open { display:flex; }
  .site-nav a { padding:14px 12px; font-size:14px; }
  .site-nav .nav-call { margin-top:5px; padding:14px; text-align:center; }

  .hero { padding:105px 0 57px; background:radial-gradient(circle at 100% 7%, rgba(0,107,93,.12), transparent 33%),linear-gradient(145deg,#fafbf8,#eff4f0); }
  .hero::before { opacity:.17; mask-image:linear-gradient(180deg,transparent,#000 45%,transparent); }
  .hero-grid { gap:38px; }
  .status-pill { font-size:11px; min-height:32px; }
  h1 { margin:20px 0 18px; font-size:clamp(43px,13.6vw,61px); line-height:.94; letter-spacing:-.055em; }
  .hero-lede { font-size:16px; line-height:1.58; }
  .hero-actions { display:grid; grid-template-columns:1fr; gap:9px; margin-top:25px; }
  .button { width:100%; min-height:52px; padding:0 17px; font-size:13px; }
  .hero-facts { margin-top:32px; gap:8px; }
  .hero-facts > div { padding-top:12px; }
  .hero-facts strong { font-size:18px; }
  .hero-facts span { font-size:9px; line-height:1.25; }
  .hero-photo-wrap { border-radius:24px; transform:none; }
  .hero-photo { aspect-ratio:4/3.2; object-position:center 48%; }
  .hero-badge { left:12px; right:12px; bottom:12px; gap:10px; padding:9px 12px 9px 9px; border-radius:15px; }
  .badge-icon { width:39px; height:39px; border-radius:12px; }
  .hero-badge strong { font-size:13px; }
  .hero-accent { display:none; }

  .quick-grid { grid-template-columns:1fr; }
  .quick-card { min-height:76px; padding:13px 0 !important; border-right:0; border-bottom:1px solid var(--line); }
  .quick-card:last-child { border-bottom:0; }
  .quick-icon { width:40px; height:40px; border-radius:13px; }

  .section { padding:76px 0; }
  .section-heading { margin-bottom:28px; }
  .kicker { margin-bottom:11px; font-size:10px; }
  h2 { margin-bottom:15px; font-size:clamp(37px,11.2vw,49px); line-height:1.02; }
  .section-heading p { font-size:15px; line-height:1.62; }
  .service-grid { gap:12px; }
  .service-card { min-height:218px; padding:22px; }
  .service-card h3 { margin:37px 0 8px; font-size:21px; }
  .service-card p { font-size:13px; }
  .service-icon { width:47px; height:47px; border-radius:15px; }
  .callout { margin-top:12px; padding:22px; flex-direction:column; align-items:stretch; gap:18px; }
  .callout h3 { font-size:20px; }

  .story-grid { gap:53px; }
  .story-media::before { inset:15px -7px -12px 14px; border-radius:24px; }
  .story-photo { border-radius:23px; }
  .story-photo img { height:430px; object-position:center; }
  .story-label { left:12px; bottom:12px; max-width:calc(100% - 24px); }
  .story-copy .lead { font-size:16px; }
  .reason { grid-template-columns:32px 1fr; gap:10px; padding:16px 0; }
  .review-card { margin-top:22px; }

  .location { padding-top:9px; }
  .location-card { border-radius:24px; }
  .location-copy { padding:35px 22px 38px; }
  .location-copy > p { font-size:14px; }
  .contact-grid { grid-template-columns:1fr; margin:25px 0; border-left:0; }
  .contact-grid > * { min-height:65px; padding:12px 0; border-right:0; }
  .contact-grid strong { font-size:12px; }
  .location-actions { flex-direction:column; align-items:stretch; gap:15px; }
  .location-link { text-align:center; }
  .location-photo { min-height:310px; }
  .map-chip { left:12px; bottom:12px; font-size:10px; }

  .faq-grid { gap:0; }
  .faq .section-heading { margin-bottom:10px; }
  summary { padding:18px 44px 18px 0; font-size:14px; line-height:1.35; }
  summary::after { top:14px; }
  details p { margin:0 38px 17px 0; font-size:13px; }

  .site-footer { padding:45px 0 24px; }
  .footer-main { grid-template-columns:1fr; gap:27px; padding-bottom:31px; }
  .footer-brand img { width:225px; }
  .footer-brand p { margin-top:14px; }
  .footer-bottom { flex-direction:column; gap:7px; }

  .mobile-actions { position:fixed; z-index:150; left:10px; right:10px; bottom:max(10px, env(safe-area-inset-bottom)); display:grid; grid-template-columns:1fr 1fr; min-height:56px; overflow:hidden; border:1px solid rgba(16,32,29,.08); border-radius:18px; background:#fff; box-shadow:0 15px 50px rgba(5,37,32,.25); }
  .mobile-actions a { display:flex; align-items:center; justify-content:center; gap:7px; color:var(--green-dark); font-size:12px; font-weight:950; text-decoration:none; }
  .mobile-actions .mobile-call { background:var(--green); color:#fff; }
  .mobile-actions span { font-size:15px; }
}

@media (max-width: 390px) {
  :root { --shell:calc(100vw - 24px); }
  .brand { width:183px; }
  h1 { font-size:clamp(41px,13.2vw,52px); }
  .hero-facts span { font-size:8.5px; }
  .story-photo img { height:390px; }
}


@media (max-width: 340px) {
  :root { --shell:calc(100vw - 20px); }
  .brand { width:164px; }
  .menu-toggle { width:43px; height:43px; border-radius:13px; }
  h1 { font-size:39px; letter-spacing:-.05em; }
  .hero { padding-top:98px; }
  .hero-facts { gap:6px; }
  .hero-facts strong { font-size:17px; }
  .hero-facts span { font-size:8px; }
  .location-copy { padding-inline:18px; }
  .mobile-actions { left:8px; right:8px; }
}

@media (hover: none) {
  .button:hover, .service-card:hover, .nav-call:hover { transform:none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition-duration:.001ms !important; animation-duration:.001ms !important; animation-iteration-count:1 !important; }
  .reveal, .js .reveal { opacity:1; transform:none; }
}
