/* =========================================================
   ELEVARE TRAINING PAGE
========================================================= */

:root {

    --green: #00483d;
    --green-dark: #002d27;

    --gold: #c9913d;
    --gold-light: #d9aa64;

    --burgundy: #681c32;

    --cream: #f8f4ee;
    --cream-dark: #f0e9df;

    --white: #ffffff;

    --text: #171918;
    --muted: #69706c;

    --border: rgba(0, 72, 61, .13);

}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    background: var(--cream);

    color: var(--text);

    font-family:
        "DM Sans",
        sans-serif;

}


h1,
h2,
h3 {

    font-family:
        "Playfair Display",
        serif;

}


a {
    text-decoration: none;
}


button {
    font-family: inherit;
}


/* =========================================================
   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
========================================================= */

.section-eyebrow {

    display: block;

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;

}


.section-heading.centered {

    max-width: 760px;

    margin:
        0
        auto
        55px;

    text-align: center;

}


.section-heading h2 {

    margin: 0 0 18px;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: 1.05;

    font-weight: 500;

}


.section-heading h2 span {

    color: var(--gold);

}


.section-heading p {

    max-width: 650px;

    margin: auto;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   HERO
========================================================= */

.training-hero {

    padding:
        25px
        0
        85px;

    background: var(--cream);

}


.training-hero-grid {

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    min-height: 620px;

    align-items: center;

    gap: 70px;

}


.training-hero-content {

    padding:
        25px
        0;

}


.hero-breadcrumb {

    display: flex;

    gap: 10px;

    margin-bottom: 65px;

    color: #858984;

    font-size: 10px;

}


.hero-breadcrumb a {

    color: var(--green);

    font-weight: 600;

}


.training-hero h1 {

    margin: 0 0 28px;

    font-size:
        clamp(52px, 6vw, 78px);

    line-height: .95;

    font-weight: 500;

}


.training-hero h1 span {

    color: var(--gold);

}


.training-hero-content > p {

    max-width: 520px;

    margin-bottom: 30px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.primary-btn,
.secondary-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding:
        14px
        20px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .08em;

    transition: .3s ease;

}


.primary-btn {

    background: var(--green);

    color: #fff;

}


.primary-btn:hover {

    background: var(--gold);

    color: #fff;

}


.secondary-btn {

    border:
        1px solid
        var(--green);

    color: var(--green);

}


.secondary-btn:hover {

    background: var(--green);

    color: #fff;

}


.training-hero-image {

    position: relative;

    height: 600px;

    overflow: hidden;

}


.training-hero-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(0,45,39,.55)
        );

    pointer-events: none;

}


.training-hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.hero-image-label {

    position: absolute;

    z-index: 2;

    left: 28px;

    bottom: 25px;

    display: flex;

    flex-direction: column;

    color: #fff;

}


.hero-image-label span {

    color: var(--gold);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .18em;

}


.hero-image-label strong {

    font-family:
        "Playfair Display",
        serif;

    font-size: 25px;

    font-weight: 500;

}


/* =========================================================
   INTRO
========================================================= */

.training-intro {

    padding:
        100px
        0;

    background: #fff;

}


.intro-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 100px;

    max-width: 1000px;

    margin: auto;

}


.intro-heading h2 {

    margin: 0;

    font-size:
        clamp(40px, 5vw, 60px);

    line-height: 1.05;

    font-weight: 500;

}


.intro-heading h2 span {

    color: var(--gold);

}


.intro-copy {

    padding-top: 35px;

}


.intro-copy p {

    margin-bottom: 22px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.9;

}


/* =========================================================
   PATHWAYS
========================================================= */

.training-pathways {

    padding:
        100px
        0;

    background: var(--cream);

}


.pathway-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);

}


.pathway-card {

    min-height: 390px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding:
        35px
        30px;

    border-right:
        1px solid
        var(--border);

}


.pathway-card:last-child {

    border-right: 0;

}


.pathway-card.featured {

    background: var(--green);

    color: #fff;

}


.pathway-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

}


.pathway-number {

    color: var(--gold);

    font-family:
        "Playfair Display",
        serif;

    font-size: 13px;

}


