:root {
    --blue: #079ddd;
    --blue-dark: #0876a8;
    --navy: #173e4d;
    --teal: #158b94;
    --orange: #ee963b;
    --red: #ec3945;
    --ink: #17343f;
    --muted: #61737b;
    --line: #dce8ec;
    --soft: #f3f8fa;
    --white: #fff;
    --container: 1180px;
    --radius: 18px;
    --shadow: 0 18px 50px rgba(23, 62, 77, .11);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Plus Jakarta Sans", "Hind Vadodara", sans-serif; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(7, 157, 221, .35); outline-offset: 3px; }
.skip-link { position: fixed; top: -80px; left: 18px; z-index: 100; padding: 10px 16px; color: #fff; background: var(--navy); border-radius: 8px; }
.skip-link:focus { top: 12px; }
.public-container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.public-header { position: sticky; top: 0; z-index: 50; height: 84px; background: rgba(255,255,255,.97); border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s; }
.public-header.scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(23,62,77,.07); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.public-brand { width: 165px; }
.public-brand img { width: 100%; height: 66px; object-fit: contain; object-position: left center; }
.public-nav { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 27px); font-size: 13px; font-weight: 700; }
.public-nav > a:not(.nav-login) { position: relative; padding: 30px 0 25px; color: #516870; }
.public-nav > a:not(.nav-login)::after { content: ""; position: absolute; left: 50%; bottom: 19px; width: 0; height: 3px; background: var(--blue); transform: translateX(-50%); transition: width .2s; }
.public-nav > a:hover, .public-nav > a.active { color: var(--blue-dark); }
.public-nav > a:hover::after, .public-nav > a.active::after { width: 23px; }
.nav-login { padding: 11px 18px; color: #fff; background: var(--navy); border: 1px solid var(--navy); border-radius: 9px; transition: background .2s, color .2s; }
.nav-login:hover { color: var(--navy); background: #fff; }
.nav-toggle { display: none; width: 44px; height: 42px; padding: 10px; border: 1px solid var(--line); background: #fff; border-radius: 9px; }
.nav-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--navy); transition: transform .2s, opacity .2s; }

.hero-section {
    position: relative;
    min-height: 720px;
    padding: 78px 0 82px;
    color: #fff;
    background-color: #20282d;
    background-image: url("../images/public/wings-education-hero-background.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    isolation: isolate;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 650px) 1fr; align-items: center; gap: 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--blue-dark); font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.eyebrow > span { width: 24px; height: 3px; background: var(--orange); }
.eyebrow.light { color: #bde9f5; }
.hero-section .eyebrow { padding: 8px 13px; color: #bcecff; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; backdrop-filter: blur(12px); }
.hero-copy h1, .page-hero h1 { margin: 21px 0 24px; color: var(--navy); font-size: clamp(42px, 5.2vw, 68px); line-height: 1.15; letter-spacing: -2.4px; }
.hero-copy h1 { color: #fff; font-size: clamp(48px, 5.4vw, 72px); line-height: 1.08; text-wrap: balance; }
.hero-copy h1 strong { color: #59d2ff; font-weight: 800; background: linear-gradient(110deg, #fff 0%, #64d9ff 42%, #18a9e5 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero h1 strong { color: var(--blue); font-weight: 800; }
.hero-copy > p { max-width: 590px; margin: 0 0 33px; color: #bed0d6; font-size: 17px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 18px; padding: 11px 22px; border: 1px solid transparent; border-radius: 9px; cursor: pointer; font-size: 13px; font-weight: 800; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); border-color: var(--blue); }
.button-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.button-outline { color: var(--navy); background: transparent; border-color: #a9c0c8; }
.button-outline:hover { background: #fff; border-color: var(--navy); }
.hero-section .button { min-height: 54px; padding-inline: 25px; border-radius: 999px; }
.hero-section .button-primary { background: #08a8eb; border-color: #08a8eb; box-shadow: 0 13px 30px rgba(7,157,221,.26); }
.hero-section .button-primary:hover { background: #31baf0; border-color: #31baf0; box-shadow: 0 16px 34px rgba(7,157,221,.34); }
.hero-section .button-outline { color: #fff; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.28); backdrop-filter: blur(10px); }
.hero-section .button-outline:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.55); }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 42px; padding: 0; border: 0; }
.hero-trust div { display: grid; min-height: 88px; align-content: center; padding: 14px 16px; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.11); border-radius: 18px; backdrop-filter: blur(12px); }
.hero-trust strong { color: #fff; font-size: 25px; line-height: 1.2; }
.hero-trust span { color: #a9c6d0; font-size: 10px; }
.hero-photo-wrap { display: none; }
.hero-photo-wrap::before { content: ""; position: absolute; inset: 0 0 34px 16px; background: linear-gradient(145deg, rgba(7,157,221,.78), rgba(21,139,148,.28)); border: 1px solid rgba(255,255,255,.2); border-radius: 38px; transform: rotate(2.5deg); }
.hero-photo-wrap::after { content: "IMPACT"; position: absolute; z-index: 2; top: -18px; right: -15px; padding: 9px 15px; color: #163a48; background: #f6a545; border-radius: 999px; box-shadow: 0 12px 30px rgba(0,0,0,.16); font-size: 10px; font-weight: 800; letter-spacing: 1.8px; }
.hero-photo-frame { position: relative; z-index: 1; height: 505px; overflow: hidden; background: #dce8ec; border: 7px solid rgba(255,255,255,.96); border-radius: 30px; box-shadow: 0 32px 75px rgba(3,20,27,.38); }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-photo-label { position: absolute; z-index: 2; top: 0; left: -10px; display: flex; width: 122px; min-height: 122px; flex-direction: column; justify-content: center; padding: 17px; color: #fff; background: rgba(7,157,221,.9); border: 1px solid rgba(255,255,255,.3); border-radius: 24px; box-shadow: 0 20px 45px rgba(3,20,27,.25); backdrop-filter: blur(16px); }
.hero-photo-label span { font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }.hero-photo-label strong { font-size: 31px; line-height: 1.15; }.hero-photo-label small { margin-top: 5px; font-size: 10px; line-height: 1.35; }
.hero-photo-note { position: absolute; z-index: 2; right: -10px; bottom: 8px; display: flex; min-width: 245px; align-items: center; gap: 12px; padding: 14px 17px; background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.75); border-radius: 18px; box-shadow: 0 20px 45px rgba(3,20,27,.25); backdrop-filter: blur(14px); }
.hero-photo-note > span { display: grid; width: 39px; height: 39px; place-items: center; color: #fff; background: var(--orange); border-radius: 50%; }.hero-photo-note div { display: grid; }.hero-photo-note strong { color: var(--navy); font-size: 12px; }.hero-photo-note small { color: var(--muted); font-size: 10px; }

.section { padding: 100px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .contact-details h2 { max-width: 650px; margin: 10px 0 0; color: var(--navy); font-family: "Hind Vadodara", sans-serif; font-size: clamp(31px, 3.5vw, 45px); font-weight: 700; line-height: 1.25; letter-spacing: -.6px; }
.section-heading > p { max-width: 410px; margin: 0; color: var(--muted); }
.section-heading.centered { justify-content: center; text-align: center; }
.work-section { position: relative; overflow: hidden; background: #f3f8fa; }
.work-section::before { content: ""; position: absolute; top: -170px; right: -130px; width: 460px; height: 460px; background: #dff3fa; border-radius: 50%; opacity: .72; filter: blur(2px); }
.work-section::after { content: ""; position: absolute; left: -80px; bottom: -130px; width: 300px; height: 300px; border: 55px solid rgba(238,150,59,.08); border-radius: 50%; }
.work-heading h2 strong { color: var(--blue-dark); font-weight: 700; }
.work-heading { position: relative; z-index: 1; }
.work-heading > p { max-width: 440px; padding: 20px 22px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.9); border-radius: 16px; box-shadow: 0 12px 35px rgba(23,62,77,.06); backdrop-filter: blur(10px); }
.pillar-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; border: 0; }
.pillar-card { --pillar-accent: var(--blue); position: relative; display: grid; min-height: 290px; grid-template-columns: 88px 1fr; grid-template-rows: auto auto 1fr auto; column-gap: 26px; padding: 34px 36px; overflow: hidden; background: #fff; border: 1px solid rgba(23,62,77,.08); border-radius: 28px; box-shadow: 0 15px 45px rgba(23,62,77,.07); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s; }
.pillar-card:nth-child(1), .pillar-card:nth-child(4) { grid-column: span 7; }
.pillar-card:nth-child(2), .pillar-card:nth-child(3) { grid-column: span 5; }
.pillar-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, color-mix(in srgb, var(--pillar-accent) 10%, #fff), #fff 60%); opacity: .9; }
.pillar-card::after { content: ""; position: absolute; right: -55px; bottom: -75px; width: 190px; height: 190px; border: 32px solid var(--pillar-accent); border-radius: 50%; opacity: .06; transition: transform .45s ease, opacity .4s ease; }
.pillar-service { --pillar-accent: var(--teal); }.pillar-culture { --pillar-accent: var(--orange); }.pillar-digital { --pillar-accent: var(--red); }
.pillar-card.reveal.visible:hover { z-index: 2; transform: translateY(-7px); border-color: color-mix(in srgb, var(--pillar-accent) 42%, #fff); box-shadow: 0 25px 60px rgba(23,62,77,.14); }
.pillar-card:hover::after { transform: scale(1.16) rotate(9deg); opacity: .1; }
.pillar-number { position: absolute; z-index: 1; top: 24px; right: 28px; color: color-mix(in srgb, var(--pillar-accent) 35%, #c6d4d8); font-size: 13px; font-weight: 800; letter-spacing: 1px; }
.pillar-icon { position: relative; z-index: 1; grid-row: 1 / span 4; display: grid; width: 82px; height: 82px; place-items: center; align-self: start; color: #fff; background: var(--pillar-accent); border-radius: 24px; box-shadow: 0 16px 30px color-mix(in srgb, var(--pillar-accent) 25%, transparent); transition: transform .35s cubic-bezier(.2,.8,.2,1), border-radius .35s; }
.pillar-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pillar-card:hover .pillar-icon { transform: translateY(-4px) rotate(-3deg); border-radius: 50%; }
.pillar-kicker { position: relative; z-index: 1; display: block; margin-top: 2px; color: var(--pillar-accent); font-size: 10px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; }
.pillar-card h3 { position: relative; z-index: 1; margin: 5px 0 9px; color: var(--navy); font-family: "Plus Jakarta Sans", sans-serif; font-size: 23px; letter-spacing: -.7px; }
.pillar-card p { position: relative; z-index: 1; min-height: 0; margin: 0 0 18px; color: var(--muted); font-family: "Hind Vadodara", sans-serif; font-size: 16px; line-height: 1.65; }
.pillar-card a, .text-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 9px; color: var(--pillar-accent); font-size: 12px; font-weight: 800; }
.pillar-card a b { font-size: 17px; font-weight: 500; transition: transform .25s; }.pillar-card a:hover b { transform: translateX(6px); }
.pillar-card.reveal:nth-child(1) { transition-delay: .04s; }.pillar-card.reveal:nth-child(2) { transition-delay: .12s; }.pillar-card.reveal:nth-child(3) { transition-delay: .20s; }.pillar-card.reveal:nth-child(4) { transition-delay: .28s; }

/* Compact editorial services layout */
.work-section { color: #fff; background: #102f3b; }
.work-section::before { top: -210px; right: -150px; width: 520px; height: 520px; background: rgba(7,157,221,.16); filter: none; }
.work-section::after { left: -120px; bottom: -190px; width: 360px; height: 360px; border-color: rgba(238,150,59,.1); }
.work-section .eyebrow { color: #72d8fb; }
.work-heading h2 { color: #fff; }
.work-heading h2 strong { color: #5bd2fa; }
.work-heading > p { color: #b8ced6; background: transparent; border: 0; border-left: 2px solid var(--orange); border-radius: 0; box-shadow: none; backdrop-filter: none; }
.pillar-grid { grid-template-columns: 1fr 1fr; gap: 0 42px; }
.pillar-card:nth-child(n) { grid-column: auto; display: grid; min-height: 220px; grid-template-columns: 64px 1fr auto; grid-template-rows: auto auto 1fr auto; column-gap: 22px; padding: 31px 0; background: transparent; border: 0; border-top: 1px solid rgba(255,255,255,.15); border-radius: 0; box-shadow: none; }
.pillar-card:nth-child(3), .pillar-card:nth-child(4) { border-bottom: 1px solid rgba(255,255,255,.15); }
.pillar-card::before, .pillar-card::after { display: none; }
.pillar-card.reveal.visible:hover { transform: none; border-color: rgba(255,255,255,.32); box-shadow: none; }
.pillar-number { position: static; z-index: 1; grid-column: 3; grid-row: 1 / span 2; color: rgba(255,255,255,.26); font-size: 31px; line-height: 1; }
.pillar-icon { grid-column: 1; grid-row: 1 / span 4; width: 58px; height: 58px; color: var(--pillar-accent); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: none; }
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-card:hover .pillar-icon { color: #fff; background: var(--pillar-accent); border-color: var(--pillar-accent); transform: scale(1.06); border-radius: 50%; }
.pillar-kicker { grid-column: 2; margin: 0; }
.pillar-card h3 { grid-column: 2; margin: 3px 0 8px; color: #fff; font-size: 22px; }
.pillar-card p { grid-column: 2 / span 2; margin: 0 0 13px; color: #aac1ca; font-size: 15px; }
.pillar-card a { grid-column: 2 / span 2; }

/* Harmonized light services section below the photographic hero */
.work-section { color: var(--ink); background: #f7f5f0; }
.hero-section { border-bottom: 5px solid var(--blue); }
.work-section::before { top: -180px; right: -140px; width: 430px; height: 430px; background: rgba(7,157,221,.08); }
.work-section::after { left: -120px; bottom: -200px; border-color: rgba(238,150,59,.08); }
.work-section .eyebrow { color: var(--blue-dark); }
.work-heading h2 { color: var(--navy); }
.work-heading h2 strong { color: var(--blue-dark); }
.work-heading > p { padding: 17px 20px; color: var(--muted); background: #fff; border: 1px solid #e5e2da; border-left: 3px solid var(--orange); border-radius: 14px; box-shadow: 0 12px 32px rgba(23,62,77,.05); }
.pillar-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pillar-card:nth-child(n) { display: flex; min-height: 340px; flex-direction: column; align-items: flex-start; padding: 27px 25px 25px; background: rgba(255,255,255,.88); border: 1px solid #e0e7e8; border-top: 4px solid var(--pillar-accent); border-radius: 20px; box-shadow: 0 12px 34px rgba(23,62,77,.055); }
.pillar-card:nth-child(3), .pillar-card:nth-child(4) { border-bottom: 1px solid #e0e7e8; }
.pillar-card::before { display: block; width: 150px; height: 150px; top: auto; left: auto; right: -76px; bottom: -82px; background: var(--pillar-accent); border-radius: 50%; opacity: .045; }
.pillar-card::after { display: none; }
.pillar-card.reveal.visible:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--pillar-accent) 40%, #e0e7e8); box-shadow: 0 20px 45px rgba(23,62,77,.11); }
.pillar-number { position: absolute; top: 24px; right: 23px; color: color-mix(in srgb, var(--pillar-accent) 32%, #c7d2d5); font-size: 13px; }
.pillar-icon { display: grid; width: 58px; height: 58px; flex: 0 0 58px; color: #fff; background: var(--pillar-accent); border: 0; border-radius: 17px; box-shadow: 0 12px 24px color-mix(in srgb, var(--pillar-accent) 22%, transparent); }
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-card:hover .pillar-icon { color: #fff; background: var(--pillar-accent); transform: translateY(-3px); border-radius: 17px; }
.pillar-kicker { margin-top: 23px; }
.pillar-card h3 { margin: 4px 0 10px; color: var(--navy); font-size: 20px; }
.pillar-card p { margin: 0 0 20px; color: var(--muted); font-size: 15px; }
.pillar-card a { margin-top: auto; }
.story-section { position: relative; color: #fff; background: #102f3b; overflow: hidden; }
.story-section::before { content: ""; position: absolute; right: -170px; top: -220px; width: 520px; height: 520px; border: 90px solid rgba(7,157,221,.08); border-radius: 50%; }
.story-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 72px; }
.story-intro { display: grid; grid-template-columns: 1.05fr .95fr; grid-template-areas: "eyebrow copy" "heading copy" "heading link"; column-gap: 90px; align-items: start; }
.story-intro .eyebrow { grid-area: eyebrow; }
.story-intro h2 { grid-area: heading; max-width: 610px; margin: 15px 0 0; color: #fff; font-size: clamp(38px, 4.6vw, 56px); line-height: 1.18; }
.story-intro p { grid-area: copy; max-width: 520px; margin: 10px 0 0; padding: 6px 0 6px 24px; color: #bed0d6; border-left: 3px solid var(--orange); font-size: 17px; }
.story-intro .text-link { grid-area: link; display: inline-flex; width: max-content; margin-top: 24px; color: #61caed; }
.mini-timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-top: 64px; }
.mini-timeline::before { content: ""; position: absolute; top: 25px; left: 9%; right: 9%; height: 2px; background: linear-gradient(90deg, var(--blue), #4fc6e8 62%, var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform 1.15s cubic-bezier(.22,.8,.2,1) .12s; }
.mini-timeline.visible::before { transform: scaleX(1); }
.mini-timeline article { position: relative; display: block; min-height: 290px; padding: 31px 24px 24px; opacity: 0; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); border-radius: 20px; transform: translateY(28px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1), background .3s ease, border-color .3s ease; }
.mini-timeline.visible article { opacity: 1; transform: none; }
.mini-timeline.visible article:nth-child(1) { transition-delay: .3s; }.mini-timeline.visible article:nth-child(2) { transition-delay: .48s; }.mini-timeline.visible article:nth-child(3) { transition-delay: .66s; }.mini-timeline.visible article:nth-child(4) { transition-delay: .84s; }
.mini-timeline article:hover { transform: translateY(-7px); background: rgba(255,255,255,.09); border-color: rgba(97,202,237,.45); }
.mini-timeline article::before { content: ""; position: absolute; top: -47px; left: 50%; width: 17px; height: 17px; background: var(--orange); border: 4px solid #102f3b; border-radius: 50%; box-shadow: 0 0 0 3px rgba(238,150,59,.32); transform: translateX(-50%); }
.mini-timeline article::after { content: ""; position: absolute; top: -30px; left: 50%; width: 1px; height: 30px; background: rgba(255,255,255,.22); }
.mini-timeline time { position: absolute; top: -78px; left: 50%; padding: 5px 12px; color: #fff; background: var(--blue-dark); border-radius: 999px; box-shadow: 0 8px 20px rgba(0,0,0,.18); font-size: 12px; font-weight: 800; transform: translateX(-50%); }
.mini-timeline.visible article::before { animation: journeyPulse 2.2s ease-in-out infinite; }
.mini-timeline.visible article:nth-child(2)::before { animation-delay: .35s; }.mini-timeline.visible article:nth-child(3)::before { animation-delay: .7s; }.mini-timeline.visible article:nth-child(4)::before { animation-delay: 1.05s; }
.milestone-tag { display: inline-flex; margin-bottom: 9px; color: #62d3f5; font-size: 9px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.mini-timeline h3 { margin: 0 0 8px; color: #fff; font-size: 18px; }.mini-timeline p { margin: 0 0 14px; color: #b9ced5; font-size: 13px; line-height: 1.65; }
.mini-timeline ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.mini-timeline li { position: relative; padding-left: 15px; color: #d1e0e5; font-size: 12px; line-height: 1.45; }
.mini-timeline li::before { content: ""; position: absolute; top: 7px; left: 0; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
@keyframes journeyPulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(238,150,59,.28); } 50% { box-shadow: 0 0 0 9px rgba(238,150,59,0); } }
.home-gallery { background: #f7fafb; }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.preview-card { position: relative; min-height: 320px; padding: 25px; overflow: hidden; color: #fff; border-radius: var(--radius); }
.preview-card > span { font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.preview-card h3 { position: absolute; bottom: 45px; left: 25px; margin: 0; font-size: 22px; }
.preview-card p { position: absolute; bottom: 20px; left: 25px; margin: 0; opacity: .8; font-size: 12px; }
.placeholder-symbol { position: absolute; right: 15px; bottom: -55px; color: rgba(255,255,255,.13); font-size: 220px; font-weight: 800; line-height: 1; }
.preview-blue { background: var(--blue-dark); }.preview-teal { background: var(--teal); }.preview-orange { background: var(--orange); }
.cta-wrap { padding-top: 60px; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 48px 55px; color: #fff; background: var(--blue); border-radius: var(--radius); }
.cta-panel span { font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }.cta-panel h2 { max-width: 680px; margin: 7px 0 0; font-size: clamp(25px, 3.2vw, 38px); line-height: 1.3; }
.button-white { color: var(--blue-dark); background: #fff; }.button-dark-outline { color: #fff; border-color: rgba(255,255,255,.65); }

.page-hero { padding: 88px 0 92px; color: #fff; background: var(--navy); border-bottom: 8px solid var(--blue); }
.page-hero h1 { max-width: 850px; margin-bottom: 18px; color: #fff; font-size: clamp(39px, 5vw, 61px); }
.page-hero p { max-width: 720px; margin: 0; color: #c7d9df; font-size: 17px; }
.visual-page-hero { position: relative; overflow: hidden; padding: 78px 0 72px; background: linear-gradient(135deg, #0d2733 0%, #123746 55%, #0a202a 100%); border-bottom: 8px solid var(--blue); }
.visual-page-hero::before { content: ""; position: absolute; inset: auto 0 0; height: 44%; background: linear-gradient(180deg, rgba(255,255,255,0), rgba(7,157,221,.16)); pointer-events: none; }
.visual-page-hero::after { content: ""; position: absolute; right: -10vw; top: -18vw; width: 44vw; height: 44vw; background: radial-gradient(circle, rgba(246,165,69,.28), rgba(246,165,69,0) 68%); pointer-events: none; }
.visual-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr); align-items: center; gap: 58px; }
.visual-hero-copy h1 { margin-top: 20px; text-wrap: balance; }
.visual-hero-copy p { max-width: 660px; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 31px; }
.hero-highlights span, .gallery-hero-chips a { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; padding: 9px 14px; color: #d9eef4; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; backdrop-filter: blur(10px); }
.hero-highlights strong { color: #fff; font-size: 20px; line-height: 1; }
.gallery-hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 31px; }
.gallery-hero-chips a { color: #fff; font-size: 13px; font-weight: 800; text-decoration: none; }
.gallery-hero-chips a:hover, .gallery-hero-chips a:focus-visible { background: var(--blue); border-color: var(--blue); }
.visual-hero-media { position: relative; min-height: 470px; }
.visual-hero-media figure { position: absolute; margin: 0; overflow: hidden; background: #dce8ec; border: 6px solid rgba(255,255,255,.94); box-shadow: 0 28px 70px rgba(0,0,0,.32); }
.visual-hero-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.visual-hero-media:hover img { transform: scale(1.035); }
.hero-media-main { inset: 24px 58px 34px 0; border-radius: 24px; }
.hero-media-small { width: 46%; height: 38%; border-radius: 18px; }
.hero-media-small.top { top: 0; right: 0; }
.hero-media-small.bottom { right: 26px; bottom: 0; }
.about-visual-hero .hero-media-main img { object-position: 37% center; }
.about-visual-hero .hero-media-small.top img { object-position: 45% center; }
.gallery-hero-media .hero-media-main img { object-position: center; }
.gallery-hero-media .hero-media-small.top img { object-position: 38% center; }
.gallery-hero-media .hero-media-small.bottom img { object-position: center; }
.about-lead { display: grid; grid-template-columns: .65fr 1.35fr; align-items: center; gap: 95px; }
.about-mark { position: relative; display: flex; min-height: 315px; flex-direction: column; justify-content: center; padding: 45px; color: #fff; background: var(--blue); border-radius: 12px; }
.about-mark::after { content: ""; position: absolute; width: 65px; height: 65px; right: -18px; bottom: -18px; border: 10px solid var(--orange); }
.about-mark span { font-size: 15px; text-transform: uppercase; }.about-mark strong { font-size: 73px; line-height: 1.1; }.about-mark p { margin: 10px 0 0; }
.about-copy p { color: var(--muted); }
.values-section { background: var(--soft); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { min-height: 280px; padding: 34px; background: #fff; border-top: 5px solid var(--blue); border-radius: 10px; }
.value-card.featured { color: #fff; background: var(--navy); border-color: var(--orange); }.value-card > span { color: var(--blue); font-size: 13px; font-weight: 800; }.value-card.featured > span { color: #64d1f3; }
.value-card h3 { margin: 35px 0 12px; font-size: 23px; }.value-card p { margin: 0; color: var(--muted); }.value-card.featured p { color: #c1d3d9; }
.journey-list { position: relative; max-width: 930px; margin: 0 auto; }
.journey-list::before { content: ""; position: absolute; top: 10px; bottom: 10px; left: 155px; width: 2px; background: var(--line); }
.journey-item { position: relative; display: grid; grid-template-columns: 125px 1fr; gap: 65px; padding-bottom: 45px; }
.journey-item::before { content: ""; position: absolute; top: 8px; left: 149px; width: 14px; height: 14px; background: var(--blue); border: 4px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px var(--blue); }
.journey-item time { color: var(--blue-dark); font-size: 14px; font-weight: 800; text-align: right; }.journey-item div > span { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.journey-item h3 { margin: 4px 0 7px; font-size: 20px; }.journey-item p { margin: 0; color: var(--muted); }

.gallery-section { background: #f8fbfc; }.gallery-toolbar { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 12px; }
.filter-button { padding: 10px 18px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 40px; cursor: pointer; font-size: 12px; font-weight: 800; }
.filter-button:hover, .filter-button.active { color: #fff; background: var(--navy); border-color: var(--navy); }
.gallery-status { margin: 0 0 35px; color: #819198; font-size: 12px; text-align: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-card { overflow: hidden; background: #fff; border-radius: 12px; box-shadow: 0 8px 25px rgba(23,62,77,.08); transition: transform .2s, opacity .2s; }
.gallery-card.large { grid-column: span 2; }.gallery-card.hidden { display: none; }.gallery-card:hover { transform: translateY(-5px); }
.gallery-art { position: relative; display: grid; min-height: 260px; place-items: center; color: #fff; background: var(--blue); overflow: hidden; }
.gallery-art > span { font-size: 115px; font-weight: 800; opacity: .22; }.gallery-art small { position: absolute; right: 16px; bottom: 13px; padding: 5px 9px; background: rgba(23,62,77,.65); border-radius: 5px; font-size: 10px; text-transform: uppercase; }
.gallery-teal .gallery-art { background: var(--teal); }.gallery-orange .gallery-art { background: var(--orange); }.gallery-red .gallery-art { background: var(--red); }.gallery-navy .gallery-art { background: var(--navy); }.gallery-sky .gallery-art { background: #4aaec5; }
.gallery-caption { padding: 22px; }.gallery-caption > span { color: var(--blue-dark); font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }.gallery-caption h2 { margin: 4px 0; font-size: 18px; }.gallery-caption p { margin: 0; color: var(--muted); font-size: 13px; }
.gallery-note { display: flex; max-width: 740px; align-items: center; gap: 15px; margin: 48px auto 0; padding: 18px 22px; background: #eaf6fa; border: 1px solid #cbe7f0; border-radius: 10px; }.gallery-note > span { display: grid; min-width: 31px; height: 31px; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; font-weight: 800; }.gallery-note p { margin: 0; color: var(--muted); font-size: 12px; }

.contact-section { background: var(--soft); }.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-details > p { color: var(--muted); }.contact-list { display: grid; gap: 20px; margin-top: 36px; }
.contact-list article { display: flex; align-items: flex-start; gap: 16px; }.contact-icon { display: grid; min-width: 45px; height: 45px; place-items: center; color: #fff; background: var(--blue); border-radius: 9px; font-weight: 800; }.contact-list span { display: block; color: #819198; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }.contact-list strong, .contact-list a { color: var(--navy); font-size: 14px; font-weight: 800; }.contact-list p { margin: 2px 0 0; color: var(--muted); font-size: 12px; }
.social-row { display: flex; align-items: center; gap: 9px; margin-top: 32px; }.social-row > span { margin-right: 8px; font-size: 12px; font-weight: 800; }.social-row a { display: grid; width: 35px; height: 35px; place-items: center; color: #fff; background: var(--navy); border-radius: 50%; font-size: 11px; font-weight: 800; }
.contact-form-card { padding: 40px; background: #fff; border-top: 6px solid var(--blue); border-radius: 12px; box-shadow: var(--shadow); }.form-heading span { color: var(--blue-dark); font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }.form-heading h2 { margin: 2px 0; font-size: 28px; }.form-heading p { margin: 0 0 27px; color: var(--muted); font-size: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }.form-field { margin-bottom: 18px; }.form-field label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 800; }.form-field em { color: var(--red); font-style: normal; }.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: #fbfdfe; border: 1px solid #ccdce1; border-radius: 7px; outline: none; }.form-field textarea { resize: vertical; }.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(7,157,221,.11); }.form-field.invalid input, .form-field.invalid select, .form-field.invalid textarea { border-color: var(--red); }.field-error { display: none; margin-top: 4px; color: var(--red); font-size: 10px; }.form-field.invalid .field-error { display: block; }.submit-button { width: 100%; }.form-success { display: none; margin-top: 16px; padding: 12px 15px; color: #176b53; background: #e5f7ef; border: 1px solid #bce8d8; border-radius: 7px; font-size: 12px; }.form-success.show { display: block; }

.public-footer { padding: 65px 0 0; color: #bed0d6; background: #102f3b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 80px; padding-bottom: 48px; }.footer-about img { width: 170px; padding: 8px; background: #fff; border-radius: 8px; }.footer-about p { max-width: 390px; }.footer-grid h2 { margin: 0 0 17px; color: #fff; font-size: 15px; }.footer-grid a { display: block; margin: 6px 0; font-size: 13px; }.footer-grid a:hover { color: #66d2f3; }.footer-grid p { font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 18px 0; border-top: 1px solid #2b4c58; font-size: 11px; }.footer-bottom p { margin: 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
    .public-header { height: 74px; }.public-brand { width: 140px; }.public-brand img { height: 58px; }.nav-toggle { display: block; }.public-nav { position: absolute; top: 74px; left: 0; right: 0; display: none; align-items: stretch; gap: 0; padding: 12px 20px 22px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 15px 25px rgba(23,62,77,.08); }.public-header.menu-open .public-nav { display: flex; flex-direction: column; }.public-nav > a:not(.nav-login) { padding: 12px 4px; }.public-nav > a:not(.nav-login)::after { display: none; }.nav-login { margin-top: 8px; text-align: center; }.public-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }.public-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }.public-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .hero-section { padding-top: 68px; background-color: #20282d; background-image: url("../images/public/wings-education-hero-background.png"); background-position: 58% center; background-repeat: no-repeat; background-size: cover; }
    .hero-grid { grid-template-columns: 1fr; }.hero-copy { max-width: 640px; padding: 34px; background: rgba(10,31,39,.78); border: 1px solid rgba(255,255,255,.16); border-radius: 28px; box-shadow: 0 30px 70px rgba(0,0,0,.25); backdrop-filter: blur(8px); }.hero-photo-wrap { max-width: 720px; width: 100%; margin: 0 auto; }.pillar-grid { grid-template-columns: 1fr 1fr; }.pillar-card:nth-child(n) { grid-column: auto; grid-template-columns: 58px 1fr auto; padding: 28px 0; }.pillar-icon { width: 52px; height: 52px; border-radius: 50%; }.pillar-icon svg { width: 25px; height: 25px; }.pillar-card:nth-child(2) { border-right: 0; }.pillar-card:nth-child(-n+2) { border-bottom: 0; }.story-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }.preview-grid { grid-template-columns: 1fr 1fr; }.preview-card:last-child { grid-column: span 2; }.about-lead { gap: 55px; }.gallery-grid { grid-template-columns: 1fr 1fr; }.gallery-card.large { grid-column: span 1; }.cta-panel { align-items: flex-start; flex-direction: column; }.footer-grid { gap: 35px; }
}

@media (max-width: 650px) {
    .public-container { width: min(calc(100% - 28px), var(--container)); }.hero-section, .section { padding: 70px 0; }.hero-section { background-color: #20282d; background-image: url("../images/public/wings-education-hero-background.png"); background-position: 61% center; background-repeat: no-repeat; background-size: auto 100%; }.hero-grid { gap: 0; }.hero-copy { padding: 25px 20px; border-radius: 22px; }.hero-copy h1, .page-hero h1 { letter-spacing: -1.3px; }.hero-copy h1 { font-size: clamp(43px, 13vw, 61px); }.hero-trust { gap: 8px; }.hero-trust div { min-height: 80px; padding: 12px 10px; border-radius: 14px; }.hero-trust strong { font-size: 20px; }.hero-photo-wrap { padding: 14px 6px 40px 14px; }.hero-photo-wrap::before { inset: 0 5px 28px 5px; border-radius: 24px; }.hero-photo-wrap::after { top: -14px; right: 0; }.hero-photo-frame { height: 350px; border-width: 5px; border-radius: 22px; }.hero-photo-label { top: -12px; left: 0; width: 96px; min-height: 92px; padding: 12px; border-radius: 18px; }.hero-photo-label strong { font-size: 24px; }.hero-photo-note { right: 0; min-width: 210px; padding: 11px 13px; border-radius: 15px; }.section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 34px; }.pillar-grid, .preview-grid, .value-grid, .gallery-grid, .form-row { grid-template-columns: 1fr; }.pillar-card:nth-child(n) { grid-column: auto; min-height: 0; grid-template-columns: 48px 1fr auto; column-gap: 15px; padding: 24px 0; border: 0; border-top: 1px solid rgba(255,255,255,.15); border-radius: 0; }.pillar-icon { width: 44px; height: 44px; border-radius: 50%; }.pillar-icon svg { width: 22px; height: 22px; }.pillar-card h3 { font-size: 20px; }.pillar-card:nth-child(-n+3) { border-bottom: 0; }.pillar-card:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }.preview-card:last-child { grid-column: auto; }.story-grid { gap: 52px; }.mini-timeline article { grid-template-columns: 78px 1fr; gap: 22px; }.mini-timeline::before { left: 37px; }.mini-timeline article::before { left: 32px; }.cta-panel { padding: 34px 25px; }.page-hero { padding: 68px 0 72px; }.about-lead { grid-template-columns: 1fr; gap: 50px; }.about-mark { min-height: 250px; }.journey-list::before { left: 9px; }.journey-item { grid-template-columns: 1fr; gap: 7px; padding-left: 35px; }.journey-item::before { left: 3px; }.journey-item time { text-align: left; }.contact-form-card { padding: 28px 20px; }.footer-grid { grid-template-columns: 1fr; }.footer-bottom { gap: 10px; flex-direction: column; }.gallery-toolbar { justify-content: flex-start; }.button-row .button { flex: 1; }
}

@media (max-width: 960px) {
    .work-section .pillar-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .work-section .pillar-card:nth-child(n) { display: flex; min-height: 315px; padding: 25px 23px; background: rgba(255,255,255,.9); border: 1px solid #e0e7e8; border-top: 4px solid var(--pillar-accent); border-radius: 20px; }
    .work-section .pillar-icon { width: 56px; height: 56px; border-radius: 16px; }
    .work-section .pillar-card h3 { color: var(--navy); }
    .work-section .pillar-card p { color: var(--muted); }
    .story-intro { grid-template-columns: 1fr; grid-template-areas: "eyebrow" "heading" "copy" "link"; gap: 0; }
    .story-intro p { margin-top: 24px; }
    .story-grid { gap: 58px; }
    .mini-timeline { display: flex; gap: 16px; margin-inline: -20px; padding: 64px 20px 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #4fc6e8 rgba(255,255,255,.08); }
    .mini-timeline::before { top: 25px; bottom: auto; left: 165px; right: auto; width: 1040px; height: 2px; background: linear-gradient(90deg, var(--blue), #4fc6e8 62%, var(--orange)); }
    .mini-timeline article { min-width: 300px; min-height: 295px; padding: 28px 23px; scroll-snap-align: center; }
    .mini-timeline article::before { top: -47px; left: 50%; transform: translateX(-50%); }
    .mini-timeline article::after { top: -30px; left: 50%; width: 1px; height: 30px; }
    .mini-timeline time { top: -78px; left: 50%; width: auto; padding: 5px 12px; text-align: center; transform: translateX(-50%); }
}

@media (max-width: 650px) {
    .work-section .pillar-grid { grid-template-columns: 1fr; gap: 13px; }
    .work-section .pillar-card:nth-child(n) { min-height: 285px; padding: 24px 21px; }
    .work-heading > p { padding: 15px 17px; }
    .story-intro h2 { font-size: clamp(36px, 11vw, 48px); }
    .story-intro p { padding-left: 17px; font-size: 15px; }
    .mini-timeline { margin-inline: -14px; padding-inline: 14px; }
    .mini-timeline::before { left: 164px; }
    .mini-timeline article { min-width: min(84vw, 310px); padding: 24px 20px; border-radius: 17px; }
}

/* Final vertical journey presentation */
.story-section .mini-timeline { display: grid; width: 100%; max-width: 1040px; grid-template-columns: minmax(0, 1fr); gap: 16px; justify-self: stretch; margin: 0 auto; padding: 15px 0; overflow: visible; scroll-snap-type: none; }
.story-section .mini-timeline::before { top: 0; bottom: 0; left: 50%; right: auto; width: 3px; height: auto; background: linear-gradient(180deg, var(--blue), #4fc6e8 58%, var(--orange)); transform: scaleY(0); transform-origin: top; }
.story-section .mini-timeline.visible::before { transform: scaleY(1); }
.story-section .mini-timeline article { width: calc(50% - 58px); min-width: 390px; min-height: 225px; margin: 0; padding: 27px 27px 25px; background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035)); scroll-snap-align: none; }
.story-section .mini-timeline article:nth-child(odd) { justify-self: start; transform: translateX(-34px); }
.story-section .mini-timeline article:nth-child(even) { justify-self: end; transform: translateX(34px); }
.story-section .mini-timeline.visible article { transform: none; }
.story-section .mini-timeline.visible article:hover { transform: translateY(-6px); }
.story-section .mini-timeline article::before { top: 36px; left: auto; right: -68px; transform: none; }
.story-section .mini-timeline article:nth-child(even)::before { right: auto; left: -68px; }
.story-section .mini-timeline article::after { top: 44px; left: auto; right: -51px; width: 51px; height: 1px; }
.story-section .mini-timeline article:nth-child(even)::after { left: -51px; right: auto; }
.story-section .mini-timeline time { top: 52px; left: auto; right: -356px; display: flex; width: 250px; flex-direction: column; align-items: flex-start; padding: 0; color: rgba(97,202,237,.78); background: transparent; border-radius: 0; box-shadow: none; font-size: 58px; font-weight: 800; letter-spacing: -2px; text-align: left; transform: none; }
.story-section .mini-timeline time::after { content: "MILESTONE"; margin-top: 3px; color: rgba(255,255,255,.27); font-size: 10px; letter-spacing: 3px; }
.story-section .mini-timeline article:nth-child(even) time { left: -356px; right: auto; align-items: flex-end; text-align: right; }

@media (min-width: 701px) and (max-width: 1100px) {
    .story-section .mini-timeline { max-width: 760px; }
    .story-section .mini-timeline article { width: calc(50% - 48px); min-width: 320px; }
    .story-section .mini-timeline time { right: -280px; width: 190px; font-size: 45px; }
    .story-section .mini-timeline article:nth-child(even) time { left: -280px; right: auto; }
}

@media (max-width: 700px) {
    .story-section .mini-timeline { gap: 18px; padding-left: 72px; }
    .story-section .mini-timeline::before { left: 42px; }
    .story-section .mini-timeline article:nth-child(n) { width: 100%; min-width: 0; min-height: 0; justify-self: stretch; padding: 24px 20px; transform: translateX(28px); }
    .story-section .mini-timeline.visible article:nth-child(n) { transform: none; }
    .story-section .mini-timeline article:nth-child(n)::before { top: 31px; left: -39px; right: auto; }
    .story-section .mini-timeline article:nth-child(n)::after { top: 39px; left: -22px; right: auto; width: 22px; }
    .story-section .mini-timeline article:nth-child(n) time { top: 19px; left: auto; right: 18px; display: block; width: 55px; padding: 5px 4px; color: #fff; background: var(--blue-dark); border-radius: 999px; box-shadow: 0 8px 20px rgba(0,0,0,.18); font-size: 10px; letter-spacing: 0; text-align: center; }
    .story-section .mini-timeline time::after { display: none; }
}

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

/* Team and future plans */
.team-preview-section { background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.team-grid-preview { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.team-card { position: relative; min-height: 335px; padding: 30px 27px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 12px 35px rgba(23,62,77,.07); transition: transform .25s, border-color .25s, box-shadow .25s; }
.team-card::after { content: ""; position: absolute; right: -42px; bottom: -52px; width: 120px; height: 120px; background: rgba(7,157,221,.07); border-radius: 50%; }
.team-card:hover { transform: translateY(-7px); border-color: rgba(7,157,221,.4); box-shadow: 0 22px 50px rgba(23,62,77,.13); }
.team-avatar { display: grid; width: 92px; height: 92px; place-items: center; margin-bottom: 25px; color: #fff; background: linear-gradient(145deg, var(--blue), var(--teal)); border: 6px solid #e7f6fb; border-radius: 50%; box-shadow: 0 10px 25px rgba(7,157,221,.2); font-size: 22px; font-weight: 800; letter-spacing: -1px; }
.team-card:nth-child(4n+2) .team-avatar { background: linear-gradient(145deg, var(--teal), var(--navy)); }
.team-card:nth-child(4n+3) .team-avatar { background: linear-gradient(145deg, var(--orange), #e06b42); }
.team-card:nth-child(4n+4) .team-avatar { background: linear-gradient(145deg, var(--navy), var(--blue-dark)); }
.team-role { display: block; min-height: 34px; color: var(--blue-dark); font-size: 10px; font-weight: 800; letter-spacing: 1px; line-height: 1.4; text-transform: uppercase; }
.team-card h2, .team-card h3 { margin: 6px 0 11px; color: var(--navy); font-size: 21px; }
.team-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 13px; }
.team-photo { height: 220px; margin: -30px -27px 25px; overflow: hidden; background: var(--soft); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; transition: transform .35s ease; }
.team-card:hover .team-photo img { transform: scale(1.045); }
.team-page-hero, .future-page-hero { min-height: 440px; display: flex; align-items: center; color: #fff; background: linear-gradient(120deg, rgba(10,43,55,.97), rgba(7,118,168,.86)), url("../images/public/wings-community-hero-bg-v2.png") center/cover; }
.page-hero-copy { padding-block: 72px; }
.page-hero-copy h1 { color: #fff; }
.page-hero-copy p { max-width: 690px; margin: 0; color: #c8dce3; font-size: 17px; }
.team-page-section .section-heading > p, .future-page-section .section-heading > p { max-width: 480px; color: var(--muted); }
.future-preview-section { color: #fff; background: var(--navy); }
.future-preview-section .section-heading h2, .future-preview-section .section-heading h2 strong { color: #fff; }
.future-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.future-grid-preview { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.future-card { position: relative; min-height: 335px; padding: 34px 31px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--blue); border-radius: 19px; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.future-card:nth-child(3n+2) { border-top-color: var(--teal); }.future-card:nth-child(3n+3) { border-top-color: var(--orange); }
.future-card:hover { transform: translateY(-7px); box-shadow: 0 25px 58px rgba(23,62,77,.16); }
.future-number { position: absolute; top: 15px; right: 22px; color: rgba(7,157,221,.12); font-size: 58px; font-weight: 800; line-height: 1; }
.future-label { display: inline-block; margin-bottom: 32px; padding: 5px 10px; color: var(--blue-dark); background: #e8f6fb; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.future-card h2, .future-card h3 { position: relative; margin: 0 0 13px; color: var(--navy); font-size: 23px; line-height: 1.3; }
.future-card p { position: relative; margin: 0; color: var(--muted); font-size: 14px; }
.future-grid-preview .future-card { min-height: 290px; padding: 29px 24px; box-shadow: none; }
.future-grid-preview .future-card h3 { font-size: 19px; }
.future-impact { display: grid; gap: 5px; margin-top: 24px; padding-top: 19px; border-top: 1px solid var(--line); }
.future-impact strong { color: var(--orange); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.future-impact span { color: var(--ink); font-size: 12px; }
.future-page-section { background: var(--soft); }
.vision-section { padding-top: 0; background: var(--soft); }
.vision-panel { padding: 60px; color: #fff; background: linear-gradient(130deg, var(--navy), #0a6e91); border-radius: 26px; box-shadow: 0 25px 70px rgba(23,62,77,.2); }
.vision-panel h2 { max-width: 900px; margin: 18px 0; color: #fff; font-size: clamp(30px, 4vw, 48px); line-height: 1.25; }
.vision-panel p { max-width: 760px; margin: 0 0 28px; color: #c4dce5; }

@media (max-width: 960px) {
    .team-grid, .team-grid-preview, .future-grid-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
    .team-grid, .team-grid-preview, .future-grid, .future-grid-preview { grid-template-columns: 1fr; }
    .team-card { min-height: 0; }
    .team-photo { height: 280px; }
    .page-hero-copy { padding-block: 58px; }
    .page-hero-copy p { font-size: 15px; }
    .vision-panel { padding: 38px 24px; border-radius: 20px; }
}

/* Editorial impact collage and photographic gallery */
.impact-collage { display: grid; min-height: 620px; grid-template-columns: 1.45fr .85fr; grid-template-rows: 1fr 1fr; gap: 20px; }
.impact-photo { position: relative; min-height: 0; overflow: hidden; color: #fff; background: var(--navy); border-radius: 24px; box-shadow: 0 20px 55px rgba(23,62,77,.13); isolation: isolate; }
.impact-photo-featured { grid-row: 1 / span 2; }
.impact-photo::after { content: ""; position: absolute; z-index: 1; inset: 28% 0 0; background: linear-gradient(180deg, transparent, rgba(7,30,39,.9)); }
.impact-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.75,.2,1); }
.impact-photo-service img { object-position: center; }.impact-photo-culture img { object-position: 75% center; }
.impact-photo:hover img, .impact-photo:focus-visible img { transform: scale(1.055); }
.impact-photo-copy { position: absolute; z-index: 2; right: 26px; bottom: 25px; left: 26px; display: flex; flex-direction: column; align-items: flex-start; }
.impact-photo-copy small { margin-bottom: 7px; padding: 5px 10px; background: rgba(7,157,221,.9); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.impact-photo-service .impact-photo-copy small { background: rgba(21,139,148,.94); }.impact-photo-culture .impact-photo-copy small { background: rgba(238,150,59,.95); }
.impact-photo-copy strong { color: #fff; font-size: clamp(20px,2.2vw,30px); line-height: 1.25; }.impact-photo-copy em { margin-top: 4px; color: #d9e9ee; font-size: 12px; font-style: normal; }

.gallery-image-button { display: block; width: 100%; height: 290px; padding: 0; overflow: hidden; background: #dce8ec; border: 0; cursor: zoom-in; }
.gallery-card.large .gallery-image-button { height: 350px; }
.gallery-image-button img { width: 100%; height: 100%; object-fit: cover; object-position: 36% center; transition: transform .5s ease, filter .35s ease; }
.gallery-image-button.crop-left img { object-position: left center; }.gallery-image-button.crop-center img { object-position: center; }.gallery-image-button.crop-right img { object-position: right center; }
.gallery-card:hover .gallery-image-button img, .gallery-image-button:focus-visible img { transform: scale(1.045); filter: saturate(1.06); }
.gallery-image-button::after { content: "+"; position: absolute; top: 18px; right: 18px; display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: rgba(16,47,59,.72); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: 23px; backdrop-filter: blur(8px); }
.gallery-image-button { position: relative; }
.gallery-caption { min-height: 145px; }
.gallery-caption h2 { color: var(--navy); }
body.lightbox-open { overflow: hidden; }
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox { position: fixed; z-index: 1000; inset: 0; display: grid; grid-template-columns: 70px minmax(0,1100px) 70px; align-items: center; justify-content: center; gap: 18px; padding: 70px 30px 30px; background: rgba(4,20,27,.93); backdrop-filter: blur(10px); }
.gallery-lightbox figure { display: grid; max-height: calc(100vh - 100px); margin: 0; overflow: hidden; background: #0c2934; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; box-shadow: 0 35px 90px rgba(0,0,0,.48); }
.gallery-lightbox figure img { width: 100%; max-height: calc(100vh - 190px); object-fit: contain; }
.gallery-lightbox figcaption { display: flex; min-height: 76px; flex-direction: column; justify-content: center; padding: 13px 20px; color: #fff; }
.gallery-lightbox figcaption span { color: #61caed; font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }.gallery-lightbox figcaption strong { font-size: 18px; }
.lightbox-close, .lightbox-nav { display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; cursor: pointer; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--blue); }.lightbox-close:focus-visible, .lightbox-nav:focus-visible { outline-color: #fff; }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 46px; height: 46px; font-size: 29px; }.lightbox-nav { width: 56px; height: 56px; font-size: 22px; }

@media (max-width: 760px) {
    .impact-collage { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto; gap: 14px; }
    .impact-photo, .impact-photo-featured { min-height: 285px; grid-row: auto; }
    .impact-photo-featured { min-height: 390px; }
    .impact-photo-copy { right: 20px; bottom: 20px; left: 20px; }
    .gallery-image-button, .gallery-card.large .gallery-image-button { height: 270px; }
    .gallery-lightbox { grid-template-columns: 48px minmax(0,1fr) 48px; gap: 7px; padding: 75px 10px 20px; }
    .lightbox-nav { width: 44px; height: 44px; }
    .gallery-lightbox figure img { max-height: calc(100vh - 205px); }
}

@media (prefers-reduced-motion: reduce) {
    .impact-photo img, .gallery-image-button img { transition: none; }
    .impact-photo:hover img, .impact-photo:focus-visible img, .gallery-card:hover .gallery-image-button img, .gallery-image-button:focus-visible img { transform: none; }
}

@media (max-width: 960px) {
    .visual-hero-grid { grid-template-columns: 1fr; gap: 34px; }
    .visual-hero-media { min-height: 420px; max-width: 720px; width: 100%; }
}

@media (max-width: 650px) {
    .visual-page-hero { padding: 58px 0 62px; }
    .visual-hero-grid { gap: 28px; }
    .visual-hero-media { min-height: 340px; }
    .hero-media-main { inset: 12px 28px 52px 0; border-radius: 18px; }
    .hero-media-small { width: 48%; height: 34%; border-width: 4px; border-radius: 14px; }
    .hero-media-small.bottom { right: 12px; }
    .hero-highlights span, .gallery-hero-chips a { min-height: 39px; padding: 8px 11px; font-size: 12px; }
    .hero-highlights strong { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .visual-hero-media img, .visual-hero-media:hover img { transform: none; transition: none; }
}
