@import url(menu.css);
@import url(nav.css);

/* ── Gotham (wide) — display headings ─────────────────── */
@font-face {
    font-family: "Gotham";
    src: url("../library/fonts/Gotham-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../library/fonts/Gotham-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../library/fonts/Gotham-Ultra.otf") format("opentype");
    font-weight: 950;
    font-style: normal;
    font-display: swap;
}

/* ── Gotham Narrow — body + subheadings (full weight range) */
@font-face {
    font-family: "Gotham Narrow";
    src: url("../library/fonts/GothamNarrow-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Narrow";
    src: url("../library/fonts/GothamNarrow-Book.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Narrow";
    src: url("../library/fonts/GothamNarrow-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Narrow";
    src: url("../library/fonts/GothamNarrow-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Narrow";
    src: url("../library/fonts/GothamNarrow-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ==============================================
   EARTHEN LIVING — DESIGN SYSTEM TOKENS
   ============================================== */
:root {
    --cl-white: #ffffff;
    --cl-off-white: #f8f9fa;
    --cl-green: #1a1a1a;
    --cl-green-dark: #000000;
    --cl-green-light: #f0f0f0;
    --cl-charcoal: #1a1a1a;
    --cl-gray: #6c757d;
    --cl-gray-light: #ced4da;
    --cl-border: #dee2e6;
    --cl-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --cl-shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.13);
    --font-main: "Gotham Narrow", "Gotham Narrow Book", Arial, sans-serif;
    --font-display: "Gotham", "Gotham Narrow", Arial, sans-serif;
}

/* ==============================================
   BOOTSTRAP COLOUR OVERRIDES (greyscale theme)
   ============================================== */
.btn-success {
    background-color: #1a1a1a !important;
    border-color: #1a1a1a !important;
    color: #ffffff !important;
}

.btn-success:hover,
.btn-success:focus {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.btn-outline-success {
    color: #1a1a1a !important;
    border-color: #1a1a1a !important;
    background-color: transparent !important;
}

.btn-outline-success:hover,
.btn-outline-success:focus {
    background-color: #1a1a1a !important;
    border-color: #1a1a1a !important;
    color: #ffffff !important;
}

.text-success {
    color: #1a1a1a !important;
}

.badge-success {
    background-color: #1a1a1a !important;
}

/* ==============================================
   GLOBAL RESETS & BODY
   ============================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--cl-charcoal);
    background-color: var(--cl-white);
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--cl-green);
}

a:hover {
    color: var(--cl-green-dark);
    text-decoration: none;
}

/* ==============================================
   CORPORATE TYPOGRAPHY SCALE
   ============================================== */

/* Tier 1 — Hero / Landing display */
.display-heading {
    font-size: 3.6rem;
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--cl-charcoal);
}

@media (max-width: 991px) {
    .display-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .display-heading {
        font-size: 2.1rem;
    }
}

/* Tier 2 — Section headings */
.section-heading {
    font-size: 2.4rem;
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--cl-charcoal);
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.8rem;
    }
}

/* Tier 3 — Sub-section / intro paragraph */
.section-subheading {
    font-size: 1.15rem;
    font-weight: 300;
    font-family: var(--font-main);
    color: #4d4d4d;
    line-height: 1.75;
    max-width: 680px;
}

.text-center .section-subheading,
.section-subheading.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Tier 4 — Eyebrow / label tag */
.label-tag {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cl-charcoal);
    font-weight: 700;
    font-family: var(--font-main);
    background: var(--cl-green-light);
    border: 1px solid var(--cl-border);
    border-radius: 2px;
    padding: 3px 10px;
    margin-bottom: 12px;
}

/* Optional decorated rule under section headings */
.section-heading-rule {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--cl-charcoal);
    margin: 14px 0 0;
    border-radius: 2px;
}

.text-center .section-heading-rule {
    margin: 14px auto 0;
}

/* ==============================================
   SECTION PADDING
   ============================================== */
.section-pad {
    padding: 80px 0;
}

.section-pad-sm {
    padding: 50px 0;
}

@media (max-width: 768px) {
    .section-pad {
        padding: 50px 0;
    }

    .section-pad-sm {
        padding: 30px 0;
    }
}

/* ==============================================
   PAGE HEADER STRIP (inner pages)
   ============================================== */
.page-header-strip {
    background-color: var(--cl-off-white);
    border-bottom: 1px solid var(--cl-border);
    padding: 60px 0 40px;
}

.page-header-strip .label-tag {
    margin-bottom: 8px;
}

.page-header-strip h1 {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-display);
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--cl-charcoal);
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .page-header-strip h1 {
        font-size: 2.1rem;
    }
}

