:root {
    --navy-950: #0b2a45;
    --navy-900: #123b61;
    --navy-800: #174d7b;
    --navy-700: #1e6098;
    --navy-100: #dce9f2;
    --navy-050: #eef5f8;
    --teal-700: #257c84;
    --teal-100: #dcecef;
    --coral-700: #96655d;
    --coral-100: #eee5e2;
    --sand: #f3f7f7;
    --white: #ffffff;
    --ink: #173042;
    --muted: #5c7180;
    --line: #d6e2e6;
    --shadow-sm: 0 12px 34px rgba(14, 45, 69, .055);
    --shadow-md: 0 20px 52px rgba(14, 45, 69, .09);
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 28px;
    --header-height: 82px;
    --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 1.5rem); }
body {
    margin: 0;
    color: var(--ink);
    background: #f4f8f9;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-950); font-weight: 700; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.42rem, 4.65vw, 4.75rem); }
h2 { font-size: clamp(1.76rem, 3.25vw, 3.08rem); }
h3 { font-size: clamp(1.1rem, 1.76vw, 1.36rem); }
address { font-style: normal; }

.container { width: min(calc(100% - 3rem), var(--container)); margin-inline: auto; }
.sr-only, .honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.skip-link { position: fixed; z-index: 1000; left: 1rem; top: -6rem; padding: .8rem 1rem; border-radius: 8px; background: var(--white); color: var(--navy-950); box-shadow: var(--shadow-md); }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid rgba(30, 96, 152, .42); outline-offset: 3px; }

