@font-face {
  font-family: "Aleo Logo";
  src: url("assets/fonts/Aleo/Aleo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Signika Logo";
  src: url("assets/fonts/Signika/Signika-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #132925;
  --ink-soft: #536560;
  --green-950: #102f2a;
  --green-900: #163c36;
  --green-800: #205047;
  --green-700: #167d7d;
  --brand-teal: #05b1b5;
  --mint: #d9eee8;
  --mint-light: #edf7f4;
  --cream: #f5f2e9;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: rgba(19, 41, 37, .13);
  --shadow: 0 28px 80px rgba(22, 60, 54, .12);
  --shadow-soft: 0 14px 40px rgba(22, 60, 54, .08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-logo-primary: "Aleo Logo", Aleo, Georgia, serif;
  --font-logo-secondary: "Signika Logo", Signika, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
svg { stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 124px 0; }
.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; z-index: 200; top: 12px; left: 12px; transform: translateY(-160%); background: var(--white); border-radius: 10px; padding: 10px 16px; box-shadow: var(--shadow-soft); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #64a99a; outline-offset: 3px; }

.site-header { position: sticky; z-index: 100; top: 0; background: var(--paper); background: color-mix(in srgb, var(--paper) 88%, transparent); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: border-color .25s, box-shadow .25s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(22, 60, 54, .05); }
.nav-wrap { height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.brand-logo { width: 78px; height: 78px; display: grid; flex: 0 0 auto; place-items: center; overflow: hidden; border: 1px solid rgba(19,41,37,.1); border-radius: 50%; background: var(--white); box-shadow: 0 10px 28px rgba(22,60,54,.1); }
.brand-logo picture { width: 100%; height: 100%; display: block; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 0; }
.brand-copy { display: grid; line-height: 1.02; }
.brand-copy strong { font-family: var(--font-logo-primary); font-size: 26px; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.brand-copy small { color: var(--green-700); font-family: var(--font-logo-secondary); font-size: 17px; font-weight: 600; letter-spacing: 0; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 34px; margin-left: auto; }
.desktop-nav a { position: relative; color: var(--ink-soft); font-size: 16px; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--green-700); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.language-switch {
  flex: 0 0 auto;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: border-color .2s, background .2s;
}
.language-switch:hover { border-color: var(--green-700); background: var(--mint-light); }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 23px; border: 1px solid var(--green-900); border-radius: 999px; background: var(--green-900); color: var(--white); font-weight: 750; font-size: 14px; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); background: var(--green-800); box-shadow: 0 12px 30px rgba(22, 60, 54, .18); }
.button-small { min-height: 54px; padding-inline: 24px; font-size: 16px; }
.button .icon, .desktop-cta .icon { width: 21px; height: 21px; }
.button-ghost { background: transparent; color: var(--green-900); border-color: var(--line); }
.button-ghost:hover { background: var(--white); }
.desktop-cta { margin-left: 12px; }
.menu-toggle { width: 46px; height: 46px; display: none; flex: 0 0 auto; border: 0; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-soft); place-content: center; gap: 5px; cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; border-radius: 5px; background: var(--ink); transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 1000; top: 108px; right: 0; bottom: 0; left: 0; overflow-y: auto; background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 30px 80px rgba(19,41,37,.12); }
.mobile-menu .container { display: grid; gap: 4px; min-height: 100%; padding-top: 24px; padding-bottom: 28px; background: var(--paper); }
.mobile-menu a:not(.button) { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 24px; font-weight: 700; letter-spacing: -.04em; }
.mobile-menu .button { margin-top: 22px; }

.hero { position: relative; min-height: 760px; display: flex; align-items: center; overflow: clip; padding: 76px 0 102px; background: linear-gradient(180deg, var(--paper), #f7f6ef); isolation: isolate; }
.hero-grid { display: grid; grid-template-columns: minmax(420px, 1fr) minmax(0, .92fr); align-items: center; gap: 78px; }
.hero-copy { position: relative; z-index: 2; grid-column: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--green-700); font-size: 12px; line-height: 1.2; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }
.eyebrow span { width: 26px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 24px 0 24px; max-width: 760px; font-size: clamp(58px, 7.1vw, 102px); line-height: .91; letter-spacing: -.07em; font-weight: 720; }
h1 em { color: #078f92; font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.hero-lead { max-width: 610px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-contact { display: grid; gap: 7px; margin-top: 30px; }
.hero-address-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 16px; font-weight: 700; }
.hero-contact .icon { width: 21px; height: 21px; color: var(--green-700); }
.hero-contact-note { color: #078f92; font-size: 13px; font-weight: 750; line-height: 1.35; }
.hero-visual { position: absolute; z-index: 0; top: 50%; left: max(28px, calc((100vw - 1180px) / 2 + 34px)); width: min(32vw, 430px); aspect-ratio: 1; transform: translateY(-50%); pointer-events: none; }
.visual-panel { position: relative; height: 100%; overflow: hidden; border-radius: 0; background: transparent; box-shadow: none; isolation: isolate; }
.visual-panel::before,
.visual-panel::after { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; }
.visual-panel::before { background: linear-gradient(270deg, var(--paper) 0%, rgba(251,250,246,.96) 13%, rgba(251,250,246,.76) 31%, rgba(251,250,246,.24) 58%, rgba(251,250,246,0) 100%); }
.visual-panel::after { background: linear-gradient(180deg, var(--paper) 0%, rgba(251,250,246,0) 18%, rgba(251,250,246,0) 78%, #f7f6ef 100%), linear-gradient(90deg, rgba(217,238,232,.05), rgba(5,177,181,.08)); box-shadow: inset 0 0 100px rgba(251,250,246,.28); mix-blend-mode: screen; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.72) contrast(.94) brightness(1.05); opacity: .66; }
.visual-panel-logo { display: grid; place-items: center; border: 1px solid rgba(19,41,37,.1); border-radius: 50%; background: rgba(255,255,255,.78); box-shadow: 0 28px 80px rgba(22,60,54,.1); }
.visual-panel-logo::before { display: none; }
.visual-panel-logo::after { display: none; }
.hero-logo-mark { position: relative; z-index: 3; width: 72%; height: 72%; border-radius: 50%; object-fit: contain; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-orb-one { top: 8%; left: -140px; width: 320px; height: 320px; background: rgba(217, 238, 232, .58); }
.hero-orb-two { right: -190px; bottom: 0; width: 420px; height: 420px; border: 1px solid rgba(46, 103, 92, .12); }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; }
.section-heading h2 { margin: 20px 0 0; font-size: clamp(44px, 5vw, 70px); line-height: 1.02; letter-spacing: -.055em; font-weight: 700; }
.section-heading h2 em { display: inline-block; color: #078f92; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: 0; }
.about-copy { padding-top: 52px; }
.about-copy p { max-width: 660px; color: var(--ink-soft); }
.about-copy .large-copy { margin-bottom: 26px; color: var(--ink); font-size: 25px; line-height: 1.42; letter-spacing: -.025em; }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 18px; color: var(--green-800); border-bottom: 1px solid currentColor; font-weight: 750; font-size: 14px; }

.services { background: var(--cream); }
.section-heading-row { display: grid; grid-template-columns: 1.2fr .65fr; align-items: end; gap: 70px; margin-bottom: 60px; }
.section-heading-row > p { max-width: 440px; margin: 0 0 6px; color: var(--ink-soft); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { position: relative; min-height: 210px; display: flex; flex-direction: column; padding: 22px; overflow: hidden; border: 1px solid rgba(19,41,37,.08); border-radius: var(--radius-lg); background: rgba(255,255,255,.72); transition: transform .25s, background .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow-soft); }
.service-card-featured { background: var(--green-900); color: var(--white); }
.service-card-featured:hover { background: var(--green-800); }
.service-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--mint-light); color: var(--green-700); }
.service-icon svg { width: 22px; height: 22px; }
.service-card-featured .service-icon { background: rgba(255,255,255,.12); color: var(--white); }
.service-number,
.service-card > span { display: none !important; }
.service-card h3 { margin: 28px 0 12px; font-size: 22px; line-height: 1.15; letter-spacing: -.035em; }
.service-card ul { display: grid; gap: 5px; margin: 0; padding: 0; color: var(--ink-soft); list-style: none; font-size: 13px; }
.service-card li::before { content: "—"; margin-right: 8px; color: var(--green-700); }
.service-card-featured ul { color: rgba(255,255,255,.67); }
.service-card-featured li::before { color: #a9d7cd; }
.service-card-wide { grid-column: span 3; min-height: 126px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; }
.service-card-wide h3 { margin: 0 0 8px; }
.round-link { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 23px; transition: background .2s, color .2s, transform .2s; }
.round-link:hover { transform: rotate(-15deg); background: var(--green-900); color: var(--white); }

.insurance { padding: 96px 0 0; background: var(--paper); }
.insurance-panel { display: grid; grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr); align-items: center; gap: clamp(32px, 5vw, 74px); padding: clamp(30px, 5vw, 58px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow-soft); }
.insurance-logo { display: grid; place-items: center; padding: clamp(22px, 4vw, 34px); border: 1px solid rgba(19,41,37,.08); border-radius: var(--radius-lg); background: var(--paper); }
.insurance-logo img { width: min(100%, 300px); height: auto; object-fit: contain; }
.insurance-copy h2 { margin: 18px 0 18px; font-size: clamp(36px, 4.2vw, 58px); line-height: 1.02; letter-spacing: -.05em; }
.insurance-copy p { max-width: 720px; margin: 0; color: var(--ink-soft); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.62; }

.price-section { overflow: hidden; background: var(--green-950); color: var(--white); }
.price-heading { margin-bottom: 44px; }
.eyebrow-light { color: #9bc9bf; }
.price-heading > p { color: rgba(255,255,255,.6); }
.price-tool { padding: 20px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-xl); background: rgba(255,255,255,.055); box-shadow: 0 30px 80px rgba(0,0,0,.12); }
.price-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.search-box { min-width: 0; flex: 1; height: 56px; display: flex; align-items: center; gap: 12px; padding: 0 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(255,255,255,.08); }
.search-box:focus-within { border-color: #8cc3b7; box-shadow: 0 0 0 4px rgba(140,195,183,.13); }
.search-box .icon { width: 20px; height: 20px; color: rgba(255,255,255,.55); }
.search-box input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: var(--white); }
.search-box input::placeholder { color: rgba(255,255,255,.45); }
kbd { min-width: 26px; display: grid; place-items: center; padding: 2px 7px; border: 1px solid rgba(255,255,255,.14); border-radius: 6px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.45); font-size: 11px; font-family: inherit; }
.toolbar-actions { display: flex; gap: 8px; }
.tool-button { height: 44px; padding-inline: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: transparent; color: rgba(255,255,255,.72); font-size: 12px; cursor: pointer; }
.tool-button:hover { background: rgba(255,255,255,.08); color: var(--white); }
.category-chips { display: flex; gap: 8px; padding: 4px 0 18px; overflow-x: auto; scrollbar-width: thin; }
.category-chip { flex: 0 0 auto; height: 38px; padding: 0 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: transparent; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 700; cursor: pointer; }
.category-chip:hover, .category-chip.active { border-color: #9bc9bf; background: var(--mint); color: var(--green-950); }
.price-result { min-height: 18px; margin: 0 4px 10px; color: rgba(255,255,255,.45); font-size: 12px; }
.price-list { display: grid; gap: 10px; }
.price-category { overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(255,255,255,.055); }
.price-category[open] { background: rgba(255,255,255,.075); }
.price-category summary { min-height: 68px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 14px; padding: 15px 18px; cursor: pointer; list-style: none; }
.price-category summary::-webkit-details-marker { display: none; }
.price-category-title { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 760; }
.price-category-title span:first-child { width: 35px; height: 35px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 11px; background: rgba(217,238,232,.12); color: #9bc9bf; font-size: 11px; }
.item-count { color: rgba(255,255,255,.38); font-size: 11px; }
.chevron { width: 18px; height: 18px; color: rgba(255,255,255,.5); transition: transform .2s; }
.price-category[open] .chevron { transform: rotate(180deg); }
.price-items { border-top: 1px solid rgba(255,255,255,.09); }
.price-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(110px, auto); gap: 24px; align-items: center; min-height: 58px; padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,.07); }
.price-row:last-child { border-bottom: 0; }
.price-row:hover { background: rgba(255,255,255,.035); }
.price-name { color: rgba(255,255,255,.77); font-size: 13px; }
.price-value { color: var(--white); font-size: 13px; font-weight: 780; text-align: right; white-space: nowrap; }
.price-note { margin: 0; padding: 13px 18px; border-top: 1px solid rgba(255,255,255,.07); background: rgba(0,0,0,.08); color: #9bc9bf; font-size: 11px; }
.price-note::before { content: "ℹ"; margin-right: 8px; }
.empty-state { padding: 62px 20px; text-align: center; }
.empty-state svg { width: 42px; height: 42px; margin: 0 auto 16px; color: rgba(255,255,255,.42); }
.empty-state h3 { margin-bottom: 6px; }
.empty-state p { color: rgba(255,255,255,.52); }
.price-disclaimer { max-width: 820px; margin: 24px auto 0; color: rgba(255,255,255,.42); font-size: 11px; text-align: center; }

.page-hero { padding: 88px 0 78px; background: linear-gradient(180deg, var(--paper), #f7f6ef); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 80px; }
.page-hero h1 { margin: 0 0 22px; max-width: 820px; font-size: clamp(54px, 7vw, 94px); }
.page-lead { max-width: 690px; margin: 0; color: var(--ink-soft); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.page-hero-aside { display: grid; gap: 14px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.72); box-shadow: var(--shadow-soft); }
.page-hero-aside strong { font-size: 15px; }
.page-hero-aside p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.price-page { background: var(--paper); padding-top: 64px; }
.category-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 52px; margin-bottom: 42px; }
.category-pills a { min-height: 38px; display: inline-flex; align-items: center; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--green-900); font-size: 12px; font-weight: 750; transition: background .2s, transform .2s; }
.category-pills a:hover { transform: translateY(-1px); background: var(--mint-light); }
.price-table-list { display: grid; gap: 34px; }
.price-table-group { scroll-margin-top: 104px; }
.price-table-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 12px; }
.price-table-heading h2 { margin: 0; font-size: clamp(26px, 3vw, 40px); line-height: 1.05; letter-spacing: -.04em; }
.price-table-heading span { color: var(--ink-soft); font-size: 12px; font-weight: 750; white-space: nowrap; }
.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); }
.price-table { width: 100%; min-width: 640px; border-collapse: collapse; }
.price-table th, .price-table td { padding: 15px 18px; border-bottom: 1px solid rgba(19,41,37,.09); text-align: left; vertical-align: top; }
.price-table th { background: var(--mint-light); color: var(--green-900); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.price-table th:last-child, .price-table td:last-child { width: 190px; text-align: right; white-space: nowrap; }
.price-table td { color: var(--ink-soft); font-size: 14px; }
.price-table td:last-child { color: var(--ink); font-weight: 780; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:hover td { background: rgba(237,247,244,.48); }
.price-table-note { margin: 10px 0 0; color: var(--ink-soft); font-size: 12px; }
.price-page-disclaimer { max-width: 820px; margin: 44px 0 0; color: var(--ink-soft); font-size: 13px; }

.team-section { min-height: calc(100vh - 108px); display: grid; align-items: start; background: var(--paper); }
.team-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; margin-bottom: 56px; }
.team-intro p { color: var(--ink-soft); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.team-people-grid { grid-template-columns: repeat(3, 1fr); align-items: start; gap: 14px; }
.team-card { min-height: 260px; padding: 24px; border: 1px solid rgba(19,41,37,.08); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.team-card-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 14px; background: var(--mint-light); color: var(--green-700); }
.team-card-icon svg { width: 23px; height: 23px; }
.team-card h2 { margin: 0 0 12px; font-size: 24px; line-height: 1.15; letter-spacing: -.035em; }
.team-card p { margin-bottom: 18px; color: var(--ink-soft); font-size: 14px; }
.team-card ul { display: grid; gap: 8px; margin: 0; padding: 0; color: var(--ink-soft); list-style: none; font-size: 13px; }
.team-card li::before { content: "—"; margin-right: 8px; color: var(--green-700); }
.team-note { margin-top: 42px; padding: 30px; border-radius: var(--radius-lg); background: var(--cream); color: var(--ink-soft); }
.team-note p { max-width: 860px; margin: 0; }
.person-card { min-height: 0; display: grid; grid-template-columns: 112px minmax(0, 1fr); align-items: stretch; padding: 0; overflow: hidden; }
.person-card picture { width: 112px; height: 112px; display: block; }
.person-card-photo { width: 112px; height: 112px; object-fit: cover; object-position: center; background: var(--mint-light); }
.person-card-placeholder { display: grid; place-items: center; background: linear-gradient(135deg, var(--mint-light), #f7f6ef); color: rgba(22,60,54,.34); font-size: 28px; font-weight: 800; letter-spacing: 0; }
.person-card-copy { align-self: center; padding: 14px 16px; }
.person-card h2 { margin-bottom: 4px; font-size: 18px; }
.person-card p { margin: 0; font-size: 12px; line-height: 1.35; }

.contact { padding-bottom: 54px; background: var(--paper); }
.contact-shell { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 610px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow); }
.contact-copy { padding: clamp(40px, 6vw, 74px); }
.contact-copy h2 { margin: 20px 0 22px; font-size: clamp(45px, 5vw, 68px); line-height: 1; letter-spacing: -.055em; }
.contact-copy > p { max-width: 470px; color: var(--ink-soft); }
.contact-links { display: grid; gap: 8px; margin-top: 38px; }
.contact-links > a { min-width: 0; display: grid; grid-template-columns: 47px minmax(0, 1fr); align-items: center; gap: 13px; padding: 11px; border-radius: 15px; transition: background .2s; }
.contact-links > a:hover { background: var(--mint-light); }
.contact-icon { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 14px; background: var(--mint-light); color: var(--green-700); }
.contact-icon svg { width: 21px; height: 21px; }
.contact-links a > span:last-child { min-width: 0; display: grid; }
.contact-links small { color: var(--ink-soft); font-size: 11px; }
.contact-links strong { overflow-wrap: anywhere; font-size: 14px; }
.mobile-address-line { display: inline; }
.map-wrap { position: relative; min-height: 540px; background: var(--mint); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 610px; display: block; border: 0; filter: saturate(.65) contrast(.96); }
.map-button { position: absolute; right: 20px; bottom: 20px; display: inline-flex; gap: 9px; align-items: center; padding: 13px 18px; border-radius: 999px; background: var(--white); box-shadow: var(--shadow-soft); color: var(--green-900); font-size: 13px; font-weight: 750; }

.cta-band { padding: 0 0 80px; background: var(--paper); }
.cta-band-inner { min-height: 220px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 42px 58px; border-radius: var(--radius-xl); background: var(--green-800); color: var(--white); }
.cta-band-inner span { color: rgba(255,255,255,.64); font-size: 13px; }
.cta-band-inner h2 { margin: 2px 0 0; font-size: clamp(34px, 4vw, 52px); letter-spacing: -.045em; }
.button-light { border-color: var(--white); background: var(--white); color: var(--green-900); }
.button-light:hover { background: var(--mint-light); color: var(--green-900); }

.site-footer { padding: 74px 0 26px; background: #0c2521; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 80px; padding-bottom: 54px; }
.brand-footer { color: var(--white); }
.brand-footer .brand-copy small { color: #91c0b6; }
.brand-footer .brand-logo { border-color: rgba(255,255,255,.22); box-shadow: 0 10px 28px rgba(0,0,0,.22); }
.footer-grid p { margin-top: 20px; color: rgba(255,255,255,.48); font-size: 13px; }
.footer-grid h3 { margin: 3px 0 18px; color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid > div:not(:first-child) a { color: rgba(255,255,255,.75); font-size: 13px; }
.footer-grid > div:not(:first-child) a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: 11px; }

.jump-top { position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom)); z-index: 90; width: 52px; height: 52px; display: none; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: var(--green-900); color: var(--white); box-shadow: 0 14px 34px rgba(16,47,42,.24); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s, transform .2s, background .2s; }
.jump-top:hover { background: var(--green-800); }
.jump-top svg { width: 24px; height: 24px; }
body.menu-open .jump-top { opacity: 0; pointer-events: none; }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .desktop-nav { gap: 22px; }
  .brand-logo { width: 70px; height: 70px; }
  .brand-copy strong { font-size: 23px; }
  .brand-copy small { font-size: 15px; }
  .hero-grid { grid-template-columns: .8fr 1fr; gap: 42px; }
  .hero-visual { left: 0; width: min(43vw, 560px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: span 2; }
  .insurance-panel { grid-template-columns: .48fr 1fr; }
  .page-hero-grid { grid-template-columns: 1fr .85fr; gap: 44px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .person-card { grid-template-columns: 108px minmax(0, 1fr); }
  .person-card picture,
  .person-card-photo { width: 108px; height: 108px; }
  .contact-shell { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .desktop-nav, .desktop-cta, .language-switch { display: none; }
  .menu-toggle { display: grid; }
  .site-header { background: var(--paper); backdrop-filter: none; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 720px); }
  .section { padding: 88px 0; }
  .desktop-nav, .desktop-cta, .language-switch { display: none; }
  .menu-toggle { display: grid; }
  .site-header { background: var(--paper); backdrop-filter: none; }
  .hero { min-height: auto; padding: 38px 0 58px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { grid-column: auto; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-copy .eyebrow span { display: none; }
  h1 { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-contact { justify-items: center; }
  .hero-visual { display: none; }
  .visual-panel { height: 100%; }
  .visual-panel::before { background: linear-gradient(180deg, rgba(251,250,246,.5), rgba(251,250,246,0) 28%, rgba(251,250,246,.3)); }
  .visual-panel-logo { max-width: 320px; margin-inline: auto; }
  .hero-photo { object-position: center; opacity: .78; }
  .about-grid, .section-heading-row, .contact-shell, .page-hero-grid, .team-intro { grid-template-columns: 1fr; gap: 36px; }
  .about-copy { padding-top: 0; }
  .section-heading-row { align-items: start; }
  .page-hero { padding: 64px 0 58px; }
  .page-hero-aside { max-width: 560px; }
  .services .container { width: 100%; overflow: hidden; }
  .services .section-heading-row { width: var(--container); margin-inline: auto; }
  .services-grid { display: flex; gap: 12px; margin: 0; padding: 4px 14px 18px; overflow-x: auto; scroll-padding-inline: 14px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .service-card { flex: 0 0 min(74vw, 340px); scroll-snap-align: start; }
  .service-card:hover { transform: none; }
  .service-card-wide { grid-column: auto; display: flex; align-items: flex-start; }
  .insurance { padding-top: 74px; }
  .insurance-panel { grid-template-columns: 1fr; gap: 28px; }
  .insurance-logo { justify-self: start; width: min(100%, 340px); }
  .team-grid { grid-template-columns: 1fr; }
  .person-card { grid-template-columns: 104px minmax(0, 1fr); }
  .person-card picture,
  .person-card-photo { width: 104px; height: 104px; }
  .price-toolbar { align-items: stretch; flex-direction: column; }
  .toolbar-actions { justify-content: flex-end; }
  .contact-shell { min-height: auto; }
  .map-wrap iframe { min-height: 470px; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .jump-top { display: grid; }
  .jump-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
}

@media (max-width: 540px) {
  :root { --container: calc(100% - 24px); --radius-xl: 24px; --radius-lg: 20px; }
  html { scroll-padding-top: 88px; }
  .nav-wrap { height: 86px; }
  .brand { gap: 12px; }
  .brand-logo { width: 60px; height: 60px; }
  .brand-copy strong { font-size: 20px; }
  .brand-copy small { font-size: 13px; }
  .mobile-menu { top: 86px; }
  .mobile-menu .container { width: 100%; padding-inline: 24px; }
  .mobile-menu a:not(.button) { padding: 17px 0; font-size: 30px; line-height: 1.1; letter-spacing: 0; }
  h1 { margin: 18px auto 18px; font-size: clamp(44px, 16vw, 62px); }
  html[lang="en"] .hero h1 { font-size: clamp(42px, 12.5vw, 49px); }
  html[lang="en"] .hero h1 .mobile-line { display: block; }
  .hero { min-height: calc(100svh - 86px); padding: 46px 0 26px; }
  .hero-copy { min-height: calc(100svh - 176px); display: flex; flex-direction: column; }
  .hero .eyebrow { max-width: 320px; font-size: 11px; letter-spacing: .12em; }
  .hero-lead { margin-bottom: 24px; font-size: 16px; line-height: 1.48; }
  .hero-actions { flex-direction: column; margin-top: auto; }
  .hero-actions .button { width: 100%; min-height: 50px; }
  .hero-contact { margin-top: 20px; }
  .hero-address-link { align-items: center; text-align: center; font-size: 15px; line-height: 1.35; }
  .hero-contact-note { max-width: 320px; font-size: 12px; line-height: 1.35; }
  .contact { padding-bottom: 38px; }
  .section-heading h2 { font-size: 42px; }
  .about-copy .large-copy { font-size: 21px; }
  .mobile-address-line { display: block; }
  .category-pills { margin-top: 60px; }
  .services-grid { padding-inline: 12px; scroll-padding-inline: 12px; }
  .service-card { min-height: 255px; padding: 22px; }
  .service-card-wide { min-height: 255px; }
  .service-card-wide .round-link { margin-top: auto; }
  .insurance { padding-top: 58px; }
  .insurance-panel { padding: 24px; border-radius: var(--radius-lg); }
  .insurance-logo { width: 100%; padding: 22px; }
  .insurance-logo img { width: min(100%, 230px); }
  .insurance-copy h2 { font-size: 36px; }
  .insurance-copy p { font-size: 15px; line-height: 1.56; }
  .price-tool { padding: 12px; }
  .toolbar-actions { display: none; }
  .price-category summary { grid-template-columns: 1fr auto; }
  .item-count { display: none; }
  .price-row { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding: 12px 14px; }
  .price-name, .price-value { font-size: 12px; }
  .price-table-heading { align-items: flex-start; flex-direction: column; gap: 6px; }
  .price-table-wrap { overflow: hidden; }
  .price-table { min-width: 0; }
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: start; padding: 14px; border-bottom: 1px solid rgba(19,41,37,.09); }
  .price-table th, .price-table td { padding: 0; border-bottom: 0; }
  .price-table td:first-child { min-width: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.38; }
  .price-table th:last-child, .price-table td:last-child { width: auto; text-align: right; }
  .price-table td:last-child { align-self: start; padding: 5px 8px; border-radius: 999px; background: var(--mint-light); color: var(--green-900); font-size: 12px; line-height: 1.2; white-space: nowrap; }
  .team-card { min-height: auto; }
  .person-card { grid-template-columns: 88px minmax(0, 1fr); }
  .person-card picture,
  .person-card-photo { width: 88px; height: 88px; }
  .contact-copy { padding: 34px 24px; }
  .contact-copy h2 { font-size: 44px; }
  .map-wrap iframe { min-height: 410px; }
  .cta-band-inner { padding: 34px 26px; }
  .cta-band-inner .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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