:root {
  --navy: #073b4c;
  --navy-deep: #032a38;
  --teal: #20b7aa;
  --teal-light: #dff7f3;
  --ink: #102a33;
  --muted: #61747b;
  --line: #d9e5e7;
  --paper: #f7fbfb;
  --white: #fff;
  --amber: #f3b34c;
  --radius: 22px;
  --shadow: 0 22px 55px rgba(3, 42, 56, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 100px 0; scroll-margin-top: 80px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 1000; left: 20px; top: -80px; background: var(--white); padding: 12px 18px; border-radius: 8px; color: var(--navy); transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { height: 78px; background: rgba(255,255,255,.96); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(7,59,76,.08); backdrop-filter: blur(12px); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--navy); position: relative; box-shadow: 0 8px 20px rgba(7,59,76,.18); }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; background: var(--teal); border-radius: 2px; }
.brand-mark::before { width: 22px; height: 7px; }
.brand-mark::after { width: 7px; height: 22px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Manrope", sans-serif; font-size: 20px; letter-spacing: -.5px; color: var(--navy); }
.brand-copy small { margin-top: 5px; color: var(--teal); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { text-decoration: none; font-size: 15px; font-weight: 600; color: #31505b; transition: color .2s; }
.main-nav a:hover { color: var(--teal); }
.main-nav .nav-cta { background: var(--navy); color: var(--white); padding: 11px 20px; border-radius: 10px; }
.main-nav .nav-cta:hover { color: var(--white); background: var(--navy-deep); }
.main-nav .staff-mail-button { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--teal); border-radius: 10px; color: var(--navy); }
.main-nav .staff-mail-button:hover { background: var(--teal-light); color: var(--navy); }
.menu-button { display: none; border: 0; background: transparent; padding: 10px; }
.menu-button span:not(.sr-only) { width: 24px; height: 2px; background: var(--navy); margin: 5px 0; display: block; }

.hero { min-height: 690px; position: relative; display: flex; align-items: center; overflow: hidden; color: var(--white); }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { background: linear-gradient(90deg, rgba(3,42,56,.97) 0%, rgba(3,42,56,.87) 35%, rgba(3,42,56,.25) 67%, rgba(3,42,56,.08) 100%); }
.hero-content { position: relative; z-index: 2; padding-block: 88px 120px; }
.hero-content > * { max-width: 650px; }
.level-pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 12px; margin-bottom: 28px; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.1); backdrop-filter: blur(8px); border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .5px; }
.level-pill span { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(243,179,76,.18); }
.eyebrow { margin: 0 0 13px; color: #78ded4; font-size: 13px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase; }
.eyebrow.dark { color: var(--navy); }
.eyebrow.teal { color: var(--teal); }
.eyebrow.light { color: #8de7dd; }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin-top: 0; line-height: 1.12; }
h1 { font-size: clamp(44px, 5.4vw, 74px); max-width: 720px !important; margin-bottom: 24px; letter-spacing: -2.7px; }
h2 { font-size: clamp(34px, 4vw, 52px); letter-spacing: -1.7px; margin-bottom: 22px; }
.hero-lede { font-size: 19px; line-height: 1.65; color: rgba(255,255,255,.82); margin: 0 0 34px; max-width: 580px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 51px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 13px 21px; border-radius: 10px; text-decoration: none; font-weight: 700; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal); color: #042e39; }
.button-primary:hover { background: #55d4c9; }
.button-ghost { border: 1px solid rgba(255,255,255,.38); color: var(--white); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.hero-note { position: absolute; z-index: 3; right: max(24px, calc((100vw - 1160px)/2)); bottom: 0; width: min(430px, calc(100% - 40px)); background: var(--white); color: var(--ink); padding: 24px 28px; display: flex; align-items: center; gap: 18px; border-radius: 18px 18px 0 0; box-shadow: var(--shadow); text-decoration: none; transition: transform .2s, box-shadow .2s; }
.hero-note:hover { transform: translateY(-3px); box-shadow: 0 26px 62px rgba(3, 42, 56, .18); }
.note-icon { width: 45px; height: 45px; flex: 0 0 45px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-light); color: var(--teal); font-family: "Manrope"; font-size: 26px; font-weight: 800; }
.hero-note strong, .hero-note span { display: block; }
.hero-note strong { font-family: "Manrope"; }
.hero-note div span { font-size: 14px; color: var(--muted); }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.intro-grid h2 { max-width: 510px; }
.intro-copy > p { color: var(--muted); margin: 0 0 16px; font-size: 17px; }
.trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.trust-row div { display: grid; grid-template-columns: 32px 1fr; }
.trust-row span { grid-row: 1 / span 2; width: 24px; height: 24px; display: grid; place-items: center; background: var(--teal); color: white; border-radius: 50%; font-size: 13px; margin-top: 3px; }
.trust-row strong { font-family: "Manrope"; }
.trust-row small { color: var(--muted); font-size: 13px; }

.services { background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 80px; align-items: end; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 0; max-width: 700px; }
.section-heading > p { color: var(--muted); margin: 0 0 6px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-height: 330px; padding: 28px 25px; border: 1px solid var(--line); border-radius: var(--radius); position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card.featured { background: var(--navy); color: var(--white); border-color: var(--navy); }
.service-number { position: absolute; right: 22px; top: 18px; font-family: "Manrope"; color: #a7bac0; font-size: 13px; }
.featured .service-number { color: rgba(255,255,255,.5); }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: var(--teal-light); color: var(--teal); font-size: 27px; margin: 42px 0 28px; }
.featured .service-icon { background: rgba(255,255,255,.11); color: #7ce0d7; }
.service-card h3 { font-size: 21px; margin-bottom: 13px; }
.service-card p { color: var(--muted); margin: 0; font-size: 15px; }
.featured p { color: rgba(255,255,255,.7); }

.contact { padding-top: 20px; background: var(--white); }
.contact-panel { background: var(--navy); color: var(--white); border-radius: 28px; padding: 65px 70px; display: grid; grid-template-columns: 1fr .9fr; gap: 70px; position: relative; overflow: hidden; }
.contact-panel::after { content: "+"; position: absolute; left: -42px; bottom: -120px; font-family: "Manrope"; font-weight: 800; font-size: 340px; color: rgba(255,255,255,.025); line-height: 1; }
.contact-copy { position: relative; z-index: 1; }
.contact-copy h2 { margin-bottom: 18px; }
.contact-copy > p:last-child { color: rgba(255,255,255,.7); font-size: 17px; max-width: 530px; }
.contact-card { position: relative; z-index: 1; background: var(--white); color: var(--ink); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; align-items: flex-start; }
.contact-label { color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.contact-card > a:not(.button) { margin: 8px 0 4px; font-family: "Manrope"; color: var(--navy); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; overflow-wrap: anywhere; }
.contact-card .contact-phone { margin-top: 2px; text-decoration: none; }
.contact-card p { color: var(--muted); margin: 4px 0 23px; }
.contact-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.map-link { color: var(--navy); font-weight: 700; text-underline-offset: 4px; }

.site-footer { margin-top: 100px; padding: 36px 0; background: var(--navy-deep); color: rgba(255,255,255,.62); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 25px; }
.footer-grid p { margin: 0; font-size: 13px; }
.footer-grid p:last-child { text-align: right; }
.brand-light .brand-copy strong { color: white; }

@media (max-width: 900px) {
  .main-nav { display: none; position: absolute; top: 77px; left: 0; right: 0; padding: 24px 20px; background: white; box-shadow: 0 18px 35px rgba(3,42,56,.12); flex-direction: column; align-items: stretch; gap: 20px; }
  .main-nav.open { display: flex; }
  .menu-button { display: block; }
  .hero { min-height: 650px; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,42,56,.96), rgba(3,42,56,.78)); }
  .intro-grid, .section-heading, .contact-panel { grid-template-columns: 1fr; gap: 32px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-panel { padding: 48px; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .hero { min-height: 720px; align-items: flex-start; }
  .hero-content { padding-top: 68px; }
  h1 { font-size: 42px; letter-spacing: -1.7px; }
  h2 { font-size: 34px; }
  .hero-lede { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .hero-note { right: 14px; width: calc(100% - 28px); padding: 19px; }
  .trust-row, .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 275px; }
  .section-heading { margin-bottom: 34px; }
  .contact { padding-top: 0; }
  .contact-panel { width: 100%; border-radius: 0; padding: 58px 22px; }
  .site-footer { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-grid p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
.topbar{background:#032a38;color:rgba(255,255,255,.75);font-size:13px}.topbar-inner{min-height:36px;display:flex;align-items:center;justify-content:space-between;gap:20px}.center-action{margin-top:34px;text-align:center}.button-outline{border:1px solid var(--navy);color:var(--navy);background:transparent}.insurance{background:var(--paper)}.insurance-panel{background:var(--navy);color:#fff;border-radius:28px;padding:64px;display:grid;grid-template-columns:1fr 1fr;gap:60px}.insurance-panel h2{margin-bottom:18px}.insurance-panel>div>p:last-child{color:rgba(255,255,255,.72)}.insurance-points{display:grid;gap:16px}.insurance-points>div{display:grid;grid-template-columns:46px 1fr;gap:16px;padding:16px 0;border-bottom:1px solid rgba(255,255,255,.12)}.insurance-points span{width:40px;height:40px;border-radius:50%;background:rgba(32,183,170,.15);display:grid;place-items:center;color:#7ce0d7;font-weight:800}.insurance-points p{margin:0;color:rgba(255,255,255,.78)}.appointment-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px}.appointment-copy>p{color:var(--muted)}.appointment-note{margin-top:24px;padding:18px;border-left:4px solid var(--teal);background:var(--paper);display:grid}.appointment-form{background:var(--paper);border:1px solid var(--line);border-radius:22px;padding:28px}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.appointment-form label{display:grid;gap:7px;font-weight:700;font-size:14px;color:var(--navy)}.appointment-form input,.appointment-form select,.appointment-form textarea{width:100%;border:1px solid var(--line);border-radius:10px;padding:13px 14px;font:inherit;background:white}.appointment-form textarea{resize:vertical}.consent-row{grid-template-columns:20px 1fr!important;align-items:start;margin:16px 0}.consent-row input{width:auto}.form-submit{border:0;cursor:pointer}.form-help{font-size:12px;color:var(--muted)}
@media(max-width:900px){.insurance-panel,.appointment-grid{grid-template-columns:1fr}.topbar-inner{flex-direction:column;align-items:flex-start;padding:8px 0}.form-grid{grid-template-columns:1fr}.insurance-panel{padding:42px}}

/* Production page components */
.page-hero{background:linear-gradient(135deg,var(--navy-deep),var(--navy));color:#fff;padding:84px 0 78px;position:relative;overflow:hidden}.page-hero::after{content:"+";position:absolute;right:-25px;bottom:-130px;font:800 310px/1 "Manrope",sans-serif;color:rgba(255,255,255,.035)}.page-hero h1{font-size:clamp(42px,5vw,64px);margin-bottom:18px}.page-hero p{max-width:760px;color:rgba(255,255,255,.78);font-size:18px;margin:0}.breadcrumb{font-size:13px;margin-bottom:18px;color:#8de7dd}.breadcrumb a{text-decoration:none}.content-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:54px}.prose h2{font-size:32px;letter-spacing:-.8px}.prose h3{font-size:22px;margin-top:34px}.prose p,.prose li{color:var(--muted)}.prose ul{padding-left:22px}.info-card{background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);padding:28px;height:max-content}.info-card h3{margin-bottom:16px}.info-list{display:grid;gap:16px}.info-row{padding-bottom:16px;border-bottom:1px solid var(--line)}.info-row:last-child{border-bottom:0;padding-bottom:0}.info-row small{display:block;text-transform:uppercase;letter-spacing:1.5px;color:var(--teal);font-weight:800;margin-bottom:4px}.info-row a{text-decoration:none;color:var(--navy);font-weight:700}.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.feature-card{padding:26px;border:1px solid var(--line);border-radius:18px;background:#fff}.feature-card h3{font-size:19px}.feature-card p{color:var(--muted);margin-bottom:0}.service-list-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.service-list-card{padding:28px;border:1px solid var(--line);border-radius:20px;background:#fff}.service-list-card h3{font-size:20px}.service-list-card p{color:var(--muted);margin:0}.notice{padding:20px 22px;border-radius:14px;background:#fff8e8;border:1px solid #f5d99b;color:#654b12}.staff-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.mail-card{border:1px solid var(--line);border-radius:18px;padding:24px;background:#fff}.mail-card h3{font-size:19px;margin-bottom:8px}.mail-card a{color:var(--navy);font-weight:700;overflow-wrap:anywhere}.mail-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}.button-small{min-height:42px;padding:9px 15px;font-size:14px}.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:46px}.map-card{min-height:360px;border-radius:22px;background:linear-gradient(135deg,#e7f5f3,#dbecef);display:grid;place-items:center;text-align:center;padding:30px;border:1px solid var(--line)}.map-card strong{font-family:"Manrope";font-size:24px;color:var(--navy)}.map-card p{color:var(--muted)}.quick-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}.site-footer .footer-links{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}.site-footer .footer-links a{color:rgba(255,255,255,.72);text-decoration:none}.site-footer .footer-links a:hover{color:#fff}.legal{font-size:12px;color:var(--muted)}.form-status{padding:16px 18px;border-radius:12px;margin:20px 0}.form-status.success{background:#eaf8f3;color:#145d4f;border:1px solid #bce9dd}.form-status.error{background:#fff0f0;color:#8b2d2d;border:1px solid #f0c3c3}.hp-field{position:absolute!important;left:-9999px!important;opacity:0!important;height:0!important;overflow:hidden!important}.footer-note{font-size:12px;color:rgba(255,255,255,.48);margin-top:8px}.topbar a{color:inherit;text-decoration:none}.topbar a:hover{color:#fff}
@media(max-width:900px){.content-grid,.contact-grid{grid-template-columns:1fr}.feature-grid,.service-list-grid{grid-template-columns:repeat(2,1fr)}.staff-grid{grid-template-columns:1fr}.page-hero{padding:64px 0}.site-footer .footer-links{justify-content:flex-start}}
@media(max-width:620px){.feature-grid,.service-list-grid{grid-template-columns:1fr}.page-hero h1{font-size:40px}.page-hero{padding:54px 0}.quick-actions .button{width:100%}}
