/* ==========================================================================
   HEWARD — Main Stylesheet
   ========================================================================== */

:root {
    --dark-green:   #0d2318;
    --medium-green: #1a3a2a;
    --accent-green: #2d5a3d;
    --cream:        #f5f0e8;
    --off-white:    #faf8f4;
    --white:        #ffffff;
    --gold:         #B8962E;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark-green);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a { cursor: none; text-decoration: none;}
button { cursor: none; }

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width .2s ease, height .2s ease, background .2s ease, opacity .2s ease;
}
.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201,169,110,.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width .3s ease, height .3s ease, border-color .3s ease, opacity .3s ease;
}
body.cursor-hover .cursor-dot  { width: 0; height: 0; opacity: 0; }
body.cursor-hover .cursor-ring { width: 64px; height: 64px; border-color: rgba(201,169,110,.9); background: rgba(201,169,110,.06); }
body.cursor-dark  .cursor-ring { border-color: rgba(13,35,24,.5); }
body.cursor-dark  .cursor-dot  { background: var(--dark-green); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s ease;
}
.site-nav.scrolled {
    background: rgba(13,35,24,.97);
    padding: 18px 60px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    line-height: 1;
    max-width: 20%;
    position: relative;
}
/* Logo images */
.nav-logo img        { display: block; height:55px; max-height: 55px; width: auto; }
.logo-default        { opacity: 1;  transition: opacity .35s ease; }
.logo-scroll         { opacity: 0;  transition: opacity .35s ease;
                       position: absolute; top: 12px; left: 0; pointer-events: none; 
                   }
img.logo-scroll{
    height:30px !important; max-height:30px !important;
}
/* Swap on scroll — only when a scroll logo is set */
.site-nav.scrolled .has-scroll-logo .logo-default { opacity: 0; pointer-events: none; }
.site-nav.scrolled .has-scroll-logo .logo-scroll  { opacity: 1; pointer-events: auto; }

.site-nav.scrolled{
    max-height: 44px;
}

.nav-logo span {
    display: block;
    font-size: 8px;
    letter-spacing: 2.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    opacity: .5;
    margin-top: 4px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color .3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s;
}
.nav-links a:hover,
.nav-links .current-menu-item > a { color: var(--white); }
.nav-links a:hover::after,
.nav-links .current-menu-item > a::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-lang,.nav-lang a {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.5);
    font-weight: 400;
}
.nav-lang strong { color: var(--white); font-weight: 500; }
.btn-member {
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    padding: 11px 28px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    transition: all .3s;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}
.btn-member:hover { background: var(--gold); border-color: var(--gold); color: var(--dark-green); }

/* ==========================================================================
   NAV — LIGHT HERO VARIANT
   Applied via body.has-light-hero on pages with a light first section.
   Once .scrolled kicks in, the dark background handles everything.
   ========================================================================== */
.has-light-hero .site-nav:not(.scrolled) .nav-logo                          { color: var(--dark-green); }
.has-light-hero .site-nav:not(.scrolled) .nav-links a                       { color: rgba(13,35,24,.65); }
.has-light-hero .site-nav:not(.scrolled) .nav-links a:hover,
.has-light-hero .site-nav:not(.scrolled) .nav-links .current-menu-item > a  { color: var(--dark-green); }
.has-light-hero .site-nav:not(.scrolled) .nav-lang                          { color: rgba(13,35,24,.45); }
.has-light-hero .site-nav:not(.scrolled) .nav-lang strong                   { color: var(--dark-green); }
.has-light-hero .site-nav:not(.scrolled) .btn-member                        { color: var(--dark-green); border-color: rgba(13,35,24,.25); }
.has-light-hero .site-nav:not(.scrolled) .nav-toggle span                   { background: var(--dark-green); }

/* Hamburger (mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 1px;
    background: var(--white);
    transition: all .3s;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80');
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 1.2s cubic-bezier(.25,.46,.45,.94);
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(13,35,24,.92) 0%, rgba(13,35,24,.55) 55%, rgba(0,0,0,.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 100%;
    transition: transform .1s linear;
}
.hero-eyebrow {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(16px);
    transition: all .9s ease .4s;
    display: flex;
    align-items: center;
    gap: 16px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4.5vw, 70px);
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(32px);
    transition: all 1s ease .6s;
}
.hero-title em { font-style: italic; color: var(--cream); }
.hero-quote {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,.65);
    max-width: 80%;
    font-weight: 300;
    border-left: 2px solid var(--gold);
    padding-left: 24px;
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(24px);
    transition: all 1s ease .8s;
}
.hero-cta {
    display: flex;
    align-items: center;
    gap: 36px;
    opacity: 0;
    transform: translateY(16px);
    transition: all .9s ease 1s;
}
.hero.loaded .hero-eyebrow,
.hero.loaded .hero-title,
.hero.loaded .hero-quote,
.hero.loaded .hero-cta { opacity: 1; transform: translateY(0); }

.hero-stats {
    position: absolute;
    right: 60px;
    bottom: 80px;
    z-index: 2;
    text-align: right;
    opacity: 0;
    transition: all 1s ease 1.3s;
    transition-property: opacity, transform;
}
.hero.loaded .hero-stats { opacity: 1; }
.hero-stat { margin-bottom: 28px; }
.hero-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 1;
}
.hero-stat-number sup { font-size: 22px; color: var(--gold); vertical-align: super; }
.hero-stat-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-top: 4px;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: .45;
    z-index: 2;
}
.hero-scroll span { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; }
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(.6); transform-origin: top; }
    50%       { opacity: 1;  transform: scaleY(1);  transform-origin: top; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
    background: var(--gold);
    color: var(--dark-green);
    padding: 17px 44px;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}
.btn-primary:hover { background: var(--cream); }
.btn-text {
    color: rgba(255,255,255,.65);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: all .3s;
}
.btn-text::after { content: '→'; transition: transform .3s; }
.btn-text:hover { color: var(--white); }
.btn-text:hover::after { transform: translateX(6px); }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
    width: fit-content;
    position: relative;
}
.btn-outline::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 1px;
    background: var(--dark-green);
    transition: background .3s;
}
.btn-outline:hover { color: var(--gold); gap: 22px; }
.btn-outline:hover::after { background: var(--gold); }
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: var(--dark-green);
    color: var(--white);
    padding: 22px 60px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: all .35s;
    font-family: 'Montserrat', sans-serif;
}
.btn-cta::after { content: '→'; transition: transform .3s; }
.btn-cta:hover { background: var(--gold); color: var(--dark-green); }
.btn-cta:hover::after { transform: translateX(6px); }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee-strip {
    background: var(--gold);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-inner {
    display: inline-flex;
    animation: marquee 24s linear infinite;
}
.marquee-item {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark-green);
    font-weight: 600;
    padding: 0 48px;
}
.marquee-sep { color: var(--dark-green); opacity: .35; margin-top:-4px; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ==========================================================================
   MEMBER ACCESS — Documents
   ========================================================================== */

