/* ---------- hero : edge to edge, larger than life ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0c;
    isolation: isolate;
}

/* full bleed photo on the right */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    transform: scale(1.18);
    opacity: 0;
    animation: heroZoom 2.4s .2s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes heroZoom {
    0% {
        opacity: 0;
        transform: scale(1.18);
    }

    100% {
        opacity: 1;
        transform: scale(1.04);
    }
}

/* dark scrims so left copy stays legible */

/* .hero-media::after{content:"";position:absolute;inset:0;background:
  linear-gradient(90deg,#070708 0%,rgba(8,8,10,.96) 26%,rgba(8,8,10,.72) 44%,rgba(8,8,10,.15) 66%,rgba(8,8,10,.05) 100%),
  linear-gradient(180deg,rgba(8,8,10,.55),transparent 30%,rgba(8,8,10,.4))} */
.hero-curtain {
    position: absolute;
    inset: 0;
    background: #0a6c74;
    z-index: 20;
    transform-origin: top;
    animation: curtain 1.1s .1s cubic-bezier(.76, 0, .24, 1) forwards;
}

@keyframes curtain {
    0% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
    }
}

.hero-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 40px 80px;
}

.hero-copy {
    max-width: 680px;
}

.hero .eyebrow {
    color: var(--teal-400);
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    color: #fff;
    margin: 24px 0;
    letter-spacing: -.035em;
    line-height: .96;
}

.hero h1 .ln {
    display: block;
    overflow: hidden;
}

.hero h1 .ln span {
    display: block;
    transform: translateY(110%);
    animation: lineUp .9s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero h1 .ln:nth-child(1) span {
    animation-delay: .7s;
}

.hero h1 .ln:nth-child(2) span {
    animation-delay: .82s;
}

.hero h1 .ln:nth-child(3) span {
    animation-delay: .94s;
}

@keyframes lineUp {
    to {
        transform: translateY(0);
    }
}

.hero h1 .accent {
    position: relative;
    color: var(--teal-400);
    white-space: nowrap;
}

.hero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.02em;
    height: .14em;
    background: var(--gold);
    border-radius: 6px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline .9s 1.5s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes underline {
    to {
        transform: scaleX(1);
    }
}

.hero p.lead {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: #000;
    max-width: 540px;
    margin-bottom: 34px;
    opacity: 0;
    animation: fadeUp .9s 1.5s forwards;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .9s 1.7s forwards;
}

.hero-trust {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    opacity: 0;
    animation: fadeUp .9s 1.9s forwards;
}

.hero-trust .badges {
    display: flex;
    gap: 8px;
}

.hero-trust .badges i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 1rem;
}

.hero-trust b {
    color: #fff;
}

/* floating glass cards on the photo */
.float-card {
    position: absolute;
    z-index: 8;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 15px 20px 15px 16px;
    box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    gap: 13px;
    opacity: 0;
}

.float-card .dot {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    flex: none;
}

.float-card b {
    font-family: var(--display);
    font-size: 1.15rem;
    display: block;
    color: var(--teal-900);
    line-height: 1.1;
}

.float-card small {
    font-size: .78rem;
    color: var(--ink-soft);
}

.fc1 {
    top: 16%;
    right: 5%;
    animation: cardIn .8s 2s forwards, bob 6s 2.8s ease-in-out infinite;
}

.fc1 .dot {
    background: var(--cyan-100);
    color: var(--teal-700);
}

.fc2 {
    top: 58%;
    right: 4%;
    animation: cardIn .8s 2.2s forwards, bob 7s 3s ease-in-out infinite;
}

.fc2 .dot {
    background: #ffe9e6;
    color: var(--coral);
}

.fc3 {
    bottom: 9%;
    right: 16%;
    animation: cardIn .8s 2.4s forwards, bob 8s 3.2s ease-in-out infinite;
}

.fc3 .dot {
    background: var(--gold-soft);
    color: #b67d00;
}