.pathway-top i {

    color: var(--gold);

    font-size: 22px;

}


.pathway-card h3 {

    margin:
        35px
        0
        15px;

    font-size: 30px;

    font-weight: 500;

}


.pathway-card p {

    margin: 0;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;

}


.pathway-card.featured p {

    color: rgba(255,255,255,.68);

}


.pathway-card a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    width: fit-content;

    padding-bottom: 7px;

    border-bottom:
        1px solid
        var(--gold);

    color: var(--green);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .06em;

}


.pathway-card.featured a {

    color: #fff;

}


/* =========================================================
   LIVELIHOOD
========================================================= */

.livelihood-section {

    padding:
        100px
        0;

    background: #fff;

}


.livelihood-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;

}


.livelihood-image {

    position: relative;

    height: 600px;

}


.livelihood-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.image-caption {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    display: flex;

    justify-content: space-around;

    padding: 17px;

    background: rgba(0,45,39,.9);

}


.image-caption span {

    color: var(--gold);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .12em;

}


.livelihood-content {

    max-width: 550px;

}


.livelihood-content h2 {

    margin: 0 0 15px;

    font-size:
        clamp(40px, 5vw, 50px);

    line-height: 1.05;

    font-weight: 500;

}


.livelihood-content h2 span {

    color: var(--gold);

}


.livelihood-content > p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;

}


.livelihood-points {
    margin: 10px 0;
}

.livelihood-points > div {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 18px;
    row-gap: 6px;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    align-items: start;
}

.livelihood-points > div:last-child {
    border-bottom: 1px solid var(--border);
}

/* Number */
.livelihood-points span {
    grid-row: 1 / span 2;
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 13px;
    line-height: 1;
    margin-top: 4px;
}

/* Title */
.livelihood-points strong {
    grid-column: 2;
    display: block;
    font-size: 17px;
    color: var(--text);
    margin: 0;
}

/* Description */
.livelihood-points p {
    grid-column: 2;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    max-width: 420px;
}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding-bottom: 8px;

    border-bottom:
        1px solid
        var(--gold);

    color: var(--green);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .08em;

}


.text-link:hover {

    color: var(--gold);

}


/* =========================================================
   AUDIENCE
========================================================= */

.audience-section {

    padding:
        100px
        0;

    background: var(--cream);

}


.audience-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    background: var(--border);

    border:
        1px solid
        var(--border);

}


.audience-item {

    min-height: 270px;

    padding: 35px;

    background: var(--cream);

    text-align: center;

}


.audience-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        0
        auto
        25px;

    border:
        1px solid
        rgba(201,145,61,.5);

    border-radius: 50%;

    color: var(--gold);

    font-size: 20px;

}


.audience-item h3 {

    margin-bottom: 12px;

    font-size: 25px;

    font-weight: 500;

}


.audience-item p {

    margin: auto;

    max-width: 210px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;

}


/* =========================================================
   APPROACH
========================================================= */

.approach-section {

    padding:
        100px
        0;

    background: var(--green-dark);

    color: #fff;

}


.approach-wrapper {

    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 100px;

    align-items: start;

    max-width: 1050px;

    margin: auto;

}


.approach-heading h2 {

    margin: 0 0 25px;

    font-size:
        clamp(40px, 5vw, 58px);

    line-height: 1.05;

    font-weight: 500;

}


.approach-heading h2 span {

    color: var(--gold);

}


.approach-heading > p {

    color: rgba(255,255,255,.62);

    font-size: 12px;

    line-height: 1.8;

}


.approach-list {

    border-top:
        1px solid
        rgba(255,255,255,.15);

}


.approach-row {

    display: grid;

    grid-template-columns:
        50px
        1fr;

    gap: 20px;

    padding:
        25px
        0;

    border-bottom:
        1px solid
        rgba(255,255,255,.15);

}


.approach-row > span {

    color: var(--gold);

    font-family:
        "Playfair Display",
        serif;

    font-size: 12px;

}


.approach-row h3 {

    margin:
        0
        0
        7px;

    font-size: 26px;

    font-weight: 500;

}