.vm-documents {
    max-width: 720px;
    margin: 0 auto;
    padding: 64px 40px 80px;
}

.vm-doc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.vm-doc-header::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.vm-doc-header span {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.vm-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vm-doc-item { display: block; }

.vm-doc-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    background: var(--off-white);
    border-left: 2px solid transparent;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.vm-doc-link:hover {
    background: var(--cream);
    border-left-color: var(--gold);
}

.vm-doc-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.vm-doc-icon svg {
    width: 22px;
    height: 22px;
}

.vm-doc-title {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-green);
}

.vm-doc-arrow {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--dark-green);
    opacity: 0.25;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.vm-doc-link:hover .vm-doc-arrow {
    opacity: 0.8;
    transform: translateX(5px);
}

/* ==========================================================================
   MEMBER ACCESS — Portal Intro
   ========================================================================== */

.hw-member-intro {
    margin-bottom: 48px;
    padding-bottom: 0;
}

.hw-member-intro__eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.hw-member-intro__eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hw-member-intro__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    color: var(--dark-green);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.hw-member-intro__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(13,35,24,.7);
    margin-bottom: 28px;
}

.hw-member-intro__features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hw-member-intro__features li {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(13,35,24,.65);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hw-member-intro__features li::before {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hw-member-intro__divider {
    width: 40px;
    height: 1px;
    background: rgba(13,35,24,.12);
    margin-bottom: 40px;
}

/* ==========================================================================
   MEMBER ACCESS — Ultimate Member Form Override
   ========================================================================== */

.um-outer-main-wrapper {
    padding: 60px 40px 80px;
    max-width: 560px;
    margin: 0 auto;
}

/* Labels */
.um .um-field-label label,
.um .um-field-label span {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 9px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: rgba(13,35,24,.6) !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
}

/* Inputs */
.um .um-field-area input[type="text"],
.um .um-field-area input[type="email"],
.um .um-field-area input[type="password"],
.um .um-field-area input[type="tel"] {
    background: var(--off-white) !important;
    border: 1px solid rgba(13,35,24,.15) !important;
    border-radius: 0 !important;
    color: var(--dark-green) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    padding: 14px 18px !important;
    height: auto !important;
    transition: border-color 0.3s !important;
    box-shadow: none !important;
}

.um .um-field-area input:focus {
    border-color: var(--gold) !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Primary button (Login / Submit) */
.um input[type="submit"],
.um .um-button,
.um a.um-button {
    background: var(--dark-green) !important;
    color: var(--cream) !important;
    border: 1px solid var(--dark-green) !important;
    border-radius: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 9px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    padding: 16px 36px !important;
    height: auto !important;
    transition: background 0.3s, color 0.3s, border-color 0.3s !important;
    cursor: pointer !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.um input[type="submit"]:hover,
.um .um-button:hover,
.um a.um-button:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--dark-green) !important;
}

/* Secondary button (Register) */
.um .um-alt-button {
    background: transparent !important;
    color: var(--dark-green) !important;
    border: 1px solid rgba(13,35,24,.25) !important;
}

.um .um-alt-button:hover {
    background: transparent !important;
    border-color: var(--dark-green) !important;
    color: var(--dark-green) !important;
}

/* Links (Forgot password, etc.) */
.um .um-login-forgot a,
.um p a,
.um span a {
    color: var(--dark-green) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 10px !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    opacity: 0.5 !important;
    transition: opacity 0.2s !important;
}

.um .um-login-forgot a:hover,
.um p a:hover,
.um span a:hover {
    opacity: 1 !important;
    color: var(--gold) !important;
}

/* Notices */
.um .um-notice {
    border-radius: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
}

.um .um-notice.um-error {
    background: rgba(180,30,30,.05) !important;
    border-left: 2px solid #c0392b !important;
    color: var(--dark-green) !important;
}

.um .um-notice.um-success {
    background: rgba(13,35,24,.04) !important;
    border-left: 2px solid var(--gold) !important;
    color: var(--dark-green) !important;
}

/* Checkbox */
.um .um-field-type-checkbox input[type="checkbox"] {
    accent-color: var(--gold) !important;
}



/* ==========================================================================
   SECTION HELPERS
   ========================================================================== */
.section-label {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-label.light { color: rgba(255,255,255,.45); }
.section-label.light::before { background: rgba(255,255,255,.45); }

/* ==========================================================================
   YEARS IN PERSPECTIVE
   ========================================================================== */
.section-years {
    background: var(--off-white);
    color: var(--dark-green);
    /* no horizontal padding — timeline goes edge-to-edge */
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

/* Right-edge gradient — signals content continues */
.section-years::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 220px;
    background: linear-gradient(90deg, transparent, var(--off-white) 80%);
    pointer-events: none;
    z-index: 4;
    transition: opacity .45s ease;
}
/* Hide gradient once last item is fully in view */
.section-years.timeline-at-end::after { opacity: 0; }

.years-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 60px 52px;
    border-bottom: 1px solid rgba(13,35,24,.12);
}
.years-header-left { flex-shrink: 0; }
.years-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 28px;
    max-width: 340px;
}
.years-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5.5vw, 80px);
    font-weight: 300;
    line-height: 1;
    color: var(--dark-green);
}
.years-intro {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(13,35,24,.5);
    font-weight: 300;
    text-align: right;
}

/* ── Navigation arrows ── */
.timeline-nav {
    display: flex;
    gap: 8px;
}
.timeline-nav-btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(13,35,24,.25);
    color: var(--dark-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease, border-color .2s ease,
                opacity .2s ease;
    flex-shrink: 0;
}
.timeline-nav-btn:hover:not(:disabled) {
    background: var(--dark-green);
    color: var(--off-white);
    border-color: var(--dark-green);
}
.timeline-nav-btn:disabled {
    opacity: .25;
    cursor: default;
}

