/* =========================================================
   ELEVARE ABOUT PAGE
========================================================= */

:root {
    --green: #003d34;
    --green-dark: #002c26;
    --green-soft: #075347;

    --gold: #c99442;
    --gold-light: #d9ad62;

    --cream: #f7f2eb;
    --cream-dark: #eee6dc;

    --white: #ffffff;

    --burgundy: #641d32;
    --burgundy-dark: #4d1426;

    --text: #151816;
    --muted: #77766f;

    --border: rgba(0, 61, 52, .12);
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
}


/* ================= NAVBAR ================= */
.site-header {
  background: var(--green-dark);
  position: relative;
  z-index: 1000;
}

.navbar {
  min-height: 62px;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.navbar-brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand-mark {
  width: 34px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  border-left: 3px solid var(--gold);
  transform: skew(-8deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  letter-spacing: .08em;
  font-weight: 600;
}

.brand-copy small {
  color: var(--gold);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .13em;
  margin-top: 3px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,.92);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 23px 0 20px !important;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-light);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 11px;
  width: 25px;
  height: 2px;
  background: var(--gold);
  margin: auto;
}

.icon-btn {
  width: 28px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #fff;
  position: relative;
  font-size: 18px;
}

.count-btn span {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
}

.login-btn {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 3px;
  padding: 9px 12px;
  color: #fff;
  font-size: 10px;
}

.btn {
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 11px 17px;
}

.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--green-deep);
}

.btn-outline-gold {
  color: #fff;
  border: 1px solid var(--gold);
  background: transparent;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--green-deep);
}

.btn-dark-green {
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
}

.btn-dark-green:hover {
  background: var(--green-soft);
  color: #fff;
}

.btn-outline-gold-dark {
  border: 1px solid var(--gold);
  color: var(--green);
  background: transparent;
}

.btn-outline-gold-dark:hover {
  background: var(--gold);
  color: #fff;
}


/* =========================================================
   COMMON
========================================================= */

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    margin-bottom: 14px;
}

.eyebrow.light {
    color: var(--gold-light);
}

.centered {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading h2 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
    margin-bottom: 18px;
}

.section-heading h2 span {
    color: var(--gold);
}

.section-heading p {
    max-width: 620px;
    margin: auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.gold-btn,
.dark-btn,
.burgundy-btn,
.outline-light-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 19px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    transition: .3s ease;
}

.gold-btn {
    background: var(--gold);
    color: #15201d;
}

.gold-btn:hover {
    background: var(--gold-light);
    color: #15201d;
    transform: translateY(-2px);
}

.dark-btn {
    background: var(--green);
    color: #fff;
}

.dark-btn:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
}

.burgundy-btn {
    background: var(--burgundy);
    color: #fff;
}

.burgundy-btn:hover {
    background: var(--burgundy-dark);
    color: #fff;
    transform: translateY(-2px);
}

.outline-light-btn {
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
}

.outline-light-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    background: var(--green);
}