.approach-row p {

    max-width: 500px;

    margin: 0;

    color: rgba(255,255,255,.58);

    font-size: 11px;

    line-height: 1.7;

}


/* =========================================================
   CTA
========================================================= */

.training-cta {

    padding:
        80px
        0;

    background: var(--cream);

}


.training-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding:
        50px;

    border:
        1px solid
        rgba(201,145,61,.35);

    background: #fff;

}


.training-cta h2 {

    margin: 0 0 8px;

    font-size: 42px;

    font-weight: 500;

}


.training-cta p {

    margin: 0;

    color: var(--muted);

    font-size: 12px;

}


.cta-buttons {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

}


.cta-primary,
.cta-secondary {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding:
        14px
        20px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .07em;

}


.cta-primary {

    background: var(--green);

    color: #fff;

}


.cta-primary:hover {

    background: var(--gold);

    color: #fff;

}


.cta-secondary {

    border:
        1px solid
        var(--green);

    color: var(--green);

}


.cta-secondary:hover {

    background: var(--green);

    color: #fff;

}


/* =========================================================
   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;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .navbar-nav {

        gap: 0;

        padding: 15px 0;

    }


    .nav-link {

        padding:
            10px
            0 !important;

    }


    .nav-link::after {

        display: none;

    }


    .nav-actions {

        padding-bottom: 20px;

        flex-wrap: wrap;

    }


    .training-hero-grid {

        grid-template-columns:
            1fr
            1fr;

        gap: 35px;

    }


    .training-hero-image {

        height: 520px;

    }


    .pathway-grid {

        grid-template-columns:
            1fr
            1fr;

    }


    .pathway-card:nth-child(2) {

        border-right: 0;

    }


    .pathway-card:nth-child(-n+2) {

        border-bottom:
            1px solid
            var(--border);

    }


    .audience-grid {

        grid-template-columns:
            1fr
            1fr;

    }


    .livelihood-grid {

        gap: 45px;

    }


    .approach-wrapper {

        gap: 50px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {


    .training-hero {

        padding-bottom: 60px;

    }


    .training-hero-grid {

        display: flex;

        flex-direction: column;

        gap: 30px;

    }


    .training-hero-content {

        width: 100%;

    }


    .hero-breadcrumb {

        margin-bottom: 40px;

    }


    .training-hero h1 {

        font-size: 52px;

    }


    .training-hero-image {

        width: 100%;

        height: 430px;

    }


    .training-intro,
    .training-pathways,
    .livelihood-section,
    .audience-section,
    .approach-section {

        padding:
            70px
            0;

    }


    .intro-grid {

        display: block;

    }


    .intro-copy {

        padding-top: 30px;

    }


    .pathway-grid {

        grid-template-columns: 1fr;

    }


    .pathway-card {

        min-height: 330px;

        border-right: 0;

        border-bottom:
            1px solid
            var(--border);

    }


    .pathway-card:last-child {

        border-bottom: 0;

    }


    .livelihood-grid {

        display: flex;

        flex-direction: column;

    }


    .livelihood-image {

        width: 100%;

        height: 450px;

    }


    .livelihood-content {

        width: 100%;

    }


    .audience-grid {

        grid-template-columns: 1fr;

    }


    .audience-item {

        min-height: 230px;

    }


    .approach-wrapper {

        display: block;

    }


    .approach-list {

        margin-top: 50px;

    }


    .training-cta {

        padding:
            55px
            0;

    }


    .training-cta-inner {

        align-items: flex-start;

        flex-direction: column;

        padding:
            35px
            25px;

    }


    .training-cta h2 {

        font-size: 35px;

    }


    .footer-bottom {

        flex-direction: column;

    }


    .footer-bottom a {

        margin:
            0
            15px
            0
            0;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .training-hero h1 {

        font-size: 46px;

    }


    .training-hero-image {

        height: 360px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .primary-btn,
    .secondary-btn {

        justify-content: center;

    }


    .section-heading h2 {

        font-size: 40px;

    }


    .livelihood-image {

        height: 360px;

    }


    .training-cta h2 {

        font-size: 32px;

    }

}