/* ── Slider ── */
.timeline-overflow {
    /* Parent (.section-years) provides the clip via overflow:hidden */
    padding-left: 60px;
}
.timeline {
    display: flex;
    transition: transform .65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

/* Each item: 30vw → shows ~3 full + ~⅓ of 4th as peek cue */
.timeline-item {
    flex: 0 0 30vw;
    min-width: 260px;
    padding: 56px 44px 60px 0;
    border-left: 1px solid rgba(13,35,24,.1);
    padding-left: 44px;
}

/* Counter label — subtle index inside each column */
.timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 6.5vw, 96px);
    font-weight: 300;
    color: var(--dark-green);
    line-height: 1;
    letter-spacing: -.02em;
    margin-bottom: 28px;
}
.timeline-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    margin-bottom: 32px;
    box-shadow: 0 0 0 5px rgba(201,169,110,.08);
    transition: background .3s ease, box-shadow .3s ease;
}
.timeline-item:hover .timeline-dot {
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(201,169,110,.18);
}
.timeline-tag {
    font-size: 8.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark-green);
    opacity: .7;
    margin-bottom: 16px;
}
.timeline-text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(13,35,24,.55);
    font-weight: 300;
    max-width: 300px;
}

/* ==========================================================================
   OUR COMMITMENT
   ========================================================================== */
.section-commitment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}
.commitment-left {
    background: var(--medium-green);
    padding: 110px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.commitment-left::before {
    content: '';
    position: absolute;
    top: -120px; left: -120px;
    width: 480px; height: 480px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,.12);
}
.commitment-left::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 360px; height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,.08);
}
.commitment-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.commitment-title em { font-style: italic; color: var(--gold); }
.commitment-sub {
    color: rgba(255,255,255,.5);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    position: relative;
    z-index: 1;
}
.commitment-right {
    background: var(--off-white);
    padding: 110px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.commitment-text {
    font-size: 15px;
    line-height: 1.95;
    color: rgba(13,35,24,.65);
    font-weight: 300;
    margin-bottom: 32px;
}

/* ==========================================================================
   PILLARS
   ========================================================================== */
.section-pillars {
    background: var(--dark-green);
    padding: 140px 60px;
}
.pillars-header {
    text-align: center;
    margin-bottom: 80px;
}
.pillars-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 300;
    color: var(--white);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.07);
}
.pillar {
    background: var(--dark-green);
    padding: 64px 52px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}
.pillar.visible { opacity: 1; transform: translateY(0); }
.pillar:nth-child(2) { transition-delay: .15s; }
.pillar:nth-child(3) { transition-delay: .3s; }
.pillar-fill {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: var(--accent-green);
    transition: height .45s ease;
    z-index: 0;
}
.pillar:hover .pillar-fill { height: 100%; }
.pillar-content { position: relative; z-index: 1; }
.pillar-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 96px;
    font-weight: 300;
    color: rgba(255,255,255,.05);
    line-height: 1;
    margin-bottom: -24px;
    display: block;
}
.pillar-line { width: 40px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}
.pillar-text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,.55);
    font-weight: 300;
}

/* ==========================================================================
   EXCELLENCE SPLIT
   ========================================================================== */
.section-excellence {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
}
.excellence-left {
    padding: 120px 80px;
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.excellence-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5.5vw, 80px);
    font-weight: 300;
    color: var(--dark-green);
    line-height: 1.08;
    margin-bottom: 40px;
}
.excellence-title em { font-style: italic; }
.excellence-list { list-style: none; margin-bottom: 52px; }
.excellence-list li {
    font-size: 15px;
    color: rgba(13,35,24,.65);
    padding: 18px 0;
    border-bottom: 1px solid rgba(13,35,24,.1);
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 300;
    letter-spacing: .5px;
}
.excellence-list li::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.excellence-right { position: relative; overflow: hidden; }
.excellence-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: transform .6s ease;
}
.section-excellence:hover .excellence-img { transform: scale(1.03); }
.excellence-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13,35,24,.5) 0%, rgba(13,35,24,.1) 60%, rgba(0,0,0,.4) 100%);
}
.excellence-caption {
    position: absolute;
    bottom: 60px;
    left: 56px;
    right: 56px;
}
.excellence-caption-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 300;
    color: var(--white);
    font-style: italic;
    line-height: 1.15;
    text-shadow: 0 2px 60px rgba(0,0,0,.4);
}

/* ==========================================================================
   STATS
   ========================================================================== */
.section-stats {
    background: var(--dark-green);
    border-top: 1px solid rgba(255,255,255,.07);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    padding: 80px 52px;
    border-right: 1px solid rgba(255,255,255,.07);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all .7s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-item:nth-child(2) { transition-delay: .12s; }
.stat-item:nth-child(3) { transition-delay: .24s; }
.stat-item:nth-child(4) { transition-delay: .36s; }
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-suffix { color: var(--gold); font-size: 40px; }
.stat-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.section-cta {
    background: var(--off-white);
    padding: 180px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 220px;
    font-weight: 700;
    color: rgba(13,35,24,.035);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px;
}
.cta-label {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.cta-label::before, .cta-label::after { content: ''; width: 40px; height: 1px; background: var(--gold); }
.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5.5vw, 80px);
    font-weight: 300;
    color: var(--dark-green);
    line-height: 1.15;
    margin-bottom: 56px;
}
.cta-title em { font-style: italic; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--dark-green); border-top: 1px solid rgba(255,255,255,.07); }
.footer-top {
    padding: 88px 60px 72px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    border-bottom: 1px solid rgba(255,255,255,.07);

    .nav-logo img{
        max-width:70%;
        max-height:100px;
    }
}
.footer-logo-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 4px;
}
.footer-logo-sub {
    font-size: 8px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 28px;
}
.footer-desc {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,.45);
    font-weight: 300;
    margin-bottom: 28px;
    margin-top: 28px;
}
.footer-since {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--gold);
}
.footer-col h4 {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 28px;
    font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    transition: color .3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.contact-label {
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.25);
    display: block;
    margin-bottom: 3px;
}
.contact-value {
    font-size: 15px;
    color: rgba(255,255,255,.55);
    font-weight: 300;
    line-height: 1.5;
}
.footer-contact-block { margin-bottom: 16px; }
.footer-bottom {
    padding: 24px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,.25); font-weight: 300; }
.footer-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: rgba(255,255,255,.12);
    letter-spacing: 6px;
}

.footer-h img{
    width:35px;
}

