/* =========================================================
   BCRLS WEBSITE
   MAIN STYLE SHEET — PART 1
========================================================= */

/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --primary: #187b59;
    --primary-dark: #0f6347;
    --primary-light: #e8f5ef;
    --primary-soft: #f1f9f5;

    --accent: #49a979;

    --dark: #17372d;
    --text: #516c63;
    --muted: #81948e;

    --white: #ffffff;
    --cream: #fbfdfc;
    --light: #f4faf7;

    --border: #dce9e3;
    --border-dark: #cbded5;

    --shadow-sm: 0 8px 25px rgba(28, 91, 69, 0.06);
    --shadow: 0 18px 50px rgba(28, 91, 69, 0.10);
    --shadow-lg: 0 30px 80px rgba(28, 91, 69, 0.13);

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;

    --container: 1380px;

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(
        var(--container),
        calc(100% - 80px)
    );

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 78px;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.90);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(216, 232, 225, 0.75);

    transition:
        background var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    width: min(
        1420px,
        calc(100% - 70px)
    );

    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;
    align-items: center;

    gap: 13px;

    flex-shrink: 0;
}

.brand-logo {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);

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

    border-radius: 15px;

    box-shadow: var(--shadow-sm);

    overflow: hidden;
}

.brand-logo img {
    width: 42px;
    height: 42px;

    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.brand-text strong {
    color: var(--primary-dark);

    font-size: 19px;
    font-weight: 700;

    letter-spacing: -0.3px;
}

.brand-text span {
    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.6px;

    white-space: nowrap;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 3px;

    margin-left: auto;
}

.nav-link,
.nav-dropdown-toggle {
    position: relative;

    padding: 10px 11px;

    color: #526b63;

    background: transparent;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.5;
    white-space: nowrap;

    transition:
        color var(--transition),
        background var(--transition);
}

.nav-link:hover,
.nav-dropdown-toggle:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;

    gap: 7px;
}

.nav-dropdown-toggle i {
    font-size: 9px;

    transition:
        transform var(--transition);
}

.nav-dropdown:hover
.nav-dropdown-toggle i {
    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.dropdown-menu {
    position: absolute;

    top: calc(100% + 12px);
    left: 50%;

    width: 230px;

    transform:
        translateX(-50%)
        translateY(8px);

    padding: 10px;

    background: rgba(255, 255, 255, 0.98);

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

    border-radius: 16px;

    box-shadow: var(--shadow-lg);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity var(--transition),
        transform var(--transition),
        visibility var(--transition);

    z-index: 1100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0);
}

.dropdown-menu::before {
    content: "";

    position: absolute;

    top: -6px;
    left: 50%;

    width: 12px;
    height: 12px;

    background: white;

    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);

    transform:
        translateX(-50%)
        rotate(45deg);
}