.page-header-sub {
    font-size: 0.88rem;
    color: var(--cl-gray);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.page-header-strip p {
    color: #4d4d4d;
    font-size: 1.1rem;
    font-weight: 300;
    font-family: var(--font-main);
    line-height: 1.7;
    max-width: 620px;
    margin: 0;
}

/* ==============================================
   HERO SECTION (homepage)
   ============================================== */
.hero-section {
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #f8f8f8 0%, #efefef 100%);
    position: relative;
    overflow: hidden;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
}

.hero-section .hero-deco-left {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 75%;
    width: auto;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

.hero-section .hero-deco-right {
    position: absolute;
    top: 0;
    right: 0;
    height: 55%;
    width: auto;
    opacity: 0.28;
    z-index: 1;
    pointer-events: none;
}

.hero-usp-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

.hero-usp-strip img {
    height: 72px;
    width: auto;
}

/* ==============================================
   FEATURE CARDS (What We Do)
   ============================================== */
.card-feature {
    border: 1px solid var(--cl-border);
    border-radius: 8px;
    padding: 32px 24px;
    background: var(--cl-white);
    transition: box-shadow 0.25s ease;
    height: 100%;
}

.card-feature:hover {
    box-shadow: var(--cl-shadow-hover);
}

.card-feature .feature-icon {
    font-size: 2.1rem;
    color: var(--cl-green);
    margin-bottom: 18px;
    display: block;
}

.card-feature h5 {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: var(--cl-charcoal);
}

.card-feature p {
    color: #4d4d4d;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.7;
}

.card-feature .card-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--cl-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-feature .card-link:hover {
    color: var(--cl-green-dark);
}

/* ==============================================
   STATS STRIP
   ============================================== */
.stats-strip {
    background-color: var(--cl-green);
    padding: 55px 0;
}

.stats-strip .stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-strip .stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-main);
}

.stats-strip .stat-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    height: 60px;
}

@media (max-width: 768px) {
    .stats-strip .stat-divider {
        display: none;
    }

    .stats-strip .col-stat {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .stats-strip .col-stat:last-child {
        border-bottom: none;
    }
}

/* ==============================================
   BRAND LOGO STRIP
   ============================================== */
.brand-logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px 36px;
}

.brand-logo-strip img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: 0.78;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.brand-logo-strip img:hover {
    filter: none;
    opacity: 1;
}

/* ==============================================
   VALUE CARDS
   ============================================== */
.card-value {
    text-align: center;
    padding: 32px 20px;
    border-radius: 8px;
    background: var(--cl-off-white);
    height: 100%;
}

.card-value .value-icon {
    font-size: 2rem;
    color: var(--cl-green);
    margin-bottom: 14px;
    display: block;
}

.card-value h5 {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    color: var(--cl-charcoal);
    font-family: var(--font-display);
}

.card-value p {
    color: #4d4d4d;
    font-size: 0.92rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.7;
}

/* ==============================================
   EARTHEN BOX CTA BAND
   ============================================== */
.earthenbox-band {
    background-color: var(--cl-off-white);
    border-top: 1px solid var(--cl-border);
    border-bottom: 1px solid var(--cl-border);
}

