/* ============================================
   FOUNDERS STORYLINE V2
   Light & Elegant Theme - Vertical Curvy Path
   ============================================ */

:root {
    --fs-dark: #ffffff;
    --fs-dark-alt: #f8f6f2;
    --fs-dark-card: #ffffff;
    --fs-gold: #9e7c3c;
    --fs-gold-light: #b8923e;
    --fs-gold-glow: rgba(158, 124, 60, 0.1);
    --fs-wine: #722F37;
    --fs-wine-light: #8e3a44;
    --fs-text: #2c2c2c;
    --fs-text-muted: #6b6b6b;
    --fs-white: #1a1a1a;
    --fs-border: rgba(158, 124, 60, 0.2);
}

/* ========== HERO SECTION ========== */
.fs-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f6f2 0%, #ffffff 40%, #f5f0e8 70%, #f8f6f2 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.fs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(158, 124, 60, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(114, 47, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.fs-hero-subtitle {
    color: var(--fs-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fs-subtitle-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--fs-gold);
}

.fs-hero-title {
    color: var(--fs-white);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.fs-hero-tagline {
    color: var(--fs-gold-light);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
}

.fs-hero-lead {
    color: var(--fs-text-muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 32px;
}

/* Hero scroll CTA */
.fs-hero-scroll-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--fs-gold) !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.fs-hero-scroll-cta i {
    font-size: 18px;
    animation: fs-bounce 2s infinite;
}

.fs-hero-scroll-cta:hover {
    color: var(--fs-gold-light) !important;
    gap: 14px;
}

@keyframes fs-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Hero Founder Image - Bigger v2 */
.fs-hero-founder-wrap {
    position: relative;
    text-align: center;
}

.fs-hero-founder-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(158, 124, 60, 0.08) 0%, rgba(114, 47, 55, 0.04) 40%, transparent 70%);
    border-radius: 50%;
}

.fs-hero-founder-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 370px;
    height: 370px;
    border-radius: 50%;
    border: 1px solid rgba(158, 124, 60, 0.2);
    animation: fs-ring-pulse 4s ease-in-out infinite;
}

.fs-hero-founder-ring--outer {
    width: 420px;
    height: 420px;
    border: 1px dashed rgba(158, 124, 60, 0.15);
    animation: fs-ring-rotate 30s linear infinite;
}

@keyframes fs-ring-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
}

@keyframes fs-ring-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.fs-hero-founder-img {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--fs-gold);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 60px rgba(158, 124, 60, 0.12);
    position: relative;
    z-index: 2;
}

.fs-hero-founder-label {
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

.fs-hero-founder-label strong {
    display: block;
    color: var(--fs-white);
    font-size: 20px;
    margin-bottom: 4px;
}

.fs-hero-founder-label span {
    color: var(--fs-gold);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ========== QUOTE SECTION ========== */
.fs-quote-section {
    background: var(--fs-dark);
    padding: 90px 0;
    position: relative;
}

.fs-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fs-gold), transparent);
}

.fs-quote-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
}

.fs-quote-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fs-gold));
}

.fs-quote-line:last-child {
    background: linear-gradient(90deg, var(--fs-gold), transparent);
}

.fs-quote-icon {
    color: var(--fs-gold);
    font-size: 36px;
    opacity: 0.7;
    flex-shrink: 0;
}

.fs-blockquote {
    color: var(--fs-text);
    font-size: 22px;
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
    border: none;
    padding: 0;
    margin: 0 0 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fs-blockquote.fs-visible,
.fs-visible .fs-blockquote {
    opacity: 1;
    transform: translateY(0);
}

.fs-quote-author {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.fs-quote-author-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--fs-gold);
}

.fs-quote-author strong {
    display: block;
    color: var(--fs-white);
    font-size: 16px;
}

.fs-quote-author span {
    color: var(--fs-gold);
    font-size: 13px;
    letter-spacing: 1px;
}

/* ========== JOURNEY - VERTICAL CURVY PATH ========== */
.fs-journey-section {
    background: var(--fs-dark-alt);
    padding: 100px 0 100px;
    position: relative;
    overflow: hidden;
}