.dropdown-menu a {
    display: block;

    padding: 9px 12px;

    border-radius: 9px;

    color: var(--text);

    font-size: 12px;
    font-weight: 500;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.dropdown-menu a:hover {
    color: var(--primary);

    background: var(--primary-light);

    transform: translateX(3px);
}


/* =========================================================
   MOBILE MENU BUTTON
   Responsive display handled in responsive.css
========================================================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    background: var(--white);

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

    border-radius: 50%;

    box-shadow: var(--shadow-sm);

    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.menu-toggle:hover {
    border-color: var(--primary);

    transform: translateY(-2px);
}

.menu-toggle span {
    display: block;

    width: 18px;
    height: 2px;

    background: var(--primary);

    border-radius: 10px;

    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}

.menu-overlay {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 780px;

    padding-top: 78px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 45%,
            rgba(185, 226, 208, 0.55),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #fbfefd 0%,
            #f0f9f5 100%
        );
}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.hero-background {
    position: absolute;

    inset: 0;

    pointer-events: none;
}

.hero-grid {
    position: absolute;

    inset: 0;

    opacity: 0.30;

    background-image:
        linear-gradient(
            rgba(36, 120, 88, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(36, 120, 88, 0.05) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 90%
        );
}

.hero-shape {
    position: absolute;

    border-radius: 50%;

    filter: blur(1px);
}

.shape-one {
    width: 500px;
    height: 500px;

    right: -150px;
    top: 80px;

    background:
        rgba(195, 231, 216, 0.45);
}

.shape-two {
    width: 280px;
    height: 280px;

    left: -100px;
    bottom: -100px;

    background:
        rgba(224, 242, 235, 0.65);
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;

    gap: 90px;

    padding-top: 70px;
    padding-bottom: 80px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
}

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 14px;

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

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.72);

    color: var(--primary);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.8px;
}

.eyebrow::before {
    content: "";

    width: 8px;
    height: 8px;

    background: #70bd96;

    border-radius: 50%;

    box-shadow:
        0 0 0 5px
        rgba(112, 189, 150, 0.12);
}

.hero h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(40px, 11.2vw, 56px) !important;
    line-height: 1.02 !important;
    letter-spacing: -1.8px !important;
    margin: 20px 0 0 !important;
    transform: none !important;
}

.hero h1 span {
    display: block;

    color: var(--primary);

    font-weight: 700;
}

.hero-content > p {
    max-width: 650px;

    margin-top: 30px;

    color: #637b73;

    font-size: 17px;

    line-height: 1.85;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 35px;
}

.btn {
    min-height: 52px;

    padding: 0 23px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: white;

    background: var(--primary);

    box-shadow:
        0 10px 25px
        rgba(24, 123, 89, 0.18);
}

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

    box-shadow:
        0 16px 35px
        rgba(24, 123, 89, 0.25);
}

.btn-outline {
    color: var(--primary-dark);

    background:
        rgba(255, 255, 255, 0.55);

    border: 1px solid var(--border-dark);
}

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

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

.btn-light {
    color: var(--primary-dark);

    background: white;
}

.btn i {
    font-size: 12px;
}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {
    display: flex;

    flex-wrap: wrap;

    margin-top: 55px;
}

.hero-stat {
    min-width: 150px;

    padding-right: 28px;
    margin-right: 28px;

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

.hero-stat:last-child {
    border-right: 0;
}

.hero-stat strong {
    display: block;

    color: var(--primary-dark);

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.hero-stat span {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-visual {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-image-card {
    position: relative;

    width: min(100%, 620px);
    height: 590px;

    overflow: hidden;

    border-radius: 38px;

    background: var(--white);

    border:
        1px solid
        rgba(198, 222, 212, 0.85);

    box-shadow:
        0 35px 80px
        rgba(29, 92, 69, 0.14);

    transform: translateY(0);

    animation:
        heroImageFloat
        7s ease-in-out infinite;
}

.hero-image-card::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(10, 60, 43, 0.58),
            transparent 48%
        );
}

.hero-image-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}

.hero-image-card:hover img {
    transform: scale(1.04);
}

.hero-image-overlay {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;

    z-index: 3;

    color: white;
}

.hero-image-label {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.16);

    border:
        1px solid
        rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(12px);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.hero-image-label i {
    color: #9de0be;
}

.hero-image-title {
    max-width: 400px;

    margin-top: 14px;
}

.hero-image-title strong {
    display: block;

    font-family:
        "Playfair Display",
        serif;

    font-size: 34px;

    line-height: 1.15;

    font-weight: 600;
}


/* =========================================================
   HERO IMAGE ANIMATION
========================================================= */

@keyframes heroImageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
    position: relative;

    padding: 110px 0;
}

.section:nth-of-type(even) {
    background: var(--primary-soft);
}

.section-header {
    max-width: 760px;

    margin-bottom: 55px;
}

.section-header.centered {
    max-width: 780px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-label {
    display: inline-block;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.section-header h2,
.section-header.centered h2 {
    margin-top: 12px;

    color: var(--dark);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(38px, 4vw, 58px);

    line-height: 1.12;

    font-weight: 600;

    letter-spacing: -1px;
}

.section-header p {
    max-width: 680px;

    margin-top: 18px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.85;
}

.section-header.centered p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   WELCOME SECTION
========================================================= */

.welcome-section {
    background: var(--white);
}


/* =========================================================
   VIDEO
========================================================= */

.video-wrapper {
    display: grid;

    grid-template-columns:
        minmax(0, 1.6fr)
        minmax(300px, 0.7fr);

    gap: 35px;

    padding: 20px;

    background: var(--primary-soft);

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

    border-radius: 30px;

    box-shadow: var(--shadow);
}

.video-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 22px;

    background: #dfeee7;
}

.video-frame iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}

.video-info {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 25px 30px;
}

.video-info h3 {
    margin-top: 10px;

    color: var(--dark);

    font-family:
        "Playfair Display",
        serif;

    font-size: 32px;

    line-height: 1.2;
}

.video-info p {
    margin-top: 15px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    width: fit-content;

    margin-top: 20px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 700;

    transition:
        gap var(--transition),
        color var(--transition);
}

.text-link:hover {
    gap: 15px;

    color: var(--primary-dark);
}
/* =========================================================
   FOUNDER / CHAIRMAN SECTION
========================================================= */

.chairman-section {
    background: var(--white);
}

.chairman-layout {
    display: grid;

    grid-template-columns:
        minmax(320px, .75fr)
        minmax(0, 1.25fr);

    gap: 80px;

    align-items: center;
}


/* =========================================================
   CHAIRMAN IMAGE
========================================================= */

.chairman-image {
    position: relative;

    width: 100%;
    max-width: 480px;

    margin: 0 auto;
}