.earthenbox-band .band-image-col {
    background-color: var(--cl-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.earthenbox-band .band-image-col img {
    max-height: 300px;
    width: auto;
    opacity: 0.75;
}

.earthenbox-band .band-content-col {
    padding: 70px 50px;
}

@media (max-width: 991px) {
    .earthenbox-band .band-content-col {
        padding: 50px 30px;
    }

    .earthenbox-band .band-image-col {
        min-height: 200px;
    }
}

/* ==============================================
   MEDIA CARDS
   ============================================== */
.card-media {
    border: 1px solid var(--cl-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--cl-white);
    transition: box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-media:hover {
    box-shadow: var(--cl-shadow-hover);
}

.card-media .card-media-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    background: var(--cl-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-media .card-media-img img {
    max-height: 150px;
    width: auto;
    margin: auto;
    opacity: 0.8;
}

.card-media .card-media-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-media .card-media-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cl-green);
    font-weight: 700;
    margin-bottom: 8px;
}

.card-media .card-media-body h6 {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--cl-charcoal);
    margin-bottom: 8px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.card-media .card-media-body p {
    color: #4d4d4d;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
    flex: 1;
    line-height: 1.65;
}

.card-media .card-media-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--cl-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==============================================
   PUBLICATION PAGE — MASTHEAD HERO
   ============================================== */
.masthead-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 60%, #3d3d3d 100%);
    color: #ffffff;
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.masthead-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.masthead-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    font-family: var(--font-main);
}

@media (max-width: 768px) {
    .masthead-title {
        font-size: 2rem;
    }
}

.masthead-tagline {
    font-size: 1rem;
    color: #a8d5b5;
    font-style: italic;
    margin-bottom: 12px;
}

.masthead-sub {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 520px;
}

.masthead-cover-stack {
    position: relative;
    width: 200px;
    height: 270px;
}

.masthead-cover-stack .cover-back {
    position: absolute;
    width: 165px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    top: 20px;
    right: 0;
    transform: rotate(4deg);
    opacity: 0.7;
}

.masthead-cover-stack .cover-front {
    position: absolute;
    width: 165px;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 1;
}

/* ==============================================
   PUBLICATION PAGE — ISSUE CARDS
   ============================================== */
.issue-card {
    border: 1px solid var(--cl-border);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.issue-card:hover {
    box-shadow: var(--cl-shadow-hover);
}

.issue-card--current {
    border-top: 4px solid var(--cl-green);
}

.issue-card--upcoming {
    border-top: 4px solid var(--cl-gray-light);
}

.issue-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--cl-green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.issue-card-badge--upcoming {
    background: var(--cl-gray);
}

.issue-cover-img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

/* ==============================================
   PUBLICATION PAGE — MAGAZINE GALLERY
   ============================================== */
.magazine-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.magazine-cover-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.magazine-cover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.magazine-cover-card img {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.cover-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    color: #fff;
    padding: 20px 10px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.cover-label span {
    display: block;
    font-weight: 400;
    opacity: 0.8;
    font-size: 0.68rem;
}

/* ==============================================
   PUBLICATION PAGE — OPPORTUNITY GRID
   ============================================== */
.opportunity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.opportunity-item {
    background: var(--cl-off-white);
    border: 1px solid var(--cl-border);
    border-radius: 8px;
    padding: 14px 16px;
}

.opportunity-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--cl-charcoal);
    line-height: 1.5;
}

@media (max-width: 576px) {
    .opportunity-grid {
        grid-template-columns: 1fr;
    }

    .magazine-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

/* ==============================================
   COMPARISON TABLE (marketplace.html)
   ============================================== */
.comparison-table {
    border: 1px solid var(--cl-border);
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.93rem;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 140px 140px;
    align-items: center;
}

.comparison-header {
    background: var(--cl-off-white);
    border-bottom: 2px solid var(--cl-border);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cl-gray);
}

.comparison-row {
    border-bottom: 1px solid var(--cl-border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: var(--cl-green-light);
}

.comparison-col-label {
    padding: 14px 20px;
    color: var(--cl-charcoal);
}

.comparison-col {
    padding: 14px 0;
    text-align: center;
    font-size: 1.1rem;
}

.comparison-col.earthen {
    background: rgba(40, 167, 69, 0.04);
    border-left: 1px solid var(--cl-border);
    border-right: 1px solid var(--cl-border);
}

@media (max-width: 576px) {

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr 80px 80px;
    }

    .comparison-col-label {
        padding: 12px 12px;
        font-size: 0.82rem;
    }
}

/* ==============================================
   ARTISAN GRID (handicrafts.html)
   ============================================== */
.artisan-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.artisan-grid img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cl-border);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.artisan-grid img:hover {
    border-color: var(--cl-green);
    transform: scale(1.06);
}

/* ==============================================
   TESTIMONIAL CARDS (about.html)
   ============================================== */