.fund-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px 0 !important;
    font-weight:400 !important;
}

.fund-feature::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gold);
}

.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a {
    font-size: 11px;
    color: rgba(255,255,255,.25);
    text-decoration: none;
    transition: color .3s;
    font-weight: 300;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ==========================================================================
   INNER PAGE HERO
   ========================================================================== */
.page-hero {
    height: 80vh;
    min-height: 560px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 140px 60px;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,35,24,.95) 0%, rgba(13,35,24,.4) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.page-hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4.5vw, 72px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
}
.page-hero-title em { font-style: italic; color: var(--cream); }

.page-hero-quote {
    margin-top: 32px;
    max-width: 680px;
}
.page-hero-quote blockquote {
    margin: 0;
    padding-left: 20px;
    border-left: 2px solid var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 1.4vw, 20px);
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.6;
    opacity: 0.85;
}

/* ==========================================================================
   INNER PAGE CONTENT
   ========================================================================== */
.page-content-section {
    background: var(--off-white);
    padding: 120px 60px;
}
.page-content-section.dark {
    background: var(--dark-green);
    color: var(--white);
}
.page-content-section.medium {
    background: var(--medium-green);
    color: var(--white);
}
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 300;
    line-height: 1.4;
    color: var(--dark-green);
    margin-bottom: 60px;
}
.section-intro.light { color: var(--white); }
.body-text {
    font-size: 15px;
    line-height: 1.95;
    color: rgba(13,35,24,.65);
    font-weight: 300;
    max-width: 680px;
}
.body-text.light { color: rgba(255,255,255,.6); }

/* ==========================================================================
   TEAM PAGE
   ========================================================================== */
.section-team {
    background: var(--dark-green);
    padding: 140px 60px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 80px;
}
.team-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}
.team-card.visible { opacity: 1; transform: translateY(0); }
.team-card:nth-child(2) { transition-delay: .1s; }
.team-card:nth-child(3) { transition-delay: .2s; }
.team-card:nth-child(4) { transition-delay: .3s; }
.team-card:nth-child(5) { transition-delay: .4s; }
.team-card:nth-child(6) { transition-delay: .5s; }
.team-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: transform .6s ease;
}
.team-card:hover .team-card-img { transform: scale(1.05); }
.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,35,24,.95) 0%, rgba(13,35,24,.2) 60%, transparent 100%);
    transition: background .4s ease;
}
.team-card:hover .team-card-overlay {
    background: linear-gradient(to top, rgba(13,35,24,.98) 0%, rgba(13,35,24,.5) 60%, rgba(13,35,24,.1) 100%);
}
.team-card-content {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    padding: 40px 36px;
    transform: translateY(0);
    transition: transform .4s ease;
}
.team-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 6px;
}
.team-card-role {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.team-card-bio {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,.6);
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.team-card:hover .team-card-bio { max-height: 160px; }
.team-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-top: 16px;
    opacity: 0;
    transition: opacity .3s ease .2s;
}
.team-card:hover .team-card-link { opacity: 1; }
.team-card-link::after { content: '→'; transition: transform .3s; }
.team-card-link:hover::after { transform: translateX(4px); }

/* ==========================================================================
   SINGLE — MEMBRE DE L'ÉQUIPE
   ========================================================================== */

/* Header nom + titre */
.member-header {
    background: var(--dark-green);
    padding: 160px 80px 48px;
    border-bottom: 1px solid rgba(13,35,24,.08);
    position: relative;
}
.member-header-inner { max-width: 900px; }
.member-header-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 5.5vw, 88px);
    font-weight: 300;
    color: var(--off-white);
    line-height: 1.0;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.member-header-role {
    font-size: 17px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* Barre de contact */
.member-contact-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--off-white);
    border-bottom: 1px solid rgba(13,35,24,.1);
}
.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 80px;
    text-decoration: none;
    border-right: 1px solid rgba(13,35,24,.1);
    transition: background .3s;
    color: var(--dark-green);
}
.contact-bar-item:last-child { border-right: none; }
.contact-bar-item:hover { background: rgba(13,35,24,.04); }
.contact-bar-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-green);
    letter-spacing: .5px;
    flex-shrink: 0;
}
.contact-bar-value {
    font-size: 14px;
    color: rgba(13,35,24,.6);
    font-weight: 500;
    letter-spacing: .3px;
}
.contact-bar-linkedin .contact-bar-value {
    color: var(--dark-green);
    font-weight: 500;
    letter-spacing: 1px;
}
.contact-bar-arrow {
    font-size: 16px;
    color: var(--dark-green);
    margin-left: 4px;
    transition: transform .3s;
}
.contact-bar-item:hover .contact-bar-arrow { transform: translateX(4px); }

/* Split photo + bio */
.member-split {
    display: grid;
    grid-template-columns: 42% 1fr;
    background: var(--off-white);
    min-height: 80vh;
}
.member-photo-col {
    position: relative;
    overflow: hidden;
}
.member-photo-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 700px;
}
.member-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.member-photo-number {
    position: absolute;
    bottom: 32px;
    right: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 100px;
    font-weight: 300;
    line-height: 1;
    color: rgba(13,35,24,.06);
    pointer-events: none;
    user-select: none;
}

/* Bio */
.member-bio-col {
    padding: 72px 80px 80px;
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.member-bio-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 1.9vw, 27px);
    font-weight: 400;
    line-height: 1.65;
    color: var(--dark-green);
    margin-bottom: 52px;
}

.member-bio-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 400;
    line-height: 1.65;
    color: var(--dark-green);
    margin-bottom: 52px;
}

.member-bio-body {
    font-size: 14px;
    line-height: 2;
    color: rgba(13,35,24,.62);
    font-weight: 300;
}
.member-bio-body p {
    margin-bottom: 24px;
}
.member-bio-body p:last-child { margin-bottom: 0; }

/* Responsive single */
@media (max-width: 1024px) {
    .member-header { padding: 140px 40px 40px; }
    .member-contact-bar { grid-template-columns: 1fr; }
    .contact-bar-item { padding: 18px 40px; border-right: none; border-bottom: 1px solid rgba(13,35,24,.1); }
    .contact-bar-item:last-child { border-bottom: none; }
    .member-split { grid-template-columns: 1fr; }
    .member-photo-wrap { min-height: 500px; max-height: 65vw; }
    .member-bio-col { padding: 52px 40px 60px; }
}
@media (max-width: 640px) {
    .member-header { padding: 120px 24px 36px; }
    .contact-bar-item { padding: 16px 24px; }
    .member-bio-col { padding: 40px 24px; }
    .member-photo-number { font-size: 70px; }
}