.chairman-image::before {
    content: "";

    position: absolute;

    width: 85%;
    height: 85%;

    left: -25px;
    bottom: -25px;

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

    border-radius: 30px;

    background:
        var(--primary-light);

    z-index: 0;
}

.chairman-image img {
    position: relative;

    z-index: 2;

    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius: 30px;

    box-shadow:
        var(--shadow-lg);
}


/* IMAGE LABEL */

.chairman-image-label {
    position: absolute;

    z-index: 4;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 17px;

    color: white;

    background:
        rgba(15, 99, 71, .90);

    border:
        1px solid
        rgba(255,255,255,.20);

    border-radius: 30px;

    backdrop-filter: blur(10px);

    font-size: 11px;

    font-weight: 700;
}

.chairman-image-label i {
    color: #a9e5c8;
}


/* =========================================================
   CHAIRMAN CONTENT
========================================================= */

.chairman-content {
    max-width: 760px;
}

.chairman-content h2 {
    margin-top: 10px;

    color: var(--dark);

    font-family:
        "Playfair Display",
        serif;

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

    line-height: 1.05;

    letter-spacing: -1.5px;

    font-weight: 600;
}

.chairman-content h2 span {
    color: var(--primary);
}

.chairman-role {
    display: block;

    margin-top: 15px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.chairman-content > p {
    margin-top: 25px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   CHAIRMAN DETAILS
========================================================= */

.chairman-details {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

    margin-top: 30px;
}

.chairman-detail {
    padding: 18px;

    background: var(--primary-soft);

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

    border-radius: 14px;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.chairman-detail:hover {
    transform: translateY(-4px);

    border-color:
        var(--border-dark);

    box-shadow:
        var(--shadow-sm);
}

.chairman-detail strong {
    display: block;

    color: var(--dark);

    font-size: 12px;

    font-weight: 700;
}

.chairman-detail span {
    display: block;

    margin-top: 5px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   RESEARCH SECTION
========================================================= */

.research-section {
    background:
        linear-gradient(
            180deg,
            #f5faf7 0%,
            #edf7f2 100%
        );
}

.research-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.research-card {
    position: relative;

    min-height: 320px;

    padding: 32px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: white;

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

    border-radius: 22px;

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.research-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    background:
        var(--primary-light);

    transition:
        transform .5s ease;
}

.research-card:hover {
    transform:
        translateY(-8px);

    border-color:
        var(--border-dark);

    box-shadow:
        var(--shadow-lg);
}

.research-card:hover::before {
    transform: scale(1.25);
}


/* RESEARCH NUMBER */

.research-number {
    position: relative;

    z-index: 2;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* RESEARCH ICON */

.research-icon {
    position: relative;

    z-index: 2;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 25px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--accent)
        );

    border-radius: 15px;

    box-shadow:
        0 10px 25px
        rgba(24,123,89,.16);
}

.research-icon i {
    font-size: 18px;
}


/* RESEARCH CONTENT */

.research-card h3 {
    position: relative;

    z-index: 2;

    margin-top: 20px;

    color: var(--dark);

    font-family:
        "Playfair Display",
        serif;

    font-size: 28px;

    line-height: 1.2;
}

.research-card p {
    position: relative;

    z-index: 2;

    margin-top: 10px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   RESEARCH LINK
========================================================= */

.research-link {
    position: relative;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    margin-top: 25px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .6px;

    transition:
        gap var(--transition),
        color var(--transition);
}

.research-link:hover {
    gap: 13px;

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


/* =========================================================
   CALL FOR PAPERS
========================================================= */

.call-section {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #f4faf7 0%,
            #eef8f4 100%
        );

    overflow: hidden;
}


/* =========================================================
   CALL BANNER
========================================================= */

.call-banner {
    position: relative;

    min-height: 520px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, .75fr);

    align-items: center;

    gap: 50px;

    padding:
        70px 75px;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #075c48 0%,
            #08755a 48%,
            #15936d 100%
        );

    border-radius: 34px;

    box-shadow:
        0 35px 80px
        rgba(21,112,83,.18);
}


/* DECORATIVE CIRCLES */

.call-banner::before {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    right: -180px;
    top: -290px;

    border-radius: 50%;

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

    pointer-events: none;
}

.call-banner::after {
    content: "";

    position: absolute;

    width: 390px;
    height: 390px;

    right: 70px;
    bottom: -285px;

    border-radius: 50%;

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

    pointer-events: none;
}


/* =========================================================
   CALL CONTENT
========================================================= */

.call-content {
    position: relative;

    z-index: 5;

    max-width: 700px;
}

.call-kicker {
    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 25px;
}

.call-number {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        rgba(255,255,255,.85);

    border:
        1px solid
        rgba(255,255,255,.30);

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

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;
}

.call-content .section-label {
    color: #a7dfc5;

    font-size: 11px;

    letter-spacing: 1.8px;
}


/* =========================================================
   CALL HEADING
========================================================= */

.call-content h2 {
    margin: 0;

    color: white;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(52px, 5vw, 78px);

    line-height: .98;

    font-weight: 600;

    letter-spacing: -2px;
}

.call-content h2 span {
    display: block;

    color: #b7e8d0;

    font-style: italic;
}


/* =========================================================
   CALL DESCRIPTION
========================================================= */

.call-description {
    max-width: 650px;

    margin-top: 28px;

    color:
        rgba(255,255,255,.78);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   CALL META
========================================================= */

.call-meta {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(210px, 1fr));

    gap: 14px;

    margin-top: 30px;
}

.call-meta-item {
    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 67px;

    padding:
        12px 15px;

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

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 13px;

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.call-meta-item:hover {
    transform:
        translateY(-3px);

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

    border-color:
        rgba(255,255,255,.22);
}

.call-meta-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #a9e5c8;

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

    border-radius: 10px;

    font-size: 14px;
}

.call-meta-item strong {
    display: block;

    color: white;

    font-size: 11px;

    font-weight: 700;

    line-height: 1.3;
}

.call-meta-item span {
    display: block;

    margin-top: 4px;

    color:
        rgba(255,255,255,.58);

    font-size: 10px;

    line-height: 1.4;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.call-submit-btn {
    margin-top: 30px;

    min-height: 54px;

    padding:
        0 25px;

    color:
        var(--primary-dark);

    background:
        white;

    border:
        1px solid
        rgba(255,255,255,.25);

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

.call-submit-btn:hover {
    color: white;

    background:
        var(--primary-dark);

    box-shadow:
        0 16px 35px
        rgba(0,0,0,.16);
}

.call-submit-btn i {
    transition:
        transform var(--transition);
}

.call-submit-btn:hover i {
    transform:
        translateX(4px);
}


/* =========================================================
   CALL VISUAL
========================================================= */

.call-visual {
    position: relative;

    z-index: 4;

    min-height: 390px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.call-visual-lines {
    position: absolute;

    width: 430px;
    height: 430px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 50%;
}

.call-visual-lines::before,
.call-visual-lines::after {
    content: "";

    position: absolute;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 50%;
}

.call-visual-lines::before {
    width: 330px;
    height: 330px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);
}

.call-visual-lines::after {
    width: 230px;
    height: 230px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);
}


/* =========================================================
   CALL DOCUMENT
========================================================= */

.call-document {
    position: relative;

    z-index: 3;

    width: 250px;

    min-height: 315px;

    padding: 24px;

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

    border-radius: 9px;

    box-shadow:
        0 28px 55px
        rgba(0,50,35,.20);

    transform:
        rotate(5deg);

    animation:
        documentFloat
        6s ease-in-out infinite;

    overflow: hidden;
}

@keyframes documentFloat {

    0%,
    100% {
        transform:
            rotate(5deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(3deg)
            translateY(-10px);
    }
}


/* DOCUMENT TOP */

.document-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 17px;

    border-bottom:
        1px solid #dceae4;
}

.document-logo {
    color:
        var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.document-dots {
    display: flex;

    gap: 4px;
}

.document-dots span {
    width: 5px;
    height: 5px;

    display: block;

    border-radius: 50%;

    background:
        #b5cfc4;
}


/* DOCUMENT HEADING */

.document-heading {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-top: 25px;
}

.document-heading span {
    display: block;

    height: 7px;

    border-radius: 5px;

    background:
        #c9ddd5;
}

.document-heading span:nth-child(1) {
    width: 78%;

    height: 11px;

    background:
        #176f56;
}

.document-heading span:nth-child(2) {
    width: 58%;
}

.document-heading span:nth-child(3) {
    width: 67%;
}


/* DOCUMENT LINES */

.document-lines {
    display: flex;

    flex-direction: column;

    gap: 9px;

    margin-top: 25px;
}

.document-lines span {
    display: block;

    width: 100%;

    height: 5px;

    border-radius: 5px;

    background:
        #e0ebe7;
}

.document-lines span:nth-child(2) {
    width: 91%;
}

.document-lines span:nth-child(3) {
    width: 82%;
}

.document-lines span:nth-child(4) {
    width: 94%;
}

.document-lines span:nth-child(5) {
    width: 72%;
}


/* DOCUMENT HIGHLIGHT */

.document-highlight {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

    padding: 12px;

    color:
        #086148;

    background:
        #e9f6f0;

    border-radius: 9px;

    font-size: 11px;
}

.document-highlight i {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    background:
        #13805f;

    border-radius: 7px;

    font-size: 11px;
}


/* DOCUMENT FOOTER */

.document-footer {
    display: flex;

    gap: 7px;

    margin-top: 25px;
}

.document-footer span {
    display: block;

    height: 4px;

    border-radius: 5px;

    background:
        #d8e7e1;
}

.document-footer span:first-child {
    width: 55px;
}

.document-footer span:last-child {
    width: 35px;
}


/* =========================================================
   FLOATING CARD
========================================================= */

.call-floating-card {
    position: absolute;

    z-index: 5;

    right: 4px;
    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 210px;

    padding:
        13px 16px;

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

    border:
        1px solid
        rgba(255,255,255,.35);

    border-radius: 14px;

    box-shadow:
        0 18px 40px
        rgba(0,45,32,.18);

    animation:
        floatingCard
        6s ease-in-out infinite;
}

@keyframes floatingCard {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-7px);
    }
}

.floating-icon {
    width: 39px;
    height: 39px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #08755a,
            #15936d
        );

    border-radius: 10px;

    font-size: 14px;
}

.call-floating-card strong {
    display: block;

    color:
        #17372d;

    font-size: 11px;

    font-weight: 800;

    line-height: 1.3;
}

.call-floating-card span {
    display: block;

    margin-top: 3px;

    color:
        #81948e;

    font-size: 9px;

    line-height: 1.4;
}
/* =========================================================
   EVENTS SECTION
========================================================= */

.events-section {
    background: var(--white);
}

.event-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.event-card {
    display: grid;

    grid-template-columns: 95px minmax(0, 1fr);

    min-width: 0;

    background: white;

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

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.event-card:hover {
    transform: translateY(-6px);

    border-color:
        var(--border-dark);

    box-shadow:
        var(--shadow);
}


/* EVENT DATE */

.event-date {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 20px 10px;

    background:
        var(--primary-light);

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

.event-date span {
    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.event-date strong {
    margin-top: 3px;

    color: var(--dark);

    font-family:
        "Playfair Display",
        serif;

    font-size: 27px;

    line-height: 1;
}

.event-date small {
    margin-top: 4px;

    color: var(--muted);

    font-size: 9px;

    font-weight: 600;
}


/* EVENT CONTENT */

.event-content {
    padding:
        25px 28px;
}

.event-content .event-type {
    display: inline-block;

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.event-content h3 {
    margin-top: 8px;

    color: var(--dark);

    font-family:
        "Playfair Display",
        serif;

    font-size: 25px;

    line-height: 1.2;
}

.event-content p {
    margin-top: 9px;

    color: var(--text);

    font-size: 12px;

    line-height: 1.75;
}

.event-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 15px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;

    transition:
        gap var(--transition);
}

.event-link:hover {
    gap: 13px;
}


/* =========================================================
   LATEST UPDATES
========================================================= */

.latest-section {
    background:
        var(--primary-soft);
}

.latest-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.latest-card {
    position: relative;

    min-width: 0;

    background: white;

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

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.latest-card:hover {
    transform:
        translateY(-7px);

    border-color:
        var(--border-dark);

    box-shadow:
        var(--shadow);
}


/* LATEST IMAGE */

.latest-image {
    position: relative;

    height: 220px;

    overflow: hidden;

    background:
        var(--primary-light);
}

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

    object-fit: cover;

    transition:
        transform .7s ease;
}

.latest-card:hover
.latest-image img {
    transform:
        scale(1.06);
}

.latest-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(10,55,40,.35),
            transparent 55%
        );
}


/* LATEST BODY */

.latest-content {
    padding:
        23px 24px 25px;
}

.latest-date {
    display: block;

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.latest-content h3 {
    margin-top: 8px;

    color: var(--dark);

    font-family:
        "Playfair Display",
        serif;

    font-size: 23px;

    line-height: 1.25;
}

.latest-content p {
    margin-top: 9px;

    color: var(--text);

    font-size: 12px;

    line-height: 1.75;
}

.latest-content .text-link {
    margin-top: 14px;
}


/* =========================================================
   GALLERY SECTION
========================================================= */

.gallery-section {
    background: var(--white);
}

.gallery-strip {
    display: grid;

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

    gap: 14px;
}

.gallery-item {
    position: relative;

    height: 300px;

    overflow: hidden;

    border-radius: 18px;

    background:
        var(--primary-light);

    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}

.gallery-item:hover img {
    transform:
        scale(1.08);
}

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(7,55,42,.38),
            transparent 60%
        );

    opacity: 0;

    transition:
        opacity var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}


/* =========================================================
   CONNECT SECTION
========================================================= */

.connect-section {
    background:
        linear-gradient(
            180deg,
            #f3faf7,
            #ffffff
        );
}

.connect-layout {
    display: grid;

    grid-template-columns:
        minmax(300px, .8fr)
        minmax(0, 1.2fr);

    gap: 65px;

    align-items: start;
}


/* CONNECT INFO */

.connect-info {
    max-width: 520px;
}

.connect-info h2 {
    margin-top: 10px;

    color: var(--dark);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(40px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -1px;
}

.connect-info h2 span {
    color: var(--primary);
}

.connect-info > p {
    margin-top: 18px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.85;
}


/* CONTACT ITEMS */

.contact-list {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-top: 30px;
}

.contact-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        13px 15px;

    background:
        var(--primary-soft);

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

    border-radius: 12px;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.contact-item:hover {
    transform:
        translateX(5px);

    box-shadow:
        var(--shadow-sm);
}

.contact-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    background:
        var(--primary);

    border-radius: 10px;
}

.contact-item strong {
    display: block;

    color: var(--dark);

    font-size: 11px;
}

.contact-item span {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   CONNECT FORM
========================================================= */

.connect-form-card {
    padding:
        35px;

    background:
        white;

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

    border-radius: 24px;

    box-shadow:
        var(--shadow);
}

.connect-form-card h3 {
    color: var(--dark);

    font-family:
        "Playfair Display",
        serif;

    font-size: 30px;

    line-height: 1.2;
}

.connect-form-card > p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 12px;
}


/* FORM */

.connect-form {
    margin-top: 25px;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--dark);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding:
        13px 14px;

    color: var(--dark);

    background:
        #f8fbf9;

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

    border-radius: 10px;

    outline: none;

    font-size: 12px;

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.form-group textarea {
    min-height: 135px;

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: white;

    border-color:
        var(--primary);

    box-shadow:
        0 0 0 4px
        rgba(24,123,89,.07);
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    padding:
        70px 0;

    background:
        var(--white);
}

.newsletter-inner {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, .7fr);

    gap: 50px;

    align-items: center;

    padding:
        50px 60px;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #064c3c,
            #08745a
        );

    border-radius: 28px;

    box-shadow:
        var(--shadow-lg);
}