@keyframes cardIn {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.scroll-cue {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    color: rgba(255, 255, 255, .6);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s 2.6s forwards;
}

.scroll-cue .line {
    width: 1px;
    height: 34px;
    background: linear-gradient(rgba(255, 255, 255, .7), transparent);
    animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {

    0%,
    100% {
        transform: scaleY(.4);
        opacity: .4;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* posters */
.posters {
    background: var(--paper);
}

.poster-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.poster {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    cursor: pointer;
    transition: .4s;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: #fff;
}

.poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--pg);
    z-index: 0;
}

.poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .55));
    z-index: 1;
}

.poster>* {
    position: relative;
    z-index: 2;
}

.poster .ptag {
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .85;
    font-weight: 700;
}

.poster h4 {
    font-size: 1.15rem;
    margin: 6px 0 14px;
}

.poster .pbtn {
    font-size: .82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: .92;
}

.poster:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.poster:hover .pbtn {
    gap: 12px;
}

.p1 {
    --pg: linear-gradient(160deg, #1e6fb5, #0a3d6b);
}

.p2 {
    --pg: linear-gradient(160deg, #ff7a5c, #d83b2e);
}

.p3 {
    --pg: linear-gradient(160deg, #9b6bd6, #5e35a8);
}

.p4 {
    --pg: linear-gradient(160deg, #16a3ad, #0a6c74);
}

/* footer */
footer {
    background: var(--teal-900);
    color: #fff;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.foot-cross {
    position: absolute;
    font-weight: 800;
    color: rgba(255, 255, 255, .05);
    font-size: 14rem;
    right: -30px;
    top: -40px;
    line-height: 1;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
}

.foot-grid .logo {
    color: #fff;
    margin-bottom: 16px;
}

.foot-grid .logo b {
    color: var(--coral);
}

.foot-about {
    color: rgba(255, 255, 255, .65);
    font-size: .92rem;
    max-width: 280px;
}

.foot-col h5 {
    font-family: var(--display);
    font-size: 1rem;
    margin-bottom: 16px;
}

.foot-col a {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    padding: 5px 0;
    transition: .25s;
}

.foot-col a:hover {
    color: #fff;
    padding-left: 6px;
}

.foot-bottom {
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, .5);
    font-size: .84rem;
    position: relative;
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal.d1 {
    transition-delay: .08s;
}

.reveal.d2 {
    transition-delay: .16s;
}

.reveal.d3 {
    transition-delay: .24s;
}

.reveal.d4 {
    transition-delay: .32s;
}

.reveal.d5 {
    transition-delay: .4s;
}

.reveal.d6 {
    transition-delay: .48s;
}

/* responsive */
@media (max-width: 980px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .burger {
        display: flex;
    }

    .fc1 {
        top: 10%;
        right: 3%;
    }

    .fc3 {
        display: none;
    }

    .why-grid,
    .panel.active {
        grid-template-columns: 1fr;
    }

    .journey-grid,
    .eco-grid,
    .stats-grid,
    .poster-row {
        grid-template-columns: 1fr 1fr;
    }

    .stages-grid,
    .foot-grid {
        grid-template-columns: 1fr;
    }

    .panel-body {
        padding: 30px;
    }

    .hero-visual {
        order: -1;
        max-width: 420px;
        margin: 0 auto;
    }

    .foot-grid {
        gap: 30px;
    }
}

@media (max-width: 560px) {

    .journey-grid,
    .eco-grid,
    .stats-grid,
    .poster-row {
        grid-template-columns: 1fr;
    }

    .touch-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-inner {
        padding: 120px 22px 90px;
    }

    .float-card {
        display: none;
    }

    .wrap {
        padding: 0 18px;
    }
}

/* ===== ABOUT PAGE ===== */
.ahero {
    /*position: relative;*/
    /*isolation: isolate;*/
    overflow: hidden;
    /*background: #06181b;*/
    /*min-height: 90vh;*/
    /*display: flex;*/
    /*align-items: center;*/
    padding: 50px 20px 40px;
}

.ahero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(720px 520px at 78% 16%, rgba(63, 194, 203, .22), transparent 60%), radial-gradient(640px 520px at 8% 94%, rgba(255, 194, 75, .13), transparent 55%), linear-gradient(160deg, #06181b, #0a2a2f);
}

.ahero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .4;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 26px 26px;
}

.adot {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .6;
    animation: bob 9s ease-in-out infinite;
}

.ahero-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.ahero .eyebrow {
    color: var(--teal-400);
}

.ahero-copy>* {
    opacity: 0;
    animation: fadeUp .8s forwards;
}

.ahero-copy .eyebrow {
    animation-delay: .5s;
}

.ahero-copy h1 {
    animation-delay: .62s;
}

.ahero-copy .lead {
    animation-delay: .74s;
}

.ahero-copy .achips {
    animation-delay: .86s;
}

.ahero h1 {
    font-size: clamp(2.6rem, 5.2vw, 4.4rem);
    color: #021d33;
    margin: 18px 0;
    letter-spacing: -.03em;
    line-height: 1.0;
}

.ahero h1 .accent {
    color: #007c9f;
    position: relative;
    white-space: nowrap;
}

.ahero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.02em;
    height: .13em;
    background: var(--gold);
    border-radius: 6px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline .9s 1s cubic-bezier(.22, 1, .36, 1) forwards;
}

.ahero .lead {
    color: #000;
    max-width: 560px;
    font-size: 1.08rem;
    margin-bottom: 24px;
    font-weight: 500;
}

.achips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.achips span {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
    color: #000;
    padding: 9px 16px;
    border-radius: 100px;
    font-size: .86rem;
    font-weight: 500;
}

.achips b {
    color: var(--teal-400);
}



.logo-card {
    position: relative;
    z-index: 5;
    background: linear-gradient(160deg, #fff, #fbf7ef);
    border-radius: 30px;
    padding: 50px 44px;
    box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .6);
    text-align: center;
    opacity: 0;
    animation: cardIn 1s .7s forwards;
}

.logo-card img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 6px;
}

.logo-card .lcsub {
    font-size: .84rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--teal-700);
    font-weight: 700;
}

