: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; }
button, input, select, textarea { font: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 100px 0; scroll-margin-top: 84px; }
.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: 18px; letter-spacing: -.5px; color: var(--navy); }
.brand-copy small { margin-top: 5px; color: var(--teal); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.6px; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { text-decoration: none; font-size: 14px; font-weight: 600; color: #31505b; transition: color .2s; white-space: nowrap; }
.main-nav a:hover { color: var(--teal); }
.main-nav .nav-cta { background: var(--navy); color: var(--white); padding: 11px 18px; 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: 7px; padding: 10px 14px; 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: 710px; 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-image { object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(3,42,56,.98) 0%, rgba(3,42,56,.90) 34%, rgba(3,42,56,.40) 63%, rgba(3,42,56,.10) 100%); }
.hero-content { position: relative; z-index: 2; padding-block: 90px 130px; }
.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: .4px; }
.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.3px; 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; }
h3 { letter-spacing: -.5px; }
.hero-lede { font-size: 19px; line-height: 1.65; color: rgba(255,255,255,.84); margin: 0 0 34px; max-width: 585px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 51px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 13px 21px; border: 0; border-radius: 10px; text-decoration: none; font-weight: 700; transition: transform .2s, background .2s, border-color .2s; cursor: pointer; }
.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); background: transparent; }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.button-outline { border: 1px solid var(--navy); color: var(--navy); background: transparent; }
.button-outline:hover { background: var(--navy); color: var(--white); }
.hero-note { position: absolute; z-index: 3; right: max(24px, calc((100vw - 1160px)/2)); bottom: 0; width: min(490px, 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); }
.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: 13px; color: var(--muted); }

.quick-strip { background: var(--navy-deep); color: var(--white); }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-grid > div { padding: 25px 24px; border-right: 1px solid rgba(255,255,255,.09); display: grid; gap: 2px; }
.quick-grid > div:last-child { border-right: 0; }
.quick-grid strong { font-family: "Manrope"; font-size: 20px; }
.quick-grid span { color: rgba(255,255,255,.62); font-size: 13px; }

.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; }

.hospitals { background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; 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; }
.hospital-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hospital-card { border: 1px solid var(--line); border-radius: 26px; padding: 38px; min-height: 400px; position: relative; overflow: hidden; }
.hospital-card-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.hospital-card::after { content: "+"; position: absolute; right: -10px; bottom: -85px; font-family: "Manrope"; font-size: 260px; font-weight: 800; line-height: 1; color: rgba(7,59,76,.035); pointer-events: none; }
.hospital-card-primary::after { color: rgba(255,255,255,.035); }
.hospital-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.hospital-meta span { padding: 7px 11px; border-radius: 999px; background: var(--teal-light); color: var(--navy); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.hospital-card-primary .hospital-meta span { background: rgba(255,255,255,.10); color: #b5f3ed; border: 1px solid rgba(255,255,255,.14); }
.hospital-card h3 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 8px; max-width: 490px; }
.hospital-location { font-weight: 700; color: var(--teal); margin: 0 0 18px; }
.hospital-card-primary .hospital-location { color: #8de7dd; }
.hospital-card > p:not(.eyebrow):not(.hospital-location) { color: var(--muted); max-width: 520px; }
.hospital-card-primary > p:not(.eyebrow):not(.hospital-location) { color: rgba(255,255,255,.72); }
.hospital-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 30px; position: relative; z-index: 1; }
.text-link { color: var(--navy); font-weight: 700; text-underline-offset: 4px; }
.hospital-card-primary .text-link { color: var(--white); }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 310px; padding: 28px 25px; border: 1px solid var(--line); border-radius: var(--radius); position: relative; overflow: hidden; background: var(--white); 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); }

.insurance { background: var(--white); }
.insurance-panel { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: var(--white); border-radius: 28px; padding: 62px 66px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; position: relative; overflow: hidden; }
.insurance-panel::before { content: "+"; position: absolute; left: -65px; top: -80px; font-family: "Manrope"; font-size: 330px; line-height: 1; font-weight: 800; color: rgba(255,255,255,.025); }
.insurance-panel > div { position: relative; z-index: 1; }
.insurance-panel h2 { max-width: 520px; }
.insurance-panel > div:first-child > p:last-child { color: rgba(255,255,255,.70); font-size: 17px; }
.insurance-points { display: grid; gap: 14px; }
.insurance-points > div { display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: start; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 18px; }
.insurance-points span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: rgba(32,183,170,.15); color: #8de7dd; font-family: "Manrope"; font-weight: 800; }
.insurance-points p { margin: 0; color: rgba(255,255,255,.68); font-size: 14px; }
.insurance-points strong { color: var(--white); font-family: "Manrope"; }