/* ==========================================================================
   ARCHIVE — ÉQUIPE
   ========================================================================== */
.archive-team { padding-top: 40px; }

.team-pagination {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}
.team-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
}
.team-pagination .page-numbers li a,
.team-pagination .page-numbers li span {
    display: inline-block;
    padding: 10px 18px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.12);
    transition: all .3s;
}
.team-pagination .page-numbers li a:hover,
.team-pagination .page-numbers li span.current {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-green);
}

/* Values strip */
.section-values-strip {
    background: var(--medium-green);
    padding: 60px;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.values-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.value-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    color: rgba(255,255,255,.7);
}
.value-strip-icon { color: var(--gold); font-size: 8px; }
.value-strip-sep {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,.15);
}

/* ==========================================================================
   SINGLE — MEMBRE DE L'ÉQUIPE
   ========================================================================== */

/* Hero split-screen */
.single-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 0;
}
.single-hero-left {
    background: var(--dark-green);
    padding: 160px 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.single-back-link {
    position: absolute;
    top: 120px;
    left: 80px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    text-decoration: none;
    transition: color .3s;
}
.single-back-link:hover { color: var(--gold); }
.single-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 4.5vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 16px;
    color: var(--white);
}
.single-role {
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}
.single-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 36px 0;
    opacity: .6;
}
.single-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}
.expertise-tag {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid rgba(201,169,110,.3);
    color: rgba(201,169,110,.7);
    font-weight: 400;
}
.single-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .3s;
    font-weight: 400;
    width: fit-content;
    position: relative;
}
.single-linkedin::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s;
}
.single-linkedin:hover { color: var(--gold); }
.single-linkedin:hover::after { width: 100%; }

/* Photo côté droit */
.single-hero-right {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}
.single-photo-wrap {
    position: absolute;
    inset: 0;
}
.single-photo {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    transition: transform 6s ease;
}
.single-hero:hover .single-photo { transform: scale(1.04); }
.single-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,35,24,.3) 0%, transparent 60%);
}
.single-photo-number {
    position: absolute;
    bottom: 48px;
    right: 48px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 300;
    line-height: 1;
    color: rgba(255,255,255,.08);
    pointer-events: none;
    z-index: 2;
    user-select: none;
}

/* Quote section */
.single-quote-section {
    background: var(--medium-green);
    padding: 100px 120px;
    display: flex;
    justify-content: center;
}
.single-quote-inner {
    max-width: 860px;
    text-align: center;
    position: relative;
}
.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 160px;
    line-height: 0;
    position: absolute;
    top: 60px;
    left: -40px;
    color: rgba(201,169,110,.15);
    font-style: italic;
}
.single-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--cream);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}
.quote-author {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

/* Bio section */
.single-bio-section {
    background: var(--off-white);
    padding: 120px 80px;
}
.single-bio-grid {
    display: grid;
    grid-template-columns: 180px 1fr 220px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}
.single-bio-sidebar {
    padding-top: 8px;
}
.bio-sidebar-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
}
.bio-sidebar-line {
    width: 1px;
    height: 80px;
    background: rgba(13,35,24,.15);
    margin-bottom: 20px;
}
.bio-sidebar-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: rgba(13,35,24,.4);
    letter-spacing: 1px;
}
.bio-text {
    font-size: 16px;
    line-height: 2;
    color: rgba(13,35,24,.65);
    font-weight: 300;
}
.bio-text p { margin-bottom: 28px; }
.bio-text p:last-child { margin-bottom: 0; }
.single-bio-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 8px;
    border-left: 1px solid rgba(13,35,24,.1);
    padding-left: 40px;
}
.member-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--dark-green);
    line-height: 1;
    margin-bottom: 8px;
}
.member-stat-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(13,35,24,.4);
}