@keyframes cardIn {
    0% {
        opacity: 0;
        transform: translateY(26px) scale(.95);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 900px) {

    .ahero-grid,
    .story-cols {
        grid-template-columns: 1fr;
    }

    .logo-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .facts {
        grid-template-columns: 1fr 1fr;
    }

    .ap-grid {
        grid-template-columns: 1fr;
    }

    .tcols {
        columns: 2;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 560px) {
    .bento {
        grid-template-columns: 1fr;
    }

    .tile.span2,
    .tile.row2 {
        grid-column: auto;
        grid-row: auto;
    }

    .facts {
        grid-template-columns: 1fr 1fr;
    }

    .tcols {
        columns: 1;
    }

    .cta-form input {
        min-width: 100%;
    }
}

/* akansha */

/* who we are */
.who {
    background: var(--paper)
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 50px;
    align-items: center
}

.who-copy p {
    color: var(--ink-soft);
    font-size: 1.02rem;
    margin-bottom: 18px
}

.who-copy .first {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--teal-900);
    line-height: 1.32;
    margin-bottom: 20px
}

.who-copy .first .hl {
    color: var(--coral)
}

.cred {
    background: linear-gradient(155deg, #0a6c74, #053b41);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.cred::before {
    content: "+";
    position: absolute;
    right: -10px;
    top: -30px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 10rem;
    color: rgba(255, 255, 255, .06);
    line-height: 1
}

.cred .ci {
    position: relative;
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.cred .ci:last-child {
    border-bottom: none
}

.cred .ci .icn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    flex: none
}

.cred .ci b {
    font-family: var(--display);
    font-size: 1.2rem;
    display: block
}

.cred .ci small {
    color: rgba(255, 255, 255, .72);
    font-size: .86rem
}

.who-copy ul{
  list-style:none;
  margin:0 0 18px;
  padding:0;
}
.who-copy li{
  position:relative;
  padding-left:1.4em;
  color:var(--ink);
  font-size:.96rem;
  line-height:1.5;
  margin-bottom:8px;
}
.who-copy li::before{
  content:"";
  position:absolute;
  left:0;                 /* dot lands exactly at the p's left edge */
  top:.62em;
  width:6px; height:6px;
  border-radius:50%;
  background:var(--teal-700,#0a6c74);
}



/* ============ HERO ============ */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(150deg, #063e45 0%, #053b41 40%, #0a2e33 100%);
    isolation: isolate;
}

.hero .field {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero .glow {
    position: absolute;
    border-radius: 50%;
}

@keyframes underline {
    to {
        transform: scaleX(1);
    }
}

.hero .sub {
    font-size: 1.18rem;
    color: #fff;
    font-weight: 600;
    max-width: 560px;
    margin-bottom: 16px;
    font-family: var(--display);
}

.hero .lead {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-art {
    position: relative;
    height: 430px;
}

/* Scene with Background Image */
.scene {
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: url("/wp-content/uploads/2026/06/who-we-are-about-us.png") center center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-lg);
}

/* Optional Dark Overlay */
.scene::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.scene .ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.16);
}

.scene .r1 {
    width: 260px;
    height: 260px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: spin 26s linear infinite;
}

.scene .r2 {
    width: 160px;
    height: 160px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.10);
}

.scene .core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--teal-400), var(--teal-700));
    display: grid;
    place-items: center;
    font-size: 2.6rem;
    box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.6);
}

.orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    margin: -25px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.5);
}

.o1 {
    transform: translate(110px, -70px);
}

.o2 {
    transform: translate(-120px, -30px);
}

.o3 {
    transform: translate(90px, 80px);
}

.o4 {
    transform: translate(-90px, 90px);
}

.float-card1 {
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 13px 18px 13px 14px;
    box-shadow: 0 26px 54px -24px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    gap: 12px;
}

.float-card1 .dot {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex: none;
}

.float-card1 b {
    font-family: var(--display);
    font-size: 1.05rem;
    display: block;
    color: var(--teal-900);
    line-height: 1.1;
}

.float-card1 small {
    font-size: 0.76rem;
    color: var(--ink-soft);
}

.fcard-1 {
    top: 6%;
    left: -6%;
    animation: bob 6s 2s ease-in-out infinite;
}

.fcard-1 .dot {
    background: var(--gold-soft);
    color: #b67d00;
}

.fcard-2 {
    bottom: 4%;
    right: -4%;
    animation: bob 7.5s 2.4s ease-in-out infinite;
}

.fcard-2 .dot {
    background: #ffe9e6;
    color: var(--coral);
}


/* section base */
section {
    position: relative
}

.sec-pad {
    padding: 70px 0
}

.sec-head {
    text-align: center;
    max-width: 730px;
    margin: 0 auto 35px
}

.sec-head h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    color: var(--teal-900);
    margin: 16px 0 14px
}

.sec-head p {
    color: var(--ink-soft);
    font-size: 1.06rem
}

.sec-head .y {
    color: var(--coral)
}

/* what we do */
.do {
    background: var(--paper)
}

.do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.scard {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 30px 28px;
    transition: .4s;
    position: relative;
    overflow: hidden
}

.scard::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--ac, var(--teal-500));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s
}

.scard:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    background: #fff
}

.scard:hover::after {
    transform: scaleY(1)
}

.scard .si {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    background: var(--sb, var(--cyan-100))
}

.scard h4 {
    font-size: 1.18rem;
    color: var(--teal-900);
    margin-bottom: 10px
}

.scard p {
    color: var(--ink-soft);
    font-size: .94rem
}

/* impact */
.impact {
    background: linear-gradient(180deg, var(--cream), var(--cyan-50))
}

.counts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.cbig {
    border-radius: var(--r-md);
    padding: 38px 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm)
}

.cbig::before {
    content: "";
    position: absolute;
    right: -26px;
    top: -26px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12)
}

.cbig.b1 {
    background: linear-gradient(150deg, #16a3ad, #0a6c74)
}

.cbig.b2 {
    background: linear-gradient(150deg, #ff7a5c, #d83b2e)
}

.cbig .num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1;
    letter-spacing: -.03em
}

.cbig .lbl {
    font-size: .98rem;
    margin-top: 8px;
    color: rgba(255, 255, 255, .92);
    max-width: 340px
}

.cqual {
    display: grid;
    gap: 12px
}

.qrow {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: .35s
}

.qrow:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm)
}

.qrow .qi {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--cyan-100);
    color: var(--teal-700);
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    flex: none
}

.qrow span.t {
    font-weight: 600;
    color: var(--teal-900);
    font-size: .98rem
}

.impact-note {
    text-align: center;
    max-width: 680px;
    margin: 38px auto 0;
    color: var(--ink-soft);
    font-size: 1.02rem;
    font-style: italic
}

