﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CRESTWISE CHRISTIAN ACADEMY
   Luxury Ritz-Inspired Design System
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€â”€ Tokens â”€â”€â”€â”€ */
:root {
    /* Palette â€“ inspired by The Ritz London */
    --contrast: #152340;
    /* deep purple-navy      */
    --contrast-2: #1d1a3c;
    /* darker shade           */
    --base: #FDFAF8;
    /* warm off-white         */
    --base-2: #F3E8DC;
    /* warm cream             */
    --base-3: #FEEDE0;
    /* peach highlight        */
    --accent: #C5A55A;
    /* antique gold           */
    --accent-2: #DEA590;
    /* warm rose              */
    --dark: #0B1420;
    /* near-black             */
    --muted: #6A6580;
    /* muted lavender-grey    */
    --text: #3A3650;
    /* main text colour       */
    --danger: #A0454E;
    /* warning / negative     */
    --success: #4D7B5F;
    /* positive / good        */

    /* Typography */
    --ff-display: 'Playfair Display', 'Georgia', serif;
    --ff-body: 'Cormorant Garamond', 'Times New Roman', serif;
    --ff-links: 'Outfit', 'Helvetica Neue', sans-serif;

    /* Spacing scale */
    --space-xs: .5rem;
    --space-s: 1rem;
    --space-m: 2rem;
    --space-l: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;

    /* Ease */
    --ease: cubic-bezier(.42, 0, .12, 1);

    /* Widths */
    --narrow: 560px;
    --medium: 920px;
    --wide: 1200px;
}


/* â”€â”€â”€â”€ Reset â”€â”€â”€â”€ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--base);
    line-height: 1.75;
    font-size: 1.4rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 250, 248, .95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(41, 36, 81, .08);
    z-index: 1000;
    transition: transform .5s var(--ease), opacity .5s var(--ease);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.navbar.navbar-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ── Main bar ── */
.navbar-container {
    max-width: var(--wide);
    margin: 0 auto;
    padding: 0.9rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.navbar-logo-link { flex-shrink: 0; }

.navbar-logo {
    height: 38px;
    width: auto;
    display: block;
}

/* Current section label */
.navbar-current {
    flex: 1;
    text-align: center;
    font-family: var(--ff-links);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .3s;
}

/* Right group: lang pill + toggle */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Lang pill */
.navbar-lang {
    font-family: var(--ff-links);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--contrast);
    border: 1.5px solid currentColor;
    border-radius: 3px;
    padding: 2px 8px;
    opacity: 0.75;
    transition: opacity .2s;
    white-space: nowrap;
    text-decoration: none;
}
.navbar-lang:hover  { opacity: 1; }
.navbar-lang::after { content: none; }

/* Hamburger toggle – always visible */
.navbar-toggle {
    display: flex;
    cursor: pointer;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    padding: 0;
}

.navbar-toggle span {
    display: block;
    height: 2px;
    background: var(--contrast);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s var(--ease), width .3s var(--ease);
    transform-origin: center;
}

/* X animation when active */
.navbar-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.navbar-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Drawer panel ── */
.navbar-drawer {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s var(--ease), border-top-color .35s;
    border-top: 1px solid transparent;
}

.navbar-drawer.active {
    max-height: 300px;
    border-top-color: rgba(41, 36, 81, .08);
}

.navbar-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    align-items: center;
    padding: 1rem 5%;
    max-width: var(--wide);
    margin: 0 auto;
    list-style: none;
}

/* Nav links */
.navbar-link {
    font-family: var(--ff-links);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--contrast);
    position: relative;
    white-space: nowrap;
    transition: color .3s;
}

.navbar-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .3s var(--ease);
}

.navbar-link:hover        { color: var(--accent); }
.navbar-link:hover::after { width: 100%; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   COVER â€“ Full-bleed hero / section covers
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cover {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    color: #fff;
}

.cover--section {
    min-height: 70vh;
}

.cover--contact {
    min-height: 60vh;
}

.cover__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cover__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(29, 26, 60, .55) 0%,
            rgba(29, 26, 60, .70) 100%);
    z-index: 2;
}