.card-testimonial {
    background: var(--cl-off-white);
    border: 1px solid var(--cl-border);
    border-radius: 12px;
    padding: 32px 28px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.card-testimonial:hover {
    box-shadow: var(--cl-shadow-hover);
}

.card-testimonial .testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 18px;
    border: 2px solid var(--cl-border);
}

.card-testimonial .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-testimonial blockquote {
    font-size: 0.93rem;
    color: var(--cl-charcoal);
    line-height: 1.7;
    margin: 0 0 16px;
    border: none;
    padding: 0;
    flex: 1;
    font-style: italic;
}

.card-testimonial blockquote::before {
    content: "\201C";
    font-size: 2.5rem;
    line-height: 0.4;
    vertical-align: -0.55em;
    color: var(--cl-green);
    margin-right: 4px;
    font-style: normal;
}

.card-testimonial cite {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--cl-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-style: normal;
}

/* ==============================================
   LEADER CARDS (leadership.html)
   ============================================== */
.leader-card {
    background: #fff;
    border: 1px solid var(--cl-border);
    border-radius: 4px;
    padding: 36px 28px 28px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s ease;
}

.leader-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.leader-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--cl-off-white);
    border: 2px solid var(--cl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.leader-avatar i {
    font-size: 1.9rem;
    color: var(--cl-gray);
}

.leader-role-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cl-gray);
    margin-bottom: 6px;
}

.leader-name {
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--cl-charcoal);
    margin-bottom: 12px;
    line-height: 1.3;
}

.leader-bio {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.leader-contact {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cl-charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--cl-charcoal);
    padding-bottom: 1px;
}

.leader-contact:hover {
    opacity: 0.6;
    color: var(--cl-charcoal);
    text-decoration: none;
}

/* ==============================================
   LEGAL PAGES (privacy.html, terms.html)
   ============================================== */
.legal-section {
    border-left: 3px solid var(--cl-border);
    padding-left: 24px;
}

.legal-heading {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--cl-charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.legal-list {
    padding-left: 20px;
    color: var(--cl-charcoal);
}

.legal-list li {
    margin-bottom: 6px;
    line-height: 1.65;
}

.legal-nav-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid var(--cl-border);
    margin-top: 16px;
}

.legal-nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--cl-charcoal);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--cl-charcoal);
    padding-bottom: 1px;
}

.legal-nav-links a:hover {
    opacity: 0.6;
}

.legal-sidebar {
    position: sticky;
    top: 96px;
    background: var(--cl-off-white);
    border-radius: 4px;
    padding: 24px;
}

.legal-sidebar-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cl-gray);
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-sidebar ul li {
    margin-bottom: 8px;
}

.legal-sidebar ul li a {
    font-size: 0.88rem;
    color: var(--cl-charcoal);
    text-decoration: none;
    line-height: 1.4;
}

.legal-sidebar ul li a:hover {
    color: var(--cl-green);
}

/* ==============================================
   GLOBAL FOOTER
   ============================================== */
.global-footer {
    background-color: #1a2320;
    color: rgba(255, 255, 255, 0.82);
    padding: 64px 0 0;
}

.global-footer img.footer-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.88;
    margin-bottom: 14px;
    display: block;
}

.global-footer .footer-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
    max-width: 220px;
}

.global-footer .footer-social a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.1rem;
    margin-right: 14px;
    transition: color 0.2s;
}

.global-footer .footer-social a:hover {
    color: var(--cl-green);
}

.global-footer .footer-col-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    margin-bottom: 14px;
    font-family: var(--font-main);
}

.global-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.global-footer .footer-links li {
    margin-bottom: 7px;
}

.global-footer .footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.global-footer .footer-links a:hover {
    color: var(--cl-green);
}

.global-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 48px;
    padding: 22px 0;
}

.global-footer .footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.global-footer .footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    margin-left: 16px;
}

.global-footer .footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ==============================================
   SCROLL FADE-IN ANIMATION
   ============================================== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================================
   SECTION DIVIDER
   ============================================== */
.section-divider {
    border: none;
    border-top: 1px solid var(--cl-border);
    margin: 0;
}

/* ==============================================
   UTILITY OVERRIDES
   ============================================== */
.btn-success {
    background-color: var(--cl-green);
    border-color: var(--cl-green);
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 4px;
}

