@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600;8..60,700&display=swap');

:root {
  --charcoal: #111514;
  --ink: #1a211d;
  --muted: #5d665f;
  --green: #70BF3F;
  --green-deep: #4F9F2E;
  --green-pale: #EDF8E8;
  --orange: #F47721;
  --orange-deep: #B84C15;
  --ivory: #FBFCF9;
  --soft: #F4F7F2;
  --line: #DCE4D9;
  --white: #FFFFFF;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', Inter, 'Segoe UI', Arial, sans-serif;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 20px 55px rgba(24, 40, 28, .13);
  --soft-shadow: 0 12px 32px rgba(24, 40, 28, .08);
  --container: min(1180px, calc(100% - 40px));
  --header-h: 84px;
  --header-glass-bg: linear-gradient(105deg, rgba(22,38,29,.78), rgba(63,89,66,.52) 55%, rgba(155,178,159,.28));
  --header-glass-bg-scrolled: linear-gradient(105deg, rgba(18,32,24,.92), rgba(57,78,60,.75) 58%, rgba(139,157,138,.54));
  --header-glass-border: rgba(255,255,255,.18);
  --header-glass-shadow: 0 8px 36px rgba(16,25,20,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font: 400 16px/1.58 var(--sans);
  text-rendering: optimizeLegibility;
}
body.menu-open, body.assistant-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid rgba(244,119,33,.66); outline-offset: 3px; }
::selection { background: #CFECC2; color: var(--charcoal); }

.skip-link {
  position: fixed; z-index: 10000; top: 8px; left: 12px; padding: 10px 14px;
  border-radius: 10px; background: var(--white); color: var(--charcoal); font-weight: 700;
  transform: translateY(-160%); box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }
.container { width: var(--container); margin: 0 auto; }
.section { padding: clamp(60px, 8vw, 112px) 0; }
.section-soft { background: var(--soft); }
.eyebrow { display: inline-flex; align-items: center; gap: 14px; margin: 0 0 16px; color: var(--green-deep); font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { width: 40px; height: 2px; content: ''; background: currentColor; }
.heading-xl, .heading-lg, .heading-md { margin: 0; color: var(--charcoal); font-family: var(--serif); font-weight: 600; line-height: 1.01; letter-spacing: -.035em; }
.heading-xl { font-size: clamp(2.75rem, 6vw, 5.4rem); }
.heading-lg { font-size: clamp(2.2rem, 4.8vw, 4.25rem); }
.heading-md { font-size: clamp(1.65rem, 3vw, 2.4rem); }
.lede { max-width: 660px; margin: 22px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.75; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Header */
.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; height: var(--header-h); color: var(--white); border-bottom: 1px solid var(--header-glass-border); background: var(--header-glass-bg); box-shadow: var(--header-glass-shadow); -webkit-backdrop-filter: blur(20px) saturate(135%); backdrop-filter: blur(20px) saturate(135%); transition: background .25s ease, box-shadow .25s ease; }
.site-header.scrolled { background: var(--header-glass-bg-scrolled); box-shadow: 0 10px 30px rgba(16,25,20,.22); }
.header-inner { width: var(--container); height: 100%; display: flex; align-items: center; gap: 18px; margin: 0 auto; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; width: min(246px, 43vw); }
.brand img { width: 100%; height: auto; filter: drop-shadow(0 5px 12px rgba(0,0,0,.16)); }
.desktop-nav { display: flex; align-items: center; gap: clamp(15px, 2.3vw, 32px); margin-left: auto; font-size: .84rem; font-weight: 700; }
.desktop-nav a { position: relative; padding: 8px 0; opacity: .9; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; content: ''; background: var(--green); transform: scaleX(0); transform-origin: right; transition: transform .22s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }



.menu-toggle { display: none; width: 50px; height: 50px; padding: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 15px; background: rgba(255,255,255,.10); color: var(--white); place-items: center; }
.menu-icon, .menu-icon::before, .menu-icon::after { width: 23px; height: 2px; display: block; border-radius: 2px; background: currentColor; content: ''; transition: transform .2s ease, opacity .2s ease; }
.menu-icon { position: relative; margin: 0 auto; }
.menu-icon::before { position: absolute; top: -7px; left: 0; }
.menu-icon::after { position: absolute; top: 7px; left: 0; }
.menu-toggle.open .menu-icon, .menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle.open .menu-icon::before, .menu-toggle[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open .menu-icon::after, .menu-toggle[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 990; top: calc(var(--header-h) + 8px); right: 18px; left: 18px; padding: 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 22px; background: rgba(24,39,29,.94); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-12px) scale(.98); transition: opacity .22s ease, transform .22s ease; -webkit-backdrop-filter: blur(22px); backdrop-filter: blur(22px); }
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.mobile-menu a { display: flex; align-items: center; min-height: 51px; padding: 0 10px; border-bottom: 1px solid rgba(255,255,255,.12); color: var(--white); font-weight: 700; }
.mobile-menu a:last-child { border-bottom: 0; }

/* Page hero */
.page-main { padding-top: var(--header-h); }
.service-hero { position: relative; overflow: hidden; min-height: min(72vh, 720px); background: #e8eee5; }
.service-hero::before { position: absolute; z-index: 1; inset: 0; content: ''; background: linear-gradient(94deg, rgba(12,24,16,.80) 0%, rgba(18,34,23,.65) 38%, rgba(31,55,35,.13) 71%, rgba(31,55,35,.04)); }
.service-hero::after { position: absolute; z-index: 2; right: -11vw; bottom: -16vw; width: min(48vw, 640px); aspect-ratio: 1; content: ''; border: 1px solid rgba(112,191,63,.6); border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,255,255,.11), 0 0 0 57px rgba(112,191,63,.14); }
.service-hero-media { position: absolute; inset: 0; }
.service-hero-media picture { display: block; width: 100%; height: 100%; }
.service-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.91) contrast(.98); }
.service-hero .container { position: relative; z-index: 3; display: grid; align-content: center; min-height: inherit; padding-top: 58px; padding-bottom: 74px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs [aria-hidden='true'] { color: var(--green); }
.hero-kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; color: #D8F0CE; font-size: .76rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.hero-kicker::before { width: 35px; height: 2px; content: ''; background: var(--green); }
.service-hero h1 { max-width: 750px; margin: 0; color: var(--white); font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 600; line-height: .97; letter-spacing: -.04em; text-wrap: balance; }
.service-hero p { max-width: 620px; margin: 25px 0 0; color: rgba(255,255,255,.89); font-size: clamp(1.04rem, 1.7vw, 1.22rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 20px; border: 1px solid transparent; border-radius: 14px; font-size: .93rem; font-weight: 800; line-height: 1.25; text-align: center; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, #56AA30, #7BC849); box-shadow: 0 12px 25px rgba(39,117,21,.28), inset 0 1px rgba(255,255,255,.24); }
.button-secondary { border-color: rgba(255,255,255,.45); color: var(--white); background: rgba(255,255,255,.10); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.button-outline { border-color: #BFCBBB; color: var(--green-deep); background: var(--white); }
.button-orange { color: var(--white); background: linear-gradient(135deg, #D95C16, var(--orange)); box-shadow: 0 12px 25px rgba(184,76,21,.22), inset 0 1px rgba(255,255,255,.22); }
.button-arrow::after { content: none; }

/* Content */
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: clamp(35px, 7vw, 100px); align-items: start; }
.intro-card { padding: clamp(24px, 3vw, 38px); border: 1px solid rgba(79,159,46,.19); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(237,248,232,.68)); box-shadow: var(--soft-shadow); }
.intro-card h2 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.2rem); line-height: 1.1; }
.intro-card ul, .check-list { display: grid; gap: 15px; padding: 0; margin: 0; list-style: none; }
.intro-card li, .check-list li { position: relative; padding-left: 31px; color: var(--muted); }
.intro-card li::before, .check-list li::before { position: absolute; top: .4em; left: 0; display: grid; width: 20px; height: 20px; place-items: center; content: '✓'; border-radius: 50%; color: var(--white); background: var(--green-deep); font-size: .72rem; font-weight: 800; }
.content-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr); gap: clamp(35px, 7vw, 90px); align-items: start; }
.content-copy > p { margin: 0 0 19px; color: var(--muted); font-size: 1.04rem; }
.focus-stack { display: grid; gap: 12px; }
.focus-item { display: grid; grid-template-columns: 46px 1fr; gap: 15px; padding: 16px 17px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); box-shadow: 0 8px 22px rgba(30,50,35,.05); }
.focus-number { display: grid; width: 42px; height: 42px; place-items: center; align-self: start; justify-self: start; border: 1px solid rgba(79,159,46,.28); border-radius: 50%; color: var(--green-deep); background: var(--green-pale); font-family: var(--serif); font-size: 1.2rem; font-weight: 700; line-height: 1; text-align: center; }
.focus-item strong { display: block; margin: 2px 0 3px; font-size: .96rem; }
.focus-item > div > span { display: block; color: var(--muted); font-size: .9rem; line-height: 1.45; }
.guide-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(126px, 13vw, 176px);
  padding-bottom: clamp(126px, 13vw, 176px);
  color: var(--white);
  /* The orange remains full-width; only the upper and lower edges dissolve into the page. */
  background: linear-gradient(105deg, #E86514 0%, var(--orange) 52%, #FF903C 100%);
}
.guide-band::before,
.guide-band::after {
  position: absolute;
  z-index: 0;
  inset-inline: 0;
  height: clamp(112px, 15vw, 188px);
  content: '';
  pointer-events: none;
}
.guide-band::before {
  top: 0;
  background: linear-gradient(180deg, var(--soft) 0%, rgba(244,247,242,.98) 12%, rgba(244,247,242,.74) 34%, rgba(244,247,242,.34) 64%, rgba(244,247,242,0) 100%);
}
.guide-band::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--soft) 0%, rgba(244,247,242,.98) 12%, rgba(244,247,242,.74) 34%, rgba(244,247,242,0) 100%);
}
.guide-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 6vw, 84px); align-items: center; }
.guide-band .eyebrow { color: #FFF0E3; }
.guide-band .heading-lg { color: var(--white); }
.guide-band .lede { color: rgba(255,255,255,.84); }
.process-list { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.35); }
.process-item { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.35); }
.process-step { color: #FFF0E3; font-family: var(--serif); font-size: 1.55rem; font-weight: 700; }
.process-item h3 { margin: 0 0 4px; font-family: var(--serif); font-size: 1.4rem; line-height: 1.1; }
.process-item p { margin: 0; color: rgba(255,255,255,.8); }

/* Form */
.form-section { position: relative; overflow: hidden; background: var(--soft); }
.form-section::before { position: absolute; top: -21vw; right: -14vw; width: 55vw; aspect-ratio: 1; content: ''; border-radius: 50%; background: radial-gradient(circle, rgba(112,191,63,.16), rgba(112,191,63,0) 67%); }
.form-layout { position: relative; display: grid; grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr); gap: clamp(30px, 6vw, 80px); align-items: start; }
.form-card { padding: clamp(22px, 4vw, 42px); border: 1px solid rgba(80,120,75,.22); border-radius: var(--radius-lg); background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.form-card h2 { margin: 0 0 8px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.05; }
.form-card > p { margin: 0 0 24px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 17px; }
.field { display: grid; gap: 7px; }
.field.wide { grid-column: 1 / -1; }
.field label { color: #3e4c42; font-size: .79rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.field label span { color: var(--orange-deep); }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 13px; border: 1px solid #CDD8C9; border-radius: 12px; outline: 0; color: var(--charcoal); background: #FBFCFA; font-size: 16px; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.field textarea { min-height: 105px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-deep); background: var(--white); box-shadow: 0 0 0 4px rgba(112,191,63,.16); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #C14A24; box-shadow: 0 0 0 4px rgba(193,74,36,.12); }
.field-error { min-height: 1.1em; color: #AD391C; font-size: .78rem; font-weight: 700; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 8px; }
.form-status { min-height: 1.4em; margin: 16px 0 0; color: var(--green-deep); font-size: .9rem; font-weight: 700; }
.form-status.error { color: #AD391C; }
.privacy-note { margin: 16px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }

/* FAQ and related */
.faq-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 7vw, 90px); align-items: start; }
.faq-list { display: grid; gap: 11px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 6px 18px rgba(34,54,39,.04); }
.faq-list summary { display: flex; align-items: center; min-height: 64px; padding: 14px 18px; list-style: none; font-weight: 800; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { margin-left: auto; content: '+'; color: var(--green-deep); font-size: 1.5rem; font-weight: 500; }
.faq-list details[open] summary::after { content: '–'; }
.faq-list details p { margin: 0; padding: 0 18px 18px; color: var(--muted); }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 15px; }
.related-card { display: flex; min-height: 170px; flex-direction: column; justify-content: space-between; padding: 20px; border: 1px solid rgba(79,159,46,.17); border-radius: 20px; background: linear-gradient(145deg, #fff, #f4faf0); box-shadow: 0 9px 25px rgba(31,74,32,.06); transition: transform .2s ease, box-shadow .2s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--soft-shadow); }
.related-card span { color: var(--green-deep); font-size: .73rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.related-card h3 { margin: 8px 0 18px; font-family: var(--serif); font-size: 1.45rem; line-height: 1.05; }
.related-card .link-arrow { color: var(--green-deep); font-size: .85rem; font-weight: 800; }

/* Footer — V3.61 refined light glass */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 max(30px, env(safe-area-inset-bottom));
  border-top: 0;
  color: #26372d;
  background: transparent;
  -webkit-backdrop-filter: blur(26px) saturate(138%);
  backdrop-filter: blur(26px) saturate(138%);
}
.site-footer::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: '';
  pointer-events: none;
  background:
    radial-gradient(78% 55% at 96% 8%, rgba(112,191,63,.18) 0%, rgba(112,191,63,0) 66%),
    radial-gradient(62% 48% at 4% 78%, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 70%),
    linear-gradient(180deg,
      rgba(250,252,249,0) 0px,
      rgba(239,244,238,.50) 52px,
      rgba(219,230,219,.77) 116px,
      rgba(194,211,196,.87) 188px,
      rgba(171,193,175,.90) 262px,
      rgba(154,179,160,.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.46);
}
.site-footer::after { content: none; }
.site-footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: minmax(0,1fr) auto auto; gap: 34px; align-items: start; }
.footer-brand { width: min(320px, 100%); }
.site-footer .footer-brand img {
  display: block;
  width: min(312px, calc(100vw - 56px));
  margin: 0 auto 18px;
  padding: 12px 16px;
  border: 1px solid rgba(67,116,49,.52);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(84,138,62,.42), rgba(216,233,210,.36) 44%, rgba(96,151,71,.30) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.46), 0 16px 30px rgba(51,83,59,.16), 0 0 0 1px rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(14px) saturate(128%);
  backdrop-filter: blur(14px) saturate(128%);
}
.site-footer p { max-width: 390px; margin: 18px 0 0; color: rgba(31,48,37,.82); font-size: .9rem; }
.footer-links { display: grid; gap: 8px; min-width: 175px; }
.footer-links strong { margin-bottom: 4px; color: #1f3528; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { color: rgba(34,52,40,.82); font-size: .9rem; }
.footer-links a:hover { color: #356f24; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(33,59,42,.18); color: rgba(34,52,40,.64); font-size: .78rem; }

/* Contact orbs */
.floating-actions { position: fixed; z-index: 900; right: max(16px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); display: grid; gap: 12px; }
.glass-orb { position: relative; display: grid; width: 60px; height: 60px; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.64); border-radius: 50%; color: var(--white); background: radial-gradient(circle at 32% 22%, rgba(255,255,255,.63), rgba(255,255,255,.1) 32%, transparent 33%), linear-gradient(145deg, rgba(133,151,139,.94), rgba(44,64,52,.95)); box-shadow: 0 11px 22px rgba(25,39,28,.25), inset 0 1px 0 rgba(255,255,255,.7), inset 0 -8px 15px rgba(7,18,11,.26); -webkit-backdrop-filter: blur(12px) saturate(125%); backdrop-filter: blur(12px) saturate(125%); transition: transform .2s ease, box-shadow .2s ease; }
.glass-orb::after { position: absolute; top: 6px; left: 12px; width: 31px; height: 13px; content: ''; border-radius: 50%; background: rgba(255,255,255,.42); filter: blur(3px); transform: rotate(-30deg); }
.glass-orb:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 28px rgba(25,39,28,.32), inset 0 1px 0 rgba(255,255,255,.7), inset 0 -8px 15px rgba(7,18,11,.24); }
.wa-orb svg { position: relative; z-index: 1; width: 29px; height: 29px; fill: #25D366; filter: drop-shadow(0 1px 1px rgba(0,0,0,.35)); }
.assistant-orb { padding: 8px; }
.assistant-orb .mark { position: relative; z-index: 1; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(255,255,255,.52); border-radius: 50%; background: #293f2e; }
.assistant-orb img { display: block; width: 76%; max-width: none; height: 76%; object-fit: contain; margin: 0; transform: translate(-5.5%, 3%); }

/* Guided assistant */
.assistant { position: fixed; z-index: 1100; right: max(16px, env(safe-area-inset-right)); bottom: max(91px, calc(88px + env(safe-area-inset-bottom))); display: grid; grid-template-rows: auto auto minmax(0,1fr); width: min(430px, calc(100vw - 32px)); height: 118px; max-height: min(650px, calc(100dvh - 126px)); overflow: hidden; border: 1px solid rgba(255,255,255,.72); border-radius: 26px; background: transparent; box-shadow: 0 28px 80px rgba(12,28,17,.28); opacity: 0; pointer-events: none; transform: translateY(20px) scale(.965); transform-origin: bottom right; transition: height .56s cubic-bezier(.16,1,.3,1), opacity .28s ease, transform .48s cubic-bezier(.16,1,.3,1), bottom .36s cubic-bezier(.16,1,.3,1); }
.assistant.open { height: min(590px, calc(100dvh - 126px)); opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
@media (max-width: 820px), (pointer: coarse) {
  .assistant.text-entry-mode { height: min(430px, calc(100dvh - 112px)); max-height: min(430px, calc(100dvh - 112px)); }
  .assistant.text-entry-mode .assistant-head { padding-block: 12px; }
  .assistant.text-entry-mode .assistant-actions { padding-block: 8px; }
  .assistant.text-entry-mode .assistant-scroll { min-height: 0; overflow-y: auto; }
}
.assistant.keyboard-open { top: calc(var(--assistant-visual-top, 0px) + 8px); bottom: auto; height: min(410px, calc(var(--assistant-visible-height, 100dvh) - 32px)); max-height: min(410px, calc(var(--assistant-visible-height, 100dvh) - 32px)); }
.assistant.keyboard-open .assistant-scroll { min-height: 0; overflow-y: auto; padding-bottom: 8px; }
.assistant.keyboard-open .chat-input-row { position: sticky; z-index: 6; bottom: 0; margin: 8px -6px -6px; padding: 8px 6px 6px; background: linear-gradient(180deg, rgba(248,250,246,0) 0%, rgba(248,250,246,.96) 22%, rgba(248,250,246,.99) 100%); box-shadow: 0 -10px 22px rgba(28,45,33,.08); }
.assistant-head { display: flex; align-items: center; gap: 12px; padding: 16px 17px; color: var(--white); border-bottom: 1px solid var(--header-glass-border); background: var(--header-glass-bg); box-shadow: var(--header-glass-shadow); -webkit-backdrop-filter: blur(20px) saturate(135%); backdrop-filter: blur(20px) saturate(135%); }
.assistant-head .assistant-mark { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; overflow: hidden; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; background: linear-gradient(145deg, rgba(28,50,35,.95), rgba(71,107,67,.78)); box-shadow: 0 5px 12px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.22); }
.assistant-head .assistant-mark img { display: block; width: 82%; height: 82%; max-width: none; object-fit: contain; margin: 0; transform: translate(-5.5%, 3%); }
.assistant-title { min-width: 0; }
.assistant-title strong { display: block; font-size: .95rem; text-shadow: 0 1px 1px rgba(0,0,0,.16); }
.assistant-title span { display: block; margin-top: 1px; color: rgba(255,255,255,.84); font-size: .8rem; }
.assistant-close { width: 42px; height: 42px; margin-left: auto; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.04); font-size: 2rem; line-height: 1; }
.assistant-actions { display: flex; justify-content: space-between; gap: 8px; padding: 11px 15px; border-bottom: 1px solid #E2E8DE; background: rgba(255,255,255,.92); }
.assistant-nav-button { min-height: 38px; padding: 7px 11px; border: 1px solid #CDD8C9; border-radius: 99px; color: var(--green-deep); background: var(--white); font-size: .78rem; font-weight: 800; }
.assistant-scroll { min-height: 0; overflow: auto; padding: 16px; overscroll-behavior: contain; background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,250,246,.98) 100%); }
.chat-message { margin: 0 0 11px; padding: 13px 14px; border-radius: 16px 16px 16px 5px; color: #2E3931; background: #F0F3EE; font-size: .92rem; line-height: 1.48; }
.chat-message.user { margin-left: auto; border-radius: 16px 16px 5px 16px; color: var(--white); background: linear-gradient(135deg, #4F9F2E, #6DBC3D); }
.chat-message small { display: block; margin-top: 6px; color: #718174; font-size: .75rem; }
.assistant-options { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; margin: 0 0 12px; }
.assistant-options .option { min-height: 45px; padding: 9px 10px; border: 1px solid #CBD8C7; border-radius: 14px; color: #334136; background: var(--white); font-size: .8rem; font-weight: 800; line-height: 1.25; text-align: left; }
.assistant-options .option:first-child:nth-last-child(1), .assistant-options .option:first-child:nth-last-child(3), .assistant-options .option:first-child:nth-last-child(5) { grid-column: 1 / -1; }
.assistant-options .option:hover, .assistant-options .option:focus-visible { border-color: var(--green-deep); color: var(--green-deep); background: var(--green-pale); }
.chat-input-row { display: flex; gap: 8px; margin: 0 0 12px; }
.chat-input-row input { min-width: 0; flex: 1; min-height: 47px; padding: 10px 11px; border: 1px solid #C8D4C4; border-radius: 13px; background: var(--white); font-size: 16px; }
.chat-input-row input:focus { outline: 0; border-color: var(--green-deep); box-shadow: 0 0 0 3px rgba(112,191,63,.15); }
.chat-input-row button { min-width: 48px; min-height: 47px; border: 0; border-radius: 13px; color: var(--white); background: var(--green-deep); font-size: 1.15rem; font-weight: 800; }
.typing { display: inline-flex; align-items: center; gap: 4px; min-height: 39px; padding: 0 15px; margin: 0 0 12px; border-radius: 16px 16px 16px 5px; background: #F0F3EE; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #87948a; animation: typing 1.05s infinite ease-in-out; }
.typing i:nth-child(2) { animation-delay: .13s; }
.typing i:nth-child(3) { animation-delay: .26s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .45; } 30% { transform: translateY(-4px); opacity: 1; } }

/* Motion */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Premium language transition — true crossfade */



@supports (view-transition-name: root) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    mix-blend-mode: normal;
    animation-duration: .38s;
    animation-timing-function: cubic-bezier(.16,1,.3,1);
  }
  ::view-transition-old(root) { animation-name: kenzLangOld; }
  ::view-transition-new(root) { animation-name: kenzLangNew; }
  @keyframes kenzLangOld {
    from { opacity: 1; filter: blur(0); }
    to { opacity: 0; filter: blur(1.6px); }
  }
  @keyframes kenzLangNew {
    from { opacity: 0; filter: blur(1.6px); }
    to { opacity: 1; filter: blur(0); }
  }
}

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

@media (max-width: 860px) {
  :root { --header-h: 78px; --container: min(100% - 32px, 650px); }
  .desktop-nav { display: none; }
  .header-inner { gap: 10px; }
  
  .menu-toggle { display: grid; margin-left: auto; }
  .intro-grid, .content-split, .guide-grid, .form-layout, .faq-layout { grid-template-columns: 1fr; }
  .guide-grid { gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 30px); }
  .header-inner { gap: 8px; }
  .brand { width: min(236px, 46vw); }
  
  
  .menu-toggle { width: 46px; height: 46px; border-radius: 13px; }
  .service-hero { min-height: 650px; }
  .service-hero::before { background: linear-gradient(180deg, rgba(11,24,16,.50), rgba(13,28,18,.87) 55%, rgba(13,28,18,.91)); }
  .service-hero::after { right: -36vw; bottom: -30vw; width: 76vw; }
  .service-hero-media img { object-position: 57% center; }
  .service-hero .container { align-content: end; padding-top: 36px; padding-bottom: 58px; }
  .breadcrumbs { margin-bottom: 20px; }
  .service-hero h1 { font-size: clamp(2.65rem, 13vw, 4.1rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 26px; }
  .button { min-height: 52px; }
  .section { padding: 58px 0; }
  .eyebrow { font-size: .69rem; letter-spacing: .15em; }
  .eyebrow::before { width: 29px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.wide { grid-column: auto; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { min-height: 138px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-brand { width: 100%; }
  .footer-brand img { margin-left: auto; margin-right: auto; }
  .floating-actions { right: 15px; bottom: max(14px, env(safe-area-inset-bottom)); gap: 10px; }
  .glass-orb { width: 57px; height: 57px; }
  .assistant { right: 10px; bottom: 78px; width: calc(100vw - 20px); max-height: min(670px, calc(100dvh - 98px)); border-radius: 23px; }
  .assistant-head { padding: 14px; }
  .assistant-scroll { padding: 14px; }
  .assistant-actions { padding: 10px 13px; }
  .assistant-nav-button { padding: 7px 10px; font-size: .74rem; }
}



/* V3.93 — TRUE DESKTOP EXPERIENCE: service-page desktop-only overrides */
@media (min-width: 1020px) {
  :root { --container: min(1320px, calc(100% - 88px)); --header-h: 92px; }
  .section { padding: 104px 0; }

  /* Preserve and refine the approved glass header */
  .site-header { height: 92px; }
  .header-inner { gap: 20px; }
  .brand { width: 278px; }
  .desktop-nav { gap: clamp(20px,2vw,32px); font-size: .92rem; }
  
  .menu-toggle, .mobile-menu { display: none !important; }

  /* Service hero — broad desktop composition */
  .page-main { padding-top: 92px; }
  .service-hero { min-height: 690px; }
  .service-hero::before { background: linear-gradient(92deg, rgba(10,23,15,.88) 0%, rgba(16,32,21,.74) 35%, rgba(20,39,25,.35) 56%, rgba(20,39,25,.06) 78%); }
  .service-hero::after { right: -8vw; bottom: -18vw; width: min(42vw,620px); }
  .service-hero .container { align-content: center; padding-top: 74px; padding-bottom: 82px; }
  .breadcrumbs { margin-bottom: 36px; }
  .service-hero h1 { max-width: 760px; font-size: clamp(4rem,5.2vw,6rem); }
  .service-hero p { max-width: 670px; font-size: 1.16rem; }
  .hero-actions { margin-top: 34px; }
  .hero-actions .button { min-height: 54px; padding-inline: 22px; }

  /* Main desktop grids */
  .intro-grid { grid-template-columns: minmax(0,1.15fr) minmax(360px,.72fr); gap: 90px; align-items: center; }
  .intro-card { padding: 38px; border-radius: 28px; box-shadow: 0 22px 52px rgba(24,40,28,.09); }
  .content-split { grid-template-columns: minmax(0,1.08fr) minmax(380px,.72fr); gap: 88px; align-items: center; }
  .guide-grid { grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr); gap: 86px; }
  .form-layout { grid-template-columns: minmax(320px,.65fr) minmax(0,1.35fr); gap: 88px; }
  .form-copy { position: sticky; top: 126px; }
  .form-shell { border-radius: 30px; box-shadow: 0 26px 64px rgba(26,45,31,.11); }
  .faq-layout { grid-template-columns: minmax(300px,.62fr) minmax(0,1.38fr); gap: 90px; }
  .related-grid { gap: 20px; }
  .related-card { min-height: 190px; border-radius: 24px; }

  /* Section typography and cards */
  .heading-lg { font-size: clamp(3rem,4vw,4.75rem); }
  .heading-md { font-size: clamp(1.9rem,2.5vw,2.65rem); }
  .lede { font-size: 1.1rem; }
  .guide-band { padding-top: 112px; padding-bottom: 112px; }

  /* Footer desktop */
  .site-footer { padding-top: 96px; }
  .footer-grid { grid-template-columns: minmax(0,1.4fr) minmax(180px,.55fr) minmax(230px,.7fr); gap: 70px; }
  .footer-brand { width: min(370px,100%); text-align: left; }
  .site-footer .footer-brand img { width: min(360px,100%); margin-left: 0; margin-right: 0; }
  .footer-brand p { margin-left: 0; margin-right: 0; }
  .footer-bottom { margin-top: 54px; }

  /* Desktop assistant sizing/position */
  .floating-actions { right: 28px; bottom: 26px; }
  .assistant { right: 28px; bottom: 100px; width: 450px; }
  .assistant.open { height: min(610px, calc(100dvh - 128px)); }
}


/* Premium language selector — mobile-first */







@media (max-width: 560px) {
  
  
}
@media (min-width: 1020px) {
  
  
}

/* Controlled wrapping for long email addresses */
.email-address{overflow-wrap:normal!important;word-break:normal!important;hyphens:none!important;white-space:nowrap!important;}


/* Match service-page mobile glass header to Home/index */
@media (max-width: 759px) {
  body.service-page .site-header {
    background: linear-gradient(135deg, rgba(20, 37, 28, .48), rgba(68, 98, 72, .28)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .14) !important;
    box-shadow: 0 10px 32px rgba(0, 0, 0, .08) !important;
    -webkit-backdrop-filter: blur(18px) saturate(135%) !important;
    backdrop-filter: blur(18px) saturate(135%) !important;
  }
}