.cover__media video,
.cover__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.cover__body {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: var(--medium);
    padding: var(--space-xl) var(--space-m);
}

.cover__logo {
    max-width: 315px;
    margin: 0 auto var(--space-m);
    filter: drop-shadow(0 2px 16px rgba(0, 0, 0, .35));
}

.cover__title {
    font-family: var(--ff-display);
    font-size: clamp(4rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: .02em;
    margin-bottom: var(--space-s);
}

.cover__title em {
    font-style: italic;
    font-weight: 400;
}

.cover__lead {
    font-family: var(--ff-body);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: .06em;
    margin-bottom: var(--space-m);
    opacity: .9;
}

.cover__text {
    font-size: 1.5rem;
    line-height: 1.8;
    opacity: .92;
}

.cover__text--large {
    font-size: clamp(1.5rem, 1.2vw + 0.5rem, 1.25rem);
    line-height: 1.9;
}

.cover__text p+p {
    margin-top: var(--space-s);
}

.cover__actions {
    display: flex;
    gap: var(--space-s);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-m);
}

/* Scripture â€“ large biblical quotes */
.scripture {
    text-align: center;
    margin: var(--space-m) 0;
    padding: 0;
    border: none;
}

.scripture p {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    line-height: 1.6;
    color: var(--contrast);
}

.scripture cite {
    display: block;
    font-size: .9rem;
    font-style: normal;
    font-family: var(--ff-links);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: var(--space-s);
}

.cover__cta {
    display: flex;
    gap: var(--space-s);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-m);
}

.cover__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: rgba(255, 255, 255, .7);
    font-size: 1.2rem;
    animation: bob 2s ease-in-out infinite;
    transition: color .3s;
}

.cover__scroll:hover {
    color: var(--accent);
}

