:root {
    --plugin-green: #003f32;
    --plugin-dark: #002b23;
    --plugin-gold: #c98b2b;
    --plugin-bg: #f8f5ef;
    --plugin-soft: #fffaf2;
    --plugin-border: #eadfce;
    --plugin-muted: #667a75;
    --plugin-white: #ffffff;
    --plugin-shadow: 0 18px 45px rgba(0, 63, 50, .08);
}

/* =========================
   HERO
========================= */

.plugin-hero {
    min-height: 790px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 85px 0;
    background: linear-gradient(135deg, #f8f5ef, #ffffff);
    overflow: hidden;
}

.plugin-hero::before,
.plugin-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.plugin-hero::before {
    width: 470px;
    height: 470px;
    top: -170px;
    right: -170px;
    background: rgba(201, 139, 43, .11);
}

.plugin-hero::after {
    width: 390px;
    height: 390px;
    left: -170px;
    bottom: -180px;
    background: rgba(0, 63, 50, .05);
}

.plugin-hero .container {
    position: relative;
    z-index: 2;
}

.plugin-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

.plugin-eyebrow,
.plugin-section-label,
.plugin-section-heading > span {
    display: inline-block;
    color: var(--plugin-gold);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 12px;
    font-weight: 700;
}

.plugin-hero-content h1 {
    color: var(--plugin-green);
    font-size: 66px;
    line-height: 1.04;
    font-weight: 600;
    margin: 20px 0;
}

.plugin-hero-content h1 span {
    color: var(--plugin-gold);
}

.plugin-hero-lead {
    color: var(--plugin-green) !important;
    font-family: Georgia, serif;
    font-size: 22px !important;
    font-style: italic;
}

.plugin-hero-content > p {
    max-width: 690px;
    color: var(--plugin-muted);
    font-size: 17px;
    line-height: 1.8;
}

.plugin-hero-actions,
.plugin-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 28px;
}

.plugin-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--plugin-green);
    color: var(--plugin-green);
    border-radius: 12px;
    padding: 12px 21px;
    font-weight: 700;
    transition: .25s;
}

.plugin-outline-button:hover {
    background: var(--plugin-green);
    color: #fff;
}

.plugin-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.plugin-hero-tags span {
    background: #fff;
    border: 1px solid var(--plugin-border);
    border-radius: 30px;
    padding: 9px 14px;
    color: var(--plugin-green);
    font-size: 12px;
    font-weight: 600;
}

.plugin-hero-tags i {
    color: var(--plugin-gold);
    margin-right: 5px;
}

/* =========================
   HERO GALLERY
========================= */

.plugin-hero-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: repeat(2, 275px);
    gap: 15px;
}

.plugin-hero-main-image,
.plugin-hero-small-image {
    overflow: hidden;
    box-shadow: var(--plugin-shadow);
}

.plugin-hero-main-image {
    grid-row: 1 / 3;
    border-radius: 220px 38px 38px 38px;
}

.plugin-hero-small-image {
    border-radius: 28px;
}

.plugin-hero-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.plugin-hero-gallery img:hover {
    transform: scale(1.04);
}

.plugin-floating-card {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .94);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: var(--plugin-shadow);
    backdrop-filter: blur(12px);
}

.plugin-floating-card > i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--plugin-green);
    color: #fff;
    display: grid;
    place-items: center;
}

.plugin-floating-card span,
.plugin-floating-card strong {
    display: block;
}

.plugin-floating-card span {
    color: var(--plugin-gold);
    font-size: 10px;
    font-weight: 700;
}

.plugin-floating-card strong {
    color: var(--plugin-green);
    font-size: 13px;
}

/* =========================
   COMMON SECTIONS
========================= */

.section-padding {
    padding: 95px 0;
}

.plugin-section-heading {
    max-width: 790px;
    margin-bottom: 42px;
}

.plugin-section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.plugin-section-heading h2 {
    color: var(--plugin-green);
    font-size: 45px;
    line-height: 1.16;
    font-weight: 600;
    margin: 12px 0;
}

.plugin-section-heading p {
    color: var(--plugin-muted);
    font-size: 16px;
    line-height: 1.75;
}

/* =========================
   BENEFITS
========================= */

.plugin-benefits {
    background: #fff;
}

.plugin-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.plugin-benefit-card {
    min-height: 225px;
    background: var(--plugin-soft);
    border: 1px solid var(--plugin-border);
    border-radius: 22px;
    padding: 29px;
    transition: .25s;
}

.plugin-benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--plugin-shadow);
}

