:root {
  --navy: #12313f;
  --navy-deep: #0b2633;
  --teal: #23b5ad;
  --teal-dark: #0b7f7a;
  --teal-light: #eaf7f7;
  --surface: #f6fafa;
  --white: #ffffff;
  --text: #667085;
  --line: #dcebea;
  --shadow: 0 24px 70px rgba(18, 49, 63, 0.1);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--navy); background: var(--white); font-family: Inter, Arial, Helvetica, sans-serif; line-height: 1.6; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: -60px; left: 20px; z-index: 200; padding: 10px 16px; color: #fff; background: var(--navy); border-radius: 8px; }
.skip-link:focus { top: 14px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); border-bottom: 1px solid rgba(220,235,234,.9); backdrop-filter: blur(16px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo { color: var(--navy-deep); font-size: 21px; font-weight: 800; letter-spacing: -.035em; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-nav a, .mobile-nav a { position: relative; font-size: 15px; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--teal); transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--teal-dark); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--navy); transition: .2s ease; }
.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-nav { display: none; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 11px 23px; border: 1px solid transparent; border-radius: 999px; font-size: 15px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--teal-dark), #08726e); box-shadow: 0 13px 30px rgba(11,127,122,.22); }
.button-secondary { background: rgba(255,255,255,.75); border-color: #abdcd9; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .menu-toggle:focus-visible, a:focus-visible { outline: 3px solid rgba(35,181,173,.32); outline-offset: 3px; }

.hero { position: relative; overflow: hidden; padding: 76px 0 84px; background: radial-gradient(circle at 86% 22%, #dff4f3 0, transparent 27%), linear-gradient(135deg, #fff 0, #f5fbfb 100%); }
.hero::before, .hero::after, .page-hero::after { content: ""; position: absolute; width: 130px; aspect-ratio: 1; background: rgba(35,181,173,.12); clip-path: polygon(25% 6.7%,75% 6.7%,100% 50%,75% 93.3%,25% 93.3%,0 50%); }
.hero::before { top: 52px; left: -58px; }
.hero::after { right: -44px; bottom: 44px; }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 54px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; color: var(--teal-dark); font-size: 12px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--teal); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 680px; margin-bottom: 24px; font-size: clamp(43px, 5.3vw, 68px); line-height: .99; letter-spacing: -.06em; }
.lead { max-width: 650px; margin-bottom: 30px; color: var(--text); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 38px; }
.stat { padding-left: 15px; border-left: 3px solid var(--teal); }
.stat strong { display: block; font-size: 20px; line-height: 1.25; }
.stat span { color: var(--text); font-size: 13px; }

.hero-collage { position: relative; width: min(600px, 100%); aspect-ratio: 600 / 555; justify-self: center; }
.hero-collage::before, .honeycomb::before { content: ""; position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; filter: saturate(.92); mask-position: center; mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: 100% 100%; -webkit-mask-repeat: no-repeat; }
.hero-collage::before { background-image: url('../images/operating-room.jpeg'); background-position: 50% 48%; mask-image: url('../images/hero-photo-mask-v3.svg'); -webkit-mask-image: url('../images/hero-photo-mask-v3.svg'); }
.hex-dot { position: absolute; overflow: hidden; clip-path: polygon(25% 6.7%,75% 6.7%,100% 50%,75% 93.3%,25% 93.3%,0 50%); }
.hex-dot { width: 62px; height: 70px; background: linear-gradient(145deg, #62d1ca, var(--teal)); opacity: .9; }
.dot-a { top: 38px; left: 7px; }
.dot-b { top: 310px; right: -8px; }
.dot-c { bottom: 18px; left: 290px; background: rgba(255,255,255,.6); border: 2px solid #99d9d5; }

.section { overflow: hidden; padding: 88px 0; }
.section-soft { background: var(--surface); }
.section-header { max-width: 760px; margin-bottom: 40px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-label { margin-bottom: 10px; color: var(--teal-dark); font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
h2 { margin-bottom: 16px; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -.045em; }
.section-header p, .body-copy { color: var(--text); font-size: 17px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card, .info-card, .location-card, .contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 35px rgba(18,49,63,.045); }
.card { padding: 31px; }
.number-hex { width: 53px; height: 58px; display: grid; place-items: center; margin-bottom: 22px; color: #fff; background: linear-gradient(145deg, var(--teal-dark), #08726e); clip-path: polygon(25% 6.7%,75% 6.7%,100% 50%,75% 93.3%,25% 93.3%,0 50%); font-weight: 850; }
.card h3, .info-card h3 { margin-bottom: 9px; font-size: 22px; line-height: 1.25; letter-spacing: -.025em; }
.card p, .info-card p, .location-card p, .contact-card p { margin-bottom: 0; color: var(--text); }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.honeycomb { position: relative; width: min(470px, 100%); aspect-ratio: 470 / 500; justify-self: center; }
.honeycomb::before { background-image: url('../images/surgeons.jpeg'); background-position: 49% 50%; mask-image: url('../images/surgeons-photo-mask-v3.svg'); -webkit-mask-image: url('../images/surgeons-photo-mask-v3.svg'); }
.honey-accent { position: absolute; width: 15.319%; aspect-ratio: 1; clip-path: polygon(25% 6.7%,75% 6.7%,100% 50%,75% 93.3%,25% 93.3%,0 50%); background: var(--teal); right: 3.83%; bottom: 8.4%; }
.feature-list { display: grid; gap: 19px; margin-top: 28px; }
.feature { position: relative; padding-left: 32px; }
.feature::before { content: ""; position: absolute; top: 4px; left: 0; width: 18px; aspect-ratio: 1; background: var(--teal); clip-path: polygon(25% 6.7%,75% 6.7%,100% 50%,75% 93.3%,25% 93.3%,0 50%); }
.feature strong { display: block; margin-bottom: 2px; }
.feature span { color: var(--text); }

.brand-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.brand-name { min-height: 86px; display: grid; place-items: center; padding: 15px; color: #496671; background: #fff; border: 1px solid var(--line); border-radius: 18px; text-align: center; font-size: 16px; font-weight: 850; }
.brand-logo { width: 100%; max-width: 148px; max-height: 50px; object-fit: contain; filter: saturate(.95); transition: transform .25s ease, filter .25s ease; }
.brand-logo-wide { max-width: 152px; max-height: 44px; }
.supplier-brands .brand-name { position: relative; overflow: hidden; isolation: isolate; transition: color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.supplier-brands .brand-name::before { content: ""; position: absolute; z-index: -1; width: 84px; aspect-ratio: 1; right: -48px; bottom: -54px; border-radius: 50%; background: rgba(35,181,173,.1); transform: scale(.35); transition: transform .32s ease; }
.supplier-brands .brand-name::after { content: ""; position: absolute; right: 22px; bottom: 0; left: 22px; height: 3px; border-radius: 3px 3px 0 0; background: var(--teal); transform: scaleX(0); transform-origin: center; transition: transform .25s ease; }
.supplier-brands .brand-name:hover { color: var(--navy); border-color: rgba(35,181,173,.62); box-shadow: 0 16px 34px rgba(18,49,63,.1); transform: translateY(-5px); }
.supplier-brands .brand-name:hover::before { transform: scale(1.7); }
.supplier-brands .brand-name:hover::after { transform: scaleX(1); }
.supplier-brands .brand-name:hover .brand-logo { filter: saturate(1.05); transform: scale(1.03); }
.locations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.location-card { position: relative; overflow: hidden; padding: 29px; }
.location-flag { position: absolute; top: 16px; right: 18px; width: 48px; height: 48px; overflow: hidden; background: var(--teal-light); border: 3px solid #fff; border-radius: 12px; filter: saturate(.92); box-shadow: 0 6px 16px rgba(18,49,63,.12); }
.location-flag img { width: 100%; height: 100%; object-fit: contain; }
.location-card h3 { margin-bottom: 8px; font-size: 21px; }

.cta { position: relative; overflow: hidden; padding: 66px 0; color: #fff; background: linear-gradient(135deg, var(--navy-deep), #245c69); }
.cta::after { content: ""; position: absolute; top: -110px; right: 7%; width: 300px; aspect-ratio: 1; background: rgba(255,255,255,.07); clip-path: polygon(25% 6.7%,75% 6.7%,100% 50%,75% 93.3%,25% 93.3%,0 50%); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta h2 { max-width: 710px; margin-bottom: 8px; }
.cta p { margin-bottom: 0; color: rgba(255,255,255,.72); font-size: 17px; }

.page-hero { position: relative; overflow: hidden; padding: 76px 0 72px; background: linear-gradient(135deg, #f9fefe, var(--teal-light)); }
.page-hero::after { right: 10%; bottom: -92px; width: 250px; }
.page-hero h1 { max-width: 820px; }
.page-hero .lead { margin-bottom: 0; }
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.info-card { padding: 30px; }
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: start; }
.contact-card { position: relative; padding: 32px; }
.contact-card h2 { font-size: 30px; }
.contact-card + .contact-card { margin-top: 18px; }
.contact-detail { margin: 16px 0; }
.contact-detail strong { color: var(--navy); }
.contact-detail a { color: var(--teal-dark); font-weight: 750; }
.contact-email-button { margin-top: 10px; }
.company-facts { display: grid; gap: 0; margin: 0; }
.company-facts div { padding: 17px 0; border-bottom: 1px solid var(--line); }
.company-facts div:last-child { border-bottom: 0; }
.company-facts dt { color: var(--text); font-size: 13px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.company-facts dd { margin: 3px 0 0; font-weight: 750; }

.site-footer { padding: 54px 0 24px; color: #fff; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 54px; }
.footer-grid .logo { display: inline-block; margin-bottom: 16px; color: #fff; }
.footer-grid h2 { margin-bottom: 15px; font-size: 15px; letter-spacing: .02em; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.68); }
.footer-grid p { margin-bottom: 0; font-size: 14px; }
.footer-links { display: grid; gap: 7px; }
.footer-links a:hover { color: #fff; }
.copyright { margin-top: 38px; padding-top: 22px; color: rgba(255,255,255,.48); border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }

@media (max-width: 1020px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-collage { margin-inline: auto; }
  .split { gap: 38px; }
  .brand-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .container { width: min(100% - 34px, 1180px); }
  .header-inner { min-height: 68px; }
  .desktop-nav, .header-actions > .button { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: fixed; inset: 68px 0 auto; z-index: 99; padding: 20px 17px 28px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 20px 50px rgba(18,49,63,.12); }
  .mobile-nav[data-open="true"] { display: grid; gap: 4px; }
  .mobile-nav a { padding: 13px 10px; border-bottom: 1px solid var(--line); }
  .mobile-nav .button { margin-top: 12px; color: #fff; }
  .hero { padding: 54px 0 62px; }
  .hero-layout, .split, .contact-layout { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { min-width: 0; }
  .section { padding: 68px 0; }
  .cards, .locations { grid-template-columns: 1fr; }
  .honeycomb { margin-inline: auto; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; max-width: 620px; }
}

@media (max-width: 560px) {
  .logo { font-size: 18px; }
  h1 { font-size: 38px; overflow-wrap: break-word; }
  .lead { font-size: 17px; }
  .hero-stats { gap: 20px; }
  .brand-row, .content-grid { grid-template-columns: 1fr; }
  .card, .info-card, .location-card, .contact-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > :first-child { grid-column: auto; }
}

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

.reveal-item { opacity: 0; transform: translateY(22px); transition: opacity .65s ease var(--reveal-delay, 0ms), transform .65s ease var(--reveal-delay, 0ms); will-change: opacity, transform; }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.hero-collage, .honeycomb { animation: image-float 7s ease-in-out infinite; }
.hex-dot, .honey-accent { animation: hex-pulse 5.5s ease-in-out infinite; }
.dot-b { animation-delay: .8s; }
.dot-c { animation-delay: 1.4s; }
.card, .info-card, .location-card, .contact-card, .brand-name { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover, .info-card:hover, .location-card:hover, .contact-card:hover { border-color: rgba(35,181,173,.55); box-shadow: 0 18px 42px rgba(18,49,63,.09); transform: translateY(-5px); }
.number-hex { transition: transform .25s ease; }
.card:hover .number-hex { transform: rotate(-6deg) scale(1.04); }

.map-panel { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 38px rgba(18,49,63,.06); }
.map-panel iframe { width: 100%; min-height: 430px; display: block; border: 0; filter: saturate(.9) contrast(.98); }
.home-map-frame iframe { min-height: 260px; }
.map-toolbar { display: flex; flex-wrap: wrap; gap: 10px; padding: 18px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #fff, #f7fcfc); }
.map-location-button { min-height: 42px; padding: 9px 15px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: 14px; font-weight: 800; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.map-location-button:hover, .map-location-button[aria-pressed="true"] { color: #fff; background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); }
.map-summary { display: grid; grid-template-columns: .9fr 1.15fr .85fr; gap: 24px; align-items: center; margin-top: 28px; }
.map-summary-copy { max-width: 470px; }
.map-summary-copy p { color: var(--text); }
.map-links { display: grid; gap: 10px; }
.map-link { display: flex; justify-content: space-between; gap: 16px; padding: 14px 16px; background: #fff; border: 1px solid var(--line); border-radius: 16px; color: var(--navy); font-weight: 800; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.map-link span { color: var(--text); font-size: 13px; font-weight: 700; }
.map-link:hover { border-color: rgba(35,181,173,.58); box-shadow: 0 12px 26px rgba(18,49,63,.07); transform: translateX(4px); }
.contact-map { margin-top: 24px; }
.back-to-top { position: fixed; right: 24px; bottom: 24px; z-index: 120; width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: var(--navy-deep); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 16px 34px rgba(18,49,63,.18); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .22s ease, transform .22s ease, background .22s ease; }
.back-to-top::before { content: ""; width: 12px; height: 12px; border-top: 3px solid currentColor; border-left: 3px solid currentColor; transform: translateY(3px) rotate(45deg); }
.back-to-top:hover { background: var(--teal-dark); transform: translateY(8px); }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top.is-visible:hover { transform: translateY(-2px); }

@keyframes image-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes hex-pulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.08); opacity: .72; }
}

@media (max-width: 780px) {
  .map-summary { grid-template-columns: 1fr; }
  .map-panel iframe { min-height: 360px; }
  .back-to-top { right: 17px; bottom: 17px; width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item { opacity: 1; transform: none; }
  .hero-collage, .honeycomb, .hex-dot, .honey-accent { animation: none; }
}



@media (max-width: 1020px) {
  .map-summary { grid-template-columns: 1fr 1fr; }
  .map-summary-copy { grid-column: 1 / -1; max-width: 720px; }
}

@media (max-width: 780px) {
  .map-summary { grid-template-columns: 1fr; }
  .map-summary-copy { grid-column: auto; }
}