/* Related members */
.single-related {
    background: var(--dark-green);
    padding: 120px 80px;
}
.single-related-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 3.5vw, 56px);
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    margin-top: 24px;
}
.single-related-title em { font-style: italic; color: var(--cream); }
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.related-card {
    position: relative;
    overflow: hidden;
    height: 420px;
    display: block;
    text-decoration: none;
}
.related-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: transform .6s ease;
}
.related-card:hover .related-card-img { transform: scale(1.06); }
.related-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,35,24,.9) 0%, rgba(13,35,24,.2) 60%, transparent 100%);
    transition: background .4s;
}
.related-card:hover .related-card-overlay {
    background: linear-gradient(to top, rgba(13,35,24,.96) 0%, rgba(13,35,24,.4) 60%, rgba(13,35,24,.1) 100%);
}
.related-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 36px;
    z-index: 2;
}
.related-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 8px;
}
.related-card-role {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.related-card-link {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    transition: color .3s;
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s ease;
}
.related-card:hover .related-card-link {
    opacity: 1;
    transform: translateY(0);
    color: var(--gold);
}

/* Prev / Next navigation */
.single-member-nav {
    background: var(--medium-green);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.member-nav-item {
    padding: 48px 80px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background .3s;
}
.member-nav-item:hover { background: rgba(255,255,255,.03); }
.member-nav-next { text-align: right; }
.member-nav-dir {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.member-nav-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
}
.member-nav-all {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    padding: 48px 40px;
    text-align: center;
    border-left: 1px solid rgba(255,255,255,.07);
    border-right: 1px solid rgba(255,255,255,.07);
    transition: background .3s;
}
.member-nav-all:hover { background: rgba(201,169,110,.08); }

/* ===================== RESPONSIVE — SINGLE ===================== */
@media (max-width: 1024px) {
    .single-hero { grid-template-columns: 1fr; }
    .single-hero-right { min-height: 60vh; }
    .single-hero-left { padding: 140px 40px 80px; }
    .single-back-link { left: 20px; top: 90px;}
    .single-quote-section { padding: 80px 40px; }
    .single-bio-section { padding: 80px 40px; }
    .single-bio-grid { grid-template-columns: 1fr; gap: 48px; }
    .single-bio-stats { flex-direction: row; border-left: none; padding-left: 0; border-top: 1px solid rgba(13,35,24,.1); padding-top: 40px; }
    .single-related { padding: 80px 40px; }
    .related-grid { grid-template-columns: 1fr; gap: 2px; }
    .single-member-nav { grid-template-columns: 1fr 1fr; }
    .member-nav-all { display: none; }
    .member-nav-item { padding: 36px 40px; }
}
@media (max-width: 640px) {
    .single-member-nav { grid-template-columns: 1fr; }
    .single-name { font-size: 40px; }
    .single-photo-number { font-size: 80px; bottom: 24px; right: 24px; }
    .quote-mark { font-size: 100px; }
}

/* ===================== RESPONSIVE — ARCHIVE ===================== */
@media (max-width: 640px) {
    .values-strip-inner { gap: 32px; flex-direction: column; }
    .value-strip-sep { width: 40px; height: 1px; }
}

/* ==========================================================================
   INVESTMENT SOLUTIONS PAGE
   ========================================================================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 80px;
}
.solution-card {
    background: var(--medium-green);
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}
.solution-card.visible { opacity: 1; transform: translateY(0); }
.solution-card:nth-child(2) { transition-delay: .15s; }
.solution-card:nth-child(3) { transition-delay: .3s; }
.solution-card:nth-child(4) { transition-delay: .45s; }
.solution-card-fill {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: var(--accent-green);
    transition: height .45s ease;
    z-index: 0;
}
.solution-card:hover .solution-card-fill { height: 100%; }
.solution-card-content { position: relative; z-index: 1; }
.solution-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 300;
    color: rgba(255,255,255,.06);
    line-height: 1;
    margin-bottom: -16px;
}
.solution-card-line { width: 40px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.solution-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}
.solution-card-text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,.55);
    font-weight: 300;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.section-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
.contact-left {
    background: var(--medium-green);
    padding: 160px 80px;
    position: relative;
    overflow: hidden;
}
.contact-left::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,.1);
}
.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
.contact-title em { font-style: italic; color: var(--gold); }
.contact-info-item {
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}
.contact-info-label {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 6px;
}
.contact-info-value {
    font-size: 15px;
    color: rgba(255,255,255,.7);
    font-weight: 300;
    line-height: 1.5;
    text-decoration: none;
    display: block;
    transition: color .3s;
}
a.contact-info-value:hover { color: var(--gold); }
.contact-right {
    background: var(--off-white);
    padding: 160px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Formidable Forms overrides */
.contact-right .frm_forms label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(13,35,24,.5);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-bottom: 8px;
    display: block;
}
.contact-right .frm_forms input[type="text"],
.contact-right .frm_forms input[type="email"],
.contact-right .frm_forms input[type="tel"],
.contact-right .frm_forms textarea,
.contact-right .frm_forms select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(13,35,24,.2);
    padding: 12px 0;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--dark-green);
    outline: none;
    transition: border-color .3s;
    -webkit-appearance: none;
    border-radius: 0;
}
.contact-right .frm_forms input:focus,
.contact-right .frm_forms textarea:focus { border-color: var(--gold); }
.contact-right .frm_forms textarea { height: 120px; resize: none; }
.contact-right .frm_forms .frm_submit button {
    background: var(--dark-green);
    color: var(--white);
    border: none;
    padding: 18px 52px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-top: 32px;
    transition: background .3s;
    cursor: none;
}
.contact-right .frm_forms .frm_submit button:hover { background: var(--gold); }

/* ==========================================================================
   COMPANY PROFILE PAGE
   ========================================================================== */
.profile-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.profile-left {
    padding: 120px 80px;
    background: var(--off-white);
}
.profile-right {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}
.profile-right-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}
.profile-split:hover .profile-right-img { transform: scale(1.03); }
.profile-right-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,35,24,.3);
}

/* ==========================================================================
   PAGE INTRO HERO  (Company Profile)
   ========================================================================== */
.page-intro {
    background: var(--dark-green);
    color: var(--white);
}
.page-intro-title-wrap {
    padding: 160px 60px 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.07);
    position: relative;
}
.page-intro-title-wrap::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 36px auto 0;
}
.page-intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 300;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--cream);
    line-height: 1;
}
.page-intro-image {
    position: relative;
    height: 62vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.page-intro-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,35,24,.45);
}
.page-intro-quote {
    position: relative;
    z-index: 1;
    padding: 52px 80px 64px;
    max-width: 940px;
}
.page-intro-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
}

/* ==========================================================================
   STEPS / WHAT TO EXPECT
   ========================================================================== */
.section-steps {
    background: #fff;
    padding: 120px 60px;
    color: var(--dark-green);
}
.steps-header {
    margin-bottom: 80px;
}
.steps-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    color: var(--dark-green);
    margin-top: 16px;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(13,35,24,.1);
}
.step-card {
    background: #fff;
    padding: 56px 48px 64px;
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease;
}
.step-card:hover::before { transform: scaleX(1); }
.step-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 28px;
    opacity: .9;
}
.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--dark-green);
    line-height: 1.3;
    margin-bottom: 20px;
}
.step-text {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(13,35,24,.6);
    font-weight: 300;
}

/* ==========================================================================
   QUOTE BANNER
   ========================================================================== */
.section-quote-banner {
    padding: 110px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.section-quote-banner::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 280px;
    line-height: 1;
    position: absolute;
    top: -20px; left: 40px;
    color: rgba(255,255,255,.04);
    pointer-events: none;
    user-select: none;
}
.section-quote-banner--dark  { background: #0a1a12; }
.section-quote-banner--green { background: var(--medium-green); }
.quote-banner-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}

/* ==========================================================================
   TEXT + IMAGE + LOGOS  (Safe Keeping)
   ========================================================================== */
.section-text-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    color: var(--dark-green);
}
.text-logos-left {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text-logos-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 300;
    color: var(--dark-green);
    margin-bottom: 36px;
    line-height: 1.15;
    padding-bottom: 28px;
    position: relative;
}
.text-logos-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 1px;
    background: var(--gold);
}
.text-logos-text {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(13,35,24,.6);
    font-weight: 300;
    margin-bottom: 48px;
    max-width: 500px;
}
.text-logos-bar {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(13,35,24,.1);
}
.text-logos-logo img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .65;
    transition: opacity .3s, filter .3s;
}
.text-logos-logo img:hover { opacity: 1; filter: grayscale(0); }
.text-logos-right {
    position: relative;
    min-height: 500px;
}
.text-logos-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}
.section-text-logos:hover .text-logos-image { transform: scale(1.02); }

/* ==========================================================================
   MEMBERSHIP BANNER  (PMAC)
   ========================================================================== */