.plugin-benefit-icon,
.plugin-how-card > div,
.plugin-experience-card > div {
    width: 60px;
    height: 60px;
    background: #f7ead6;
    color: var(--plugin-gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.plugin-benefit-card h3 {
    color: var(--plugin-green);
    font-size: 20px;
    font-weight: 600;
}

.plugin-benefit-card p {
    color: var(--plugin-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================
   HOW IT WORKS
========================= */

.plugin-how {
    background: var(--plugin-bg);
}

.plugin-how-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.plugin-how-card {
    min-height: 290px;
    position: relative;
    background: #fff;
    border: 1px solid var(--plugin-border);
    border-radius: 22px;
    padding: 24px;
}

.plugin-how-card > span {
    position: absolute;
    top: 16px;
    right: 20px;
    color: rgba(0, 63, 50, .09);
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 700;
}

.plugin-how-card h3 {
    color: var(--plugin-green);
    font-size: 19px;
    font-weight: 600;
}

.plugin-how-card p {
    color: var(--plugin-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* =========================
   WEEKLY SCHEDULE
========================= */

.plugin-schedule {
    background: #fff;
}

.plugin-schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.plugin-schedule-card {
    background: #fff;
    border: 1px solid var(--plugin-border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: .25s;
}

.plugin-schedule-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--plugin-shadow);
}

.plugin-schedule-top {
    min-height: 92px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: linear-gradient(
        135deg,
        var(--plugin-green),
        var(--plugin-dark)
    );
}

.plugin-day-box span {
    color: #fff;
    font-size: 21px;
    font-weight: 600;
}

.plugin-session-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #f5d7a0;
    display: grid;
    place-items: center;
    font-size: 19px;
}

.plugin-schedule-body {
    padding: 22px;
    flex: 1;
}

.plugin-session-time {
    display: inline-block;
    background: var(--plugin-soft);
    border: 1px solid var(--plugin-border);
    border-radius: 30px;
    padding: 7px 11px;
    color: var(--plugin-green);
    font-size: 11px;
    font-weight: 700;
}

.plugin-session-time i {
    color: var(--plugin-gold);
    margin-right: 5px;
}

.plugin-schedule-body h3 {
    color: var(--plugin-green);
    font-size: 21px;
    line-height: 1.35;
    font-weight: 600;
    margin: 17px 0;
}

.plugin-venue {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.plugin-venue > i {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: #f7ead6;
    color: var(--plugin-gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.plugin-venue strong,
.plugin-venue span {
    display: block;
}

.plugin-venue strong {
    color: var(--plugin-green);
    font-size: 13px;
}

.plugin-venue span {
    color: var(--plugin-muted);
    font-size: 11px;
    line-height: 1.6;
    margin-top: 4px;
}

.plugin-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--plugin-muted);
    font-size: 12px;
    margin-top: 14px;
}

.plugin-phone i {
    color: var(--plugin-gold);
}

.plugin-schedule-footer {
    border-top: 1px solid var(--plugin-border);
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.plugin-map-link,
.plugin-map-disabled,
.plugin-reserve-link {
    font-size: 12px;
    font-weight: 700;
}

.plugin-map-link {
    color: var(--plugin-green);
}

.plugin-map-disabled {
    color: #999;
}

.plugin-reserve-link {
    background: var(--plugin-green);
    color: #fff;
    padding: 9px 13px;
    border-radius: 10px;
}

.plugin-reserve-link:hover {
    color: #fff;
    background: var(--plugin-dark);
}

/* =========================
   PARTNER LOCATIONS
========================= */

.plugin-locations {
    background: var(--plugin-bg);
}

.plugin-location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.plugin-location-card {
    background: #fff;
    border: 1px solid var(--plugin-border);
    border-radius: 24px;
    overflow: hidden;
    transition: .25s;
}

.plugin-location-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--plugin-shadow);
}

.plugin-location-image {
    height: 250px;
    position: relative;
}

.plugin-location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plugin-location-image > span {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--plugin-gold);
    color: #fff;
    border-radius: 30px;
    padding: 7px 11px;
    font-size: 10px;
    font-weight: 700;
}

.plugin-location-body {
    padding: 23px;
}

.plugin-location-body h3 {
    color: var(--plugin-green);
    font-size: 21px;
    font-weight: 600;
}

.plugin-location-body p {
    min-height: 66px;
    color: var(--plugin-muted);
    font-size: 13px;
    line-height: 1.7;
}

.plugin-location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.plugin-location-actions a {
    color: var(--plugin-green);
    font-size: 12px;
    font-weight: 700;
}

/* =========================
   EXPERIENCES
========================= */

.plugin-experiences {
    background: #fff;
}

.plugin-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.plugin-experience-card {
    background: var(--plugin-soft);
    border: 1px solid var(--plugin-border);
    border-radius: 22px;
    padding: 28px;
    min-height: 230px;
    transition: .25s;
}

.plugin-experience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--plugin-shadow);
}

.plugin-experience-card h3 {
    color: var(--plugin-green);
    font-size: 20px;
    font-weight: 600;
}

.plugin-experience-card p {
    color: var(--plugin-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================
   PARTNERSHIP SECTION
========================= */

.plugin-partners {
    background: var(--plugin-bg);
}

.plugin-partner-card {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--plugin-green),
        var(--plugin-dark)
    );
}

.plugin-partner-content {
    padding: 52px;
    color: #fff;
}

.plugin-partner-content > span {
    color: #f5d7a0;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    font-size: 12px;
    font-weight: 700;
}

.plugin-partner-content h2 {
    color: #fff;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 600;
    margin: 15px 0;
}

.plugin-partner-content > p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
}

