

:root {
  --teal: #32a4a6;
  --teal-dark: #167f82;
  --navy: #2b4b88;
  --navy-deep: #173461;
  --slate: #8194a1;
  --mist: #e9f4f4;
  --paper: #fdfefd;
  --cream: #f6f3ec;
  --ink: #17263f;
  --line: rgba(23, 52, 97, 0.16);
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Nunito Sans", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); }
h1, h2, h3, h4, h5, h6 { font-family: var(--serif); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 18px; background: white; color: var(--navy); border-radius: 8px; }
.skip-link:focus { top: 16px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(253, 254, 253, 0.96); backdrop-filter: blur(18px); box-shadow: 0 1px 0 var(--line); }
.utility-bar { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 8px clamp(24px, 5vw, 84px); background: var(--navy-deep); color: white; }
.utility-bar p { margin: 0; font-family: var(--serif); font-size: 16px; font-weight: 400; letter-spacing: .025em; }
.utility-bar div { display: flex; align-items: center; gap: 10px; }
.utility-bar a { display: inline-flex; min-height: 38px; align-items: center; justify-content: center; padding: 0 21px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.utility-bar a:hover, .utility-bar a:focus-visible { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.75); transform: translateY(-1px); }
.utility-bar .utility-phone { min-height: auto; padding: 0 8px; border: 0; border-radius: 0; color: rgba(255,255,255,.88); }
.utility-bar .utility-phone:hover, .utility-bar .utility-phone:focus-visible { background: transparent; color: white; transform: none; }
.utility-bar .utility-schedule, .utility-bar .utility-support { font-size: 13px; font-weight: 800; }
.utility-bar .utility-schedule { border-color: #43bdb8; background: linear-gradient(135deg, #43bdb8 0%, #2e9fa8 52%, #327da5 100%); color: white; box-shadow: 0 5px 16px rgba(46,159,168,.24); }
.utility-bar .utility-schedule:hover, .utility-bar .utility-schedule:focus-visible { border-color: #63cbc6; background: linear-gradient(135deg, #59c9c3 0%, #36aeb3 52%, #3d8db3 100%); }
.utility-bar .utility-support { background: transparent; color: white; }
.nav-shell { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 0 clamp(24px, 5vw, 84px); }
.brand img { width: 218px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.2vw, 38px); font-size: 14px; font-weight: 700; }
.desktop-nav a { position: relative; padding: 34px 0; transition: color .25s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 50%; bottom: 23px; width: 22px; height: 1px; border-radius: 999px; background: var(--teal); opacity: 0; transform: translateX(-50%) scaleX(.35); transition: opacity .25s ease, transform .3s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--teal-dark); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { opacity: 1; transform: translateX(-50%) scaleX(1); }
.mobile-nav { display: none; position: relative; }
.mobile-nav summary { list-style: none; cursor: pointer; border: 1px solid var(--line); padding: 10px 14px; border-radius: 6px; font-weight: 700; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav div { position: absolute; right: 0; top: 50px; z-index: 100; width: min(310px, 84vw); display: grid; padding: 12px; border: 1px solid rgba(23,52,97,.1); border-radius: 8px; background: white; box-shadow: 0 18px 50px rgba(23,52,97,.18); }
.mobile-nav a { padding: 14px; border-bottom: 1px solid var(--line); }

.hero { min-height: 720px; display: grid; grid-template-columns: 54% 46%; background: var(--navy-deep); }
.hero-copy { padding: clamp(72px, 8vw, 126px) clamp(34px, 7vw, 118px); color: white; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.hero-copy::after { content: ""; position: absolute; width: 500px; height: 500px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; right: -300px; bottom: -250px; box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 120px rgba(255,255,255,.025); }
.eyebrow { margin: 0 0 18px; color: var(--teal-dark); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.light { color: #9de2df; }
.hero h1 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(58px, 6.2vw, 102px); font-weight: 400; line-height: .95; letter-spacing: -.045em; }
.hero-intro { max-width: 650px; margin: 34px 0 0; color: #d5e0ee; font-size: clamp(17px, 1.4vw, 22px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; position: relative; z-index: 2; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 0 26px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 800; letter-spacing: .065em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button[href*="support-macom"], .button[href*="macom-insights"] { text-transform: none; }
.brand-case { text-transform: none; }
.button-teal, .button-navy { background: linear-gradient(135deg, #43bdb8 0%, #2e9fa8 52%, #327da5 100%); color: white; box-shadow: 0 7px 20px rgba(46,159,168,.2); }
.button-teal:hover, .button-teal:focus-visible, .button-navy:hover, .button-navy:focus-visible { background: linear-gradient(135deg, #59c9c3 0%, #36aeb3 52%, #3d8db3 100%); }
.button-ghost { border-color: rgba(255,255,255,.4); color: white; }
.button-ghost:hover, .button-ghost:focus-visible { background: rgba(255,255,255,.08); }
.button-white { background: white; color: var(--navy); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 52px; color: #c6d2df; font-size: 12px; }
.hero-proof span::before { content: "â€¢"; margin-right: 9px; color: var(--teal); }
.hero-image { position: relative; overflow: hidden; min-height: 560px; }
.hero-image > img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.75) contrast(1.03); transform: scale(1.01); }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,52,97,.18), transparent 30%), linear-gradient(0deg, rgba(23,52,97,.4), transparent 36%); }
.hero-image-label { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 28px; display: flex; justify-content: space-between; align-items: flex-end; color: white; border-top: 1px solid rgba(255,255,255,.45); padding-top: 16px; font-size: 12px; }
.hero-image-label strong { font-size: 14px; }

.section { padding: clamp(84px, 9vw, 150px) clamp(24px, 7vw, 118px); }
.welcome { padding-top: clamp(54px, 6vw, 88px); padding-bottom: clamp(42px, 4vw, 64px); }
.section-heading h2, .impact h2, .visit h2, .support-banner h2, .newsletter h2, .insights h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.04em; line-height: 1.03; }
.split-heading { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 10vw, 160px); align-items: start; }
.split-heading h2 { font-size: clamp(48px, 5vw, 78px); }
.mission-copy { padding-top: 36px; }
.mission-copy > p { margin: 0; color: #4b5c70; font-family: var(--sans); font-size: clamp(19px, 1.7vw, 25px); line-height: 1.65; }
.mission-actions { margin-top: 28px; }
.mission-actions-mobile { display: none; }
.text-link { display: inline-flex; gap: 22px; align-items: center; color: var(--navy); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid var(--navy); padding-bottom: 7px; }
.values-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(86px, 7vw, 112px); }
.values-strip div { min-width: 0; min-height: 86px; display: flex; align-items: center; gap: 14px; padding: 16px 28px; border-right: 1px solid var(--line); }
.values-strip div:last-child { border-right: 0; }
.values-strip .value-icon { width: 30px; flex: 0 0 30px; color: var(--teal-dark); font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1; text-align: center; }
.values-strip span { color: #4b5c70; font-family: var(--sans); font-size: clamp(17px, 1.4vw, 21px); font-weight: 600; line-height: 1.4; }

.uses { background: linear-gradient(180deg, #f4fafa 0%, #fbfdfd 62%, #ffffff 100%); }
.centered-heading { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.centered-heading h2 { font-size: clamp(48px, 5vw, 76px); }
.centered-heading > p:last-child { max-width: 620px; margin: 24px auto 0; color: #596778; font-size: 17px; line-height: 1.7; }
.uses-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(48px, 7vw, 108px); }
.use-card { min-height: 174px; display: grid; grid-template-columns: 60px minmax(0, 1fr) 44px; grid-template-areas: "number title arrow" "number copy arrow"; column-gap: 20px; align-content: center; padding: 30px 0; border-top: 1px solid var(--line); transition: color .25s ease; }
.use-icon { grid-area: number; width: 50px; height: 50px; display: grid; place-items: center; align-self: start; border: 1px solid rgba(50,164,166,.42); border-radius: 50%; color: var(--teal-dark); transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease; }
.use-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.use-card h3 { grid-area: title; max-width: none; margin: 2px 0 0; font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1.15; transition: color .25s ease; }
.use-card p { grid-area: copy; max-width: 440px; margin: 12px 0 0; color: #637081; font-size: 15px; line-height: 1.65; }
.card-arrow { grid-area: arrow; width: 42px; height: 42px; display: grid; place-items: center; align-self: start; border: 1px solid rgba(23,52,97,.18); border-radius: 50%; color: var(--navy); font-size: 17px; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.use-card:hover h3, .use-card:focus-visible h3 { color: var(--teal-dark); }
.use-card:hover .use-icon, .use-card:focus-visible .use-icon { border-color: var(--teal); background: var(--mist); transform: translateY(-2px); }
.use-card:hover .card-arrow, .use-card:focus-visible .card-arrow { border-color: transparent; background: linear-gradient(135deg, #43bdb8, #327da5); color: white; transform: translate(3px, -3px); }

.visit { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: start; gap: clamp(64px, 8vw, 132px); padding: clamp(84px, 9vw, 150px) clamp(24px, 7vw, 118px); background: var(--navy-deep); color: white; }
.visit-visual { order: 2; min-height: 0; padding: 0; border: 0; background: transparent; align-self: center; }
.visit-video-wrap { width: 100%; max-width: none; margin-left: 0; }
.video-poster { position: relative; aspect-ratio: 16 / 9; display: block; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; background: #091a31; box-shadow: 0 16px 40px rgba(3,16,35,.28); }
.video-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,26,49,.65), rgba(9,26,49,.06) 62%); }
.video-poster img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.03); transition: transform .4s ease; }
.video-poster:hover img, .video-poster:focus-visible img { transform: scale(1.025); }
.video-play { position: absolute; z-index: 2; left: 50%; top: 50%; width: 68px; height: 68px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--navy-deep); font-size: 20px; transform: translate(-50%, -50%); box-shadow: 0 10px 28px rgba(3,16,35,.25); }
.video-poster-label { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; color: white; font-size: 13px; font-weight: 800; letter-spacing: .04em; }
.visit-video-caption { display: flex; justify-content: flex-end; gap: 20px; margin: 14px 3px 0; color: #bdccdb; font-size: 13px; }
.visit-video-caption a { color: #9de2df; font-weight: 800; }
.play-link { position: absolute; z-index: 2; left: 36px; bottom: 34px; display: flex; align-items: center; gap: 14px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.play-link span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--navy); }
.visit-copy { order: 1; padding: 0; background: transparent; }
.visit-copy .eyebrow.light { color: #9de2df; }
.visit-copy h2 { color: white; font-size: clamp(52px, 5vw, 76px); line-height: 1.04; }
.visit-intro { max-width: 620px; margin: 26px 0 0; color: #c8d5e2; font-size: 19px; line-height: 1.7; }
.steps { list-style: none; display: grid; gap: 24px; padding: 0; margin: 38px 0 0; }
.steps li { position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 0; }
.steps li:not(:last-child)::after { content: ""; position: absolute; left: 22px; top: 52px; bottom: -22px; width: 1px; background: rgba(157,226,223,.25); }
.steps li > span { width: 46px; height: 46px; display: grid; place-items: center; align-self: start; border: 1px solid rgba(157,226,223,.55); border-radius: 50%; background: rgba(157,226,223,.07); color: #9de2df; font-size: 13px; font-weight: 800; }
.steps h3 { margin: 1px 0 7px; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.steps p { margin: 0; color: #bdccdb; font-size: 15px; line-height: 1.65; }
.step-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: #9de2df; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.step-link:hover, .step-link:focus-visible { color: white; }
.visit-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 42px; }
.light-link { color: white; border-color: rgba(255,255,255,.5); }

.impact { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; isolation: isolate; padding: clamp(68px, 7vw, 96px) clamp(24px, 7vw, 118px); color: white; text-align: center; }
.impact-water { position: absolute; z-index: -3; inset: -4%; overflow: hidden; }
.impact-water img, .impact-water video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.impact-water img { z-index: 0; }
.impact-water video { z-index: 1; }
.impact-overlay { position: absolute; z-index: -2; inset: 0; background: linear-gradient(180deg, rgba(8,27,51,.67), rgba(15,47,81,.76)), radial-gradient(circle at center, rgba(38,128,143,.14), transparent 55%); }
.impact-sheen { position: absolute; z-index: -1; inset: 0; opacity: .2; background: linear-gradient(110deg, transparent 28%, rgba(157,226,223,.18) 46%, transparent 64%); }
.impact-content { width: min(100%, 1080px); }
.impact-content .eyebrow { color: #9de2df; }
.impact-content h2 { max-width: 820px; margin: 0 auto; font-size: clamp(52px, 5.4vw, 84px); line-height: 1.04; }
.impact-stats { display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); max-width: 760px; margin: 42px auto 0; }
.impact-metric { padding: 8px 36px; }
.impact-metric + .impact-metric { border-left: 1px solid rgba(255,255,255,.28); }
.impact-metric strong { display: block; font-family: var(--serif); font-size: clamp(64px, 7vw, 104px); font-weight: 400; line-height: .9; letter-spacing: -.045em; }
.impact-metric span { display: block; margin-top: 16px; color: #c8ecea; font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.impact-message { margin: 26px auto 0; color: #9de2df; font-family: var(--serif); font-size: clamp(25px, 2.2vw, 34px); font-style: italic; font-weight: 400; line-height: 1.35; }
.impact-actions { margin-top: 22px; }
.impact-actions .button { font-size: 13px; font-weight: 800; letter-spacing: .02em; text-transform: none; }
.impact-resource-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }
.impact-resource-links a { display: inline-flex; align-items: center; min-height: 46px; padding: 0 20px; border: 1px solid rgba(255,255,255,.48); border-radius: 999px; color: white; font-size: 13px; font-weight: 800; letter-spacing: .02em; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.impact-resource-links a:hover, .impact-resource-links a:focus-visible { border-color: white; background: rgba(255,255,255,.12); transform: translateY(-2px); }
.stories { background: #edf3f7; }
.story-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 60px; }
.story-heading h2 { font-size: clamp(50px, 5vw, 80px); }
.story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.story-card { min-width: 0; overflow: hidden; padding-bottom: 30px; border: 1px solid rgba(23,52,97,.09); border-radius: 24px; background: white; box-shadow: 0 12px 34px rgba(23,52,97,.055); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.story-card:hover { border-color: rgba(50,164,166,.24); box-shadow: 0 18px 42px rgba(23,52,97,.1); transform: translateY(-4px); }
.story-card > p, .story-card > h3, .story-card > a { margin-left: 28px; margin-right: 28px; }
.story-media { position: relative; height: 280px; overflow: hidden; margin-bottom: 30px; background: var(--navy-deep); }
.story-media::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(135deg, rgba(13,35,70,.14), rgba(20,117,129,.42)); transition: opacity .25s ease; }
.story-media.is-playing::after { opacity: 0; }
.story-video { width: 100%; height: 100%; display: block; object-fit: cover; }
.story-play { position: absolute; z-index: 3; top: 50%; left: 50%; width: 76px; height: 76px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; background: rgba(13,35,70,.48); color: white; cursor: pointer; transform: translate(-50%, -50%); backdrop-filter: blur(7px); box-shadow: 0 12px 32px rgba(13,35,70,.24); transition: background .2s ease, transform .2s ease, opacity .2s ease; }
.story-play:hover, .story-play:focus-visible { background: linear-gradient(135deg, #43bdb8, #327da5); transform: translate(-50%, -50%) scale(1.06); }
.story-play svg { width: 25px; height: 25px; margin-left: 4px; fill: currentColor; }
.story-media.is-playing .story-play { opacity: 0; pointer-events: none; }
.story-duration { position: absolute; z-index: 2; top: 17px; right: 17px; padding: 7px 10px; border-radius: 999px; background: rgba(13,35,70,.72); color: white; font-size: 11px; font-weight: 800; letter-spacing: .06em; transition: opacity .2s ease; }
.story-media.is-playing .story-duration { opacity: 0; }
.story-card h3 { margin-top: 0; margin-bottom: 14px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.story-card > p:not(.eyebrow) { overflow-wrap: anywhere; color: #637081; font-size: 14px; line-height: 1.65; }
.story-card > a { display: inline-flex; gap: 18px; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid var(--navy); color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.story-actions { display: flex; justify-content: center; margin-top: 44px; }

.insights { position: relative; overflow: hidden; background: #fff; color: var(--navy); border-top: 1px solid #e4eef1; border-bottom: 1px solid #e4eef1; }
.insights-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); gap: clamp(40px, 9vw, 140px); align-items: end; margin: 0 0 52px; text-align: left; }
.insights-heading h2 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: clamp(52px, 5vw, 78px); font-weight: 400; letter-spacing: -.04em; line-height: 1.03; }
.insights-heading h2 em { color: var(--teal-dark); font-weight: 400; }
.insights-heading > p:last-child { max-width: 520px; margin: 0 0 7px; color: #596778; font-size: 18px; line-height: 1.7; }
.insights-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.insight-card { position: relative; min-height: 570px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid #dce8ec; border-radius: 24px; background: #f8fbfc; box-shadow: 0 16px 38px rgba(23,52,97,.07); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.insight-card:hover { border-color: rgba(50,164,166,.35); box-shadow: 0 22px 46px rgba(23,52,97,.11); transform: translateY(-4px); }
.insight-card-featured { background: #f8fbfc; }
.insight-media { position: relative; height: 235px; flex: 0 0 235px; overflow: hidden; background: #dcecf2; }
.insight-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(13,35,70,.12)); pointer-events: none; }
.insight-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insight-card:hover .insight-media img { transform: scale(1.035); }
.insight-content { flex: 1; display: flex; flex-direction: column; align-items: flex-start; padding: 30px 30px 28px; }
.insight-card-featured .insight-content { padding: 30px 30px 28px; }
.insight-meta { width: 100%; display: flex; justify-content: space-between; gap: 18px; margin-bottom: 18px; color: var(--teal-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.insight-meta time { color: #758392; }
.insight-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(25px, 2vw, 31px); font-weight: 400; line-height: 1.17; }
.insight-card-featured h3 { max-width: none; font-size: clamp(25px, 2vw, 31px); }
.insight-content > p { margin: 16px 0 24px; color: #596778; font-size: 15px; line-height: 1.65; }
.insight-card-featured .insight-content > p { max-width: none; font-size: 15px; }
.insight-content > a { display: inline-flex; align-items: center; gap: 14px; margin-top: auto; padding-bottom: 5px; border-bottom: 1px solid var(--navy); color: var(--navy); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.insights-actions { display: flex; justify-content: flex-start; margin-top: 42px; }

.newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.newsletter h2 { font-size: clamp(42px, 4.4vw, 70px); }
.newsletter-form label { display: block; margin-bottom: 10px; color: #526172; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.newsletter-form > div { display: flex; align-items: flex-end; gap: 16px; }
.newsletter-form input { flex: 1; min-width: 240px; border: 0; border-bottom: 2px solid var(--navy); outline: 0; background: transparent; padding: 18px 0 14px; font-size: 18px; }
.newsletter-form button { min-height: 54px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 0 28px; border: 0; border-radius: 999px; background: linear-gradient(135deg, #43bdb8 0%, #2e9fa8 52%, #327da5 100%); color: white; box-shadow: 0 7px 20px rgba(46,159,168,.22); font-size: 13px; font-weight: 800; letter-spacing: .065em; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.newsletter-form button:hover, .newsletter-form button:focus-visible { transform: translateY(-2px); background: linear-gradient(135deg, #59c9c3 0%, #36aeb3 52%, #3d8db3 100%); box-shadow: 0 10px 26px rgba(46,159,168,.28); }
.newsletter-form > p { color: #7a8795; font-size: 11px; line-height: 1.5; }

.support-banner { min-height: 470px; padding: 90px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: linear-gradient(125deg, rgba(10, 35, 69, .78), rgba(13, 126, 132, .68)), url('assets/support-water.png') center 52% / cover no-repeat; color: white; }
.support-banner h2 { max-width: 850px; margin-bottom: 34px; font-size: clamp(50px, 5vw, 82px); text-shadow: 0 3px 24px rgba(5, 26, 53, .28); }
.support-banner .eyebrow { color: white; text-shadow: 0 2px 14px rgba(5, 26, 53, .35); }

.footer { display: grid; grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr)); gap: 30px; padding: 52px clamp(24px, 7vw, 118px) 24px; background: var(--navy-deep); color: white; }
.footer-brand img { width: 280px; max-width: 100%; height: auto; }
.footer-brand p { max-width: 310px; color: #afbed0; font-family: var(--sans); font-size: 18px; line-height: 1.6; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; font-style: normal; }
.footer-column h3 { margin: 0 0 7px; color: #9de2df; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.footer-column a { color: #c8d3e1; font-size: 13px; line-height: 1.7; }
.footer-column a:hover, .footer-column a:focus-visible { color: white; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 16px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); color: #8fa1b6; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom a { color: #9de2df; transition: color .2s ease; }
.footer-bottom a:hover, .footer-bottom a:focus-visible { color: white; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 650px; }
  .hero-image { height: 600px; }
  .uses-grid { grid-template-columns: repeat(2, 1fr); }
  .visit { grid-template-columns: 1fr; }
  .visit { gap: 56px; }
  .visit-visual { min-height: 0; border: 0; }
  .visit-video-wrap { margin: 0 auto; }
  .impact-panel { grid-template-columns: 1fr; }
  .impact-panel img { height: 330px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card { display: grid; grid-template-columns: .8fr 1.2fr; padding-bottom: 0; }
  .story-media { height: 100%; min-height: 330px; grid-row: 1 / 5; margin: 0 28px 0 0; }
  .story-card .eyebrow { margin-top: 40px; }
  .insights-heading { grid-template-columns: 1fr; gap: 24px; }
  .insights-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .insight-card-featured { grid-row: auto; }
  .footer { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .utility-bar { flex-direction: column; justify-content: center; gap: 8px; padding: 10px 16px 12px; text-align: center; }
  .utility-bar p { font-size: 14px; }
  .utility-bar div { width: 100%; justify-content: center; flex-wrap: wrap; }
  .utility-bar a { min-height: 34px; flex: 1; max-width: 190px; padding: 0 10px; }
  .utility-bar .utility-phone { flex-basis: 100%; max-width: none; }
  .main-navigation.nav-shell { min-height: 72px; height: 72px; padding: 0 18px; }
  .brand img { width: 174px; }
  .hero-copy { min-height: auto; padding: 78px 24px 66px; }
  .hero h1 { font-size: clamp(52px, 15vw, 72px); }
  .hero-image { height: 500px; min-height: 0; }
  .hero-proof { display: grid; }
  .hero-image-label { left: 20px; right: 20px; }
  .hero-image-label span { display: none; }
  .section { padding: 78px 22px; }
  .split-heading, .impact-top, .newsletter { grid-template-columns: 1fr; gap: 20px; }
  .mission-copy { padding-top: 0; }
  .values-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 58px; }
  .values-strip div:nth-child(2) { border-right: 0; }
  .uses-grid { grid-template-columns: 1fr; }
  .use-card { min-height: 0; padding: 26px 0; grid-template-columns: 56px minmax(0, 1fr) 40px; column-gap: 14px; }
  .use-card h3 { font-size: 26px; }
  .visit { padding: 78px 22px; gap: 46px; }
  .visit-visual { min-height: 0; }
  .visit-copy { padding: 0; }
  .impact-stat { justify-self: start; }
  .impact-stat p { margin-left: 0; }
  .impact-panel { margin-top: 55px; }
  .impact-panel-copy { padding: 34px 24px; }
  .impact-links { grid-template-columns: 1fr; }
  .impact-links a { border-right: 0; border-bottom: 1px solid var(--line); }
  .story-heading { align-items: flex-start; flex-direction: column; }
  .story-card { display: block; padding-bottom: 30px; }
  .story-media { min-height: 280px; margin: 0 0 30px; }
  .story-card .eyebrow { margin-top: 0; }
  .insight-card { min-height: 0; }
  .insight-card .insight-media { height: 260px; flex-basis: 260px; }
  .insight-card-featured .insight-content, .insight-content { padding: 28px 24px 30px; }
  .newsletter { gap: 42px; }
  .newsletter-form > div { flex-wrap: wrap; align-items: center; }
  .newsletter-form input { font-size: 15px; }
  .newsletter-form button { width: 100%; }
  .footer { grid-template-columns: 1fr; gap: 26px; padding: 48px 24px 22px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

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

/* Full-image hero and gallery */
.hero.hero-full { min-height: min(850px, 86vh); display: block; position: relative; overflow: hidden; background: var(--navy-deep); }
.hero-slides { position: absolute; inset: 0; background: var(--navy-deep) url("assets/hero-mikvah-1-hd.webp") center / cover no-repeat; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; filter: saturate(.84) contrast(1.04); animation: heroFade 18s infinite ease-in-out; }
.hero-slide:first-child { opacity: 1; }
.hero-slides.has-video { background: var(--navy-deep); }
.hero-poster, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.84) contrast(1.04); }
.hero-poster { z-index: 0; opacity: 1; animation: none; }
.hero-video { z-index: 1; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
@keyframes heroFade {
  0%, 28% { opacity: 1; transform: scale(1.025); }
  34%, 94% { opacity: 0; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.025); }
}
.hero-full-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,35,70,.9) 0%, rgba(23,52,97,.68) 43%, rgba(23,52,97,.18) 72%, rgba(23,52,97,.3) 100%), linear-gradient(0deg, rgba(13,35,70,.54), transparent 48%); }
.hero.hero-full .hero-copy { width: min(980px, 78%); min-height: min(850px, 86vh); padding: clamp(70px, 8vw, 126px) clamp(28px, 7vw, 118px); background: transparent; position: relative; z-index: 2; }
.hero.hero-full .hero-copy::after { display: none; }
.hero.hero-full h1 { max-width: 830px; font-size: clamp(44px, 4.8vw, 76px); line-height: 1.08; letter-spacing: -.035em; text-shadow: 0 3px 26px rgba(9,27,55,.22); }
.hero.hero-full h1 em { color: #9de2df; font-weight: 400; }
.hero.hero-full .hero-intro { max-width: 790px; }
.hero.hero-full .hero-actions { max-width: 900px; align-items: center; }
.hero.hero-full .hero-actions .button-teal { order: -1; }
.hero-impact-link { display: inline-flex; align-items: center; gap: 12px; margin-left: 10px; padding: 8px 0 6px; border-bottom: 1px solid rgba(157,226,223,.78); color: #b9ece9; font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.hero-impact-link:hover, .hero-impact-link:focus-visible { color: white; border-color: white; transform: translateX(3px); }
.hero-dots { position: absolute; z-index: 3; right: clamp(28px, 5vw, 84px); bottom: 76px; display: flex; align-items: center; gap: 10px; }
.hero-dots span { width: 10px; height: 10px; border-radius: 50%; background: white; opacity: .42; animation: heroDot 18s infinite ease-in-out; }
.hero-dots span:nth-child(2) { animation-delay: 6s; }
.hero-dots span:nth-child(3) { animation-delay: 12s; }
@keyframes heroDot { 0%, 28% { opacity: 1; transform: scale(1.08); } 34%, 100% { opacity: .42; transform: scale(1); } }
.hero-location { position: absolute; z-index: 3; left: clamp(28px, 7vw, 118px); right: clamp(28px, 5vw, 84px); bottom: 28px; display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.45); color: white; font-size: 12px; }
.hero-location strong { font-size: 14px; }
.gallery { background: var(--paper); }
.gallery-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(40px, 9vw, 140px); align-items: end; margin-bottom: 54px; }
.gallery-heading h2 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(48px, 5vw, 76px); font-weight: 400; letter-spacing: -.04em; line-height: 1.04; }
.gallery-heading > p { max-width: 480px; margin: 0; color: #596778; font-size: 17px; line-height: 1.7; }
.gallery-grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 300px); gap: 18px; }
.gallery-grid figure { position: relative; overflow: hidden; margin: 0; background: var(--mist); }
.gallery-grid .gallery-large { grid-row: 1 / 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption { position: absolute; left: 18px; bottom: 18px; padding: 10px 14px; background: rgba(253,254,253,.92); color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 900px) {
  .hero.hero-full, .hero.hero-full .hero-copy { min-height: 720px; }
  .hero.hero-full .hero-copy { width: 100%; padding-bottom: 110px; }
  .hero-full-overlay { background: linear-gradient(90deg, rgba(13,35,70,.88), rgba(23,52,97,.54)), linear-gradient(0deg, rgba(13,35,70,.56), transparent); }
  .gallery-heading { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 250px; }
  .gallery-grid .gallery-large { grid-column: 1 / 3; grid-row: auto; }
}
@media (max-width: 600px) {
  .mission-copy .mission-actions { display: none; }
  .mission-actions-mobile { display: block; margin-top: 30px; }
  .values-strip { grid-template-columns: 1fr; }
  .values-strip div, .values-strip div:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .values-strip div:last-child { border-bottom: 0; }
  .hero.hero-full, .hero.hero-full .hero-copy { min-height: 690px; }
  .hero.hero-full .hero-copy { padding: 70px 22px 118px; }
  .hero.hero-full h1 { max-width: 460px; font-size: clamp(38px, 10.5vw, 52px); line-height: 1.04; }
  .hero-slide { object-position: 58% center; }
  .hero-impact-link { margin-left: 0; }
  .hero-dots { display: none; }
  .hero-location { left: 22px; right: 22px; flex-direction: column; gap: 5px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 300px); }
  .gallery-grid .gallery-large { grid-column: auto; }
  .impact { min-height: 0; padding: 72px 22px; }
  .impact-content h2 { font-size: clamp(46px, 13vw, 62px); }
  .impact-stats { grid-template-columns: 1fr; gap: 28px; margin-top: 38px; }
  .impact-metric { padding: 0; }
  .impact-metric + .impact-metric { padding-top: 32px; border-top: 1px solid rgba(255,255,255,.28); border-left: 0; }
  .impact-metric strong { font-size: clamp(70px, 21vw, 92px); }
  .impact-resource-links { flex-direction: column; align-items: stretch; }
  .impact-resource-links a { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { opacity: 0; animation: none; }
  .hero-slide:first-child { opacity: 1; }
  .hero-dots span { animation: none; }
  .hero-dots span:first-child { opacity: 1; }
  .impact-water img, .impact-sheen { animation: none; }
  .impact-water video { display: none; }
  .hero-video { display: none; }
}

/* WordPress menu integration */
.nav-shell { min-height: 86px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.menu-toggle { display: none; padding: 8px; border: 0; background: transparent; }
.menu-toggle span[aria-hidden="true"] { display: block; width: 28px; height: 2px; margin: 5px 0; background: var(--navy-deep); }
.desktop-nav > ul { display: flex; align-items: center; gap: clamp(20px, 2.2vw, 38px); margin: 0; padding: 0; list-style: none; }
.desktop-nav li { position: relative; list-style: none; }
.desktop-nav .sub-menu { position: absolute; top: calc(100% - 18px); left: -22px; z-index: 20; display: none; width: 230px; padding: 12px; background: white; border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(23,52,97,.18); }
.desktop-nav .sub-menu a { display: block; padding: 12px 10px; }
.desktop-nav .sub-menu a::after { display: none; }
.desktop-nav li:hover > .sub-menu, .desktop-nav li:focus-within > .sub-menu { display: flex; flex-direction: column; gap: 0; }
.footer-column ul { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; margin: 0; padding: 0; list-style: none; }
.footer-bottom p { margin: 0; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
}