.appointment { background: var(--paper); }
.appointment-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.appointment-copy { position: sticky; top: 110px; }
.appointment-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.appointment-note { margin-top: 30px; padding: 18px 20px; background: var(--teal-light); border-radius: 15px; display: grid; gap: 5px; }
.appointment-note strong { color: var(--navy); font-family: "Manrope"; }
.appointment-note span { color: var(--muted); font-size: 14px; }
.appointment-form { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 34px; box-shadow: 0 18px 45px rgba(3,42,56,.07); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.appointment-form label { display: grid; gap: 8px; font-size: 13px; font-weight: 700; color: var(--navy); }
.appointment-form input, .appointment-form select, .appointment-form textarea { width: 100%; border: 1px solid #cddcdf; background: #fbfefe; border-radius: 10px; padding: 13px 14px; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s; }
.appointment-form textarea { resize: vertical; margin-bottom: 18px; }
.appointment-form input:focus, .appointment-form select:focus, .appointment-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(32,183,170,.12); }
.consent-row { grid-template-columns: 20px 1fr !important; align-items: start; gap: 10px !important; margin: 4px 0 22px; font-weight: 500 !important; color: var(--muted) !important; }
.consent-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--teal); }
.form-submit { width: 100%; }
.form-help { margin: 13px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.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: .9fr 1.1fr; gap: 60px; 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; }
.location-list { display: grid; gap: 14px; position: relative; z-index: 1; }
.location-card { background: var(--white); color: var(--ink); border-radius: 18px; padding: 24px; }
.location-card h3 { margin: 8px 0 6px; font-size: 20px; }
.location-card p { color: var(--muted); margin: 0 0 15px; font-size: 14px; }
.contact-label { color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.map-link-light { color: var(--navy); font-weight: 700; text-underline-offset: 4px; }

.site-footer { margin-top: 100px; padding: 36px 0 24px; 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; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 26px; padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; font-size: 11px; color: rgba(255,255,255,.38); }

.status-page { min-height: 100vh; display: grid; place-items: center; background: var(--paper); padding: 30px; }
.status-card { width: min(620px, 100%); background: white; border: 1px solid var(--line); border-radius: 24px; padding: 40px; box-shadow: var(--shadow); text-align: center; }
.status-card .brand { margin-bottom: 28px; }
.status-card p { color: var(--muted); }
.status-card .button { margin-top: 14px; }

@media (max-width: 980px) {
  .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: 670px; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,42,56,.96), rgba(3,42,56,.76)); }
  .intro-grid, .section-heading, .insurance-panel, .appointment-grid, .contact-panel { grid-template-columns: 1fr; gap: 34px; }
  .hospital-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid > div:nth-child(2) { border-right: 0; }
  .quick-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.09); }
  .insurance-panel, .contact-panel { padding: 48px; }
  .appointment-copy { position: static; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .site-header { height: 72px; }
  .main-nav { top: 71px; }
  .brand-copy strong { font-size: 16px; }
  .hero { min-height: 760px; align-items: flex-start; }
  .hero-image { object-position: 60% center; }
  .hero-content { padding-top: 70px; }
  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; }
  .hero-note div span { font-size: 12px; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-grid > div { padding: 20px 14px; }
  .trust-row, .service-grid, .form-grid { grid-template-columns: 1fr; }
  .hospital-card { padding: 28px; }
  .hospital-actions .button { width: 100%; }
  .service-card { min-height: 275px; }
  .section-heading { margin-bottom: 34px; }
  .insurance-panel { width: 100%; border-radius: 0; padding: 56px 22px; }
  .appointment-form { padding: 24px 18px; }
  .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; }
  .footer-bottom { flex-direction: column; }
}

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