.about-hero-content {
    min-height: 380px;
    height: 100%;
    padding: 15px 8px 10px 19px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.about-hero-content h1 {
    color: #fff;
    font-size: clamp(28px, 5.5vw, 38px);
    line-height: 48px;
    margin-bottom: 1px;
}

.about-hero-content h1 span {
    color: var(--gold);
    display: block;
}

.hero-line {
    width: 55px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 28px;
}

.about-hero-image {
    height: 390px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.about-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.08),
            transparent 35%,
            rgba(0,0,0,.08)
        );
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-caption {
    position: absolute;
    bottom: 25px;
    left: 35px;
    z-index: 3;
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.hero-image-caption span {
    color: #fff;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(6px);
    padding: 8px 12px;
    font-size: 9px;
    letter-spacing: .12em;
}


/* =========================================================
   WHO WE ARE
========================================================= */

.who-section {
    padding: 50px 0;
    background: var(--cream);
}

.editorial-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-label {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(0,61,52,.92);
    color: var(--gold);
    padding: 15px 18px;
    font-family: "Playfair Display", serif;
    font-size: 19px;
    letter-spacing: .04em;
}

.image-label small {
    display: block;
    font-family: "DM Sans", sans-serif;
    color: #fff;
    font-size: 7px;
    letter-spacing: .14em;
    margin-top: 3px;
}

.section-copy {
    padding-left: 35px;
}

.section-copy h2 {
    font-size: clamp(40px, 4.5vw, 65px);
    line-height: 1.03;
    margin-bottom: 28px;
}

.section-copy h2 span {
    color: var(--gold);
}

.section-copy p {
    color: #5e625d;
    font-size: 16px;
    line-height: 1.9;
    max-width: 550px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-top: 15px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 6px;
}


/* =========================================================
   PURPOSE
========================================================= */

.purpose-section {
    padding: 80px 0;
    background: #fff;
}

.purpose-list {
    border-top: 1px solid var(--border);
}

.purpose-item {
    display: grid;
    grid-template-columns: 90px 1fr 80px;
    gap: 35px;
    align-items: center;
    padding: 40px 10px;
    border-bottom: 1px solid var(--border);
    transition: .3s ease;
}

.purpose-item:hover {
    background: var(--cream);
    padding-left: 20px;
    padding-right: 20px;
}

.purpose-number {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
}

.purpose-content h3 {
    font-family: "DM Sans", sans-serif;
    color: var(--green);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 10px;
}

.purpose-content p {
    color: #626660;
    font-size: 15px;
    line-height: 1.8;
    max-width: 760px;
    margin: 0;
}

.purpose-icon {
    width: 55px;
    height: 55px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
}


/* =========================================================
   BELIEF
========================================================= */

.belief-section {
    padding: 50px 0;
    background: var(--burgundy);
    color: #fff;
}

.belief-inner {
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.belief-content {
    max-width: 650px;
}

.belief-content h2 {
    font-size: clamp(50px, 6vw, 82px);
    line-height: .98;
    margin-bottom: 30px;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 25px 0;
}

.belief-lead {
    color: var(--gold-light) !important;
    font-family: "Playfair Display", serif;
    font-size: 23px !important;
    line-height: 1.4 !important;
}

.belief-content p {
    color: rgba(255,255,255,.72);
    max-width: 600px;
    font-size: 15px;
    line-height: 1.9;
}

.belief-visual {
    width: 330px;
    height: 330px;
    border: 1px solid rgba(201,148,66,.45);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.belief-visual::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201,148,66,.25);
    border-radius: 50%;
}

.belief-word {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    color: var(--gold);
    letter-spacing: .1em;
    transform: rotate(-20deg);
}

.belief-circle {
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 65px;
    height: 65px;
    background: var(--gold);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}


/* =========================================================
   ECOSYSTEM
========================================================= */

.ecosystem-section {
    padding: 90px 0;
    background: var(--cream);
}

.ecosystem-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ecosystem-item {
    min-height: 265px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 28px;
    position: relative;
    transition: .3s ease;
}

.ecosystem-item:hover {
    transform: translateY(-5px);
    border-color: rgba(201,148,66,.5);
    box-shadow: 0 18px 45px rgba(0,0,0,.07);
}

.eco-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #c8c2ba;
    font-size: 10px;
    font-weight: 700;
}

.eco-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 19px;
    margin-bottom: 25px;
}

.ecosystem-item h3 {
    font-size: 22px;
    line-height: 1.15;
    color: var(--green);
    margin-bottom: 12px;
}