.newsletter-inner::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -200px;
    top: -200px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 50%;
}

.newsletter-inner h2 {
    position: relative;

    z-index: 2;

    color: white;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(34px, 4vw, 50px);

    line-height: 1.1;
}

.newsletter-inner p {
    position: relative;

    z-index: 2;

    max-width: 650px;

    margin-top: 12px;

    color:
        rgba(255,255,255,.70);

    font-size: 13px;

    line-height: 1.8;
}


/* NEWSLETTER FORM */

.newsletter-form {
    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 7px;

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

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 16px;
}

.newsletter-form input {
    flex: 1;

    min-width: 0;

    height: 45px;

    padding:
        0 13px;

    color: white;

    background: transparent;

    border: 0;

    outline: none;

    font-size: 12px;
}

.newsletter-form input::placeholder {
    color:
        rgba(255,255,255,.55);
}

.newsletter-form .btn {
    flex-shrink: 0;

    min-height: 45px;

    padding:
        0 20px;
}


/* =========================================================
   FOOTER — SHARED SITE-WIDE
   Purpose:
   - Keeps the existing footer content unchanged.
   - Keeps Explore, Resources and Connect columns side-by-side.
   - Keeps links inside each column vertically stacked.
   - Keeps the logo visible without changing its artwork.
========================================================= */