/* health ambassadors */
.amb {
    background:  #003646;
    color: #fff;
    overflow: hidden
}

.amb .cross {
    position: absolute;
    font-family: var(--display);
    font-weight: 800;
    color: rgba(255, 255, 255, .05);
    font-size: 15rem;
    left: -40px;
    bottom: -60px;
    line-height: 1
}

.amb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative
}

.amb .eyebrow {
    color: var(--teal-400)
}

.amb h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    margin: 16px 0 18px
}

.amb p {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 18px;
    font-size: 1.02rem
}

.amb .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 22px;
    margin-top: 10px;
}

.amb .badge .s {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    color: #5b4200;
    display: grid;
    place-items: center;
    font-size: .8rem
}

.flow {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.fnode {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--r-md);
    padding: 18px 22px;
    position: relative;
    transition: .4s
}

.fnode:hover {
    background: rgba(255, 255, 255, .13);
    transform: translateX(6px)
}

.fnode .fn {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    flex: none
}

.fnode b {
    font-family: var(--display);
    font-size: 1.05rem;
    display: block
}

.fnode small {
    color: rgba(255, 255, 255, .7);
    font-size: .82rem
}

.fnode:not(:last-child)::after {
    content: "\2193";
    position: absolute;
    left: 43px;
    bottom: -15px;
    color: var(--gold);
    font-size: 1.1rem;
    z-index: 2
}

/* people */
.people {
    background: var(--cream)
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto
}

.tag {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 10px 18px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--teal-700);
    transition: .3s;
    cursor: default;
    box-shadow: var(--shadow-sm)
}

.tag:hover {
    background: var(--coral);
    border-color: var(--coral);
    transform: translateY(-3px) scale(1.04);
    color: #fff
}

.people-foot {
    text-align: center;
    max-width: 620px;
    margin: 38px auto 0;
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--teal-900)
}

/* team */
.team {
    background: #003646;
    color: #fff;
    overflow: hidden
}

.team .sec-head h2 {
    color: #fff
}

.team .sec-head p {
    color: rgba(255, 255, 255, .72)
}

.team .eyebrow {
    color: var(--teal-400)
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 920px;
    margin: 0 auto 30px
}

.chips .chip {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    padding: 12px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: .98rem;
    transition: .3s;
    cursor: default
}

.chips .chip:hover {
    transform: translateY(-4px);
    background: var(--c, #16a3ad);
    border-color: transparent;
    color: #fff
}

.team-outro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    font-family: var(--display);
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.4
}

.team-photo {
    max-width: 760px;
    margin: 20px auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .6);
}

.team-photo img {
    width: 100%;
    display: block;
}

.team-text {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.team-text p {
    color: rgba(255, 255, 255, .85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.team-text p:last-child {
    margin-bottom: 0
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* text | image */
    gap: 48px;
    align-items: top;
    max-width: 1040px;
    margin: 40px auto 0;
    text-align: left;
    /* override the centered header */
}

.team-copy .lead {
    color: rgba(255, 255, 255, .9);
    font-size: 1.08rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.team-copy p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
    margin-bottom: 16px;
}

.team-copy p:last-child {
    margin-bottom: 0
}

.team-photo {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .6);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 860px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center
    }

    .team-photo {
        order: -1;
    }

    /* image first */
    .team-photo img {
        height: auto;
    }

    .hero-media img {
        object-position: 28% center;
    }
}

.sec-pad.amb .eyebrow {width: 100%;}
.sec-pad.amb .badge {margin-top: 20px;}


/* bottom banner */

.ahero1{
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
   padding: 50px;
    border-radius: 50px;
    position: relative;
}
.ahero1-media picture{display:block;width:100%;height:100%}
.ahero1-media img{width:100%;height:100%;object-fit:cover;display:block}

.ahero1{
    max-width: 1280px;
    margin: 40px auto;
    border-radius: 50px;
    overflow: hidden;
}
.ahero1 .wrap{
    max-width: 100%;
}

.ahero1-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ahero1-copy h1 {
    animation-delay: .62s;
}

.ahero1-copy .lead {
    animation-delay: .74s;
}


.ahero1 h1 {
    font-size: 44px;
    color: #021d33;
    margin: 18px 0;
    letter-spacing: -.03em;
    line-height: 1.0;
}

.ahero1 h1 .accent {
    color: #007c9f;
    position: relative;
    white-space: nowrap;
}

.ahero1 h1 .accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.02em;
    height: .13em;
    background: var(--gold);
    border-radius: 6px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline .9s 1s cubic-bezier(.22, 1, .36, 1) forwards;
}