.section-membership {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
/*    padding: 48px 80px;*/
}
.section-membership--green { background: var(--accent-green); }
.section-membership--dark  { background: var(--dark-green); }
.membership-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.85);
    font-weight: 300;
    max-width: 830px;
    padding-left: 88px;
    border-left: 1px solid rgba(201,169,110,.35);
}

.membership-logo {
    padding: 20px 40px;
    background-color: #FFf;
}

.membership-logo img {
    max-height: 180px;
    max-width: 160px;
    width: auto;
/*    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .85;*/
    flex-shrink: 0;
}

/* ==========================================================================
   PHILANTHROPY
   ========================================================================== */
.section-philanthropy {
    background: var(--off-white);
    color: var(--dark-green);
    padding: 120px 60px;
}
.philanthropy-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 64px;
}
.philanthropy-inner::before {
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: var(--gold);
    margin: 0 auto 48px;
}
.philanthropy-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    color: var(--dark-green);
    margin-bottom: 28px;
}
.philanthropy-text {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(13,35,24,.6);
    font-weight: 300;
}
.philanthropy-quote {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.2vw, 26px);
    font-style: italic;
    font-weight: 300;
    color: rgba(13,35,24,.55);
    margin-bottom: 64px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.philanthropy-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.philanthropy-logo img {
    max-height: 60px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .55;
    transition: opacity .3s, filter .3s;
}
.philanthropy-logo img:hover { opacity: 1; filter: grayscale(0); }

/* ==========================================================================
   HERO SPLIT  (Investment Solutions)
   ========================================================================== */
.section-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    background: var(--off-white);
}
.hero-split-left {
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--dark-green);
}
.hero-split-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 16px;
}
.hero-split-label::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}
.hero-split-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark-green);
    margin-bottom: 36px;
}
.hero-split-title em { font-style: italic; }
.hero-split-text {
    font-size: 14px;
    line-height: 1.95;
    color: rgba(13,35,24,.6);
    font-weight: 300;
    max-width: 480px;
}
.hero-split-right { position: relative; overflow: hidden; }
.hero-split-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .7s ease;
}
.section-hero-split:hover .hero-split-image { transform: scale(1.03); }

/* ==========================================================================
   SERVICE LIST  (Investment Solutions)
   ========================================================================== */
.section-service-list {
    background: var(--off-white);
    padding: 0 60px;
    color: var(--dark-green);
    counter-reset: service-counter;
}
.service-item {
    border-top: 1px solid rgba(13,35,24,.1);
    padding: 80px 0;
    counter-increment: service-counter;
}
.service-item:last-child { border-bottom: 1px solid rgba(13,35,24,.1); }
.service-item-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
}
.service-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 300;
    color: var(--dark-green);
    line-height: 1.15;
}
.service-item-title::before {
    content: counter(service-counter, decimal-leading-zero);
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
}
.service-item-body {}
.service-item-text {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(13,35,24,.6);
    font-weight: 300;
    margin-bottom: 28px;
}
.service-item-link {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark-green);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    transition: color .25s, border-color .25s;
}
.service-item-link:hover { color: var(--gold); border-color: transparent; }

/* ==========================================================================
   DARK TEXT SECTION  (Custom Portfolios description)
   ========================================================================== */
.section-dark-text {
    background: var(--dark-green);
    padding: 100px 60px;
}
.dark-text-inner {
    max-width: 900px;
    padding-left: 40px;
    border-left: 1px solid rgba(201,169,110,.2);
}
.dark-text-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
}
.dark-text-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.1;
}
.dark-text-body {
    font-size: 14px;
    line-height: 2;
    color: rgba(255,255,255,.55);
    font-weight: 300;
}
.dark-text-body + .dark-text-body {
    margin-top: 24px;
}

/* ==========================================================================
   FUNDS GRID  (Our Pooled Funds)
   ========================================================================== */
.section-funds {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: var(--off-white);
    color: var(--dark-green);
    padding: 0;
}
.funds-left {
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid rgba(13,35,24,.1);
    position: sticky;
    top: 0;
    align-self: start;
}
.funds-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 300;
    color: var(--dark-green);
    margin-bottom: 28px;
    line-height: 1.15;
}
.funds-intro {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(13,35,24,.6);
    font-weight: 300;
}
.funds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(13,35,24,.1);
}
.fund-card {
    background: var(--off-white);
    padding: 52px 44px;
    transition: background .3s ease;
    position: relative;
    overflow: hidden;
}
.fund-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}
.fund-card:hover { background: #fff; }
.fund-card:hover::before { transform: scaleX(1); }
.fund-icon {
    margin-bottom: 24px;
}
.fund-icon img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.fund-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--dark-green);
    margin-bottom: 16px;
    line-height: 1.25;
}
.fund-text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(13,35,24,.55);
    font-weight: 300;
    margin-bottom:15px;
}

/* ==========================================================================
   FULL-WIDTH IMAGE
   ========================================================================== */
.section-full-image { overflow: hidden; }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); z-index:5; position:relative;}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
    .section-commitment,
    .section-excellence,
    .single-team-hero,
    .section-contact,
    .profile-split,
    .section-text-logos,
    .section-hero-split,
    .section-funds { grid-template-columns: 1fr; }

    .section-hero-split { min-height: auto; }
    .hero-split-right   { min-height: 50vh; }
    .hero-split-left    { padding: 80px 60px; }
    .text-logos-right   { min-height: 380px; }
    .text-logos-left    { padding: 80px 60px; }
    .funds-left         { position: static; border-right: none; border-bottom: 1px solid rgba(13,35,24,.1); padding: 80px 60px; }
    .steps-grid         { grid-template-columns: 1fr; }
    .service-item-inner { grid-template-columns: 1fr; gap: 24px; }

    .excellence-right { min-height: 480px; }
    .single-team-photo { min-height: 60vh; }
    .contact-left,
    .contact-right { padding: 80px 40px; }
    .team-grid,
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline-item { flex: 0 0 48vw; min-width: 240px; }
}

/* ==========================================================================
   MOBILE NAV MODAL
   ========================================================================== */