@keyframes bob {

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

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

.heading--cover {
    font-family: var(--ff-display);
    font-size: clamp(3.0rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.heading--cover em {
    font-style: italic;
    font-weight: 400;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOCK â€“ Centered content sections
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.block--padded {
    padding: var(--space-xxl) var(--space-m);
}

.block--padded-top {
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-l);
    padding-left: var(--space-xxl);
    padding-right: var(--space-xxl);
}

.block--flush {
    padding: 0;
}

.block--cream {
    background: var(--base-2);
}

.block--dark {
    background: var(--contrast);
    color: #fff;
}

.block__narrow {
    max-width: var(--narrow);
    width: 100%;
    text-align: center;
}

.block__medium {
    max-width: var(--medium);
    width: 100%;
    padding: 0 var(--space-m);
    margin-top: var(--space-l);
}

.block__wide {
    max-width: var(--wide);
    width: 100%;
    padding: 0 var(--space-m);
    margin-top: var(--space-l);
}


/* â”€â”€â”€â”€ Typography â”€â”€â”€â”€ */
.heading--display {
    font-family: var(--ff-display);
    font-size: clamp(3.2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--contrast);
}

.heading--display em {
    font-style: italic;
    font-weight: 400;
}

.heading--light {
    color: #fff;
}

.heading--section {
    font-family: var(--ff-display);
    font-size: clamp(3.0rem, 2.8vw, 2.2rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--contrast);
}

.heading--section em {
    font-style: italic;
    font-weight: 400;
}

.text--subtitle {
    font-family: var(--ff-body);
    font-size: 1.5rem;
    line-height: 1.85;
    color: var(--muted);
    margin-top: var(--space-s);
}

.text--center {
    text-align: center;
}

.text--emotive {
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    color: var(--accent-2);
    margin-top: var(--space-l);
    line-height: 1.6;
}

.prose p+p {
    margin-top: var(--space-s);
}

.prose {
    text-align: left;
    line-height: 1.85;
}


/* â”€â”€â”€â”€ Divider â€“ Shadow + Logo Medallion â”€â”€â”€â”€ */
.h-divider {
    margin: var(--space-m) auto;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.h-divider .shadow {
    overflow: hidden;
    height: 20px;
}

.h-divider .shadow::after {
    content: '';
    display: block;
    margin: -25px auto 0;
    width: 100%;
    height: 25px;
    border-radius: 125px / 12px;
    box-shadow: 0 0 8px rgba(41, 36, 81, .15);
}

.h-divider__logo {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 100%;
    margin-bottom: -25px;
    left: 50%;
    margin-left: -25px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(41, 36, 81, .12);
    background: var(--base);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.h-divider__logo img {
    max-width: 34px;
    max-height: 34px;
    border-radius: 50%;
    border: 1px dashed var(--accent);
    padding: 3px;
    opacity: .35;
    filter: sepia(.3) saturate(.5);
    transition: opacity .4s var(--ease);
}

.h-divider:hover .h-divider__logo img {
    opacity: .6;
}

/* â”€â”€ Light variant (on dark backgrounds) â”€â”€ */
.h-divider--light .shadow::after {
    box-shadow: 0 0 8px rgba(255, 255, 255, .12);
}

.h-divider--light .h-divider__logo {
    background: var(--contrast);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

.h-divider--light .h-divider__logo img {
    filter: brightness(0) invert(1);
    opacity: .25;
}

.h-divider--light:hover .h-divider__logo img {
    opacity: .45;
}


/* â”€â”€â”€â”€ Label â”€â”€â”€â”€ */
.label {
    font-family: var(--ff-links);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: var(--space-xs);
}

.label--light {
    color: rgba(255, 255, 255, .7);
}


/* â”€â”€â”€â”€ Buttons â”€â”€â”€â”€ */
.btn {
    display: inline-block;
    font-family: var(--ff-links);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .9rem 2.4rem;
    cursor: pointer;
    transition: all .35s var(--ease);
    border: none;
}

.btn--chamfered {
    background: var(--contrast);
    color: #fff;
    border: 1px solid var(--accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
}

.btn--chamfered:hover {
    background: #000;
    border-color: #fff;
    transform: translateY(-2px);
}

.btn--outline {
    background: linear-gradient(to bottom, #fff, #f7f7f7);
    border: 1px solid var(--accent);
    color: var(--contrast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}

.btn--outline:hover {
    background: #fff;
    border-color: var(--contrast);
    color: var(--contrast);
    transform: translateY(-2px);
}

.btn--light {
    background: transparent;
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
    box-shadow: none;
}

.btn--light:hover {
    background: rgba(255, 255, 255, .15);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
}

.btn i {
    margin-right: .5rem;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SPLIT â€“ Two-column panels
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.split--reverse {
    direction: rtl;
}

.split--reverse>* {
    direction: ltr;
}

.split__col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.split__col--dark {
    background: var(--contrast);
    color: #fff;
}

.split__col--dark .heading--section {
    color: #fff;
}

.split__col--dark .divider {
    background: var(--accent);
}

.split__col--accent {
    background: var(--base-2);
}

.split__col--image {
    position: relative;
    overflow: hidden;
}

.split__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s var(--ease);
}

.split__col--image:hover .split__image {
    transform: scale(1.04);
}

.split__col--content {
    padding: var(--space-xl) var(--space-l);
}

.split__col--dark,
.split__col--accent {
    padding: var(--space-l) 7%;
}

.split__content {
    max-width: 560px;
}

.split__content h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.split__content p {
    margin-top: var(--space-s);
    font-size: clamp(1.5rem, 1.2vw + 0.5rem, 1.35rem);
    line-height: 1.9;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CARDS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.card-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-m);
}

.card {
    background: var(--base);
    border: 1px solid rgba(41, 36, 81, .08);
    padding: var(--space-m);
    text-align: left;
    position: relative;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .4s var(--ease), left .4s var(--ease);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(41, 36, 81, .08);
}

.card:hover::before {
    width: 100%;
    left: 0;
}

.card__icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: var(--space-s);
}

.card p {
    line-height: 1.75;
    font-size: 1rem;
}

/* Glass variant â€“ for dark backgrounds */
.card.card--glass {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    color: var(--base-2);
}

.card--glass .card__icon {
    border-color: rgba(197, 165, 90, .5);
    color: var(--accent);
}

.card--glass:hover {
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
}

.card--glass::before {
    background: var(--accent);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTENT IMAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.content-image {
    overflow: hidden;
}

.content-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   QUOTE & CALLOUT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.quote {
    text-align: left;
    margin-top: var(--space-l);
    padding: var(--space-m) 0 var(--space-m) var(--space-m);
    border-left: 3px solid var(--accent);
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--contrast);
    line-height: 1.7;
}

.quote cite {
    display: block;
    font-size: .9rem;
    font-style: normal;
    font-family: var(--ff-body);
    color: var(--muted);
    margin-top: var(--space-s);
}

/* Light variant â€“ for dark backgrounds */
.quote.quote--light {
    color: var(--base-2);
    border-left-color: var(--accent);
}

.quote--light cite {
    color: var(--base-3);
}

.callout {
    margin-top: var(--space-m);
    padding: var(--space-m);
    background: var(--contrast);
    color: #fff;
    text-align: center;
}

.callout p {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Accent variant */
.callout.callout--accent {
    background: var(--accent);
    color: var(--contrast);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FORK â€“ Two paths comparison
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.fork {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-m);
    text-align: left;
}

.fork__col {
    padding: var(--space-l);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(41, 36, 81, .05);
    transition: transform .3s var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fork__col:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(41, 36, 81, .1);
}

.fork__col--gray {
    background: #fff;
    border-top: 4px solid var(--muted);
}

.fork__col--navy {
    background: #fff;
    border-top: 4px solid var(--accent);
}

.fork__header {
    display: flex;
    align-items: center;
    gap: var(--space-s);
    margin-bottom: var(--space-m);
    padding-bottom: var(--space-s);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fork__header i {
    font-size: 2rem;
}

.fork__col--gray .fork__header i {
    color: var(--muted);
}

.fork__col--navy .fork__header i {
    color: var(--accent);
}

.fork__header h3 {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.fork__col li {
    padding: .8rem 0;
    border-bottom: 1px solid rgba(41, 36, 81, .06);
    font-size: 1.05rem;
    line-height: 1.6;
    padding-left: 1.8rem;
    position: relative;
    color: var(--contrast);
}

.fork__col li:last-child {
    border-bottom: none;
}

.fork__col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.4rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.fork__col--gray li::before {
    background: var(--muted);
    opacity: 0.5;
}

.fork__col--navy li::before {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.fork__divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.fork__line {
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.fork__icon {
    color: var(--accent);
    font-size: 1.3rem;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROPOSAL â€“ Pillars + vignettes
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.proposal-num {
    font-family: var(--ff-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent);
    display: block;
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.proposal-num--light {
    color: rgba(255, 255, 255, .4);
}

.highlight {
    margin-top: var(--space-m);
    padding: var(--space-s) var(--space-m);
    border-left: 3px solid var(--accent);
    background: var(--base-2);
    font-style: italic;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-s);
    margin-top: var(--space-m);
}

@media (max-width: 768px) {
    .pillars {
        grid-template-columns: 1fr;
        gap: var(--space-m);
    }
}

.pillar {
    text-align: left;
}

.pillar__icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: .9rem;
    margin-bottom: var(--space-xs);
}

.pillar h4 {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .3rem;
}

.pillar p {
    font-size: .95rem;
    line-height: 1.7;
}

/* Vignettes (WHAT section) */
.vignettes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-s);
    margin-top: var(--space-m);
    text-align: left;
}

.vignette {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: var(--space-s) var(--space-m);
    display: flex;
    gap: var(--space-s);
    align-items: flex-start;
}

.vignette__num {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
}

.vignette p {
    font-size: 1rem;
    line-height: 1.6;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VALUES / TEAM
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.values-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-m);
}

.value-card {
    text-align: center;
    padding: var(--space-l) var(--space-m);
    background: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(41, 36, 81, .06);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(41, 36, 81, .1);
}

.value-card__icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin: 0 auto var(--space-s);
}

.value-card h4 {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: .4rem;
}

.value-card p {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--muted);
}

/* Topics tags */
.topics {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
    margin-top: var(--space-m);
}

.topic {
    font-family: var(--ff-links);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .6rem 1.4rem;
    border: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(41, 36, 81, .06);
    border-radius: 4px;
    color: var(--contrast);
    transition: all .3s var(--ease);
}

.topic:hover {
    background: var(--accent);
    color: #fff;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-m);
}

.team-card {
    text-align: center;
}

.team-card__photo {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: var(--space-s);
    background: var(--base-2);
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter .4s var(--ease), transform .6s var(--ease);
}

.team-card:hover .team-card__photo img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.team-card h4 {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.team-card__role {
    font-family: var(--ff-links);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
    background: var(--contrast);
    color: rgba(255, 255, 255, .85);
    padding: var(--space-xl) 5% var(--space-m);
    position: relative;
    overflow: hidden;
}

.footer-map {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    opacity: .05;
}

.footer-container {
    max-width: var(--wide);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-motto {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: var(--space-l);
    color: var(--accent);
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-m);
}

.footer-section h4 {
    font-family: var(--ff-links);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-s);
}

.footer-section p {
    margin-bottom: .4rem;
    font-size: .95rem;
}

.footer-section a {
    transition: color .3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .1);
    margin: var(--space-l) 0 var(--space-m);
}

.footer-bottom {
    text-align: center;
    font-family: var(--ff-links);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .5;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS â€“ Entrance on scroll
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
    .split {
        grid-template-columns: 1fr;
    }

    .split--reverse {
        direction: ltr;
    }

    .split__col--image {
        min-height: 50vh;
    }

    .split__col--content {
        padding: var(--space-l) var(--space-m);
    }

    .split__col--dark,
    .split__col--accent {
        padding: var(--space-l) 8%;
    }

    .values-row {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-xxl: 5rem;
    }

    .navbar-menu {
        gap: 0.5rem 1.5rem;
    }

    .navbar-current {
        font-size: 0.65rem;
    }

    .cover__title {
        font-size: clamp(1.8rem, 7vw, 3rem);
    }

    .fork {
        grid-template-columns: 1fr;
        gap: var(--space-s);
    }

    .fork__divider {
        flex-direction: row;
        justify-content: center;
    }

    .fork__line {
        height: 1px;
        width: 40px;
        flex: unset;
    }

    .vignettes {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .block__medium,
    .block__wide {
        padding: 0 var(--space-s);
    }

    .split__content {
        max-width: 100%;
    }

    .split__col--dark,
    .split__col--accent,
    .split__col {
        padding: var(--space-l) 6%;
    }

    .split__col--content {
        padding: var(--space-l) 6%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 1rem;
    }

    .cover__logo {
        max-width: 130px;
    }

    .btn {
        padding: .75rem 1.8rem;
        font-size: .75rem;
    }

    .card-row {
        grid-template-columns: 1fr;
    }

    .values-row {
        grid-template-columns: 1fr;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   OFFERS â€“ Ritz Style 3-Column Component
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   OFFERS â€“ Separated Cards Component
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.c-offers {
    width: 100%;
    background: var(--contrast);
    /* Section background */
    padding: var(--space-xl) var(--space-m);
}

.c-offers__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-m);
    /* Separation between cards */
    max-width: var(--wide);
    margin: 0 auto;
}

.c-offers__item {
    position: relative;
    background: #fff;
    /* White background for the card */
    box-shadow: 0 4px 20px rgba(41, 36, 81, .06);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    display: flex;
    flex-direction: column;
}

.c-offers__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(41, 36, 81, .12);
}

/* Image Top */
.c-offers__media {
    display: block;
    width: 100%;
    height: 280px;
    /* Fixed height for consistency */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Content Bottom */
.c-offers__content {
    padding: var(--space-m) var(--space-m) var(--space-l);
    text-align: center;
    color: var(--text);
    flex: 1;
    /* Ensure equal height cards align content if needed */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Typography */
.c-offers__title {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: var(--space-s);
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--contrast);
    margin-top: 0;
}

.c-offers__title em {
    font-size: 1.4rem;
    font-family: var(--ff-body);
    text-transform: none;
    display: block;
    margin-bottom: 5px;
    font-style: italic;
    color: var(--accent);
}

.c-offers__text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: var(--space-m);
    color: var(--muted);
}

.c-offers__content .btn {
    margin-top: auto;
    /* Push button to bottom */
    border-color: var(--contrast);
    color: var(--contrast);
}

.c-offers__content .btn:hover {
    background: var(--contrast);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .c-offers__inner {
        grid-template-columns: 1fr;
    }

    .c-offers__media {
        height: 240px;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT FORM
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-form {
    text-align: left;
    margin-top: var(--space-m);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--ff-links);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(21, 35, 64, .15);
    font-family: var(--ff-body);
    font-size: 1.1rem;
    color: var(--text);
    transition: border-color .3s, box-shadow .3s;
    border-radius: 0;
    /* Sharp edges */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 165, 90, .1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

.text-success {
    color: var(--success);
    font-weight: 600;
}

.text-danger {
    color: var(--danger);
    font-weight: 600;
}

/* ---------------------------------------
   INVESTOR PORTAL STYLES
   --------------------------------------- */

/* Layout & Backgrounds */
.investor-page {
    background-color: var(--base);
}

.investor-page .main-content {
    width: 100%;
}

/* Financial Tables */
.investor-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: var(--space-m);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.investor-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.investor-table th,
.investor-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    transition: background-color 0.2s;
}

.investor-table th {
    font-family: var(--ff-display);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    background: rgba(21, 35, 64, 0.95);
    position: sticky;
    top: 0;
    z-index: 10;
    font-size: 0.8rem;
}

.investor-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.investor-table tr:last-child td {
    border-bottom: none;
}

/* Specific Table Row Highlights */
.tr-highlight-1 td {
    background-color: rgba(197, 165, 90, 0.1) !important;
    font-weight: 600;
    color: #fff;
}

.tr-highlight-2 td {
    background-color: rgba(255, 255, 255, 0.1) !important;
    font-weight: 700;
    color: #fff;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

/* Data Room Grid */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-m);
    margin-top: var(--space-l);
}

.doc-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    color: var(--base);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.doc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.doc-item i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-right: 1.2rem;
    transition: transform 0.3s;
}

.doc-item:hover i {
    transform: scale(1.1);
}

.doc-item strong {
    display: block;
    font-family: var(--ff-display);
    font-size: 1.1rem;
    line-height: 1.2;
}

/* Card Lists (for Inputs/Market stats) */
.box-list {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.card-list li:last-child {
    border-bottom: none;
}

.card-list li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.card-list strong {
    color: #fff;
    font-weight: 600;
}

/* Large Icon Stats */
.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.stat-card .heading--display {
    display: block;
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Split Section Adjustments */
.split__image i {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.proposal-num {
    display: inline-block;
    font-family: var(--ff-display);
    color: var(--accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.3rem;
}



/* Feature Grid for Investor Reasons */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem var(--space-m);
}

.feature-card {
    background: #fff;
    padding: 3.5rem 3rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Elegant Top Border Interaction */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(21, 35, 64, 0.08);
    /* Deep navy shadow for elegance */
    border-color: rgba(197, 165, 90, 0.3);
    /* Accent border */
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon-wrapper {
    width: 64px;
    height: 64px;
    background: transparent;
    border: 1px solid rgba(197, 165, 90, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-card__icon-wrapper {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.feature-card i {
    font-size: 1.6rem;
    color: var(--accent);
    transition: color 0.5s ease;
}

.feature-card:hover i {
    color: #fff;
}

/* Typography Refinements */
.feature-card .proposal-num {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: block;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
}

.feature-card .heading--section {
    font-family: var(--ff-display);
    /* Playfair Display */
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--base);
    line-height: 1.3;
    min-height: 2.6em;
    /* Align titles */
}

.feature-card .text--body {
    font-family: var(--ff-body);
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.8;
    flex-grow: 1;
}


/* Reviews / Testimonials */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent);
}

.review-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}