.plugin-partner-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin: 27px 0;
}

.plugin-partner-points div {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 13px;
    padding: 12px;
    color: #fff;
    font-size: 12px;
}

.plugin-partner-points i {
    color: #f5d7a0;
    margin-right: 6px;
}

.plugin-partner-image {
    min-height: 560px;
}

.plugin-partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   MEMBERSHIP
========================= */

.plugin-membership {
    background: #fff;
}

.plugin-membership-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 24px;
    background: linear-gradient(
        135deg,
        var(--plugin-green),
        var(--plugin-dark)
    );
    border-radius: 26px;
    padding: 33px;
    color: #fff;
}

.plugin-membership-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, .1);
    color: #f5d7a0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 27px;
}

.plugin-membership-card span {
    color: #f5d7a0;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
}

.plugin-membership-card h2 {
    color: #fff;
    font-size: 29px;
    margin: 7px 0;
}

.plugin-membership-card p {
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

.plugin-light-button {
    background: #fff;
    color: var(--plugin-green);
    border-radius: 12px;
    padding: 12px 19px;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================
   FINAL CTA
========================= */

.plugin-final-cta {
    min-height: 580px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?auto=format&fit=crop&w=1800&q=85')
        center / cover no-repeat;
}

.plugin-final-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 43, 35, .88);
}

.plugin-final-cta .container {
    position: relative;
    z-index: 2;
}

.plugin-final-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.plugin-final-content > span {
    color: #f5d7a0;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 12px;
    font-weight: 700;
}

.plugin-final-content h2 {
    color: #fff;
    font-size: 54px;
    line-height: 1.12;
    font-weight: 600;
    margin: 18px 0;
}

.plugin-final-content p {
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    margin-bottom: 27px;
}

.plugin-final-actions {
    justify-content: center;
}

.plugin-light-outline {
    border: 1px solid rgba(255, 255, 255, .6);
    color: #fff;
    border-radius: 12px;
    padding: 12px 21px;
    font-weight: 700;
}

.plugin-light-outline:hover {
    background: #fff;
    color: var(--plugin-green);
}

/* =========================
   TABLET
========================= */

@media(max-width: 1199px) {
    .plugin-how-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .plugin-schedule-grid,
    .plugin-location-grid,
    .plugin-experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 991px) {
    .plugin-hero-grid,
    .plugin-partner-card {
        grid-template-columns: 1fr;
    }

    .plugin-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plugin-hero-gallery {
        margin-top: 10px;
    }

    .plugin-membership-card {
        grid-template-columns: 70px 1fr;
    }

    .plugin-membership-card > a {
        grid-column: 1 / -1;
        text-align: center;
    }

    .plugin-partner-image {
        min-height: 430px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width: 767px) {
    .plugin-hero {
        min-height: auto;
        padding: 65px 0;
    }

    .plugin-hero-content h1 {
        font-size: 42px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .plugin-section-heading h2,
    .plugin-partner-content h2 {
        font-size: 34px;
    }

    .plugin-hero-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 350px 170px;
    }

    .plugin-hero-main-image {
        grid-column: 1 / 3;
        grid-row: auto;
        border-radius: 120px 28px 28px 28px;
    }

    .plugin-floating-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .plugin-benefit-grid,
    .plugin-how-grid,
    .plugin-schedule-grid,
    .plugin-location-grid,
    .plugin-experience-grid,
    .plugin-partner-points {
        grid-template-columns: 1fr;
    }

    .plugin-partner-content {
        padding: 34px 22px;
    }

    .plugin-membership-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .plugin-membership-icon {
        margin: auto;
    }

    .plugin-final-content h2 {
        font-size: 39px;
    }

    .plugin-schedule-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .plugin-map-link,
    .plugin-map-disabled,
    .plugin-reserve-link {
        text-align: center;
    }
}