/* Phase 2 enhancements */
.topbar { background: var(--navy-deep); color: rgba(255,255,255,.72); font-size: 12px; }
.topbar-inner { min-height: 34px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.center-action { display: flex; justify-content: center; margin-top: 38px; }
.care-path { background: var(--white); }
.compact-heading { margin-bottom: 34px; }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-grid article, .info-card-grid article { border: 1px solid var(--line); border-radius: 20px; padding: 28px; background: var(--white); }
.step-grid span, .info-card-grid span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--teal-light); color: var(--navy); font-family: "Manrope"; font-weight: 800; margin-bottom: 26px; }
.step-grid h3, .info-card-grid h3 { font-size: 20px; margin-bottom: 10px; }
.step-grid p, .info-card-grid p { color: var(--muted); margin: 0; font-size: 14px; }
.privacy-inline { font-size: 13px !important; }
.privacy-inline a { color: var(--navy); font-weight: 700; }
.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; align-items: start; }
.faq-intro { color: var(--muted); }
.accordion-list { display: grid; gap: 12px; }
details { background: var(--white); border: 1px solid var(--line); border-radius: 15px; padding: 0 20px; }
summary { cursor: pointer; padding: 20px 36px 20px 0; font-family: "Manrope"; font-weight: 700; color: var(--navy); position: relative; }
summary::after { content: "+"; position: absolute; right: 0; top: 16px; font-size: 22px; color: var(--teal); }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: 0; padding: 0 0 20px; }
.location-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-main { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 42px; }
.footer-main > div:first-child p { max-width: 300px; font-size: 13px; }
.footer-links { display: grid; align-content: start; gap: 8px; font-size: 13px; }
.footer-links strong { color: var(--white); font-family: "Manrope"; margin-bottom: 4px; }
.footer-links a { color: rgba(255,255,255,.62); text-decoration: none; }
.footer-links a:hover { color: #8de7dd; }
.page-hero { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: white; padding: 100px 0 90px; position: relative; overflow: hidden; }
.page-hero::after { content: "+"; position: absolute; right: 4%; bottom: -155px; font: 800 420px/1 "Manrope"; color: rgba(255,255,255,.025); }
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px !important; font-size: clamp(46px, 6vw, 78px); }
.page-hero p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.72); font-size: 18px; }
.page-hero .hospital-meta { margin: 0 0 24px; }
.page-hero .hospital-meta span { background: rgba(255,255,255,.1); color: #b5f3ed; border: 1px solid rgba(255,255,255,.14); }
.page-hero-alt { background: linear-gradient(135deg, #084e5e, var(--navy-deep)); }
.page-hero-compact { padding: 78px 0 68px; }
.content-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.rich-copy p { color: var(--muted); font-size: 17px; }
.soft-section { background: var(--paper); }
.info-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.callout { background: var(--navy); color: white; border-radius: 28px; padding: 56px 60px; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.callout h2 { max-width: 760px; margin-bottom: 0; }
.service-grid-page { grid-template-columns: repeat(3, 1fr); }
.prose-page { width: min(820px, calc(100% - 40px)); }
.prose-page h2 { font-size: 28px; margin: 42px 0 12px; }
.prose-page h2:first-child { margin-top: 0; }
.prose-page p { color: var(--muted); font-size: 17px; }

@media (max-width: 980px) {
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-inner span:last-child { display: none; }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid, .content-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .callout { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .topbar { display: none; }
  .step-grid, .info-card-grid, .service-grid-page { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .page-hero { padding: 72px 0 62px; }
  .page-hero h1 { font-size: 42px; letter-spacing: -1.7px; }
  .callout { width: 100%; border-radius: 0; padding: 48px 22px; }
  .callout .button { width: 100%; }
}


/* Staff webmail page */
.staff-mail-section { background: var(--paper); min-height: calc(100vh - 220px); }
.staff-mail-intro { max-width: 720px; margin-bottom: 34px; }
.staff-mail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.staff-mail-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: 0 14px 35px rgba(3,42,56,.07); }
.staff-mail-card .mail-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: var(--teal-light); color: var(--teal); font-size: 25px; margin-bottom: 20px; }
.staff-mail-card h2 { font-size: 25px; margin-bottom: 8px; letter-spacing: -.5px; }
.staff-mail-address { display: block; color: var(--navy); font-weight: 700; overflow-wrap: anywhere; margin-bottom: 20px; }
.staff-mail-note { color: var(--muted); margin: 0 0 22px; }
.staff-mail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.staff-mail-actions .button-secondary { border: 1px solid var(--line); color: var(--navy); background: var(--white); }
@media (max-width: 700px) { .staff-mail-grid { grid-template-columns: 1fr; } }
