:root {
  --navy-950: #061d33;
  --navy-900: #082b4b;
  --navy-800: #0b3a67;
  --blue-700: #24589a;
  --blue-600: #3174b8;
  --sky-500: #61ade3;
  --sky-100: #e8f5fd;
  --teal-700: #137d7c;
  --teal-500: #20a39e;
  --green-600: #27896e;
  --green-100: #eaf7f1;
  --violet-700: #5a42b6;
  --violet-500: #7c5ce2;
  --coral-600: #e65376;
  --coral-500: #f16b87;
  --orange-600: #ce7437;
  --orange-100: #fff2e8;
  --ink: #102a3d;
  --body: #4f6879;
  --muted: #7890a0;
  --line: #dce7ee;
  --fog: #f3f7fa;
  --white: #ffffff;
  --shadow-sm: 0 8px 30px rgba(10, 46, 76, .08);
  --shadow-md: 0 24px 60px rgba(10, 46, 76, .14);
  --shadow-lg: 0 36px 90px rgba(5, 30, 53, .24);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 88px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link { position: fixed; left: 20px; top: -100px; z-index: 9999; padding: 12px 18px; color: white; background: var(--navy-900); border-radius: 8px; }
.skip-link:focus { top: 20px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 110px 0; }

.utility-bar { color: #eaf6ff; background: var(--navy-950); font-size: 13px; }
.utility-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-location, .utility-actions, .utility-actions a { display: flex; align-items: center; gap: 8px; }
.utility-location svg, .utility-actions svg { width: 15px; height: 15px; color: var(--sky-500); }
.utility-actions a:hover { color: white; }
.utility-divider { width: 1px; height: 14px; background: rgba(255,255,255,.25); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(220,231,238,.75); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(8,43,75,.08); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 210px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 23px; margin-left: auto; }
.site-nav a { position: relative; color: #29475c; font-size: 14px; font-weight: 650; white-space: nowrap; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; border-radius: 2px; background: var(--sky-500); transition: width .25s ease; }
.site-nav a:hover, .site-nav a.active { color: var(--blue-700); }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switch { border: 0; background: transparent; color: var(--body); font-size: 13px; font-weight: 700; letter-spacing: .03em; padding: 8px 6px; }
.language-switch .language-current { color: var(--blue-700); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: white; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--navy-800); margin: 4px 0; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px; font-weight: 750; line-height: 1.2; text-align: center; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(97,173,227,.45); outline-offset: 3px; }
.button-primary { color: white; background: linear-gradient(135deg, var(--blue-700), var(--blue-600)); box-shadow: 0 12px 28px rgba(36,88,154,.24); }
.button-primary:hover { box-shadow: 0 16px 35px rgba(36,88,154,.32); }
.button-secondary { color: var(--navy-800); background: white; border-color: #bfd3df; }
.button-secondary:hover { background: var(--fog); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 14px; }
.button-teal { color: white; background: var(--teal-700); box-shadow: 0 12px 28px rgba(19,125,124,.24); }
.button-light { color: var(--navy-950); background: white; }
.button-ghost-light { color: white; background: transparent; border-color: rgba(255,255,255,.45); }
.button-ghost-light:hover { background: rgba(255,255,255,.1); }
.button-coral { color: white; background: linear-gradient(135deg, var(--coral-600), var(--coral-500)); box-shadow: 0 12px 30px rgba(230,83,118,.28); }
.button-ghost-dark { color: white; background: transparent; border-color: rgba(255,255,255,.35); }
.button-ghost-dark:hover { background: rgba(255,255,255,.08); }
.button-orange { color: white; background: var(--orange-600); box-shadow: 0 12px 28px rgba(206,116,55,.22); }
.button-full { width: 100%; }

.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--blue-700); font-size: 12px; font-weight: 800; letter-spacing: .13em; line-height: 1.3; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky-500); box-shadow: 0 0 0 6px rgba(97,173,227,.14); }
.kicker-teal { color: var(--teal-700); }
.kicker-coral { color: #ff9cb0; }
.kicker-orange { color: var(--orange-600); }
.kicker-light { color: #a8ddff; }

.hero { position: relative; overflow: hidden; padding-top: 82px; padding-bottom: 64px; background: linear-gradient(160deg, #f8fcff 0%, #eef7fc 52%, #ffffff 100%); }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-shape-one { width: 540px; height: 540px; top: -250px; right: -180px; background: radial-gradient(circle, rgba(97,173,227,.25), rgba(97,173,227,0) 68%); }
.hero-shape-two { width: 360px; height: 360px; left: -220px; bottom: -120px; background: radial-gradient(circle, rgba(32,163,158,.15), rgba(32,163,158,0) 68%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 78px; }
.hero-copy h1 { max-width: 680px; margin: 22px 0 24px; color: var(--navy-950); font-size: clamp(46px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -.045em; }
.hero-copy h1 em { color: var(--blue-600); font-style: normal; }
.hero-lead { max-width: 670px; margin: 0 0 32px; color: var(--body); font-size: 20px; line-height: 1.65; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 31px; color: #36566b; font-size: 13px; font-weight: 650; }
.hero-trust > div { display: flex; align-items: center; gap: 7px; }
.check { display: inline-grid; place-items: center; width: 21px; height: 21px; color: var(--teal-700); background: #e2f5f3; border-radius: 50%; font-size: 12px; font-weight: 900; }
.hero-visual { position: relative; min-width: 0; }
.hero-image-wrap { position: relative; overflow: hidden; min-height: 590px; border-radius: 42px 42px 42px 150px; box-shadow: var(--shadow-lg); }
.hero-image-wrap img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; object-position: center; }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,30,53,.22)); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 13px; min-width: 235px; padding: 16px 18px; background: rgba(255,255,255,.95); border: 1px solid rgba(255,255,255,.8); border-radius: 18px; box-shadow: var(--shadow-md); backdrop-filter: blur(14px); }
.floating-card strong, .floating-card span { display: block; }
.floating-card strong { color: var(--navy-900); font-size: 14px; }
.floating-card span { color: var(--muted); font-size: 12px; }
.floating-card-top { top: 35px; left: -47px; }
.floating-card-bottom { right: -35px; bottom: 45px; }
.floating-icon { display: grid; place-items: center; width: 42px; height: 42px; color: var(--coral-600); background: #fff0f3; border-radius: 13px; }
.floating-icon svg { width: 22px; height: 22px; }
.floating-number { color: var(--blue-700) !important; font-size: 34px !important; font-weight: 850; line-height: 1; }
.emergency-note { position: relative; display: flex; align-items: center; gap: 13px; margin-top: 54px; padding: 17px 20px; color: #5b4b2f; background: #fffaf0; border: 1px solid #f5dfad; border-radius: 16px; }
.emergency-note p { margin: 0; font-size: 14px; }
.emergency-note a { color: var(--blue-700); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.emergency-icon { display: grid; place-items: center; flex: 0 0 30px; width: 30px; height: 30px; color: white; background: #e8a329; border-radius: 50%; font-weight: 900; }

.section-heading { max-width: 740px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .feature-copy h2, .weight-copy h2, .sexual-copy h2, .community-copy h2, .contact-copy h2 { margin: 13px 0 18px; color: var(--navy-950); font-size: clamp(37px, 4vw, 57px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading p, .feature-copy > p, .community-copy > p, .contact-copy > p { margin: 0; color: var(--body); font-size: 18px; }

.services-overview { background: white; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; overflow: hidden; min-height: 300px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: 0 10px 32px rgba(8,43,75,.05); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--card-accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { display: grid; place-items: center; width: 55px; height: 55px; color: var(--card-accent); background: var(--card-soft); border-radius: 16px; }
.service-icon svg { width: 27px; height: 27px; }
.service-number { position: absolute; top: 28px; right: 28px; color: #c8d6df; font-size: 12px; font-weight: 850; letter-spacing: .13em; }
.service-card h3 { margin: 23px 0 10px; color: var(--navy-900); font-size: 20px; line-height: 1.3; }
.service-card p { margin: 0 0 22px; color: var(--body); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--card-accent, var(--blue-700)); font-size: 14px; font-weight: 800; }
.service-blue { --card-accent: var(--blue-600); --card-soft: #eaf3fb; }
.service-teal { --card-accent: var(--teal-700); --card-soft: #e4f5f3; }
.service-green { --card-accent: var(--green-600); --card-soft: var(--green-100); }
.service-violet { --card-accent: var(--violet-500); --card-soft: #f1edff; }
.service-cyan { --card-accent: #2698bd; --card-soft: #e9f8fc; }
.service-orange { --card-accent: var(--orange-600); --card-soft: var(--orange-100); }

.feature-section { background: var(--fog); }
.feature-alt { background: white; }
.feature-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 84px; }
.feature-grid.reverse { grid-template-columns: 1.05fr .95fr; }
.feature-grid.reverse .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media > img { width: 100%; height: 650px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.media-badge { position: absolute; left: -25px; bottom: 32px; width: 265px; padding: 18px 21px; color: white; background: rgba(8,43,75,.94); border-radius: 17px; box-shadow: var(--shadow-md); }
.media-badge span, .media-badge strong { display: block; }
.media-badge span { color: #a8d9f6; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.media-badge strong { margin-top: 4px; font-size: 15px; line-height: 1.35; }
.media-stat { position: absolute; right: -30px; bottom: 35px; max-width: 280px; padding: 18px 22px; color: white; background: rgba(19,125,124,.95); border-radius: 17px; box-shadow: var(--shadow-md); }
.media-stat strong, .media-stat span { display: block; }
.media-stat strong { font-size: 15px; }
.media-stat span { color: #d4fffb; font-size: 12px; }
.feature-copy h2 { font-size: clamp(37px, 4vw, 55px); }
.feature-list { display: grid; gap: 18px; margin: 31px 0; }
.feature-list.two-columns { grid-template-columns: repeat(2, 1fr); }
.feature-list > div { display: flex; gap: 12px; }
.feature-list strong, .feature-list span { display: block; }
.feature-list strong { color: var(--navy-900); font-size: 14px; }
.feature-list div div span { margin-top: 2px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.mini-icon { display: grid !important; place-items: center; flex: 0 0 35px; width: 35px; height: 35px; color: var(--blue-700); background: white; border: 1px solid #dce9f0; border-radius: 11px; font-size: 11px; font-weight: 850; }
.feature-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 15px; margin-top: 30px; }
.phone-link { color: var(--blue-700); font-weight: 800; }
.phone-link:hover { text-decoration: underline; }
.check-list { display: grid; gap: 13px; margin: 27px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 32px; color: #36566b; font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; place-items: center; width: 22px; height: 22px; color: var(--teal-700); background: #e1f4f2; border-radius: 50%; font-size: 12px; font-weight: 900; }

.weight-section { position: relative; overflow: hidden; color: white; background: linear-gradient(135deg, #072d4d 0%, #0b4c62 55%, #126b68 100%); }
.weight-glow { position: absolute; width: 600px; height: 600px; right: -160px; top: -240px; background: radial-gradient(circle, rgba(80,226,195,.28), rgba(80,226,195,0) 68%); }
.weight-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 82px; }
.weight-copy h2 { color: white; }
.weight-copy > p { max-width: 700px; color: #d6edf2; font-size: 18px; }
.weight-pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 26px 0; }
.weight-pill-row span { padding: 8px 13px; color: #eafffb; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: 12px; font-weight: 750; }
.weight-steps { display: grid; gap: 14px; margin-top: 28px; }
.weight-steps > div { display: flex; align-items: center; gap: 16px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.05); }
.weight-steps > div > span { color: #7be2ce; font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.weight-steps strong, .weight-steps small { display: block; }
.weight-steps strong { color: white; font-size: 14px; }
.weight-steps small { color: #bdd8df; font-size: 12px; }
.medical-disclaimer { margin-top: 22px !important; color: #a8cbd4 !important; font-size: 12px !important; }
.weight-media { position: relative; }
.weight-media img { width: 100%; height: 650px; object-fit: cover; object-position: center; border-radius: 36px; box-shadow: var(--shadow-lg); }
.weight-card { position: absolute; left: -40px; bottom: 35px; display: flex; align-items: center; gap: 13px; width: 300px; padding: 18px 20px; color: var(--ink); background: white; border-radius: 18px; box-shadow: var(--shadow-md); }
.weight-card-icon { display: grid; place-items: center; flex: 0 0 43px; height: 43px; color: var(--green-600); background: var(--green-100); border-radius: 13px; font-size: 23px; }
.weight-card strong, .weight-card span { display: block; }
.weight-card strong { font-size: 14px; }
.weight-card span { margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.sexual-section { position: relative; overflow: hidden; color: white; background: #0c102a; }
.sexual-section::before { content: ""; position: absolute; inset: 0; opacity: .23; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 42px 42px; }
.sexual-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 420px; height: 420px; top: -200px; left: -160px; background: radial-gradient(circle, rgba(124,92,226,.34), transparent 70%); }
.orb-two { width: 380px; height: 380px; right: -130px; bottom: -160px; background: radial-gradient(circle, rgba(241,107,135,.25), transparent 70%); }
.sexual-grid { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 84px; }
.sexual-media { position: relative; }
.sexual-media img { width: 100%; height: 690px; object-fit: cover; object-position: center 28%; border-radius: 34px; box-shadow: var(--shadow-lg); }
.privacy-card { position: absolute; right: -35px; bottom: 38px; display: flex; align-items: center; gap: 13px; width: 270px; padding: 18px 20px; color: white; background: rgba(31,23,76,.92); border: 1px solid rgba(255,255,255,.15); border-radius: 18px; box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); }
.privacy-lock { display: grid; place-items: center; width: 42px; height: 42px; color: #5ce7d5; background: rgba(92,231,213,.11); border-radius: 13px; font-size: 26px; }
.privacy-card strong, .privacy-card span { display: block; }
.privacy-card strong { font-size: 14px; }
.privacy-card div span { color: #c8c5e9; font-size: 11px; }
.sexual-copy h2 { color: white; }
.sexual-copy > p { color: #c7c9df; font-size: 18px; }
.sexual-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; margin: 27px 0; }
.sexual-services > div { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 13px; }
.sexual-services span { display: grid; place-items: center; width: 22px; height: 22px; color: #5ce7d5; background: rgba(92,231,213,.1); border-radius: 50%; font-size: 11px; }
.sexual-services strong { color: #f5f6ff; font-size: 12px; }
.pep-alert { display: flex; align-items: flex-start; gap: 16px; margin-top: 25px; padding: 18px; background: linear-gradient(135deg, rgba(241,107,135,.16), rgba(124,92,226,.12)); border: 1px solid rgba(255,153,174,.28); border-radius: 17px; }
.pep-time { display: grid; place-items: center; flex: 0 0 55px; width: 55px; height: 55px; color: #ff9cb0; background: rgba(241,107,135,.1); border: 1px solid rgba(241,107,135,.28); border-radius: 50%; font-size: 15px; font-weight: 850; }
.pep-alert strong { color: white; }
.pep-alert p { margin: 3px 0 0; color: #c7c9df; font-size: 12px; line-height: 1.5; }

.research-section { background: var(--fog); }
.research-hero { position: relative; overflow: hidden; min-height: 540px; border-radius: 34px; box-shadow: var(--shadow-md); }
.research-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.research-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,25,46,.93) 0%, rgba(4,25,46,.77) 45%, rgba(4,25,46,.18) 78%); }
.research-copy { position: relative; z-index: 2; max-width: 650px; padding: 66px; color: white; }
.research-brand { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 35px; font-size: 14px; font-weight: 800; letter-spacing: .02em; }
.wave-icon { display: grid; place-items: center; width: 34px; height: 34px; color: #63c4e9; background: rgba(99,196,233,.15); border-radius: 50%; font-size: 23px; }
.research-copy h2 { margin: 13px 0 17px; font-size: clamp(40px, 4.7vw, 62px); line-height: 1.05; letter-spacing: -.04em; }
.research-copy p { margin: 0; color: #d4e4ee; font-size: 18px; }
.research-paths { display: grid; grid-template-columns: 1fr 1fr .66fr; gap: 20px; margin-top: -46px; padding: 0 34px; position: relative; z-index: 3; }
.research-path, .research-contact { padding: 29px; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); }
.path-number { color: #2698bd; font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.research-path h3 { margin: 12px 0 9px; color: var(--navy-900); font-size: 20px; }
.research-path p { color: var(--body); font-size: 13px; }
.research-path ul { display: grid; gap: 7px; padding-left: 18px; color: #446175; font-size: 12px; }
.research-link { --card-accent: #167fa6; margin-top: 10px; }
.research-contact { display: flex; flex-direction: column; justify-content: center; color: white; background: linear-gradient(150deg, #0b4f72, #0a334f); border: 0; }
.research-contact .contact-label { color: #91d5ee; font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.research-contact strong { margin: 14px 0 10px; font-size: 15px; line-height: 1.45; }
.research-contact a { color: white; font-size: 21px; font-weight: 850; }
.research-contact > span:last-child { margin-top: 11px; color: #b9d8e5; font-size: 10px; line-height: 1.45; }

.community-section { background: white; }
.community-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 82px; }
.community-organizations { display: grid; gap: 14px; margin-top: 30px; }
.community-organizations article { display: flex; gap: 16px; padding: 19px; border: 1px solid var(--line); border-radius: 17px; background: #fbfdfe; }
.org-mark { display: grid; place-items: center; flex: 0 0 52px; width: 52px; height: 52px; border-radius: 15px; font-size: 12px; font-weight: 900; letter-spacing: .04em; }
.org-green { color: #1d7d5e; background: #e4f5ed; }
.org-gold { color: #a86516; background: #fff0cf; }
.community-organizations h3 { margin: 0 0 4px; color: var(--navy-900); font-size: 16px; }
.community-organizations p { margin: 0 0 7px; color: var(--body); font-size: 12px; }
.community-organizations a { color: var(--blue-700); font-size: 12px; font-weight: 800; }
.status-chip { display: inline-flex; padding: 5px 9px; color: #8b651e; background: #fff4dc; border-radius: 999px; font-size: 10px; font-weight: 750; }
.community-media { position: relative; }
.community-media img { width: 100%; height: 660px; object-fit: cover; border-radius: 36px; box-shadow: var(--shadow-md); }
.community-quote { position: absolute; left: -42px; bottom: 38px; display: flex; gap: 12px; width: 330px; padding: 20px 23px; color: white; background: rgba(11,58,103,.94); border-radius: 18px; box-shadow: var(--shadow-md); }
.community-quote > span { color: var(--sky-500); font-family: Georgia, serif; font-size: 44px; line-height: .8; }
.community-quote p { margin: 0; font-size: 13px; line-height: 1.5; }

.network-section { background: linear-gradient(180deg, #f5f9fc, #eef5f9); }
.network-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.network-card { display: flex; align-items: center; gap: 14px; min-height: 102px; padding: 20px; background: white; border: 1px solid var(--line); border-radius: 17px; box-shadow: 0 7px 22px rgba(8,43,75,.04); transition: transform .25s var(--ease), box-shadow .25s ease; }
.network-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.network-symbol { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; border-radius: 14px; font-weight: 900; }
.blue-symbol { color: var(--blue-700); background: #e9f2fb; }
.teal-symbol { color: var(--teal-700); background: #e4f5f3; }
.green-symbol { color: var(--green-600); background: var(--green-100); }
.violet-symbol { color: var(--violet-700); background: #f0edff; }
.cyan-symbol { color: #1683aa; background: #e5f6fb; }
.orange-symbol { color: var(--orange-600); background: var(--orange-100); }
.network-card strong, .network-card small { display: block; }
.network-card strong { color: var(--navy-900); font-size: 14px; }
.network-card small { margin-top: 3px; color: var(--muted); font-size: 11px; }

.contact-section { color: white; background: linear-gradient(135deg, #062641, #0b3a67 62%, #145d7b); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 85px; }
.contact-copy h2 { color: white; }
.contact-copy > p { color: #c9dce8; }
.contact-details { display: grid; gap: 13px; margin-top: 30px; }
.contact-details > a, .contact-details > div { display: flex; align-items: center; gap: 13px; padding: 13px 0; color: white; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-detail-icon { display: grid; place-items: center; flex: 0 0 43px; width: 43px; height: 43px; color: #9cddff; background: rgba(255,255,255,.07); border-radius: 13px; }
.contact-details small, .contact-details strong { display: block; }
.contact-details small { color: #9cb8c9; font-size: 11px; }
.contact-details strong { font-size: 14px; }
.contact-form { padding: 34px; color: var(--ink); background: white; border-radius: 25px; box-shadow: var(--shadow-lg); }
.form-header h3 { margin: 0; color: var(--navy-900); font-size: 23px; }
.form-header p { margin: 4px 0 23px; color: var(--muted); font-size: 13px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label, .modal-panel label { display: grid; gap: 7px; margin-bottom: 15px; color: #3d596b; font-size: 12px; font-weight: 750; }
.contact-form input, .contact-form select, .modal-panel input, .modal-panel select { width: 100%; min-height: 48px; padding: 0 13px; color: var(--ink); background: #f9fbfc; border: 1px solid #d6e3ea; border-radius: 11px; }
.contact-form input:focus, .contact-form select:focus, .modal-panel input:focus, .modal-panel select:focus { border-color: var(--sky-500); background: white; }
.checkbox-label { grid-template-columns: 18px 1fr !important; align-items: start; gap: 10px !important; font-weight: 500 !important; line-height: 1.45; }
.checkbox-label input { width: 17px !important; min-height: 17px !important; margin: 1px 0 0; }
.form-message { display: none; margin-top: 14px; padding: 11px 13px; color: #226c56; background: #eaf7f1; border: 1px solid #cae9dd; border-radius: 10px; font-size: 12px; line-height: 1.45; }
.form-message.show { display: block; }
.form-message.error { color: #842f35; background: #fff0f1; border-color: #f2c7cb; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.button[disabled] { cursor: wait; opacity: .68; }

.site-footer { padding: 70px 0 24px; color: #bad0dd; background: #041827; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .9fr .85fr; gap: 55px; }
.footer-brand img { width: 215px; padding: 9px; background: white; border-radius: 10px; }
.footer-brand p { max-width: 350px; color: #8ba9ba; font-size: 13px; }
.footer-phone { color: white; font-size: 22px; font-weight: 850; }
.footer-column h3 { margin: 0 0 16px; color: white; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.footer-column a, .footer-column p { display: block; margin: 8px 0; color: #8ba9ba; font-size: 12px; }
.footer-column a:hover { color: white; }
.footer-button { margin-top: 10px; padding: 0; color: #9fdcff; background: transparent; border: 0; font-size: 12px; font-weight: 800; }
.footer-social { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-social strong { display: block; margin-bottom: 8px; color: white; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.footer-social a { display: block; margin: 6px 0; color: #8ba9ba; font-size: 12px; }
.footer-social a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.08); color: #7190a1; font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-disclaimer { padding-top: 18px; color: #5f7d8f; font-size: 10px; }
.footer-disclaimer p { margin: 0; }

.modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(2,17,29,.72); backdrop-filter: blur(6px); }
.modal-panel { position: relative; z-index: 2; width: min(100%, 570px); max-height: calc(100vh - 40px); overflow-y: auto; padding: 38px; background: white; border-radius: 25px; box-shadow: 0 40px 100px rgba(0,0,0,.38); transform: translateY(16px) scale(.985); transition: transform .25s var(--ease); }
.modal.open .modal-panel { transform: none; }
.modal-close { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 36px; height: 36px; color: #587184; background: var(--fog); border: 0; border-radius: 50%; font-size: 25px; line-height: 1; }
.modal-panel h2 { margin: 10px 0 8px; color: var(--navy-950); font-size: 34px; line-height: 1.1; letter-spacing: -.03em; }
.modal-panel > p { margin: 0 0 23px; color: var(--muted); font-size: 13px; }
.appointment-hours { margin: -7px 0 22px; padding: 15px; background: linear-gradient(135deg, #eef7fc, #f7fbfd); border: 1px solid #d8e9f2; border-radius: 16px; }
.appointment-hours-head { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 12px; }
.appointment-hours-icon { display: grid; place-items: center; flex: 0 0 36px; width: 36px; height: 36px; color: var(--blue-700); background: white; border-radius: 11px; box-shadow: 0 5px 14px rgba(11,58,103,.09); font-size: 18px; font-weight: 850; }
.appointment-hours-head strong, .appointment-hours-head small, .appointment-hours-grid span, .appointment-hours-grid strong { display: block; }
.appointment-hours-head strong { color: var(--navy-950); font-size: 14px; line-height: 1.25; }
.appointment-hours-head small { margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.appointment-hours-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.appointment-hours-grid > div { padding: 11px 12px; background: white; border: 1px solid rgba(11,58,103,.08); border-radius: 11px; }
.appointment-hours-grid span { color: #61798a; font-size: 10px; font-weight: 800; line-height: 1.35; text-transform: uppercase; letter-spacing: .035em; }
.appointment-hours-grid strong { margin-top: 4px; color: var(--navy-950); font-size: 13px; line-height: 1.35; }
.appointment-routing { margin: -7px 0 17px !important; padding: 10px 12px; color: #456174 !important; background: #f7fafc; border-left: 3px solid var(--sky-500); border-radius: 0 9px 9px 0; font-size: 11px !important; line-height: 1.45; }
.modal-call { margin-top: 16px; color: var(--muted); text-align: center; font-size: 12px; }
.modal-call a { color: var(--blue-700); font-weight: 850; }

.reveal { opacity: 1; transform: none; }
.reveal.visible { animation: reveal-in .7s var(--ease) both; animation-delay: var(--delay, 0ms); }
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  :root { --container: 940px; }
  .site-nav { gap: 15px; }
  .site-nav a { font-size: 12px; }
  .button-small { display: none; }
  .hero-grid, .feature-grid, .feature-grid.reverse, .weight-grid, .sexual-grid, .community-grid, .contact-grid { gap: 50px; }
  .hero-image-wrap, .hero-image-wrap img { min-height: 520px; }
  .feature-media > img, .weight-media img, .community-media img { height: 560px; }
  .sexual-media img { height: 610px; }
  .research-paths { grid-template-columns: 1fr 1fr; }
  .research-contact { grid-column: 1 / -1; min-height: 160px; }
}

@media (max-width: 900px) {
  .utility-location { display: none; }
  .utility-inner { justify-content: center; }
  .header-inner { gap: 14px; }
  .brand img { width: 180px; }
  .menu-toggle { display: block; margin-left: auto; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: grid; gap: 0; padding: 12px 20px 20px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); transform: translateY(-10px); visibility: hidden; opacity: 0; transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .site-nav.open { transform: none; visibility: visible; opacity: 1; }
  .site-nav a { padding: 12px 6px; border-bottom: 1px solid #edf2f5; font-size: 14px; }
  .site-nav a::after { display: none; }
  .hero-grid, .feature-grid, .feature-grid.reverse, .weight-grid, .sexual-grid, .community-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-buttons, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 650px; margin: 10px auto 0; }
  .floating-card-top { left: -15px; }
  .floating-card-bottom { right: -10px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid.reverse .feature-media { order: 0; }
  .feature-media, .weight-media, .sexual-media, .community-media { max-width: 700px; margin-inline: auto; }
  .feature-copy, .weight-copy, .sexual-copy, .community-copy { max-width: 760px; }
  .weight-media { order: -1; }
  .weight-media img { height: 520px; object-position: center 25%; }
  .sexual-media img { height: 650px; }
  .network-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { max-width: 700px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 640px) {
  :root { --header-height: 74px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 78px 0; }
  .utility-actions > span:last-child, .utility-divider { display: none; }
  .brand img { width: 155px; }
  .header-actions { gap: 5px; }
  .language-switch { font-size: 12px; }
  .hero { padding-top: 58px; }
  .hero-copy h1 { font-size: 43px; }
  .hero-lead { font-size: 17px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .button { width: 100%; }
  .hero-trust { display: grid; justify-content: start; max-width: 310px; margin-inline: auto; text-align: left; }
  .hero-image-wrap { min-height: 440px; border-radius: 30px 30px 30px 90px; }
  .hero-image-wrap img { min-height: 440px; }
  .floating-card { min-width: 210px; padding: 13px 15px; }
  .floating-card-top { top: 20px; left: 10px; }
  .floating-card-bottom { right: 8px; bottom: 20px; }
  .emergency-note { align-items: flex-start; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .section-heading h2, .feature-copy h2, .weight-copy h2, .sexual-copy h2, .community-copy h2, .contact-copy h2 { font-size: 37px; }
  .section-heading p, .feature-copy > p, .community-copy > p, .contact-copy > p, .weight-copy > p, .sexual-copy > p { font-size: 16px; }
  .feature-list.two-columns { grid-template-columns: 1fr; }
  .feature-media > img, .community-media img { height: 470px; }
  .media-badge { left: 12px; bottom: 18px; width: calc(100% - 24px); }
  .media-stat { right: 12px; bottom: 18px; max-width: calc(100% - 24px); }
  .weight-media img { height: 510px; }
  .weight-card { left: 12px; right: 12px; bottom: 18px; width: auto; }
  .sexual-media img { height: 570px; }
  .privacy-card { left: 12px; right: 12px; bottom: 18px; width: auto; }
  .sexual-services { grid-template-columns: 1fr; }
  .pep-alert { display: block; }
  .pep-time { margin-bottom: 12px; }
  .feature-actions { flex-direction: column; align-items: stretch; }
  .feature-actions .button { width: 100%; }
  .research-hero { min-height: 600px; }
  .research-overlay { background: linear-gradient(180deg, rgba(4,25,46,.35), rgba(4,25,46,.94) 68%); }
  .research-copy { position: absolute; inset: auto 0 0; padding: 32px 26px; }
  .research-copy h2 { font-size: 38px; }
  .research-paths { grid-template-columns: 1fr; margin-top: 18px; padding: 0; }
  .research-contact { grid-column: auto; }
  .community-quote { left: 12px; right: 12px; bottom: 18px; width: auto; }
  .network-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 25px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .modal-panel { padding: 30px 20px 24px; }
  .modal-panel h2 { font-size: 30px; }
  .appointment-hours-grid { grid-template-columns: 1fr; }
}

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