.ecosystem-item p {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* center item */

.ecosystem-center {
    grid-column: 2 / 4;
    grid-row: 2;
    min-height: 265px;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 35px;
    text-align: center;
}

.center-ring {
    width: 130px;
    height: 130px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    gap: 1px;
    padding: 10px;
}

.center-ring span {
    font-family: "Playfair Display", serif;
    color: var(--gold);
    font-size: 20px;
}

.ecosystem-center p {
    max-width: 190px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   LIVELIHOOD
========================================================= */

.livelihood-section {
    background: #fff;
}

.livelihood-image {
    height: 650px;
}

.livelihood-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.livelihood-content {
    height: 100%;
    padding: 52px 8vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.livelihood-content h2 {
    font-size: clamp(35px, 5vw, 58px);
    line-height: 1;
    margin-bottom: 25px;
}

.livelihood-content h2 span {
    color: var(--gold);
    display: block;
}

.livelihood-content > p {
    max-width: 500px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.livelihood-points {
    border-top: 1px solid var(--border);
    margin-bottom: 30px;
}

.livelihood-points > div {
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 25px;
}

.livelihood-points strong {
    color: var(--green);
    min-width: 100px;
    font-size: 10px;
    letter-spacing: .1em;
}

.livelihood-points span {
    color: #777;
    font-size: 12px;
}


/* =========================================================
   CARE
========================================================= */

.care-section {
    padding: 1px 0;
    background: var(--cream);
}

.care-copy h2 {
    font-size: clamp(48px, 5vw, 75px);
    line-height: .98;
    margin-bottom: 25px;
}

.care-copy h2 span {
    color: var(--burgundy);
}

.care-copy p {
    max-width: 550px;
    color: #656761;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.burgundy-text {
    color: var(--burgundy);
}

.care-image {
    position: relative;
    height: 570px;
    overflow: hidden;
}

.care-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care-overlay {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(0,0,0,.68);
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 22px;
    gap: 15px;
}

.care-overlay > div {
    padding: 5px 15px;
    border-right: 1px solid rgba(255,255,255,.2);
}

.care-overlay > div:last-child {
    border: 0;
}

.care-overlay strong {
    display: block;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .1em;
    margin-bottom: 7px;
}

.care-overlay span {
    color: rgba(255,255,255,.8);
    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   VALUES
========================================================= */

.values-section {
    padding: 60px 0;
    background: var(--green-dark);
    color: #fff;
}

.light-heading h2 {
    color: #fff;
}

.light-heading p {
    color: rgba(255,255,255,.6);
}

.values-list {
    border-top: 1px solid rgba(255,255,255,.15);
}

.value-row {
    display: grid;
    grid-template-columns: 70px 230px 1fr;
    gap: 35px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
    transition: .3s ease;
}

.value-row:hover {
    padding-left: 15px;
    background: rgba(255,255,255,.025);
}

.value-letter {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 40px;
}

.value-name {
    font-family: "Playfair Display", serif;
    color: #fff;
    font-size: 23px;
}

.value-description {
    color: rgba(255,255,255,.6);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   BRAND PROMISE
========================================================= */

.promise-section {
    padding: 80px 0;
    background: var(--cream);
    text-align: center;
}

.promise-content {
    max-width: 950px;
    margin: auto;
}

.promise-content h2 {
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1.03;
}

.promise-content h2 span {
    color: var(--gold);
}

.promise-line {
    width: 75px;
    height: 2px;
    background: var(--gold);
    margin: 35px auto 0;
}


/* =========================================================
   FINAL CTA
========================================================= */

.about-cta {
    background: var(--green);
    padding: 50px 0;
    color: #fff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-inner h2 {
    font-size: clamp(45px, 5vw, 70px);
    line-height: 1;
    margin-bottom: 18px;
}

.cta-inner h2 span {
    color: var(--gold);
}

.cta-inner p {
    max-width: 650px;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-width: 270px;
}


.site-footer {
  background: var(--green-dark);
  color: #fff;
  padding: 65px 0 0;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 32px;
  font-size: 28px;
}

.footer-brand .brand-copy strong {
  font-size: 23px;
}

.footer-about {
  max-width: 280px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 13px;
}

.socials a {
  color: #fff;
  font-size: 14px;
}

.socials a:hover {
  color: var(--gold);
}

.site-footer h4 {
  color: var(--gold);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 4px 0 12px;
}

.site-footer .col-lg-2 > a {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  margin-bottom: 8px;
}

.site-footer .col-lg-2 > a:hover {
  color: var(--gold);
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 8px;
}
.contact-line a {
  color: rgba(255,255,255,.72);
}
.contact-line i {
  color: var(--gold);
  flex: 0 0 auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 24px;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.45);
  font-size: 13px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 9px;
}

.footer-bottom b {
  font-weight: 400;
  color: rgba(255,255,255,.2);
}

.footer-bottom a {
  color: rgba(255,255,255,.45);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* =========================================================
   FOOTER WATERMARK
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
}


/* Large faint ELEVARE behind the footer */

.footer-watermark {
    position: absolute;

    left: 50%;
    bottom: 85px;

    transform: translateX(-50%);

    font-family: "Playfair Display", serif;

    font-size: clamp(100px, 20vw, 220px);

    font-weight: 500;

    letter-spacing: .04em;

    line-height: .8;

    color: rgba(255, 255, 255, 0.035);

    white-space: nowrap;

    pointer-events: none;

    user-select: none;

    z-index: 0;
}


/* Keep the actual footer content above the watermark */

.site-footer .container-fluid {
    position: relative;

    z-index: 2;
}


/* Make sure footer content remains readable */

.site-footer .footer-brand,
.site-footer .footer-about,
.site-footer .socials,
.site-footer h4,
.site-footer .contact-line,
.site-footer a,
.site-footer .footer-bottom {
    position: relative;

    z-index: 2;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .nav-actions {
        margin-top: 15px;
        padding-bottom: 10px;
    }

    .navbar-nav {
        margin-top: 15px;
    }

    .about-hero-content {
        padding-left: 6vw;
        padding-right: 5vw;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ecosystem-center {
        grid-column: 1 / 3;
        grid-row: auto;
    }

}


@media (max-width: 991px) {

    .about-hero-content {
        min-height: auto;
        padding: 80px 30px;
    }

    .about-hero-image {
        height: 500px;
    }

    .section-copy {
        padding-left: 0;
    }

    .belief-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .belief-visual {
        align-self: center;
    }

    .livelihood-image {
        height: 500px;
    }

    .livelihood-content {
        padding: 70px 30px;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .elevare-navbar {
        padding: 8px 10px;
    }

    .navbar-brand img {
        width: 125px;
    }

    .nav-actions {
        flex-wrap: wrap;
    }

    .about-hero-content {
        padding: 65px 25px;
    }

    .about-hero-content h1 {
        font-size: 49px;
    }

    .about-hero-image {
        height: 390px;
    }

    .hero-image-caption {
        left: 15px;
        bottom: 15px;
    }

    .who-section,
    .purpose-section,
    .ecosystem-section,
    .care-section,
    .values-section {
        padding: 80px 0;
    }

    .editorial-image {
        height: 430px;
    }

    .section-copy h2 {
        font-size: 45px;
    }

    .purpose-item {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .purpose-icon {
        display: none;
    }

    .purpose-content p {
        font-size: 13px;
    }

    .belief-section {
        padding: 80px 0;
    }

    .belief-visual {
        width: 260px;
        height: 260px;
    }

    .belief-word {
        font-size: 27px;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-center {
        grid-column: auto;
    }

    .ecosystem-item {
        min-height: 230px;
    }

    .livelihood-image {
        height: 400px;
    }

    .livelihood-content {
        padding: 60px 25px;
    }

    .livelihood-points > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .care-image {
        height: 430px;
    }

    .care-overlay {
        grid-template-columns: 1fr;
    }

    .care-overlay > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.2);
        padding: 8px 0;
    }

    .care-overlay > div:last-child {
        border-bottom: 0;
    }

    .value-row {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .value-description {
        grid-column: 2;
    }

    .value-name {
        font-size: 20px;
    }

    .promise-section {
        padding: 90px 20px;
    }

    .promise-content h2 {
        font-size: 44px;
    }

    .cta-inner {
        padding: 0 10px;
    }

    .cta-buttons {
        min-width: 0;
    }

    .footer-bottom {
        flex-direction: column;
    }

}


@media (max-width: 480px) {

    .about-hero-content h1 {
        font-size: 42px;
    }

    .about-hero-image {
        height: 330px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .ecosystem-center {
        flex-direction: column;
    }

    .care-copy h2 {
        font-size: 48px;
    }

    .cta-inner h2 {
        font-size: 48px;
    }

}