.eyebrow { display: block; margin-bottom: .75rem; color: var(--navy-700); font-size: .74rem; font-weight: 800; letter-spacing: .15em; line-height: 1.3; text-transform: uppercase; }
.eyebrow--light { color: #cce7f5; }
.eyebrow--derma { color: var(--coral-700); }
.eyebrow--oftal { color: var(--teal-700); }
.lead { color: var(--muted); font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
.text-link { display: inline-flex; gap: .35rem; align-items: center; color: var(--navy-700); font-weight: 750; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: .2em; }
.mobile-only { display: none !important; }

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: .78rem 1.35rem;
    border: 1px solid var(--navy-700);
    border-radius: 999px;
    color: var(--white);
    background: var(--navy-700);
    box-shadow: 0 10px 28px rgba(30, 96, 152, .18);
    font-weight: 750;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { background: var(--navy-950); box-shadow: 0 14px 34px rgba(11, 42, 69, .24); transform: translateY(-2px); }
.button--ghost { border-color: var(--line); color: var(--navy-900); background: var(--white); box-shadow: none; }
.button--ghost:hover, .button--outline:hover { color: var(--white); }
.button--outline { border-color: var(--navy-700); color: var(--navy-700); background: transparent; box-shadow: none; }
.button--light { border-color: var(--white); color: var(--navy-950); background: var(--white); box-shadow: none; }
.button--light:hover { color: var(--white); background: transparent; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; min-height: var(--header-height); border-bottom: 1px solid rgba(216, 226, 232, .82); background: rgba(255, 255, 255, .96); backdrop-filter: blur(14px); }
.site-header__inner { display: flex; min-height: var(--header-height); align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 194px; max-height: 62px; }
.nav-panel { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem); }
.site-nav { display: flex; align-items: center; gap: clamp(.7rem, 1.5vw, 1.35rem); }
.site-nav a { position: relative; padding: 1.75rem .2rem; color: #385161; font-size: .91rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.site-nav a::after { position: absolute; right: .2rem; bottom: 1.15rem; left: .2rem; height: 2px; border-radius: 999px; background: var(--navy-700); content: ""; opacity: 0; transform: scaleX(.4); transition: opacity .2s, transform .2s; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--navy-900); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.header-action { display: inline-flex; min-height: 42px; align-items: center; padding: .55rem 1rem; border-radius: 999px; color: var(--white); background: var(--navy-900); font-size: .86rem; font-weight: 750; text-decoration: none; white-space: nowrap; }
.header-action:hover { background: var(--navy-700); }
.menu-button, .nav-backdrop { display: none; }

/* Home */
main:not(.home-flow) { background: linear-gradient(180deg, #f8fbfb 0%, #eff5f6 58%, #f8fbfb 100%); }
.home-flow { position: relative; overflow: hidden; background: linear-gradient(180deg, #f9fcfc 0%, #edf5f6 21%, #f4f8f8 43%, #eef5f6 67%, #f8fbfb 100%); }
.home-flow::before { position: absolute; inset: 0; background: radial-gradient(circle at 88% 8%, rgba(37,124,132,.12), transparent 24%), radial-gradient(circle at 8% 48%, rgba(150,101,93,.07), transparent 23%), radial-gradient(circle at 80% 76%, rgba(30,96,152,.07), transparent 25%); content: ""; pointer-events: none; }
.home-flow > section { position: relative; z-index: 1; background-color: transparent; }
.home-hero { position: relative; isolation: isolate; overflow: hidden; min-height: calc(640px - var(--header-height)); background: transparent; }
.home-hero::before { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(249,252,252,.98) 0%, rgba(249,252,252,.92) 36%, rgba(244,249,250,.54) 59%, rgba(237,246,248,.08) 100%); content: ""; pointer-events: none; }
.home-hero::after { position: absolute; z-index: 1; right: -9rem; bottom: -18rem; width: 39rem; height: 39rem; border: 1px solid rgba(30, 96, 152, .1); border-radius: 50%; content: ""; pointer-events: none; }
.home-hero__grid { display: grid; min-height: calc(640px - var(--header-height)); grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-block: clamp(3.5rem, 6vw, 5.25rem); }
.home-hero__copy { position: relative; z-index: 2; max-width: 660px; }
.home-hero h1 { margin-bottom: 1.35rem; }
.home-hero h1 span { color: var(--navy-700); }
.home-hero__copy > p { max-width: 610px; margin-bottom: 0; color: var(--muted); font-size: clamp(.95rem, 1.5vw, 1.14rem); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin: 2.2rem 0 0; padding: 0; color: #46606f; font-size: .88rem; font-weight: 700; list-style: none; }
.hero-proof li { display: flex; align-items: center; gap: .45rem; }
.hero-proof li span { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-700); box-shadow: 0 0 0 5px var(--teal-100); }
.hero-visual { position: absolute; z-index: 0; right: -3%; bottom: -8%; width: min(68vw, 980px); height: 108%; overflow: hidden; border: 0; border-radius: 0; background: transparent; box-shadow: none; opacity: .48; pointer-events: none; -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 25%, #000 52%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 25%, #000 52%, #000 100%); }
.hero-mountain-scene::before { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.34), transparent 42%, rgba(255,255,255,.08)); content: ""; }
.hero-mountain-scene svg { position: absolute; inset: 0; width: 100%; height: 100%; filter: saturate(.78); }

.section-shell { padding-block: clamp(4rem, 7vw, 6.6rem); background: rgba(243,247,247,.72); }
.section-shell--white { background: rgba(255,255,255,.76); }
.home-flow .section-shell, .home-flow .section-shell--white, .home-flow .safety-section { background: transparent; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-heading > div > .eyebrow { margin-bottom: .65rem; }
.section-heading--center { display: block; max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading--center h2 { margin-inline: auto; }
.section-heading--center p { max-width: 620px; margin: .9rem auto 0; color: var(--muted); font-size: .88rem; }

.specialty-section { position: relative; overflow: hidden; }
.specialty-section::before { position: absolute; inset: -10% -10%; background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(235,244,245,.64), rgba(255,255,255,.08)), radial-gradient(circle at 25% 50%, rgba(150,101,93,.08), transparent 30%), radial-gradient(circle at 75% 50%, rgba(37,124,132,.09), transparent 30%); content: ""; pointer-events: none; }
.specialty-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-block: 1px solid rgba(30,96,152,.14); }
.specialty-card { position: relative; overflow: hidden; min-height: 300px; padding: clamp(2rem, 4vw, 3.25rem); border: 0; border-radius: 0; background: transparent; box-shadow: none; text-decoration: none; transition: background .25s ease, transform .25s ease; }
.specialty-card + .specialty-card { border-left: 1px solid rgba(30,96,152,.14); }
.specialty-card::after { position: absolute; right: -5rem; bottom: -8rem; width: 21rem; height: 21rem; border: 1px solid currentColor; border-radius: 50%; content: ""; opacity: .1; }
.specialty-card--derma { color: var(--coral-700); }
.specialty-card--oftal { color: var(--teal-700); }
.specialty-card:hover { background: rgba(255,255,255,.42); transform: translateY(-2px); }
.specialty-card__icon { position: relative; z-index: 1; display: grid; width: 60px; height: 60px; margin-bottom: 2rem; place-items: center; border: 1px solid currentColor; border-radius: 50%; background: rgba(255,255,255,.38); }
.specialty-card--derma .specialty-card__icon { color: var(--coral-700); }
.specialty-card--oftal .specialty-card__icon { color: var(--teal-700); }
.specialty-card__icon svg { width: 38px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.specialty-card h3 { position: relative; z-index: 1; margin-bottom: .8rem; font-size: clamp(1.54rem, 2.64vw, 2.24rem); }
.specialty-card p { position: relative; z-index: 1; max-width: 480px; color: var(--muted); }
.specialty-card .text-link { position: relative; z-index: 1; margin-top: .4rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 1.65rem); }
.product-card { display: grid; overflow: hidden; grid-template-rows: auto 1fr; border: 1px solid rgba(193,211,218,.78); border-radius: var(--radius); background: rgba(255,255,255,.88); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { border-color: rgba(30,96,152,.24); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-card__image { display: grid; aspect-ratio: 1 / .86; place-items: center; overflow: hidden; padding: clamp(1.2rem, 3vw, 2rem); background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(238,245,247,.78)); }
.product-card__image picture { width: 100%; height: 100%; }
.product-card__image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .28s ease; }
.product-card:hover .product-card__image img { transform: scale(1.025); }
.product-card__body { display: grid; grid-template-rows: auto auto minmax(3.3em, 1fr) auto; padding: 1.35rem 1.45rem 1.5rem; }
.product-card h3 { min-height: 2.15em; margin-bottom: .65rem; font-size: 1.13rem; }
.product-card h3 a { text-decoration: none; }
.product-card p { margin-bottom: 1.1rem; color: var(--muted); font-size: .91rem; line-height: 1.55; }
.product-card .eyebrow { font-size: .66rem; }
.product-card[hidden] { display: none; }

.heritage-section { position: relative; isolation: isolate; min-height: 610px; overflow: hidden; }
.heritage-section::before { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(241,247,248,.08) 0%, rgba(241,247,248,.26) 34%, rgba(241,247,248,.9) 62%, #f1f7f8 100%), linear-gradient(180deg, #edf5f6 0%, transparent 18%, transparent 78%, #f5f9f9 100%); content: ""; pointer-events: none; }
.heritage-grid { position: relative; z-index: 2; display: grid; min-height: 500px; grid-template-columns: minmax(0, 1fr) minmax(400px, .88fr); align-items: center; }
.heritage-media { position: absolute; z-index: 0; inset: 0; }
.heritage-media picture, .heritage-media img { width: 100%; height: 100%; }
.heritage-media img { object-fit: cover; object-position: center 56%; filter: saturate(.72) contrast(.9) brightness(1.06); }
.heritage-year { position: absolute; z-index: 2; bottom: clamp(2.5rem, 5vw, 4.5rem); left: max(1.5rem, calc((100% - var(--container)) / 2)); display: grid; min-width: 132px; padding: 1.1rem 1.25rem; border: 1px solid rgba(255,255,255,.62); border-radius: var(--radius-sm); color: var(--white); background: rgba(11,42,69,.78); box-shadow: 0 16px 40px rgba(11,42,69,.16); }
.heritage-year strong { font-size: 2.3rem; line-height: 1; }
.heritage-year span { margin-top: .35rem; font-size: .73rem; font-weight: 700; }
.heritage-copy { grid-column: 2; max-width: 640px; margin-left: auto; }
.heritage-copy h2 { margin-bottom: 1.2rem; }
.heritage-copy > p { color: var(--muted); font-size: 1.06rem; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); margin: 2rem 0; border-block: 1px solid var(--line); }
.stat-row div { padding: 1.25rem .8rem 1.25rem 0; }
.stat-row div + div { padding-left: 1rem; border-left: 1px solid var(--line); }
.stat-row strong, .stat-row span { display: block; }
.stat-row strong { color: var(--navy-900); font-size: 1.5rem; line-height: 1.1; }
.stat-row span { margin-top: .35rem; color: var(--muted); font-size: .73rem; }

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
.news-card { overflow: hidden; border: 1px solid rgba(193,211,218,.78); border-radius: var(--radius); background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); }
.news-card__media { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--navy-050); }
.news-card__media picture, .news-card__media img { width: 100%; height: 100%; }
.news-card__media img { object-fit: cover; transition: transform .32s ease; }
.news-card:hover .news-card__media img { transform: scale(1.035); }
.news-card__placeholder { display: block; width: 100%; height: 100%; background: radial-gradient(circle at 65% 35%, var(--teal-100), transparent 22%), linear-gradient(145deg, var(--navy-050), var(--navy-100)); }
.news-card > div { padding: 1.4rem; }
.news-card h2 { min-height: 2.25em; margin-bottom: 1.2rem; font-size: 1.14rem; }
.news-card h2 a { text-decoration: none; }

.interest-teaser { display: grid; grid-template-columns: minmax(0, 1.35fr) auto auto; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; margin-top: 2rem; padding: clamp(1.5rem, 3vw, 2.25rem); border: 1px solid rgba(193,211,218,.78); border-radius: var(--radius); background: linear-gradient(120deg, rgba(238,245,248,.8), rgba(255,255,255,.7)); box-shadow: var(--shadow-sm); }
.interest-teaser h3 { margin-bottom: .55rem; }
.interest-teaser p { max-width: 620px; margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.interest-teaser__areas { display: flex; flex-wrap: wrap; gap: .6rem; }
.interest-teaser__areas span { padding: .45rem .75rem; border: 1px solid rgba(30,96,152,.14); border-radius: 999px; color: var(--navy-800); background: rgba(255,255,255,.76); font-size: .78rem; font-weight: 750; }

.safety-section { padding-block: clamp(3.2rem, 6vw, 5.5rem); background: rgba(255,255,255,.72); }
.safety-card { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; padding: clamp(2rem, 4vw, 3.4rem); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); color: var(--white); background: radial-gradient(circle at 12% 10%, rgba(255,255,255,.13), transparent 30%), linear-gradient(135deg, #123c61, #245f8f); box-shadow: 0 22px 54px rgba(14,45,69,.12); }
.safety-card h2 { max-width: 760px; margin-bottom: .65rem; color: var(--white); font-size: clamp(1.58rem, 2.64vw, 2.42rem); }
.safety-card p { margin-bottom: 0; color: #d8e7f0; }
.safety-mark { display: grid; width: 72px; height: 72px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.1); font-size: 2rem; font-weight: 800; }

/* Internal pages */
.page-hero { position: relative; display: flex; min-height: 470px; align-items: end; overflow: hidden; padding-block: clamp(4rem, 8vw, 7rem); color: var(--white); background: radial-gradient(circle at 84% 8%, rgba(79, 166, 177, .45), transparent 31%), linear-gradient(135deg, var(--navy-950), var(--navy-700)); }
.page-hero::after { position: absolute; right: 7%; bottom: -11rem; width: 26rem; height: 26rem; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; content: ""; }
.page-hero--compact { min-height: 390px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 980px; margin-bottom: 1rem; color: var(--white); }
.page-hero p { max-width: 760px; margin-bottom: 0; color: #e2edf3; font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.page-hero .button { margin-top: 1.5rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; padding-block: 1.25rem; color: var(--muted); font-size: .78rem; }
.breadcrumb a { color: var(--navy-700); font-weight: 700; text-decoration: none; }

.product-detail { display: grid; min-height: calc(100vh - var(--header-height) - 54px); grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; padding-block: clamp(3rem, 7vw, 6rem); }
.product-detail__media { display: grid; aspect-ratio: 1; place-items: center; padding: clamp(2rem, 6vw, 5rem); border: 1px solid rgba(193,211,218,.82); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(238,245,248,.8)); box-shadow: var(--shadow-sm); }
.product-detail__media picture, .product-detail__media img { width: 100%; height: 100%; }
.product-detail__media img { object-fit: contain; mix-blend-mode: multiply; }
.product-detail__body { max-width: 700px; }
.product-detail h1 { margin: .15rem 0 1rem; }
.medical-copy { margin: 1.7rem 0; color: #3e5868; }
.medical-copy p { margin-bottom: 1rem; }
.medical-notice { padding: 1rem 1.1rem; border-left: 3px solid var(--teal-700); border-radius: 0 8px 8px 0; color: #315d60; background: #eaf5f4; font-size: .88rem; }
.content-review-note { margin-top: 2rem; padding: 1rem; border-radius: 10px; color: #72564f; background: var(--coral-100); font-size: .88rem; }

.prose-layout { display: grid; grid-template-columns: minmax(210px, 28%) 1fr; gap: clamp(3rem, 7vw, 7rem); padding-block: clamp(4.5rem, 8vw, 8rem); }
.prose-layout__aside strong { display: block; color: var(--navy-700); font-size: clamp(4.5rem, 10vw, 8.5rem); line-height: .82; letter-spacing: -.09em; }
.prose-layout__aside span { display: block; margin-top: 1rem; color: var(--muted); font-weight: 750; }
.prose-layout__copy { max-width: 800px; }
.prose-layout__copy p { color: #405a69; font-size: 1.04rem; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.value-grid article { min-height: 250px; padding: 2rem; border: 1px solid rgba(193,211,218,.78); border-radius: var(--radius); background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); }
.value-grid strong { color: var(--navy-100); font-size: 3.5rem; line-height: 1; }
.value-grid h3 { margin: 2.7rem 0 .7rem; }
.value-grid p { color: var(--muted); }

.catalog-tools { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.search-field { position: relative; width: min(470px, 44vw); }
.search-field svg { position: absolute; top: 50%; left: 1rem; width: 21px; fill: none; stroke: var(--muted); stroke-width: 1.8; transform: translateY(-50%); }
.search-field input { width: 100%; min-height: 50px; padding: .7rem 1rem .7rem 3rem; border: 1px solid #b8c9d5; border-radius: 999px; color: var(--ink); background: var(--white); }
.filter-buttons { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-buttons button { min-height: 44px; padding: .55rem 1rem; border: 1px solid var(--line); border-radius: 999px; color: var(--navy-900); background: var(--white); cursor: pointer; }
.filter-buttons button:hover, .filter-buttons button.is-active { border-color: var(--navy-700); color: var(--white); background: var(--navy-700); }
.catalog-count { margin-bottom: 2rem; color: var(--muted); font-size: .9rem; }
.empty-state { padding: 2rem; border-radius: var(--radius-sm); background: var(--navy-050); text-align: center; }
.surgical-callout { padding-block: clamp(3rem, 6vw, 5.5rem); color: var(--white); background: var(--navy-950); }
.surgical-callout .container { display: flex; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.surgical-callout picture { max-width: min(42%, 430px); padding: 1.2rem 1.45rem; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-sm); background: rgba(255,255,255,.97); box-shadow: 0 18px 48px rgba(0,0,0,.14); }
.surgical-callout picture img { width: 100%; }
.surgical-callout h2 { max-width: 680px; margin-bottom: 0; color: var(--white); }

.interest-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; padding-block: clamp(3.5rem, 7vw, 7rem); }
.interest-card { padding: clamp(1.6rem, 4vw, 3rem); border: 1px solid rgba(193,211,218,.78); border-radius: var(--radius); background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); }
.interest-card__title { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.interest-card__title h2 { margin: 0; }
.specialty-dot { width: 22px; height: 22px; border-radius: 50%; box-shadow: 0 0 0 9px var(--navy-050); }
.specialty-dot--derma { background: var(--coral-700); box-shadow: 0 0 0 9px var(--coral-100); }
.specialty-dot--oftal { background: var(--teal-700); box-shadow: 0 0 0 9px var(--teal-100); }
.interest-card h3 { margin: 2rem 0 .7rem; color: var(--navy-700); font-size: 1rem; letter-spacing: 0; }
.interest-card ul { margin: 0; padding: 0; list-style: none; }
.interest-card li { border-bottom: 1px solid var(--line); }
.interest-card li a { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 0; text-decoration: none; }
.interest-card li a:hover { color: var(--navy-700); }

.content-review-banner { display: flex; gap: .8rem 1.3rem; align-items: center; margin-bottom: 2rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm); color: #72564f; background: var(--coral-100); font-size: .9rem; }
.content-review-banner strong { white-space: nowrap; }
.article-detail { max-width: 1080px; min-height: 70vh; padding-block: clamp(3.5rem, 8vw, 7rem); }
.article-detail h1 { max-width: 900px; }
.article-detail__image { overflow: hidden; width: 100%; max-height: 620px; margin: 2rem 0; border-radius: var(--radius); background: var(--navy-050); }
.article-detail__image img { width: 100%; max-height: 620px; object-fit: contain; }
.article-copy { max-width: 820px; color: #405969; font-size: 1.05rem; }

/* Forms */
.form-layout { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(480px, 1.18fr); gap: clamp(2.5rem, 7vw, 7rem); padding-block: clamp(3.5rem, 8vw, 7rem); }
.form-layout--contact { grid-template-columns: minmax(480px, 1.15fr) minmax(300px, .85fr); }
.form-layout__intro { align-self: start; }
.form-icon { display: grid; width: 72px; height: 72px; margin-bottom: 2rem; place-items: center; border-radius: 50%; color: var(--white); background: var(--navy-900); font-size: 2rem; font-weight: 800; }
.form-layout__intro > p { color: var(--muted); }
.form-steps { display: grid; gap: 1rem; margin: 2rem 0; padding: 0; list-style: none; }
.form-steps li { display: grid; padding: 1rem; border-left: 3px solid var(--navy-100); background: var(--navy-050); }
.form-steps span { color: var(--muted); font-size: .9rem; }
.form-panel, .contact-card { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid rgba(193,211,218,.78); border-radius: var(--radius); background: rgba(255,255,255,.86); box-shadow: var(--shadow-md); }
.form-panel > h2 { margin-bottom: 1.6rem; }
.form-panel form { display: grid; gap: 1.1rem; }
.form-panel label, .form-panel legend { color: var(--navy-950); font-weight: 700; }
.form-panel label > span { color: var(--muted); font-size: .82rem; font-weight: 500; }
.form-panel input:not([type="radio"]):not([type="checkbox"]), .form-panel select, .form-panel textarea { width: 100%; margin-top: .35rem; padding: .78rem .85rem; border: 1px solid #b5c8d4; border-radius: 9px; color: var(--ink); background: #fff; font-weight: 400; }
.form-panel input:not([type="radio"]):not([type="checkbox"]), .form-panel select { min-height: 48px; }
.form-panel textarea { resize: vertical; }
.form-panel input:focus, .form-panel select:focus, .form-panel textarea:focus { outline: 3px solid rgba(30,96,152,.18); border-color: var(--navy-700); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-panel fieldset { display: flex; flex-wrap: wrap; gap: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: 10px; }
.form-panel legend { padding: 0 .35rem; }
.choice { display: flex; gap: .55rem; align-items: flex-start; font-weight: 500 !important; }
.choice input { width: 19px; height: 19px; margin-top: .18rem; flex: 0 0 auto; }
.consent { color: var(--muted) !important; font-size: .9rem; }
.notice { margin-bottom: 1.2rem; padding: 1rem; border-radius: 10px; }
.notice ul { margin: .4rem 0 0; padding-left: 1.2rem; }
.notice--success { color: #225647; background: #e6f3ee; }
.notice--error { color: #842d31; background: #fbeaec; }
.contact-card { align-self: start; display: grid; gap: 1rem; color: var(--white); background: radial-gradient(circle at 90% 10%, rgba(255,255,255,.12), transparent 28%), linear-gradient(145deg, var(--navy-950), var(--navy-700)); }
.contact-card h2 { color: var(--white); }
.contact-card address { color: #dce9f2; }
.contact-card__links { display: grid; gap: .5rem; padding-block: 1rem; border-block: 1px solid rgba(255,255,255,.18); }
.contact-card a { width: fit-content; color: var(--white); font-weight: 750; text-decoration: none; }
.contact-card p { color: #cfe0ea; font-size: .88rem; }

/* Footer */
.site-footer { padding-block: clamp(3.5rem, 7vw, 6rem) 2rem; color: #cfdee8; background: var(--navy-950); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr .75fr .8fr 1.15fr; gap: clamp(2rem, 4vw, 4rem); }
.site-footer__brand img { width: 182px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.site-footer__brand p { max-width: 330px; }
.site-footer h2 { margin-bottom: 1.1rem; color: var(--white); font-size: .92rem; letter-spacing: .02em; }
.site-footer address { margin-bottom: .7rem; }
.site-footer a { display: block; width: fit-content; margin-bottom: .55rem; color: #e9f1f5; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: .2em; }
.site-footer__legal { grid-column: 1 / -1; margin: 1.5rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.16); color: #a9becb; font-size: .78rem; }

@media (max-width: 1080px) {
    .site-header__inner { gap: 1rem; }
    .site-nav { gap: .65rem; }
    .site-nav a { font-size: .83rem; }
    .header-action { padding-inline: .8rem; font-size: .8rem; }
    .home-hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr); gap: 3rem; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .news-grid--home .news-card:last-child { display: none; }
    .interest-teaser { grid-template-columns: 1fr auto; }
    .interest-teaser__areas { grid-column: 1; }
    .interest-teaser .button { grid-column: 2; grid-row: 1 / 3; }
    .site-footer__grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 2rem; }
}

@media (max-width: 920px) {
    :root { --header-height: 72px; }
    .container { width: min(calc(100% - 2.25rem), var(--container)); }
    .site-header { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
    .site-header__inner { min-height: var(--header-height); }
    .brand img { width: 164px; max-height: 54px; }
    .menu-button { display: grid; width: 46px; height: 46px; place-content: center; gap: 5px; border: 0; border-radius: 12px; background: var(--navy-050); cursor: pointer; }
    .menu-button span:not(.sr-only) { display: block; width: 22px; height: 2px; border-radius: 99px; background: var(--navy-950); transition: transform .2s, opacity .2s; }
    .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .menu-button { position: relative; z-index: 120; }
    .nav-panel { position: fixed; top: var(--header-height); right: 0; bottom: auto; left: 0; z-index: 110; display: flex; width: 100%; max-height: calc(100dvh - var(--header-height)); align-items: stretch; flex-direction: column; gap: 1rem; overflow-y: auto; padding: 1.25rem max(1.25rem, calc((100vw - var(--container)) / 2)); border-top: 1px solid var(--line); background: #fff; box-shadow: 0 18px 42px rgba(11,42,69,.15); opacity: 1; visibility: hidden; pointer-events: none; transform: translateY(-.6rem); transition: transform .18s ease, visibility 0s linear .18s; }
    .nav-panel.is-open { visibility: visible; pointer-events: auto; transform: translateY(0); transition-delay: 0s; }
    .site-nav { align-items: stretch; flex-direction: column; gap: 0; }
    .site-nav a { padding: 1rem .4rem; border-bottom: 1px solid var(--line); font-size: 1rem; }
    .site-nav a::after { display: none; }
    .site-nav a[aria-current="page"] { color: var(--navy-700); }
    .header-action { justify-content: center; min-height: 48px; margin-top: .5rem; font-size: .92rem; }
    .nav-backdrop { position: fixed; inset: var(--header-height) 0 0; z-index: 90; display: block; width: 100%; border: 0; background: transparent; }
    .nav-backdrop[hidden] { display: none; }
    .home-hero, .home-hero__grid { min-height: auto; }
    .home-hero__grid { grid-template-columns: 1fr; padding-block: 4.5rem; }
    .home-hero__copy { max-width: 760px; }
    .hero-visual { right: -26%; bottom: -5%; width: min(112vw, 820px); height: 72%; opacity: .34; -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.34) 24%, #000 52%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.34) 24%, #000 52%, #000 100%); }
    .specialty-grid, .heritage-grid, .product-detail, .prose-layout, .form-layout, .form-layout--contact { grid-template-columns: 1fr; }
    .heritage-section { min-height: 590px; }
    .heritage-section::before { background: linear-gradient(90deg, rgba(241,247,248,.5), rgba(241,247,248,.92) 68%, #f1f7f8), linear-gradient(180deg, #edf5f6 0%, transparent 18%, transparent 78%, #f5f9f9 100%); }
    .heritage-grid { min-height: 470px; }
    .heritage-copy { grid-column: 1 / -1; max-width: min(760px, 72%); margin-left: auto; }
    .safety-card { grid-template-columns: auto 1fr; }
    .safety-card .button { grid-column: 2; justify-self: start; }
    .product-detail__media { width: min(100%, 680px); margin-inline: auto; }
    .prose-layout__aside { display: flex; align-items: end; gap: 1rem; }
    .prose-layout__aside strong { font-size: 5rem; }
    .prose-layout__aside span { margin-bottom: .3rem; }
    .interest-grid { grid-template-columns: 1fr; }
    .form-layout__intro, .contact-card { max-width: 720px; }
    .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__legal { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    body { font-size: 15.5px; }
    .container { width: min(calc(100% - 1.5rem), var(--container)); }
    h1 { font-size: clamp(2.16rem, 11.6vw, 3.21rem); }
    h2 { font-size: clamp(1.63rem, 7.9vw, 2.38rem); }
    .home-hero__grid { gap: 0; min-height: 610px; padding-block: 3.35rem 11rem; }
    .home-hero::before { background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 55%, rgba(245,250,251,.52) 78%, rgba(237,246,248,.14) 100%); }
    .button-row { align-items: stretch; flex-direction: column; }
    .button-row .button { width: 100%; }
    .hero-proof { display: grid; grid-template-columns: repeat(2, auto); gap: .8rem 1rem; }
    .hero-visual { right: -60%; bottom: -7%; width: 172%; height: 48%; opacity: .3; -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.5) 22%, #000 48%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.5) 22%, #000 48%, #000 100%); }
    .section-shell { padding-block: 4rem; }
    .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 2rem; }
    .text-link--desktop { display: none; }
    .mobile-only { display: inline-flex !important; width: 100%; margin-top: 1.3rem; }
    .specialty-grid, .product-grid, .news-grid, .value-grid, .form-grid, .site-footer__grid { grid-template-columns: 1fr; }
    .specialty-grid { border-block: 1px solid rgba(30,96,152,.14); }
    .specialty-card { min-height: 265px; padding: 2rem .6rem; }
    .specialty-card + .specialty-card { border-top: 1px solid rgba(30,96,152,.14); border-left: 0; }
    .specialty-card__icon { margin-bottom: 1.7rem; }
    .product-card__image { aspect-ratio: 1 / .82; }
    .product-card__body { padding: 1.25rem; }
    .product-card h3 { min-height: auto; }
    .heritage-section { min-height: auto; }
    .heritage-section::before { background: linear-gradient(180deg, rgba(241,247,248,.9) 0%, rgba(241,247,248,.74) 48%, #f5f9f9 100%); }
    .heritage-media img { object-position: 48% center; filter: saturate(.62) contrast(.88) brightness(1.08); }
    .heritage-grid { min-height: auto; }
    .heritage-copy { max-width: none; margin: 0; }
    .heritage-year { display: none; }
    .stat-row { grid-template-columns: 1fr; }
    .stat-row div { padding: 1rem 0; }
    .stat-row div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
    .news-grid--home .news-card:last-child { display: grid; }
    .interest-teaser { grid-template-columns: 1fr; padding: 1.35rem; }
    .interest-teaser__areas, .interest-teaser .button { grid-column: auto; grid-row: auto; }
    .interest-teaser .button { width: 100%; }
    .safety-card { grid-template-columns: 1fr; gap: 1.3rem; }
    .safety-card .button { grid-column: auto; width: 100%; justify-self: stretch; }
    .page-hero, .page-hero--compact { min-height: 330px; padding-block: 4rem; }
    .breadcrumb { font-size: .72rem; }
    .product-detail { gap: 2.3rem; }
    .product-detail__media { padding: 1.5rem; border-radius: var(--radius); }
    .prose-layout__aside { align-items: flex-start; flex-direction: column; }
    .prose-layout__aside span { margin-top: 0; }
    .catalog-tools { align-items: stretch; flex-direction: column; }
    .search-field { width: 100%; }
    .filter-buttons { display: grid; grid-template-columns: repeat(3, 1fr); }
    .filter-buttons button { padding-inline: .45rem; font-size: .78rem; }
    .surgical-callout .container { align-items: flex-start; flex-direction: column; }
    .surgical-callout picture { max-width: 100%; }
    .content-review-banner { align-items: flex-start; flex-direction: column; }
    .form-panel, .contact-card { padding: 1.35rem; border-radius: var(--radius); }
    .site-footer__legal { grid-column: auto; }
}

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