.site-footer {
    width: 100%;
    background: #103d30;
    color: rgba(255,255,255,.70);
}

.site-footer > .container {
    padding-top: 65px;
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.65fr repeat(5, minmax(0, 1fr));
    gap: 50px;
    align-items: start;
}

/* Footer brand/logo area */
.footer-brand {
    max-width: 400px;
}

.footer-brand .brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.footer-brand .brand-logo {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
}

.footer-brand .brand-logo img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
    opacity: 1;
    visibility: visible;
}

.footer-brand .brand-text strong {
    color: white;
}

.footer-brand .brand-text span {
    color: rgba(255,255,255,.45);
    font-size: 10px;
}

.footer-brand > p {
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.85;
}

/* Footer social icons */
.footer-social,
.site-footer .social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.footer-social a,
.site-footer .social-links a {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: rgba(255,255,255,.70);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.footer-social a:hover,
.site-footer .social-links a:hover {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Footer column headings */
.footer-column {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3,
.footer-column h4 {
    display: block;
    width: 100%;
    margin: 0 0 18px;
    color: white;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer links — each link gets its own line */
.footer-column > a {
    display: block;
    width: fit-content;
    margin: 0 0 9px;
    padding: 0;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column > a:hover {
    color: #a9e5c8;
    transform: translateX(4px);
}

/* Footer bottom bar */
.footer-bottom {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.09);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.42);
    font-size: 10px;
    line-height: 1.5;
}

.footer-bottom-links,
.footer-bottom > div {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links a,
.footer-bottom > div a {
    margin: 0;
    color: rgba(255,255,255,.45);
    font-size: 10px;
    line-height: 1.5;
    transition: color var(--transition);
}

.footer-bottom-links a:hover,
.footer-bottom > div a:hover {
    color: white;
}

/* Footer — tablet */
@media screen and (max-width: 1000px) {
    .site-footer > .container {
        padding-top: 55px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr repeat(2, minmax(0, 1fr));
        gap: 40px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }
}

/* Footer — mobile */
@media screen and (max-width: 768px) {
    .site-footer > .container {
        padding-top: 50px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-brand > p {
        max-width: 100%;
    }

    .footer-bottom {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom-links,
    .footer-bottom > div {
        align-items: flex-start;
        gap: 10px 18px;
    }
}

/* Footer — small mobile */
@media screen and (max-width: 480px) {
    .site-footer > .container {
        width: calc(100% - 30px);
        padding-top: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 18px;
    }

    .footer-brand .brand-logo {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .footer-brand .brand-logo img {
        width: 38px;
        height: 38px;
    }

    .footer-brand .brand-text strong {
        font-size: 18px;
    }

    .footer-column h3,
    .footer-column h4 {
        margin-bottom: 14px;
        font-size: 11px;
    }

    .footer-column > a {
        font-size: 11px;
        white-space: normal;
    }

    .footer-social,
    .site-footer .social-links {
        gap: 7px;
    }

    .footer-social a,
    .site-footer .social-links a {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .footer-bottom {
        gap: 8px;
    }

    .footer-bottom p,
    .footer-bottom-links a,
    .footer-bottom > div a {
        font-size: 9px;
    }
}

/* =========================================================
   PAGE LOAD ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   COMMON HOVER EFFECT
========================================================= */

.hover-lift {
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.hover-lift:hover {
    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow);
}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--primary);

    background:
        var(--primary-light);

    font-size: 30px;
}


/* =========================================================
   LOADING
========================================================= */

.loading {
    position: relative;

    overflow: hidden;
}

.loading::after {
    content: "";

    position: absolute;

    inset: 0;

    transform:
        translateX(-100%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    animation:
        loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {

    100% {
        transform:
            translateX(100%);
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline:
        3px solid
        rgba(24,123,89,.25);

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}
/* =========================================================
   HOMEPAGE-ONLY VISUAL FIXES
   Purpose:
   - These selectors require #newsletter, which exists on the homepage.
   - Other pages using style.css are not affected by these rules.
========================================================= */

/* Hero heading line spacing */
body:has(#newsletter) .hero h1 {
    line-height: 1.14 !important;
    letter-spacing: -1.5px !important;
}

body:has(#newsletter) .hero h1 span {
    margin-top: 7px;
}

/* Section heading spacing */
body:has(#newsletter) .section-header h2,
body:has(#newsletter) .section-header.centered h2 {
    line-height: 1.18;
}

/* Research card top row */
body:has(#newsletter) .research-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

body:has(#newsletter) .research-card-top span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
}

body:has(#newsletter) .research-card-top i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid var(--border);
    border-radius: 12px;
}

/* Research card links */
body:has(#newsletter) .card-link {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 22px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition: gap var(--transition), color var(--transition);
}

body:has(#newsletter) .card-link:hover {
    gap: 13px;
    color: var(--primary-dark);
}

/* Section title + action link row */
body:has(#newsletter) .section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

body:has(#newsletter) .section-header-row h2 {
    margin-top: 12px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: -1px;
}

body:has(#newsletter) .section-header-row .text-link {
    flex-shrink: 0;
    margin-top: 0;
    margin-bottom: 5px;
}

/* Founder/image helpers */
body:has(#newsletter) .image-frame {
    position: relative;
    z-index: 1;
}

body:has(#newsletter) .image-caption {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

body:has(#newsletter) .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(73,169,121,.16),
            transparent 45%
        ),
        var(--primary-light);
}

body:has(#newsletter) .placeholder-image i {
    font-size: 42px;
    opacity: .75;
}

/* Connect information cards */
body:has(#newsletter) .connect-info {
    width: 100%;
    max-width: 620px;
}

body:has(#newsletter) .connect-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    margin-bottom: 14px;
    background: rgba(255,255,255,.72);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(28,91,69,.05);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

body:has(#newsletter) .connect-info-item:last-child {
    margin-bottom: 0;
}

body:has(#newsletter) .connect-info-item:hover {
    transform: translateY(-3px);
    border-color: var(--border-dark);
    box-shadow: var(--shadow-sm);
}

body:has(#newsletter) .feature-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 13px;
}

body:has(#newsletter) .connect-info-item h3 {
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 21px;
    line-height: 1.25;
}

body:has(#newsletter) .connect-info-item p {
    margin-top: 6px;
    color: var(--text);
    font-size: 12px;
    line-height: 1.7;
}

body:has(#newsletter) .connection-form,
body:has(#newsletter) .connect-form {
    margin-top: 25px;
}

body:has(#newsletter) .connection-form > .btn {
    width: 100%;
    margin-top: 4px;
}

body:has(#newsletter) .form-check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 2px 0 18px;
}

body:has(#newsletter) .form-check input {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    margin-top: 2px;
    accent-color: var(--primary);
}

body:has(#newsletter) .form-check label {
    margin: 0 !important;
    color: var(--muted) !important;
    font-size: 10px !important;
    line-height: 1.55 !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* Newsletter separation from footer */
body:has(#newsletter) .newsletter-section {
    background: var(--white);
}

body:has(#newsletter) .newsletter-inner {
    background:
        linear-gradient(
            120deg,
            #064c3c,
            #08745a
        );
}

/* Homepage responsive adjustments */
@media screen and (max-width: 900px) {
    body:has(#newsletter) .section-header-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 35px;
    }

    body:has(#newsletter) .section-header-row .text-link {
        margin-bottom: 0;
    }

    body:has(#newsletter) .connect-layout {
        gap: 30px !important;
    }

    body:has(#newsletter) .connect-info {
        max-width: none;
    }
}

@media screen and (max-width: 768px) {
    body:has(#newsletter) .hero h1 {
        line-height: 1.12 !important;
        letter-spacing: -1.2px !important;
    }

    body:has(#newsletter) .hero h1 span {
        margin-top: 6px;
    }

    body:has(#newsletter) .section-header h2,
    body:has(#newsletter) .section-header.centered h2,
    body:has(#newsletter) .section-header-row h2 {
        line-height: 1.18 !important;
    }

    body:has(#newsletter) .connect-form-card {
        padding: 24px 20px !important;
        border-radius: 20px !important;
    }

    body:has(#newsletter) .connect-info-item {
        padding: 16px;
        gap: 13px;
    }

    body:has(#newsletter) .feature-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    body:has(#newsletter) .connect-info-item h3 {
        font-size: 19px;
    }

    body:has(#newsletter) .connect-info-item p {
        font-size: 11px;
    }
}

@media screen and (max-width: 480px) {
    body:has(#newsletter) .hero h1 {
        line-height: 1.14 !important;
    }

    body:has(#newsletter) .connect-info-item {
        padding: 15px;
    }

    body:has(#newsletter) .form-check label {
        font-size: 9px !important;
    }
}


/* Header typography — readable size, original layout preserved */
.site-header .brand-text strong {
    font-size: 25px;
}

.site-header .brand-text span {
    font-size: 15px;
}

.site-header .nav-link,
.site-header .nav-dropdown-toggle {
    font-size: 17px;
}

/* Homepage event archive — preserve complete poster images */
.home-event-archive-grid .gallery-item img { object-fit: contain !important; object-position: center; background: #eef3f1; }

/* Footer logo consistency */
.site-footer .footer-mini-brand, .contact-footer .footer-mini-brand, .involved-footer .footer-mini-brand, .cfp-footer .footer-mini-brand { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.site-footer .footer-mini-brand img, .contact-footer .footer-mini-brand img, .involved-footer .footer-mini-brand img, .cfp-footer .footer-mini-brand img { width:48px; height:48px; object-fit:contain; display:block; }
.contact-footer .footer-mini-brand, .involved-footer .footer-mini-brand, .cfp-footer .footer-mini-brand { justify-content:center; }
.footer-mini-brand span { font-weight:700; font-size:18px; }


/* =========================================================
   FINAL FOOTER ALIGNMENT — MATCH HOMEPAGE
   Prevent global flex rules from turning the brand block
   into a horizontal layout. All standard footers use the
   same structure and alignment as the homepage footer.
========================================================= */
.site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1.65fr repeat(5, minmax(0, 1fr)) !important;
    gap: 50px !important;
    align-items: start !important;
}
.site-footer .footer-brand {
    display: block !important;
    align-items: initial !important;
    min-height: 0 !important;
    max-width: 400px !important;
    width: auto !important;
}
.site-footer .footer-brand .brand {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}
.site-footer .footer-brand > p {
    display: block !important;
    width: 100% !important;
    max-width: 330px !important;
    margin-top: 0 !important;
}
.site-footer .footer-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    min-width: 0 !important;
}
.site-footer .footer-column > a {
    display: block !important;
    width: fit-content !important;
    white-space: nowrap !important;
}
@media screen and (max-width: 1000px) {
    .site-footer .footer-grid {
        grid-template-columns: 1.5fr repeat(2, minmax(0, 1fr)) !important;
        gap: 40px 30px !important;
    }
    .site-footer .footer-brand {
        grid-column: 1 / -1 !important;
        max-width: 600px !important;
    }
}
@media screen and (max-width: 768px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 38px 25px !important;
    }
    .site-footer .footer-brand {
        grid-column: 1 / -1 !important;
        max-width: 100% !important;
    }
    .site-footer .footer-brand > p {
        max-width: 100% !important;
    }
}
@media screen and (max-width: 480px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px 18px !important;
    }
}