.nav-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: var(--dark-green);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .4s ease, transform .4s ease;
    overflow: hidden;
}
.nav-modal::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(184,150,46,.1);
    pointer-events: none;
}
.nav-modal::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(184,150,46,.06);
    pointer-events: none;
}
.nav-modal.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    z-index:9999;
}
.nav-modal-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px 28px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.nav-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 52px;
    flex-shrink: 0;
}
.nav-modal-logo img {
    height: 40px;
    width: auto;
}
.nav-modal-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--cream);
    text-decoration: none;
}
.nav-modal-close {
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: border-color .3s;
}
.nav-modal-close:hover { border-color: var(--gold); }
.nav-modal-close span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: background .3s;
}
.nav-modal-close:hover span { background: var(--gold); }
.nav-modal-close span:first-child { transform: rotate(45deg); }
.nav-modal-close span:last-child  { transform: rotate(-45deg); }

.nav-modal-links {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}
.nav-modal-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-modal.open .nav-modal-links li:nth-child(1) { opacity: 1; transform: none; transition-delay: .12s; }
.nav-modal.open .nav-modal-links li:nth-child(2) { opacity: 1; transform: none; transition-delay: .20s; }
.nav-modal.open .nav-modal-links li:nth-child(3) { opacity: 1; transform: none; transition-delay: .28s; }
.nav-modal.open .nav-modal-links li:nth-child(4) { opacity: 1; transform: none; transition-delay: .36s; }
.nav-modal.open .nav-modal-links li:nth-child(5) { opacity: 1; transform: none; transition-delay: .44s; }
.nav-modal-links a {
    display: block;
    padding: 20px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: .01em;
    transition: color .3s, padding-left .3s;
}
.nav-modal-links a:hover,
.nav-modal-links .current-menu-item > a { color: var(--gold); padding-left: 10px; }

.nav-modal-member {
    display: block;
    width: 100%;
    padding: 16px;
    margin-top: 8px;
    text-align: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .3s, color .3s;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease .44s, transform .5s ease .44s, background .3s, color .3s;
}
.nav-modal.open .nav-modal-member { opacity: 1; transform: none; }
.nav-modal-member:hover,
.nav-modal-member:active { background: var(--gold); color: var(--dark-green); }

.nav-modal-footer {
    flex-shrink: 0;
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s ease .5s, transform .5s ease .5s;
}
.nav-modal.open .nav-modal-footer { opacity: 1; transform: none; }
.nav-modal-lang { display: flex; gap: 8px; align-items: center; }
.nav-modal-lang a,
.nav-modal-lang strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,.45);
}
.nav-modal-lang strong { color: var(--white); }
.nav-modal-lang a:hover { color: var(--gold); }
.nav-modal-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.2);
}

/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   MOBILE MEMBER BAR — fixed bottom
   ========================================================================== */
.mobile-member-bar { display: none; }

/* ==========================================================================
   MOBILE (≤ 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* Nav */
    .site-nav { padding: 20px 24px; }
    .site-nav.scrolled { padding: 14px 24px; }
    .nav-links,
    .nav-lang,
    .btn-member { display: none; }
    .nav-toggle { display: flex; }

    .nav-logo{
        max-width: 40%;
    }


    /* Logo */
    .nav-logo img { height: 74px; max-height: 74px; }

    /* Hide scroll indicator — users scroll naturally on touch */
    .hero-scroll { display: none; }

    /* Hero */
    .hero-content { padding: 0 24px 100px; }
    .hero-stats { display: none; }
    .hero-quote { max-width: 100%; font-size: 14px; font-weight: 500}
    .hero-eyebrow { font-size: 10px; letter-spacing: 3px; }

    /* Hero CTA — stack on mobile */
    .hero-cta { flex-direction: column; align-items: flex-start; gap: 20px; }
    .btn-primary { font-size: 11px; padding: 16px 28px; }

    /* Mobile member bar */
    .mobile-member-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 300;
        background: var(--dark-green);
        border-top: 1px solid rgba(184,150,46,.3);
        padding: 12px 24px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
    .mobile-member-btn {
        display: block;
        width: 100%;
        padding: 15px;
        text-align: center;
        background: transparent;
        border: 1px solid var(--gold);
        color: var(--gold);
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        letter-spacing: 3px;
        text-transform: uppercase;
        text-decoration: none;
        transition: background .3s, color .3s;
    }
    .mobile-member-btn:hover,
    .mobile-member-btn:active { background: var(--gold); color: var(--dark-green); }

    /* Sections */
    .section-years { padding: 80px 0 100px; }
    .page-intro-title-wrap { padding: 120px 24px 60px; }
    .page-intro-quote { padding: 36px 24px 48px; }
    .dark-text-inner { padding-left: 0; border-left: none; }
    .section-steps { padding: 80px 24px; }
    .steps-grid { grid-template-columns: 1fr; }
    .section-quote-banner { padding: 80px 24px; }
    .section-service-list { padding: 0 24px; }
    .service-item-inner { grid-template-columns: 1fr; gap: 20px; }
    .section-dark-text { padding: 80px 24px; }
    .section-membership { flex-direction: column; align-items: flex-start; padding: 40px 24px; gap: 24px; }
    .section-philanthropy { padding: 80px 24px; }
    .funds-grid { grid-template-columns: 1fr; }
    .fund-card { padding: 40px 24px; }
    .years-header { flex-direction: column; align-items: flex-start; gap: 28px; padding: 0 24px 40px; }
    .years-header-right { align-items: flex-start; max-width: 100%; }
    .years-intro { text-align: left; }
    .timeline-overflow { padding-left: 24px; }
    .timeline-item { flex: 0 0 82vw; min-width: 220px; }
    .commitment-left,
    .commitment-right { padding: 80px 24px; }
    .section-pillars { padding: 80px 24px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .excellence-left { padding: 80px 24px; }
    .excellence-caption-text { font-size: 36px; }
    .section-cta { padding: 100px 24px; }
    .cta-watermark { font-size: 80px; }
    .footer-top { grid-template-columns: 1fr; padding: 60px 24px 100px; }
    .footer-bottom { flex-direction: column; gap: 20px; padding: 24px; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; }
    .solutions-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 80px 24px 40px; }
    .section-team { padding: 80px 24px; }
    .page-content-section { padding: 20px 24px; }
    .funds-left {
        padding: 40px 20px;
    }
    .step-card{
        padding: 40px 0px;
    }
    .team-card{
        aspect-ratio: 3/3;
    }
    .page-hero {
    height: 50vh;
    min-height: 400px;
}
    body { cursor: auto; }
    .cursor-dot,
    .cursor-ring { display: none; }

        .team-card-link{ opacity:1 !important; }
    .team-card-content{
        padding:20px 36px !important;
    }
    .team-card-role{
        margin-bottom: 0 !important;
    }
}
