/* =========================================================
   ELEVARE
   HOMEPAGE STYLES
========================================================= */

:root {
    --green: #003c32;
    --green-dark: #002b24;
    --green-light: #075347;

    --gold: #c99745;
    --gold-light: #d9b16a;

    --burgundy: #641d32;

    --cream: #f8f4ee;
    --cream-dark: #eee6dc;

    --white: #ffffff;
    --black: #171918;

    --text: #242624;
    --muted: #77736d;

    --border: rgba(0, 60, 50, .10);
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    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;
}

.eyebrow {
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}


/* ================= 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);
  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;
}

/* ================= HERO ================= */
.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: 48% 52%;
  background: var(--green);
}

.hero-content {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 8% 50%, rgba(31, 92, 79, .35), transparent 38%),
    linear-gradient(135deg, #002f28, #001e1a);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 48px 7vw 45px 6vw;
}

.hero h1 {
  color: #fff;
  font-size: clamp(48px, 5vw, 76px);
  line-height:58px;
  margin: 13px 0 18px;
  letter-spacing: -.025em;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-copy p {
  color: rgba(255,255,255,.78);
  max-width: 440px;
  line-height: 1.65;
  font-size: 14px;
  margin-bottom: 20px;
}

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

.hero-image {
  min-height: 325px;
  background:
    linear-gradient(90deg, rgba(0,47,40,.15), transparent 35%),
    url("../hero1.jpg") center center / cover no-repeat;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    max-width: 700px;

    margin: 0 auto 45px;
}

.section-heading h2,
.impact-heading h2 {
    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.08;

    margin-bottom: 15px;
}

.section-heading p,
.impact-heading p {
    max-width: 620px;

    margin: auto;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   APPROACH
========================================================= */

/* =========================================================
   ELEVARE APPROACH
========================================================= */

.approach-section {

    position: relative;

    padding: 90px 0 85px;

    background: #fbf8f3;

    overflow: hidden;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.approach-section .section-heading {

    max-width: 850px;

    margin: 0 auto 52px;

}

.approach-section .eyebrow {

    display: block;

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .18em;

    margin-bottom: 15px;

}


.approach-section .section-heading h2 {

    font-family: "Playfair Display", serif;

    color: var(--green);

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 500;

    line-height: 1.05;

    margin: 0;

}


.approach-section .section-heading h2 .gold-text {

    color: var(--gold);

}


/* =========================================================
   DECORATIVE DIVIDER
========================================================= */

.approach-divider {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    margin: 22px auto 17px;

}

.approach-divider span {

    width: 95px;

    height: 1px;

    background: rgba(201,151,69,.55);

}

.approach-divider i {

    color: var(--gold);

    font-size: 17px;

}


.approach-section .section-heading p {

    max-width: 720px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   APPROACH GRID
========================================================= */

.approach-grid {

    position: relative;

    border-top: 1px solid rgba(0,63,53,.12);

    border-bottom: 1px solid rgba(0,63,53,.12);

}


/* =========================================================
   APPROACH CARD
========================================================= */

.approach-card {

    min-height: 330px;

    padding: 40px 30px 35px;

    text-align: center;

    border-right: 1px solid rgba(0,63,53,.12);

    display: flex;

    flex-direction: column;

    align-items: center;

    transition:
        background .3s ease,
        transform .3s ease;

}


.approach-card:last-child {

    border-right: 0;

}


.approach-card:hover {

    background: rgba(255,255,255,.7);

}


/* =========================================================
   ICON
========================================================= */

.approach-icon {

    width: 74px;

    height: 74px;

    margin-bottom: 21px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.approach-card:hover .approach-icon {

    transform: translateY(-4px);

}


/* =========================================================
   BEAUTY — GREEN + GOLD
========================================================= */

.approach-beauty .approach-icon {

    background: var(--green);

    color: var(--gold);

    border: 1px solid var(--green);

    box-shadow:
        0 8px 20px rgba(0,63,53,.12);

}

.approach-beauty h3 {

    color: var(--green);

}


/* =========================================================
   SKILLS — BURGUNDY + GOLD
========================================================= */

.approach-skills .approach-icon {

    background: var(--burgundy);

    color: var(--gold);

    border: 1px solid var(--burgundy);

    box-shadow:
        0 8px 20px rgba(101,31,53,.12);

}

.approach-skills h3 {

    color: var(--burgundy);

}


/* =========================================================
   CARE — GREEN + GOLD
========================================================= */

.approach-care .approach-icon {

    background: var(--green);

    color: var(--gold);

    border: 1px solid var(--green);

    box-shadow:
        0 8px 20px rgba(0,63,53,.12);

}

.approach-care h3 {

    color: var(--green);

}


/* =========================================================
   COMMUNITY — GOLD + WHITE
========================================================= */

.approach-impact .approach-icon {

    background: var(--gold);

    color: #fff;

    border: 1px solid var(--gold);

    box-shadow:
        0 8px 20px rgba(201,151,69,.18);

}

.approach-impact h3 {

    color: #b27b2e;

}


/* =========================================================
   CARD HEADINGS
========================================================= */

.approach-card h3 {

    font-family: "DM Sans", sans-serif;

    font-size: 16px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .01em;

    margin: 0 0 13px;

}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.approach-card p {

    max-width: 245px;

    min-height: 85px;

    margin: 0 auto 18px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.75;

}


/* =========================================================
   CARD LINK
========================================================= */

.approach-card a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: auto;

    padding-bottom: 5px;

    border-bottom: 1px solid var(--gold);

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .08em;

    transition:
        color .25s ease,
        gap .25s ease;

}


.approach-card a i {

    font-size: 12px;

}


.approach-card a:hover {

    color: var(--green);

    gap: 11px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .approach-card {

        min-height: 310px;

        padding: 35px 25px;

    }

    .approach-card:nth-child(2) {

        border-right: 0;

    }

    .approach-card:nth-child(1),
    .approach-card:nth-child(2) {

        border-bottom: 1px solid rgba(0,63,53,.12);

    }

    .approach-card:nth-child(3),
    .approach-card:nth-child(4) {

        border-bottom: 0;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .approach-section {

        padding: 65px 0;

    }

    .approach-section .section-heading {

        padding: 0 15px;

        margin-bottom: 40px;

    }

    .approach-section .section-heading h2 {

        font-size: 40px;

    }

    .approach-divider span {

        width: 55px;

    }

    .approach-card {

        min-height: auto;

        padding: 38px 25px 40px;

        border-right: 0;

        border-bottom: 1px solid rgba(0,63,53,.12);

    }

    .approach-card:last-child {

        border-bottom: 0;

    }

    .approach-card p {

        min-height: auto;

        max-width: 300px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .approach-section .section-heading h2 {

        font-size: 36px;

    }

    .approach-section .section-heading p {

        font-size: 12px;

    }

    .approach-icon {

        width: 68px;

        height: 68px;

        font-size: 25px;

    }

    .approach-card h3 {

        font-size: 15px;

    }

}


/* =========================================================
   SPLIT SECTIONS
========================================================= */

.split-section {
    background: white;
}

.split-image {
    height: 100%;

    min-height: 480px;
}

.split-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.split-content {
    min-height: 480px;

    padding: 80px 9%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #f5eee6;
}

.split-content h2 {
    font-size: clamp(35px, 4vw, 54px);

    line-height: 1.05;

    margin-bottom: 20px;
}

.split-content p {
    max-width: 520px;

    font-size: 13px;

    line-height: 1.8;

    color: var(--muted);

    margin-bottom: 22px;
}

.mini-tags {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;

    margin-bottom: 28px;
}

.mini-tags span {
    font-size: 12px;

    font-weight: 700;

    letter-spacing: .1em;

    color: var(--gold);

    border-right: 1px solid var(--gold);

    padding-right: 9px;
}

.dark-btn {
    align-self: flex-start;

    background: var(--green);

    color: white;
}

.dark-btn:hover {
    background: var(--green-dark);

    color: white;
}

.professionals-section .split-content {
    background: var(--green);

    color: white;
}

.professionals-section .split-content p {
    color: rgba(255,255,255,.7);
}


/* =========================================================
   CARE
========================================================= */

.care-section {
    padding: 100px 0;

    background: #fbf8f3;
}

.care-image {
    height: 520px;

    overflow: hidden;
}

.care-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.care-content {
    padding-left: 30px;
}

.care-content h2 {
    font-size: clamp(36px, 4vw, 55px);

    line-height: 1.05;

    margin-bottom: 20px;
}

.care-content h2 span {
    color: var(--gold);
}

.care-content p {
    max-width: 530px;

    color: var(--muted);

    line-height: 1.8;

    font-size: 13px;
}

.care-list {
    display: flex;

    flex-wrap: wrap;

    gap: 12px 22px;

    margin: 25px 0;
}

.care-list div {
    font-size: 11px;

    font-weight: 600;
}

.care-list i {
    color: var(--gold);

    margin-right: 5px;
}

.gold-btn {
    background: var(--gold);

    color: var(--green-dark);
}

.gold-btn:hover {
    background: var(--gold-light);

    color: var(--green-dark);
}


/* =========================================================
   ACADEMY
========================================================= */

.academy-section {
    background: #f0e8df;
}

.academy-image {
    min-height: 500px;

    height: 100%;
}

.academy-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.academy-content {
    min-height: 500px;

    padding: 75px 10%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.academy-content h2 {
    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.02;

    margin-bottom: 20px;
}

.academy-content p {
    max-width: 560px;

    font-size: 13px;

    line-height: 1.8;

    color: var(--muted);
}

.academy-features {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;

    margin: 25px 0 30px;
}

.academy-features div {
    display: flex;

    flex-direction: column;

    gap: 8px;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;
}

.academy-features i {
    color: var(--gold);

    font-size: 21px;
}


/* =========================================================
   IMPACT
========================================================= */

.impact-section {
    padding: 90px 0;
    background: var(--green);
    color: white;
}

.impact-heading p {
    color: rgba(255,255,255,.68);
    font-size: 13px;
}

.impact-grid {
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.impact-item {
    min-height: 210px;
    padding: 35px 25px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.12);
}

.impact-item:last-child {
    border-right: 0;
}

.impact-item i {
    color: var(--gold);
    font-size: 25px;
}

.impact-item h3 {
    font-family: "DM Sans", sans-serif;
    color: var(--gold);
    font-size: 19px;
    margin: 15px 0 8px;
}

.impact-item p {
    max-width: 180px;
    margin: auto;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    padding: 90px 0 80px;

    background: #fbf8f3;
}

.product-card {
    height: 100%;

    position: relative;

    background: white;

    border: 1px solid rgba(0,47,40,.09);

    border-radius: 5px;

    overflow: hidden;

    transition: .25s ease;
}

.product-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(0,0,0,.07);
}

.wishlist {
    position: absolute;

    top: 10px;
    right: 10px;

    z-index: 5;

    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(0,0,0,.1);

    border-radius: 50%;

    background: rgba(255,255,255,.9);

    color: #75646a;

    font-size: 16px;
}

.wishlist:hover {
    color: var(--burgundy);

    border-color: var(--burgundy);
}

.product-image {
    height: 205px;

    background: #f7f3ed;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-info small {
    color: #8b8b84;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .05em;
}

.product-info h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    min-height: 38px;
    margin: 5px 0;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 6px;
}

.rating i {
    color: var(--gold);

    font-size: 10px;
}

.rating span {
    color: #999;

    font-size: 9px;

    margin-left: 4px;
}

.product-info strong {
    display: block;

    font-size: 12px;

    margin-bottom: 10px;
}

.add-cart {
    width: 100%;

    border: 0;

    background: var(--green);

    color: white;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .04em;

    padding: 10px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    transition: .25s ease;
}

.add-cart:hover {
    background: var(--gold);

    color: var(--green-dark);
}

.products-cta {
    text-align: center;

    margin-top: 35px;
}

.outline-gold-btn {
    color: var(--green);

    border: 1px solid var(--gold);

    background: transparent;
}

.outline-gold-btn:hover {
    background: var(--gold);

    color: var(--green-dark);
}


/* =========================================================
   ECOSYSTEM
========================================================= */

.ecosystem-section {
    padding: 90px 0;

    background: white;
}

.ecosystem-flow {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin-top: 50px;
}

.ecosystem-item {
    text-align: center;

    min-width: 125px;
}

.ecosystem-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 12px;

    border: 1px solid rgba(201,151,69,.5);

    border-radius: 50%;

    color: var(--gold);

    display: grid;
    place-items: center;

    font-size: 22px;
}

.ecosystem-item span {
    display: block;

    color: var(--gold);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .1em;
}

.ecosystem-item strong {
    display: block;

    margin-top: 4px;

    font-family: "Playfair Display", serif;

    font-size: 15px;
}

.ecosystem-arrow {
    color: var(--gold);

    font-size: 18px;
}


/* =========================================================
   STANDARD
========================================================= */

.standard-section {
    padding: 25px 0 0;
    background: white;
}

.standard-box {
    background: var(--green);
    color: white;
    padding: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.standard-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    margin: 0;
}

.standard-values {
    max-width: 450px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.standard-values span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--gold);
    border: 1px solid rgba(201,151,69,.35);
    padding: 8px 10px;
}


/* ================= FINAL CTA ================= */
.final-cta {
  margin: 0 auto;
  min-height: 265px;
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  background: var(--cream-2);
}

.cta-copy {
  padding: 28px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-copy h2 {
  font-size: 40px;
  margin: 0 0 5px;
}

.cta-copy p {
  margin: 0 0 13px;
  color: #555;
  font-size: 14px;
}

.cta-image {
  background: url("assets/cta.png") center center / cover no-repeat;
}

/* ================= FOOTER ================= */
.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;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .footer-watermark {

        font-size: 120px;

        bottom: -15px;

        opacity: .8;

    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .navbar-nav {
        gap: 15px;
    }

    .nav-actions {
        gap: 3px;
    }

    .login-btn,
    .book-btn {
        padding: 9px 8px;
    }

}


@media (max-width: 991px) {

    .elevare-navbar {
        min-height: 65px;
    }

    .navbar-collapse {
        padding: 20px 0;
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 13px 0 !important;
    }

    .nav-link::after {
        display: none;
    }

    .nav-actions {
        padding-top: 15px;

        flex-wrap: wrap;
    }

    .hero-copy {
        padding: 60px 30px;
    }

    .hero-image {
        height: 400px;
    }

    .approach-card {
        border-bottom: 1px solid var(--border);
    }

    .approach-card:nth-child(2) {
        border-right: 0;
    }

    .split-content {
        min-height: auto;

        padding: 60px 30px;
    }

    .care-content {
        padding-left: 0;
    }

    .academy-content {
        min-height: auto;

        padding: 60px 30px;
    }

    .ecosystem-flow {
        flex-wrap: wrap;
    }

    .ecosystem-arrow {
        display: none;
    }

    .standard-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 40px 30px;
    }

}


@media (max-width: 767px) {

    .hero-section {
        margin-top: 64px;
    }

    .hero-copy {
        padding: 55px 22px;
    }

    .hero-copy h1 {
        font-size: 43px;
    }

    .hero-image {
        height: 300px;
    }

    .approach-section,
    .care-section,
    .products-section,
    .ecosystem-section,
    .impact-section {
        padding: 65px 0;
    }

    .approach-card {
        border-right: 0;
    }

    .split-image,
    .academy-image {
        min-height: 320px;
        height: 320px;
    }

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

    .impact-item {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .impact-item:nth-child(even) {
        border-right: 0;
    }

    .impact-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .product-image {
        height: 170px;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 12px;
    }

    .standard-box {
        border-radius: 8px;
    }

    .cta-inner {
        grid-template-columns: 1fr;
    }

    .cta-copy {
        padding: 45px 25px;
    }

    .cta-image {
        min-height: 260px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom a {
        margin-left: 0;

        margin-right: 15px;
    }

}


@media (max-width: 480px) {

    .hero-copy h1 {
        font-size: 38px;
    }

    .hero-buttons a {
        width: 100%;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .product-image {
        height: 145px;
    }

    .product-info h3 {
        min-height: 50px;
    }

    .ecosystem-item {
        min-width: 105px;
    }

}


/* =========================================================
   ELEVARE HOMEPAGE — MOBILE/TABLET RESPONSIVE OVERRIDES
========================================================= */

:root {
    --green-deep: #002b24;
    --cream-2: #f5eee6;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* TABLET */
@media (max-width: 991.98px) {

    .navbar {
        min-height: 64px;
        padding: 8px 0;
    }

    .navbar > .container,
    .navbar > .container-fluid {
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand-mark {
        width: 30px;
        height: 34px;
        font-size: 28px;
    }

    .brand-copy strong {
        font-size: 21px;
    }

    .navbar-toggler {
        border: 1px solid rgba(255,255,255,.25);
        padding: 7px 9px;
        border-radius: 4px;
        box-shadow: none !important;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(201,151,69,.25) !important;
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }

    .navbar-collapse {
        padding: 15px 0 5px;
        border-top: 1px solid rgba(255,255,255,.08);
        margin-top: 8px;
    }

    .navbar-nav {
        width: 100%;
        gap: 0;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 12px 4px !important;
        font-size: 11px;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    .nav-actions {
        width: 100%;
        padding-top: 14px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 60px 30px 55px;
    }

    .hero h1 {
        font-size: clamp(43px, 7vw, 62px);
        line-height: 1.02;
    }

    .hero-image {
        min-height: 390px;
        height: 390px;
    }

    .split-content {
        min-height: auto;
        padding: 60px 30px;
    }

    .split-image {
        min-height: 420px;
    }

    .care-content {
        padding-left: 0;
    }

    .academy-content {
        min-height: auto;
        padding: 60px 35px;
    }

    .academy-image {
        min-height: 420px;
        height: 420px;
    }

    .ecosystem-flow {
        flex-wrap: wrap;
        gap: 28px 20px;
    }

    .ecosystem-arrow {
        display: none;
    }

    .standard-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 45px 35px;
    }

    .final-cta {
        grid-template-columns: 1fr 1fr;
    }
}


/* MOBILE */
@media (max-width: 767.98px) {

    .container,
    .container-fluid {
        width: 100%;
    }

    /* NAV */
    .navbar {
        min-height: 62px;
    }

    .navbar-brand {
        gap: 7px;
    }

    .brand-mark {
        width: 27px;
        height: 31px;
        font-size: 25px;
        border-left-width: 2px;
    }

    .brand-copy strong {
        font-size: 19px;
    }

    .brand-copy small {
        font-size: 5px;
    }

    .nav-actions .icon-btn {
        width: 36px;
        height: 38px;
    }

    .nav-actions .login-btn,
    .nav-actions .book-btn {
        flex: 1 1 auto;
        text-align: center;
    }

    /* HERO */
    .hero {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
        order: 1;
    }

    .hero-image {
        width: 100%;
        order: 2;
        min-height: 300px;
        height: 300px;
    }

    .hero-copy {
        padding: 50px 22px 45px;
    }

    .hero h1,
    .hero-copy h1 {
        font-size: clamp(38px, 11vw, 48px);
        line-height: 1.04;
        margin: 10px 0 16px;
    }

    .hero-copy p {
        font-size: 13px;
        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* HEADINGS */
    .section-heading,
    .impact-heading {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        margin-bottom: 35px;
    }

    .section-heading h2,
    .impact-heading h2 {
        font-size: 35px;
        line-height: 1.08;
    }

    .section-heading p,
    .impact-heading p {
        font-size: 12px;
        line-height: 1.75;
    }

    /* APPROACH */
    .approach-section {
        padding: 65px 0;
    }

    .approach-section .section-heading {
        padding: 0 20px;
        margin-bottom: 35px;
    }

    .approach-section .section-heading h2 {
        font-size: 37px;
    }

    .approach-divider span {
        width: 42px;
    }

    .approach-card {
        min-height: auto;
        padding: 36px 22px 38px;
        border-right: 0;
        border-bottom: 1px solid rgba(0,63,53,.12);
    }

    .approach-card:last-child {
        border-bottom: 0;
    }

    .approach-icon {
        width: 66px;
        height: 66px;
        font-size: 24px;
    }

    .approach-card p {
        min-height: auto;
        max-width: 320px;
        font-size: 12px;
        line-height: 1.75;
    }

    /* SPLIT */
    .split-section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .split-section .row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    .split-image {
        min-height: 300px;
        height: 300px;
    }

    .split-content {
        min-height: auto;
        padding: 50px 22px;
    }

    .split-content h2 {
        font-size: 37px;
        line-height: 1.08;
    }

    .split-content p {
        font-size: 12px;
        line-height: 1.8;
    }

    .dark-btn,
    .gold-btn {
        width: 100%;
        text-align: center;
    }

    /* CARE */
    .care-section {
        padding: 65px 0;
    }

    .care-image {
        height: 300px;
    }

    .care-content {
        padding: 38px 20px 0;
    }

    .care-content h2 {
        font-size: 37px;
    }

    .care-content p {
        font-size: 12px;
        line-height: 1.8;
    }

    .care-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .care-list div {
        font-size: 10px;
    }

    /* ACADEMY */
    .academy-image {
        min-height: 300px;
        height: 300px;
    }

    .academy-content {
        min-height: auto;
        padding: 50px 22px;
    }

    .academy-content h2 {
        font-size: 38px;
        line-height: 1.06;
    }

    .academy-content p {
        font-size: 12px;
        line-height: 1.8;
    }

    .academy-features {
        grid-template-columns: 1fr 1fr;
        gap: 20px 15px;
    }

    .academy-features div {
        font-size: 10px;
    }

    /* IMPACT */
    .impact-section {
        padding: 65px 0;
    }

    .impact-grid {
        margin-top: 35px;
    }

    .impact-item {
        min-height: 175px;
        padding: 30px 15px;
    }

    .impact-item h3 {
        font-size: 16px;
    }

    .impact-item p {
        max-width: 150px;
        font-size: 11px;
    }

    /* PRODUCTS */
    .products-section {
        padding: 65px 0 60px;
    }

    .products-section .row {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 14px;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 11px;
    }

    .product-info h3 {
        font-size: 12px;
        min-height: 34px;
    }

    .product-info strong {
        font-size: 11px;
    }

    .add-cart {
        font-size: 10px;
        padding: 9px 8px;
    }

    .wishlist {
        top: 7px;
        right: 7px;
        width: 30px;
        height: 30px;
    }

    /* ECOSYSTEM */
    .ecosystem-section {
        padding: 65px 0;
    }

    .ecosystem-flow {
        margin-top: 35px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 10px;
    }

    .ecosystem-item {
        min-width: 0;
        width: 100%;
    }

    /* STANDARD */
    .standard-section {
        padding: 15px 0 0;
    }

    .standard-box {
        padding: 38px 22px;
        gap: 25px;
        border-radius: 7px;
    }

    .standard-heading h2 {
        font-size: 35px;
    }

    .standard-values {
        width: 100%;
    }

    .standard-values span {
        font-size: 10px;
    }

    /* CTA */
    .final-cta {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .cta-copy {
        order: 1;
        padding: 45px 22px;
    }

    .cta-copy h2 {
        font-size: 36px;
        line-height: 1.08;
    }

    .cta-copy p {
        font-size: 12px;
        line-height: 1.7;
    }

    .cta-copy .btn {
        width: 100%;
    }

    .cta-image {
        order: 2;
        min-height: 260px;
        height: 260px;
    }

    /* FOOTER */
    .site-footer {
        padding-top: 55px;
    }

    .site-footer .row {
        --bs-gutter-y: 32px;
    }

    .footer-about {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.7;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: 11px;
    }

    .footer-watermark {
        font-size: 90px;
        bottom: -8px;
    }
}


/* SMALL PHONES */
@media (max-width: 575.98px) {

    .hero-copy {
        padding: 43px 18px 40px;
    }

    .hero h1,
    .hero-copy h1 {
        font-size: 37px;
    }

    .hero-image {
        height: 270px;
        min-height: 270px;
    }

    .section-heading h2,
    .impact-heading h2 {
        font-size: 32px;
    }

    .approach-section .section-heading h2 {
        font-size: 34px;
    }

    .split-content {
        padding: 43px 18px;
    }

    .split-content h2,
    .care-content h2 {
        font-size: 34px;
    }

    .care-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .academy-content {
        padding: 43px 18px;
    }

    .academy-content h2 {
        font-size: 35px;
    }

    .product-image {
        height: 155px;
    }

    .product-info {
        padding: 9px;
    }

    .product-info h3 {
        font-size: 10px;
        min-height: 42px;
    }

    .product-info strong {
        font-size: 10px;
    }

    .add-cart {
        font-size: 9px;
        padding: 8px 7px;
    }

    .wishlist {
        width: 28px;
        height: 28px;
    }

    .standard-box {
        padding: 32px 18px;
    }

    .standard-heading h2 {
        font-size: 32px;
    }

    .cta-copy {
        padding: 40px 18px;
    }

    .cta-copy h2 {
        font-size: 33px;
    }

    .cta-image {
        min-height: 235px;
        height: 235px;
    }
}


/* VERY SMALL PHONES */
@media (max-width: 420px) {

    .brand-copy strong {
        font-size: 17px;
    }

    .hero h1,
    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-image {
        height: 245px;
        min-height: 245px;
    }

    .approach-section .section-heading h2,
    .section-heading h2,
    .impact-heading h2 {
        font-size: 30px;
    }

    .care-list {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 140px;
    }

    .product-info h3 {
        font-size: 10px;
        min-height: 42px;
    }

    .footer-watermark {
        font-size: 75px;
    }
}