.ahero1 .lead {
    color: #000;
    max-width: 560px;
    font-size: 1.08rem;
    margin-bottom: 24px;
    font-weight: 500;
}


@media (max-width: 768px){
  .ahero1{
    margin:20px 14px;
    border-radius:28px;          /* 50px looks oversized on a small card */
  }
  .ahero-copy{
    padding:36px 22px;           /* keep text off the edges */
  }
  .ahero1 h1{
    font-size:30px;              /* was locked at 44px */
    margin:0 0 14px;
  }
  .ahero1 .lead{
    font-size:1rem;
    margin-bottom:22px;
  }

  @media (max-width: 768px){
  .ahero1::after{content:none;}        /* no scrim needed if mobile img is designed for it */
  .ahero1-media img{object-position:center;}
}

@media (max-width: 768px){

  
}

  /* light wash so the dark text stays readable over the cropped photo */
  .ahero1::after{
    content:"";
    position:absolute; inset:0; z-index:-1;   /* above the image, below the text */
    background:linear-gradient(180deg,
      rgba(244,246,248,.92),
      rgba(244,246,248,.6) 55%,
      rgba(244,246,248,.3));
  }
}

@media (max-width: 420px){
  .ahero1 h1{font-size:26px;}
  .ahero-copy{padding:30px 0px;}
    .ahero1{
    margin:20px 14px;
    border-radius:28px;
    height:550px;
    display:flex;
    align-items:flex-end;     /* content drops to the bottom */
  }
}

/* ---------- testimonials ---------- */
.testi {
    background: var(--paper)
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.tcard {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 28px 26px;
    transition: .4s;
    display: flex;
    flex-direction: column
}

.tcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: #fff
}

.tcard .quote {
    font-size: 2.6rem;
    font-family: var(--display);
    color: var(--teal-400);
    line-height: .6;
    height: 24px
}

.tcard p {
    color: var(--ink);
    font-size: .98rem;
    margin: 6px 0 20px;
    flex: 1
}

.tcard .who1 {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: auto
}

.tcard .av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-weight: 800;
    color: #fff;
    flex: none;
    font-size: 1.05rem
}

.tcard .who1 b {
    display: block;
    font-family: var(--display);
    color: var(--teal-900);
    font-size: .96rem
}

.tcard .who1 small {
    color: var(--ink-soft);
    font-size: .82rem
}

.av{
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:700;
    font-size:22px;
    flex-shrink:0;
}

/* ---------- achievements (signature interactive mosaic) ---------- */
.ach {
    background: linear-gradient(180deg, var(--cyan-50), var(--cream))
}

.filterbar {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.fpill {
    font-family: var(--body);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink-soft);
    padding: 11px 22px;
    border-radius: 100px;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.fpill .c {
    font-size: .72rem;
    background: var(--cyan-100);
    color: var(--teal-700);
    padding: 2px 9px;
    border-radius: 100px;
    font-weight: 700;
    transition: all .3s
}

.fpill:hover {
    border-color: var(--teal-400);
    color: var(--teal-700)
}

.fpill.active {
    background: var(--teal-700);
    color: #fff;
    border-color: var(--teal-700);
    box-shadow: 0 14px 30px -14px rgba(10, 108, 116, .9)
}

.fpill.active .c {
    background: rgba(255, 255, 255, .22);
    color: #fff
}

.mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 158px;
    gap: 16px
}

.tile {
    position: relative;
    border-radius: var(--r-md);
    padding: 22px;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: default;
    isolation: isolate;
    box-shadow: var(--shadow-sm);
    transition: transform .5s cubic-bezier(.22, 1, .36, 1), box-shadow .5s, opacity .45s, filter .45s
}

.tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--tg);
    z-index: -1
}