.fs-journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 30%, rgba(158, 124, 60, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 70%, rgba(114, 47, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.fs-section-subtitle {
    color: var(--fs-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.fs-section-title {
    color: var(--fs-white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
}

.fs-section-lead {
    color: var(--fs-text-muted);
    font-size: 17px;
    line-height: 1.8;
}

/* Vertical path container */
.fs-vpath {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0 20px;
}

/* Curvy SVG center line */
.fs-vpath-svg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Timeline item row */
.fs-vpath-item {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.fs-vpath-item:last-child {
    margin-bottom: 0;
}

/* Left: card on left, node in center */
.fs-vpath-left {
    flex-direction: row-reverse;
}

/* Animate */
.fs-vpath-animate {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fs-vpath-left.fs-vpath-animate {
    transform: translateX(-30px);
}

.fs-vpath-right.fs-vpath-animate {
    transform: translateX(30px);
}

.fs-vpath-animate.fs-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Center node */
.fs-vpath-node {
    flex-shrink: 0;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 3;
}

.fs-vpath-node-inner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--fs-dark-card);
    border: 3px solid var(--fs-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fs-gold);
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(158, 124, 60, 0.2);
    transition: all 0.3s ease;
}

.fs-vpath-item:hover .fs-vpath-node-inner {
    background: rgba(158, 124, 60, 0.08);
    box-shadow: 0 4px 25px rgba(158, 124, 60, 0.3);
    transform: scale(1.08);
}

.fs-vpath-node-inner--glow {
    background: rgba(158, 124, 60, 0.08);
    border-width: 3px;
    box-shadow: 0 4px 25px rgba(158, 124, 60, 0.3);
}

.fs-vpath-num {
    font-size: 20px;
    font-weight: 900;
    color: var(--fs-gold);
    letter-spacing: 1px;
    opacity: 1;
}

/* Oval card */
.fs-vpath-card {
    flex: 1;
    max-width: calc(50% - 60px);
    background: var(--fs-dark-card);
    border: 1px solid var(--fs-border);
    border-radius: 60px;
    padding: 28px 36px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.fs-vpath-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--fs-gold);
    opacity: 0.5;
}

/* Connector arm: left card points right, right card points left */
.fs-vpath-left .fs-vpath-card::before {
    right: -20px;
    transform: translateY(-50%);
}

.fs-vpath-right .fs-vpath-card::before {
    left: -20px;
    transform: translateY(-50%);
}

.fs-vpath-card:hover {
    border-color: var(--fs-gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 0 20px rgba(158, 124, 60, 0.1);
    transform: translateY(-3px);
}

/* Highlight card */
.fs-vpath-highlight .fs-vpath-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(158, 124, 60, 0.06) 100%);
    border-color: rgba(158, 124, 60, 0.4);
}

.fs-vpath-highlight .fs-vpath-card h3 {
    color: var(--fs-gold-light);
}

/* Card text */
.fs-vpath-card h3 {
    color: var(--fs-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.fs-vpath-card p {
    color: var(--fs-text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.fs-vpath-label {
    display: inline-block;
    padding: 3px 14px;
    background: rgba(158, 124, 60, 0.08);
    border: 1px solid rgba(158, 124, 60, 0.2);
    border-radius: 20px;
    color: var(--fs-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Journey stats bar */
.fs-journey-stats {
    display: flex;
    margin-top: 60px;
    background: var(--fs-dark-card);
    border: 1px solid var(--fs-border);
    border-radius: 16px;
    padding: 28px 0;
}

.fs-journey-stat {
    flex: 1;
    text-align: center;
    position: relative;
}

.fs-journey-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--fs-border);
}

.fs-journey-stat strong {
    display: block;
    color: var(--fs-gold);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.fs-journey-stat span {
    color: var(--fs-text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== FOUNDER PROFILE SECTION ========== */
.fs-founder-section {
    background: var(--fs-dark);
    padding: 100px 0;
    position: relative;
}

.fs-founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(158, 124, 60, 0.3), transparent);
}

.fs-founder-section .row {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fs-founder-section .row.fs-visible {
    opacity: 1;
    transform: translateY(0);
}

.fs-founder-photo-wrap {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
}

.fs-founder-photo-frame {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--fs-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.fs-founder-photo {
    width: 100%;
    height: auto;
    display: block;
}

.fs-founder-photo-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--fs-gold);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.4;
}

.fs-founder-bio {
    padding-left: 20px;
}

.fs-founder-role {
    color: var(--fs-gold);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.fs-founder-bio > p {
    color: var(--fs-text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Founder Values */
.fs-founder-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fs-value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--fs-dark-alt);
    border-radius: 12px;
    border: 1px solid var(--fs-border);
    transition: all 0.3s ease;
}

.fs-value-item:hover {
    border-color: var(--fs-gold);
    background: rgba(158, 124, 60, 0.05);
}

.fs-value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fs-gold-glow);
    border-radius: 10px;
    color: var(--fs-gold);
    font-size: 20px;
}

.fs-value-item strong {
    display: block;
    color: var(--fs-white);
    font-size: 15px;
    margin-bottom: 4px;
}

.fs-value-item p {
    color: var(--fs-text-muted);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ========== CTA SECTION ========== */
.fs-cta-section {
    background: linear-gradient(135deg, #f5f0e8 0%, #f8f6f2 50%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.fs-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fs-gold), transparent);
}

.fs-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(158, 124, 60, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.fs-cta-title {
    color: var(--fs-white);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.fs-cta-text {
    color: var(--fs-text-muted);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.fs-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.fs-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--fs-gold) 0%, var(--fs-gold-light) 100%);
    color: #ffffff !important;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(158, 124, 60, 0.25);
}

.fs-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(158, 124, 60, 0.35);
    color: #ffffff !important;
}

.fs-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: transparent;
    color: var(--fs-gold) !important;
    border: 2px solid var(--fs-gold);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.fs-btn-outline:hover {
    background: var(--fs-gold-glow);
    transform: translateY(-2px);
    color: var(--fs-gold) !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .fs-hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .fs-hero-title {
        font-size: 40px;
    }

    .fs-hero-tagline {
        font-size: 18px;
    }

    .fs-section-title {
        font-size: 32px;
    }

    /* Vertical path collapses to single column */
    .fs-vpath-svg {
        display: none;
    }

    .fs-vpath-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 32px;
    }

    .fs-vpath-node {
        flex-direction: row;
        width: auto;
        margin-bottom: 12px;
    }

    .fs-vpath-card {
        max-width: 100%;
        border-radius: 40px;
    }

    .fs-vpath-card::before {
        display: none;
    }

    .fs-vpath-left.fs-vpath-animate,
    .fs-vpath-right.fs-vpath-animate {
        transform: translateY(20px);
    }

    .fs-vpath-animate.fs-visible {
        transform: translateY(0);
    }

    .fs-founder-bio {
        padding-left: 0;
        margin-top: 40px;
    }

    .fs-founder-photo-wrap {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .fs-hero-title {
        font-size: 32px;
    }

    .fs-hero-tagline {
        font-size: 16px;
    }

    .fs-section-title {
        font-size: 28px;
    }

    .fs-quote-section {
        padding: 60px 0;
    }

    .fs-blockquote {
        font-size: 18px;
    }

    .fs-journey-section {
        padding: 60px 0 60px;
    }

    .fs-vpath-card {
        padding: 22px 26px;
        border-radius: 30px;
    }

    .fs-vpath-card h3 {
        font-size: 16px;
    }

    .fs-vpath-card p {
        font-size: 13px;
    }

    .fs-vpath-node-inner {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .fs-vpath-num {
        font-size: 16px;
    }

    .fs-journey-stats {
        flex-wrap: wrap;
        padding: 20px 0;
    }

    .fs-journey-stat {
        flex: 0 0 50%;
        padding: 8px 0;
    }

    .fs-journey-stat:nth-child(2)::after {
        display: none;
    }

    .fs-journey-stat strong {
        font-size: 20px;
    }

    .fs-founder-section {
        padding: 60px 0;
    }

    .fs-cta-section {
        padding: 60px 0;
    }

    .fs-cta-title {
        font-size: 28px;
    }

    .fs-cta-text {
        font-size: 16px;
    }

    .fs-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .fs-btn-gold,
    .fs-btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
