/* 
  FondMemoirs Landing Page CSS 
  Theme: Warm, nostalgic, premium, elegant, subtle
  Fonts: Playfair Display (Serif) & Inter (Sans Serif)
*/

:root {
    --color-bg: #FCFBF8;
    --color-surface: #F3F1ED;
    --color-surface-dark: #232321;
    --color-text-main: #2A2A28;
    --color-text-muted: #5A5853;
    --color-text-light: #F8F8F8;
    --color-accent: #C29A62;
    /* A warm, nostalgic gold/bronze */
    --color-accent-hover: #A8814D;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
h1,
h2,
h3,
.logo,
.eyebrow {
    font-family: var(--font-serif);
}

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

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2.5rem;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-white {
    color: var(--color-text-light);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1.05rem;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(168, 129, 77, 0.25);
}

.btn-small {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 1.2rem 2.2rem;
    font-size: 1.1rem;
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    z-index: 1001; /* Above sticky cta initially */
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.7rem;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-main);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    line-height: 0;
}

.mobile-menu-toggle i,
.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
    position: relative;
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Sticky CTA */
.sticky-cta-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(252, 251, 248, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta-bar.is-active {
    transform: translateY(0);
}

.sticky-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-small {
    font-size: 1.3rem;
}

/* Sections Global Styles */
section {
    padding: 6rem 5%;
    scroll-margin-top: 80px;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
    color: var(--color-text-main);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.centered-desc {
    margin-left: auto;
    margin-right: auto;
}

/* Global Image Placeholders */
.image-placeholder {
    background-color: #E6E2D8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9E9C94;
    font-family: var(--font-sans);
    border-radius: 8px;
    overflow: hidden;
}

/* Section 1: Hero Split */
.hero-split {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding-top: 12vh;
    padding-bottom: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-content {
    flex: 1;
    max-width: 580px;
}

.eyebrow {
    display: block;
    font-style: italic;
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero-headline {
    font-size: clamp(3.2rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-image-content {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-hero {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Section 2: Showreel */
.chapters-showreel {
    background-color: var(--color-surface);
    overflow: hidden;
    padding: 5rem 0;
    /* Full bleed */
}

.showreel-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

.showreel-text {
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
}

.polaroid-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 2rem;
    /* Add subtle internal padding so polaroids can "tilt" without clipping */
    padding: 1rem;
}

.polaroid {
    background: white;
    padding: 15px 15px 45px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    flex: 1;
    min-width: 200px;
    aspect-ratio: 3/4;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.polaroid:nth-child(even) {
    transform: rotate(2deg) translateY(10px);
}

.polaroid:nth-child(odd) {
    transform: rotate(-2deg) translateY(-10px);
}

.polaroid:hover {
    transform: rotate(0) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.polaroid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f0f0f0;
}

/* Layout for Image + Text (Sections 3 & 5) */
.image-text-layout {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 4rem 5%;
}

.layout-reverse {
    flex-direction: row-reverse;
}

.layout-image {
    flex: 1;
}

.layout-text {
    flex: 1;
}

.split-img-large {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Section 4: Process */
.process-section {
    background-color: var(--color-bg);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.homework-section {
    background-color: var(--color-surface);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.process-header {
    margin-bottom: 2.5rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
    text-align: center;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    color: var(--color-accent);
}

.step-icon .feather {
    width: 32px;
    height: 32px;
}

.step-title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Button Variants */
.btn-outline {
    background-color: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: white;
    box-shadow: none;
    transform: none;
}

/* Detailed Process Flow Timeline */
.detailed-flow {
    max-width: 700px;
    margin: 2.5rem auto 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(42, 42, 40, 0.1);
    animation: fadeIn 0.6s ease forwards;
}

.detailed-flow.hidden {
    display: none;
}

.flow-title {
    font-size: 1.8rem;
    font-family: var(--font-serif);
    text-align: center;
    margin-bottom: 2rem;
}

.flow-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}

/* Vertical line connecting timeline */
.flow-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    /* Centers with the 48px icon */
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(194, 154, 98, 0.2);
    z-index: 1;
}

.flow-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.flow-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-surface);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.flow-icon .feather {
    width: 20px;
    height: 20px;
}

.flow-content h4 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.flow-content p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section 6: Pricing */
.pricing-section {
    position: relative;
    background-color: var(--color-surface-dark);
    padding: 3rem 5%;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
    text-align: left;
}

.card-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.card-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(42, 42, 40, 0.08);
}

.price-details {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-family: var(--font-sans);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-text-main);
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-original {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.price-strikethrough {
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-badge {
    background-color: #E03C31;
    /* striking red */
    color: white;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    text-align: center;
    max-width: 140px;
    line-height: 1.3;
    box-shadow: 0 4px 10px rgba(224, 60, 49, 0.2);
}

.guarantee-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background-color: #f6fcf8;
    border: 1px solid #e0f2e6;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.guarantee-badge .feather {
    color: #3bb36a;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-badge strong {
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.disclaimer-text {
    opacity: 0.6;
    font-style: italic;
}

.card-checklist {
    list-style: none;
    margin-bottom: 2rem;
}

.card-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
    font-size: 1.05rem;
}

.card-checklist .feather {
    color: #3bb36a;
    /* gentle green for ticks */
    min-width: 24px;
}

.discover-checklist .feather {
    color: var(--color-accent);
    /* use the primary gold/bronze theme color */
}

.checkout-explainer {
    max-width: 600px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Section 7: FAQs */
.faq-section {
    background-color: var(--color-surface);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.mb-5 {
    margin-bottom: 2rem;
}

.faq-accordion {
    border-top: 1px solid rgba(42, 42, 40, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(42, 42, 40, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    padding-right: 2rem;
}

/* Footer */
.site-footer {
    background-color: #1A1A19;
    /* Even darker for true footer */
    color: #999;
    padding: 2.5rem 5%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Reveal Animations - Prevent blank screen by allowing Hero to show immediately */
.js-enabled .reveal-on-scroll:not(.site-header),
.js-enabled [class*="reveal-delay-"]:not([class*="hero"]) { 
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Delays */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.25s;
}

.reveal-delay-3 {
    transition-delay: 0.4s;
}

.reveal-delay-4 {
    transition-delay: 0.55s;
}

.reveal-delay-5 {
    transition-delay: 0.7s;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Overrides */
@media (max-width: 1024px) {

    .hero-split,
    .image-text-layout {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .layout-reverse {
        flex-direction: column;
    }

    .hero-headline {
        margin: 1.5rem auto;
    }

    .hero-subheadline,
    .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-content {
        width: 100%;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-split {
        padding-top: 8vh;
        gap: 2rem;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .sticky-cta-bar {
        top: auto;
        bottom: 0;
        transform: translateY(100%);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 0.8rem 5%;
    }

    .logo-small {
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-bg);
        padding: 8rem 5% 2rem 5%;
        gap: 2rem;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        text-align: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.5rem;
        font-family: var(--font-serif);
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .polaroid-grid {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 1rem;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        /* Hide scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .polaroid-grid::-webkit-scrollbar {
        display: none;
    }

    .polaroid {
        flex: 0 0 75%;
        max-width: 280px;
        scroll-snap-align: center;
        transform: rotate(0) !important;
    }
}

/* =========================================
   Comparison Section 
   ========================================= */
.comparison-section {
    padding: 4rem 0;
    background-color: var(--color-bg); 
}

.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-radius: 12px;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.comparison-table {
    width: 100%;
    min-width: 1000px;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    text-align: left;
    font-size: 0.95rem;
}

.comparison-table th, .comparison-table td {
    padding: 1rem 0.8rem;
    border-bottom: 1px solid var(--color-surface);
    vertical-align: top;
    color: var(--color-text-main);
    line-height: 1.5;
}

.comparison-table th {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    background: #fff;
    border-bottom: 2px solid var(--color-accent);
}

.comparison-table th.highlight {
    background: var(--color-accent);
    color: #fff;
    border-radius: 12px 12px 0 0;
}

.comparison-table td.highlight {
    background: rgba(194, 154, 98, 0.05); /* Light tint of accent */
    font-weight: 500;
    border-left: 2px solid var(--color-accent);
    border-right: 2px solid var(--color-accent);
}

.comparison-table .feature-label {
    font-weight: 600;
    color: var(--color-text-main);
    width: 18%;
    background: #fff;
}

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

.comparison-table tbody tr:last-child td.highlight {
    border-bottom: 2px solid var(--color-accent);
    border-radius: 0 0 12px 12px;
}

.comparison-table .price-row td {
    font-size: 1.05rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.comparison-section {
    background-color: var(--color-surface);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.keepsake-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.keepsake-section .image-text-layout {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Section: Testimonials */
.testimonials-section {
    background-color: var(--color-surface);
    padding: 2rem 5%;
}

.testimonial-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-accent);
    font-size: 1rem;
}

@media (min-width: 769px) {
    .testimonial-card {
        flex: 0 0 calc(100% / 1.5);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(100% / 2.5);
    }
}

/* Section: Founder Story */
.founder-section {
    background-color: var(--color-bg); /* Matches Hero background */
    padding: 3rem 5%;
    text-align: center;
}

.founder-container {
    max-width: 750px;
    margin: 0 auto;
}

.founder-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
    margin-top: 2rem;
}

.founder-text {
    flex: 1;
}

.founder-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: white; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.founder-avatar img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-quote {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-text-main);
    margin-bottom: 1rem;
    font-style: italic;
}

.founder-signature {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .founder-content {
        flex-direction: column; /* Keep avatar below text */
        text-align: left;
        gap: 1rem;
    }
    
    .founder-avatar {
        margin: 0; /* Keep it left-aligned/tight with text on mobile */
        width: 80px;
        height: 80px;
    }
}