.tile::before {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    z-index: -1
}

.tile:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md)
}

.tile .ticon {
    font-size: 1.7rem;
    position: absolute;
    top: 18px;
    left: 20px;
    opacity: .92
}

.tile .num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -.03em
}

.tile .lbl {
    font-size: .86rem;
    font-weight: 600;
    margin-top: 6px;
    line-height: 1.32;
    color: rgba(255, 255, 255, .95)
}

.tile .reveal-line {
    font-size: .8rem;
    color: rgba(255, 255, 255, .92);
    line-height: 1.45;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.22, 1, .36, 1), opacity .4s, margin .4s;
    margin-top: 0;
	width: 80%;
}

.tile.has-reveal {
    cursor: pointer;
}

.tile.has-reveal:hover .reveal-line,
.tile.has-reveal:focus-visible .reveal-line {
    max-height: 120px;
    opacity: 1;
    margin-top: 8px
}

.tile .kicker {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 4px
}

/* sizes */
.tile.wide {
    grid-column: span 2
}

.tile.tall {
    grid-row: span 2;
    justify-content: space-between
}

.tile.tall .top {
    margin-top: 34px
}

/* color themes echoing the foundation's mosaic */
.t-coral {
    background: linear-gradient(98.43deg, #24821f 3.09%, #99EE95 96.91%)
}

.t-teal {
    background: url('/wp-content/uploads/2026/06/about-us-tile-1-achievement.png') center/cover no-repeat;
}

.t-deep {
    --tg: linear-gradient(155deg, #0e8089, #053b41)
}

.t-blue {
    --tg: linear-gradient(155deg, #1e6fb5, #0a3d6b)
}

.t-skyblue {
    background: linear-gradient(289.39deg, #0C7D9E 0.56%, #72DFFF 99.44%)
}

.t-yellow {
    background: linear-gradient(283.79deg, #FFE4A6 3.27%, #FCB713 96.73%)
}

.t-teal2 {
    background: linear-gradient(96.92deg, #13949E 1.77%, #095960 98.23%)
}

.t-purple {
    background: linear-gradient(277.86deg, #81298F 3.12%, #B569C0 96.88%)
}

.t-green {
    background: linear-gradient(274.2deg, #EC2028 0.93%, #FF7B80 99.07%)
}

.t-gold {
    background: linear-gradient(272.39deg, #26245D 1.29%, #35319D 98.71%)
}

.t-gold .num,
.t-gold .lbl,
.t-gold .ticon,
.t-gold .kicker {
    color: #4a3200
}

.t-gold .reveal-line {
    color: rgba(74, 50, 0, .85)
}

.t-slate {
    background: linear-gradient(286.99deg, #003646 2.65%, #0B6E8C 97.35%)
}

.tile.hide {
    opacity: 0;
    transform: scale(.85);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden
}

.ach-foot {
    text-align: center;
    margin-top: 36px;
    color: var(--ink-soft);
    font-size: .92rem
}

.tile.t-photo::after {
    background:
        linear-gradient(155deg, rgba(10, 108, 116, .55), rgba(5, 40, 43, .85)),
        url('/wp-content/uploads/2026/06/about-us-tile-1-achievement.png') center/cover no-repeat;
}

.tile img.ticon {
    width: 50px;
    height: 50px;
    object-fit: contain
}

.tile img.ticon1 {
    width: auto;
    height: 30px;
    object-fit: contain
}

.tile1 {
    padding-bottom: 15px;
}

.mosaic {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.m-group {
    display: grid;
    gap: 16px;
    grid-auto-rows: 158px
}

.m-numbers {
    grid-template-columns: repeat(4, 1fr)
}

.m-care {
    grid-template-columns: repeat(3, 1fr)
}

.m-program {
    grid-template-columns: repeat(2, 1fr)
}

/* care + program: light blue cards, dark text */


.m-care .lbl,
.m-program .lbl,
.m-care .kicker,
.m-program .kicker {
    color: #fafafa;
}

.m-care .reveal-line,
.m-program .reveal-line {
    color: rgba(255, 255, 255, 0.82);
}


/* ---------- goals ---------- */
.goals {
    background: linear-gradient(180deg, var(--cream), var(--cyan-50))
}

.goal {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 26px 24px;
    transition: .4s;
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.goal:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md)
}

.goal .gk {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #003646;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex: none;
    box-shadow: 0 8px 18px -8px rgba(10, 108, 116, .9)
}

.goal p {
    color: var(--ink);
    font-size: .96rem;
    font-weight: 500;
    line-height: 1.5
}

.goal {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 26px 24px;
    transition: .4s;
    display: flex;
    gap: 14px;
    align-items: center;
    /* was flex-start */
}

.goals-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    /* cards | image */
    gap: 16px;
    align-items: stretch;
    /* image matches cards' height */
}

.goals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* two columns of cards */
    gap: 16px;
    align-content: start;
}

.goals-media {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    min-height: 220px;
}

.goals-media img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .goals-layout {
        grid-template-columns: 1fr
    }

    /* image drops below cards */
    .goals-media {
        order: -1;
    }
}

@media (max-width: 560px) {
    .goals-grid {
        grid-template-columns: 1fr
    }

    /* cards one by one */
}

@media (max-width: 900px) {
    .who-grid {
        grid-template-columns: 1fr;
    }

    /* stack to one column */
    .who-copy {
        order: -1;
    }

    /* text always first */
}

@media(max-width:980px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .burger {
        display: flex
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 140px 26px 70px
    }

    .hero-art {
        height: 360px;
        order: -1
    }

    .who-grid,
    .amb-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .split {
        grid-template-columns: 1fr
    }

    .checks {
        grid-template-columns: 1fr 1fr
    }

    .do-grid,
    .serve-grid,
    .testi-grid {
        grid-template-columns: 1fr 1fr
    }

    .app-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .counts {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }
}

@media(max-width:620px) {

    .checks,
    .do-grid,
    .serve-grid,
    .testi-grid,
    .app-grid,
    .foot-grid {
        grid-template-columns: 1fr
    }

    .fcard-1,
    .fcard-2 {
        display: none
    }

    .cta-card {
        padding: 46px 26px
    }

    .wrap {
        padding: 0 18px
    }

    .hero h1 {
        font-size: 2.5rem
    }
    .ahero h1{
        font-size: 38px
    }
    .team-copy .lead{
      font-size: 16px;
    }

 
}

@media(max-width:980px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .burger {
        display: flex
    }

    .phero-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .phero-art {
        height: 330px;
        order: -1
    }

    .mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px
    }

    .need-grid,
    .goals-grid,
    .testi-grid {
        grid-template-columns: 1fr 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }
}

@media(max-width:620px) {
    .mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px
    }

    .tile.wide {
        grid-column: span 2
    }

    .tile.tall {
        grid-row: span 1
    }

    .need-grid,
    .goals-grid,
    .testi-grid,
    .foot-grid {
        grid-template-columns: 1fr
    }

    .phero {
        padding: 140px 0 70px
    }

    .cta-card {
        padding: 44px 26px
    }

    .wrap {
        padding: 0 18px
    }

    .ahero {
        padding: 40px 20px 40px
    }

    .sec-pad {
        padding: 30px 0;
    }
    .hero-banner-logo {
    width: 80px;
}
	.ahero1 {
    padding: 0;
}
	.wrap.ahero1-grid {
    text-align: center;
}
.about-end-button {
    text-align: center !important;
}
}

@media (max-width: 700px) {
    .mosaic {
        gap: 14px
    }

    /* every group becomes a single column */
    .m-numbers,
    .m-care,
    .m-program {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        /* let tiles grow with content */
    }

    /* kill the spans so nothing is double-width or double-height */
    .m-group .tile {
        grid-column: auto;
        grid-row: auto;
        min-height: 150px;
        /* keep the card proportions */
    }

    /* the photo tile needs height or the image squashes */
    .m-numbers .t-teal {
        min-height: 230px
    }

    /* tall tile no longer needs the space-between push */
    .tile.tall {
        justify-content: flex-end
    }

    .tile.tall .top {
        margin-top: 0
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}


/* Mobile Fix */
@media (max-width: 400px) {
    /* Full-width CTA button */
    .amb .btn {
        white-space: normal;
    }
    
    .sec-pad.amb .wrap {
        padding: 0 10px 0 18px;
    }
}