.btn-success:hover {
    background-color: var(--cl-green-dark);
    border-color: var(--cl-green-dark);
}

.btn-outline-success {
    border-color: var(--cl-green);
    color: var(--cl-green);
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 4px;
}

.btn-outline-success:hover {
    background-color: var(--cl-green);
    border-color: var(--cl-green);
    color: #fff;
}

.btn-outline-secondary {
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 4px;
}



@font-face {
    font-family: "Gotham Narrow Book";
    src: url("../library/fonts/GothamOffice-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    /* Ensure the body takes up the full viewport height */
    min-height: 100vh;
    /* Use the background property to set the image */
    //background: url('image/bg_earth.jpg') no-repeat center center;
    /* Ensure the background covers the entire viewport */
    background-size: cover;
    /* Remove any margin and padding */
    margin: 0;
    padding: 0;
    zoom: 100%;
}

a {
    color: #6c757d;
}

a:hover {
    color: #666666;
}

h1 {
    font-weight: 900;
    font-size: 3.2em;
    font-family: "Gotham Narrow Book";
    color: #28a745;
}

h2 {
    font-weight: 900;
    font-size: 3.0em;
    font-family: "Gotham Narrow Book";
}

h3 {
    font-weight: 900;
    font-size: 2.5em;
    font-family: "Gotham Narrow Book";
}

h4 {
    font-weight: 900;
    font-size: 2.0em;
    font-family: "Gotham Narrow Book";
}

h5 {
    font-weight: 900;
    font-size: 1.6em;
    font-family: "Gotham Narrow Book";
}

h6 {
    font-weight: 900;
    font-size: 1.4em;
    font-family: "Gotham Narrow Book";
}

.h1,
h1.heading {
    font-weight: 900;
    font-size: 3.5em;
    font-family: "Gotham Narrow Book";
    color: #28a745;
}

.h2 {
    font-weight: 900;
    font-size: 3.0em;
    font-family: "Gotham Narrow Book";
}

.h3 {
    font-weight: 900;
    font-size: 2.5em;
    font-family: "Gotham Narrow Book";
}

.p1 {
    font-weight: 100;
    font-size: 1.5em;
    font-family: "Gotham Narrow Book";
}

.p2 {
    font-weight: 100;
    font-size: 1.3em;
    font-family: "Gotham Narrow Book";
}

.p3 {
    font-weight: 100;
    font-size: 1.1em;
    font-family: "Gotham Narrow Book";
}

/* Default Desktop Design */
img.logo {
    width: 25%;
}

/* Tablet (≤ 991px) */
@media (max-width: 991px) {
    img.logo {
        width: 50%;
    }
}

/* Mobile (≤ 575px) */
@media (max-width: 575px) {
    img.logo {
        width: 75%;
    }
}

.card {
    background-color: #ffffffc7 !important;
}

.list-simple {
    list-style: none;
    margin: 0px auto;
    padding: 0px;
    text-align: center;
}

.list-simple li {
    margin: 0px auto;
    padding: 0px;
}

.list-left {
    list-style: none;
    margin: 5px auto 15px auto;
    padding: 0px 0px 0px 20px;
    text-align: left;
}

.list-left li {
    margin: 0px auto;
    padding: 0px;
}

.text-align-left {
    text-align: left;
}

.text-align-right {
    text-align: right;
}

.bg-earth {
    background: #333;
    /* Dark background color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* Dark shadow around the page */
}

.bg-img-under-construction {
    background-image: url(../image/under-construction.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
}

.bg-img-artisan-01 {
    background-image: url(../image/page-bg/page-artisan-01.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 27% auto;
}

.bg-img-tree {
    background-image: url(../image/page-bg/page-tree01.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 27% auto;
}

.bg-img-tree-02 {
    background-image: url(../image/page-bg/page-tree02.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 27% auto;
}

.bg-img-tree-03 {
    background-image: url(../image/page-bg/page-tree03.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 27% auto;
}

.bg-img-office {
    background-image: url(../image/page-bg/page-office01.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 27% auto;
}

.bg-img-birds {
    background-image: url(../image/page-bg/page-birds01.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 30% auto;
}

.bg-img-tree-birds {
    background-image: url(../image/page-bg/page-tree01.png), url(../image/page-bg/page-birds01.png);
    background-position: left bottom, right top;
    background-repeat: no-repeat, no-repeat;
    background-size: 27% auto, 30% auto;
}

.bg-img-tree-birds2 {
    background-image: url(../image/page-bg/page-tree02.png), url(../image/page-bg/page-birds01.png);
    background-position: left bottom, right top;
    background-repeat: no-repeat, no-repeat;
    background-size: 27% auto, 30% auto;
}

.bg-img-office-minds {
    background-image: url(../image/page-bg/page-work01.png), url(../image/page-bg/page-bubble-ethical.png);
    background-position: right bottom, left top;
    background-repeat: no-repeat, no-repeat;
    background-size: 40% auto, 25% auto;
}

.bg-img-work {
    background-image: url(../image/page-bg/page-work01.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 30% auto;
}

.bg-img-rain {
    background-image: url(../image/page-bg/page-rain.png);
    background-repeat: repeat;
    background-position: left top;
    background-size: 30% auto;
}

.bg-img-people {
    background-image: url(../image/page-bg/page-people01.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 27% auto;
}

.bg-img-people-brunch {
    background-image: url(../image/page-bg/page-people01.png), url(../image/page-bg/page-brunch01.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right top;
    background-size: 18% auto, 27% auto;
}

.bg-img-people-2 {
    background-image: url(../image/page-bg/page-people02.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 70%;
}

.bg-img-press {
    background-image: url(../image/page-bg/page-press.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
}

.bg-img-publication {
    background-image: url(../image/page-bg/page-publication.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
}

.bg-img-seeding-01 {
    background-image: url(../image/page-bg/page-seeding-01.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 20% auto;
}

.bg-img-seeding-02 {
    background-image: url(../image/page-bg/page-seeding-02.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 20% auto;
}

.bg-img-seeding-03 {
    background-image: url(../image/page-bg/page-seeding-03.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 20% auto;
}

.bg-img-seeding-04 {
    background-image: url(../image/page-bg/page-seeding-04.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 20% auto;
}

.bg-img-seeding-05 {
    background-image: url(../image/page-bg/page-seeding-05.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 20% auto;
}

.bg-img-seeding-06 {
    background-image: url(../image/page-bg/page-seeding-06.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 20% auto;
}

.bg-img-seeding-25 {
    background-image: url(../image/page-bg/page-seeding-02.png), url(../image/page-bg/page-birds03.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right top;
    background-size: 10% auto, 20% auto;
}

.bg-img-seeding-50 {
    background-image: url(../image/page-bg/page-seeding-03.png), url(../image/page-bg/page-birds03.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right top;
    background-size: 10% auto, 20% auto;
}

.bg-img-legal {
    background-image: url(../image/legal.png), url(../image/legal-ribbon.png);
    background-repeat: no-repeat, no-repeat;
    background-position: right bottom, left top;
    background-size: 25% auto, 20% auto;
}

.callout {
    padding: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #efefef;
    border-left-width: .35rem;
    border-radius: .25rem;
}

.callout-dark {
    border-left-color: #212631;
}

.callout-light {
    border-left-color: #f3f4f7;
}

.callout p {
    padding: 0px;
    margin: 0px;
}

.image {
    width: 100%;
}

.img-usp {
    padding: 5px;
    width: 150px;
    margin: 3px 1px;
}

.block-list {
    margin: 0px;
    padding: 0px;
}

.block-list li {
    border: solid 1px #999;
    list-style: none;
    margin-bottom: 5px;
    padding: 10px 15px;
    border-radius: 5px;
}

.block-list li img {
    width: 100px;
}

.block-media {
    margin: 0px;
    padding: 0px;
}

.block-media li {
    list-style: none;
    margin-bottom: 5px;
    padding: 10px 15px;
    border-radius: 10px;
    background: #fff;
    opacity: 0.7;
}

.block-media li img {
    width: 100%;
}

.block-media li h4 {
    font-size: 1.2em;
    font-weight: 600;
}

.block-media li span {
    font-size: 0.8em;
}

.block-media li p {}

.block-media li a {}

.page-reading {}

.page-reading .title {
    font-weight: 600;
}

.page-reading .quote {
    font-style: italic;
    color: #999;
}

.stamp {
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    color: #039830;
    margin: 20px 0px 20px 0px;
    padding: 0px;
}

.stamp span {
    margin-right: 15px;
}

.stamp .type {
    background: #015275;
    color: #fff;
    padding: 4px 20px;
    border-radius: 15px;
}

.stamp .date {}

.stamp .location {}

/* Background Color */
.bgc-blue {
    background-color: #007bff;
}

.bgc-indigo {
    background-color: #6610f2;
}

.bgc-purple {
    background-color: #6f42c1;
}

.bgc-pink {
    background-color: #e83e8c;
}

.bgc-red {
    background-color: #dc3545;
}

.bgc-orange {
    background-color: #fd7e14;
}

.bgc-yellow {
    background-color: #ffc107;
}

.bgc-green {
    background-color: #28a745;
}

.bgc-teal {
    background-color: #20c997;
}

.bgc-cyan {
    background-color: #17a2b8;
}

.bgc-white {
    background-color: #fff;
}

.bgc-gray {
    background-color: #6c757d;
}

.bgc-gray-dark {
    background-color: #343a40;
}

.bgc-primary {
    background-color: #007bff;
}

.bgc-secondary {
    background-color: #6c757d;
}

.bgc-success {
    background-color: #28a745;
}

.bgc-info {
    background-color: #17a2b8;
}

.bgc-warning {
    background-color: #ffc107;
}

.bgc-danger {
    background-color: #dc3545;
}

.bgc-light {
    background-color: #f8f9fa;
}

.bgc-dark {
    background-color: #343a40;
}

/* Foreground Color */
.fgc-blue {
    color: #007bff;
}

.fgc-indigo {
    color: #6610f2;
}

.fgc-purple {
    color: #6f42c1;
}

.fgc-pink {
    color: #e83e8c;
}

.fgc-red {
    color: #dc3545;
}

.fgc-orange {
    color: #fd7e14;
}

.fgc-yellow {
    color: #ffc107;
}

.fgc-green {
    color: #28a745;
}

.fgc-teal {
    color: #20c997;
}

.fgc-cyan {
    color: #17a2b8;
}

.fgc-white {
    color: #fff;
}

.fgc-gray {
    color: #6c757d;
}

.fgc-gray-dark {
    color: #343a40;
}

.fgc-primary {
    color: #007bff;
}

.fgc-secondary {
    color: #6c757d;
}

.fgc-success {
    color: #28a745;
}

.fgc-info {
    color: #17a2b8;
}

.fgc-warning {
    color: #ffc107;
}

.fgc-danger {
    color: #dc3545;
}

.fgc-light {
    color: #f8f9fa;
}

.fgc-dark {
    color: #343a40;
}

/* this is for brand page only */

/* Define the keyframe animation for the blinking effect */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Apply the animation to the cursor element */
.cursor {
    /* Use 'step-start' or 'steps(1)' for a sharp on/off blink,
     'linear' gives a fade effect */
    animation: blink 0.7s step-start infinite;
    /* Optional: Adjust color and size of the cursor to match the text */
    color: inherit;
}

/* Base block styling */
.block {
    height: 32px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.6s forwards;
}

.block-fill {
    background: #000;
}

.block-empty {
    background: #fff;
}

.number {
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff !important;
    border: none !important;
    opacity: 1 !important;
    height: 32px;
}

.block:hover {
    transform: scale(1.06);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE BEHAVIOUR */
@media (max-width: 768px) {
    .block {
        height: 26px;
    }

    .number {
        font-size: 12px;
        height: 26px;
    }
}

@media (max-width: 576px) {
    .block {
        height: 22px;
    }

    .number {
        font-size: 11px;
        height: 22px;
    }

    /* Ensure columns remain evenly distributed on mobile */
    .pattern-grid .col,
    .pattern-grid .col-1 {
        flex: 0 0 calc(10% - 2px);
        max-width: calc(10% - 2px);
    }
}

/* Add your custom styles here */
#popup {
    display: none;
    width: 400px;
    height: 200px;
    position: fixed;
    top: calc(50% - 100px);
    left: calc(50% - 200px);
    background-color: #333333f0;
    z-index: 999;
    border: solid 1PX #666666;
    border-radious: 15PX;
}