:root {
    --ink: #1a1d24;
    --ink-soft: #4a4e57;
    --paper: #f5f1ea;
    --paper-warm: #ebe5d9;
    --gold: #c9a052;
    --gold-deep: #8a6d2f;
    --terracotta: #b54e2c;
    --teal: #1e5b5e;
    --teal-deep: #143f42;
    --line: rgba(26, 29, 36, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter Tight', sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: radial-gradient(circle at 15% 20%, rgba(201, 160, 82, 0.06) 0%, transparent 45%), radial-gradient(circle at 85% 75%, rgba(30, 91, 94, 0.05) 0%, transparent 45%);
        pointer-events: none;
        z-index: 1;
    }

.serif {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
}

.serif-roman {
    font-family: 'Fraunces', serif;
    font-weight: 400;
}

.arabic {
    font-family: 'Amiri', serif;
    direction: rtl;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(245, 241, 234, 0.78);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, padding 0.3s;
}

    nav.scrolled {
        border-bottom-color: var(--line);
        padding: 12px 60px;
    }

.logo {
    font-family: 'Fraunces', serif;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-mark {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    gap: 4px;
}

    .logo-text .en {
        background: linear-gradient(180deg, var(--ink) 0%, var(--teal-deep) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        line-height: 0.95;
    }

    .logo-text .flourish {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        margin: 2px 0;
    }

        .logo-text .flourish::before,
        .logo-text .flourish::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
        }

    .logo-text .flourish-mark {
        color: var(--gold);
        font-size: 14px;
        line-height: 1;
        transform: translateY(-1px);
    }

    .logo-text .ar {
        font-family: 'Reem Kufi', sans-serif;
        font-size: 32px;
        font-weight: 600;
        letter-spacing: 0.04em;
        background: linear-gradient(135deg, var(--gold-deep) 0%, var(--terracotta) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        direction: rtl;
        align-self: stretch;
        text-align: center;
    }

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    font-size: 14px;
    letter-spacing: 0.02em;
}

    .nav-links a {
        color: var(--ink-soft);
        text-decoration: none;
        transition: color 0.2s;
        position: relative;
    }

        .nav-links a:hover {
            color: var(--ink);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.btn-cta {
    background: var(--ink);
    color: var(--paper);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

    .btn-cta:hover {
        background: var(--teal);
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(30, 91, 94, 0.3);
    }

.hero {
    min-height: 100vh;
    padding: 160px 60px 80px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 460px);
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 100px;
        right: -60px;
        width: 320px;
        height: 320px;
        background-image: radial-gradient(circle at 50% 50%, var(--gold) 1px, transparent 1px);
        background-size: 18px 18px;
        opacity: 0.18;
        border-radius: 50%;
        mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 70%);
        -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 70%);
        pointer-events: none;
    }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-deep);
    margin-bottom: 28px;
}

    .eyebrow::before {
        content: '';
        width: 32px;
        height: 1px;
        background: var(--gold);
    }

h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(44px, 6.5vw, 84px);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    color: var(--ink);
}

    h1 .accent {
        font-style: italic;
        color: var(--gold-deep);
        font-weight: 400;
    }

.hero-arabic {
    font-family: 'Amiri', serif;
    direction: rtl;
    font-size: 32px;
    color: var(--teal);
    margin-bottom: 24px;
    line-height: 1.4;
}

.hero p.lede {
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 500px;
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    padding: 12px 24px;
    border: 1px solid var(--ink);
    border-radius: 100px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

    .btn-secondary:hover {
        background: var(--ink);
        color: var(--paper);
    }

.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    width: 100%;
    max-width: 460px;
    margin-left: 0;
    justify-self: start;
}

.hero-card {
    position: absolute;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 26px;
    box-shadow: 0 30px 60px -20px rgba(26, 29, 36, 0.18);
}

.hero-card-1 {
    top: 0;
    left: 0;
    width: 70%;
    transform: rotate(-3deg);
    animation: float1 6s ease-in-out infinite;
}

.hero-card-2 {
    bottom: 0;
    right: 0;
    width: 65%;
    transform: rotate(2deg);
    background: var(--teal);
    color: var(--paper);
    animation: float2 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: rotate(-3deg) translateY(0);
    }

    50% {
        transform: rotate(-3deg) translateY(-12px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: rotate(2deg) translateY(0);
    }

    50% {
        transform: rotate(2deg) translateY(-10px);
    }
}

.card-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 12px;
}

.card-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
}

.card-arabic {
    font-family: 'Amiri', serif;
    direction: rtl;
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--gold);
}

.card-meta {
    font-size: 13px;
    display: flex;
    gap: 12px;
    opacity: 0.75;
    flex-wrap: wrap;
}

.identity-section {
    padding: 140px 60px;
    text-align: center;
    background: var(--paper-warm);
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

    .identity-section::before,
    .identity-section::after {
        content: '';
        position: absolute;
        width: 1px;
        height: 60px;
        background: var(--gold);
        left: 50%;
    }

    .identity-section::before {
        top: 40px;
    }

    .identity-section::after {
        bottom: 40px;
    }

.identity-mark {
    font-family: 'Amiri', serif;
    font-size: 56px;
    color: var(--gold);
    margin-bottom: 32px;
    direction: rtl;
    line-height: 1;
}

.identity-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 300;
    line-height: 1.32;
    max-width: 920px;
    margin: 0 auto;
    color: var(--ink);
    letter-spacing: -0.015em;
}

    .identity-quote em {
        font-style: italic;
        color: var(--gold-deep);
    }

section {
    padding: 120px 60px;
    position: relative;
    z-index: 2;
}

.section-header {
    max-width: 720px;
    margin-bottom: 80px;
}

h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

    h2 .accent {
        font-style: italic;
        color: var(--gold-deep);
    }

.section-lede {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 560px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.why-card {
    padding: 36px 32px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    transition: all 0.3s;
}

    .why-card:hover {
        transform: translateY(-4px);
        border-color: var(--gold);
        box-shadow: 0 20px 40px -20px rgba(201, 160, 82, 0.25);
    }

.why-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: var(--gold-deep);
}

.why-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.2;
}

.why-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
}

.programs-section {
    background: var(--ink);
    color: var(--paper);
}

    .programs-section h2 {
        color: var(--paper);
    }

    .programs-section .section-lede {
        color: rgba(245, 241, 234, 0.7);
    }

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.program-card {
    padding: 48px 40px;
    border: 1px solid rgba(245, 241, 234, 0.18);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

    .program-card:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
    }

    .program-card.arabic-bg {
        background: linear-gradient(135deg, rgba(30, 91, 94, 0.4) 0%, transparent 100%);
    }

    .program-card.history-bg {
        background: linear-gradient(135deg, rgba(181, 78, 44, 0.3) 0%, transparent 100%);
    }

.program-tag {
    font-family: 'Amiri', serif;
    direction: rtl;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 16px;
}

.program-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
}

.program-card p {
    color: rgba(245, 241, 234, 0.78);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.program-list {
    list-style: none;
    margin-bottom: 32px;
}

    .program-list li {
        padding: 10px 0;
        font-size: 14px;
        color: rgba(245, 241, 234, 0.85);
        border-bottom: 1px solid rgba(245, 241, 234, 0.12);
        padding-left: 24px;
        position: relative;
    }

        .program-list li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 11px;
            top: 12px;
        }

.levels-section {
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 40px;
}

.level {
    background: var(--paper-warm);
    padding: 44px 36px;
    transition: background 0.3s;
}

    .level:hover {
        background: var(--paper);
    }

.level-grade {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--gold-deep);
    margin-bottom: 20px;
}

.level h3 {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
}

    .level h3 .ar {
        display: block;
        font-family: 'Amiri', serif;
        font-style: normal;
        font-size: 22px;
        color: var(--teal);
        direction: rtl;
        margin-top: 4px;
    }

.level p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-top: 16px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 60px;
}

.process-step {
    position: relative;
    padding-top: 32px;
    border-top: 1px solid var(--ink);
}

.step-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    color: var(--gold-deep);
    margin-bottom: 24px;
}

.process-step h3 {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 14px;
}

.process-step p {
    color: var(--ink-soft);
    line-height: 1.65;
}

.testimonial-section {
    text-align: center;
    padding: 140px 60px;
    background: var(--paper);
}

blockquote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 300;
    line-height: 1.35;
    max-width: 880px;
    margin: 0 auto 32px;
    color: var(--ink);
    letter-spacing: -0.01em;
}

    blockquote::before {
        content: '"';
        color: var(--gold);
        font-size: 1.4em;
    }

    blockquote::after {
        content: '"';
        color: var(--gold);
        font-size: 1.4em;
    }

.quote-attribution {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-soft);
}

    .quote-attribution strong {
        color: var(--ink);
        font-weight: 500;
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--paper-warm);
    padding: 44px 36px;
    border-radius: 4px;
    border: 1px solid var(--line);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px -20px rgba(26, 29, 36, 0.15);
    }

    .pricing-card.featured {
        background: var(--teal);
        color: var(--paper);
        border-color: var(--teal);
    }

        .pricing-card.featured .price-meta {
            color: rgba(245, 241, 234, 0.65);
        }

        .pricing-card.featured ul li {
            color: rgba(245, 241, 234, 0.88);
            border-bottom-color: rgba(245, 241, 234, 0.18);
        }

            .pricing-card.featured ul li::before {
                color: var(--gold);
            }

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--gold);
}

.plan-name {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 6px;
}

.price {
    font-family: 'Fraunces', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 1;
    margin: 22px 0 4px;
}

.price-meta {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 32px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 32px;
}

    .pricing-card ul li {
        padding: 10px 0;
        font-size: 14.5px;
        color: var(--ink-soft);
        border-bottom: 1px solid var(--line);
        padding-left: 24px;
        position: relative;
    }

        .pricing-card ul li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--gold-deep);
            font-size: 11px;
            top: 12px;
        }

.btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 100px;
    background: var(--ink);
    color: var(--paper);
    font-size: 14px;
    border: none;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-card.featured .btn-plan {
    background: var(--gold);
    color: var(--ink);
}

.btn-plan:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.contact-section {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
    color: var(--paper);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .contact-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 50% 50%, var(--gold) 1px, transparent 1px);
        background-size: 24px 24px;
        opacity: 0.06;
        pointer-events: none;
    }

    .contact-section h2 {
        color: var(--paper);
        position: relative;
    }

        .contact-section h2 .accent {
            color: var(--gold);
        }

    .contact-section .section-lede {
        color: rgba(245, 241, 234, 0.85);
        margin: 0 auto 48px;
        position: relative;
    }

.contact-form {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: rgba(245, 241, 234, 0.08);
    border: 1px solid rgba(245, 241, 234, 0.22);
    color: var(--paper);
    padding: 16px 20px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: rgba(245, 241, 234, 0.55);
    }

.contact-form select {
    color: rgba(245, 241, 234, 0.7);
    cursor: pointer;
}

    .contact-form select option {
        background: var(--teal-deep);
        color: var(--paper);
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
        outline: none;
        border-color: var(--gold);
        background: rgba(245, 241, 234, 0.12);
    }

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-form button {
    background: var(--gold);
    color: var(--ink);
    padding: 16px;
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

    .contact-form button:hover {
        background: var(--paper);
        transform: translateY(-1px);
    }

footer {
    background: var(--ink);
    color: rgba(245, 241, 234, 0.6);
    padding: 60px;
    text-align: center;
    font-size: 14px;
}

    footer .logo {
        color: var(--paper);
        justify-content: center;
        margin-bottom: 20px;
        font-size: 48px;
    }

        footer .logo .logo-mark {
            width: 72px;
            height: 72px;
        }

        footer .logo .logo-text .en {
            background: linear-gradient(180deg, var(--paper) 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        footer .logo .logo-text .ar {
            font-size: 40px;
            background: linear-gradient(135deg, var(--gold) 0%, #e8b84a 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        footer .logo .logo-text .flourish-mark {
            color: var(--gold);
        }

    footer p {
        margin-bottom: 8px;
    }

.footer-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 36px auto;
}

.footer-legal {
    max-width: 720px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 14px;
    color: var(--paper);
    opacity: 0.85;
    margin-bottom: 16px !important;
    letter-spacing: 0.02em;
}

.footer-rights {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(245, 241, 234, 0.55);
    margin-bottom: 24px !important;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    font-size: 13px;
}

    .footer-links a {
        color: rgba(245, 241, 234, 0.75);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--gold);
        }

    .footer-links span {
        color: rgba(245, 241, 234, 0.3);
    }

.footer-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 13px;
    color: rgba(245, 241, 234, 0.4);
    margin-top: 16px !important;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    nav,
    nav.scrolled {
        padding: 12px 16px;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 26px;
        gap: 12px;
        min-width: 0;
        flex: 0 1 auto;
    }

    nav .btn-cta {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .logo-mark {
        width: 48px;
        height: 48px;
    }

    .logo-text .ar {
        font-size: 22px;
    }

    footer .logo {
        font-size: 36px;
    }

        footer .logo .logo-mark {
            width: 56px;
            height: 56px;
        }

        footer .logo .logo-text .ar {
            font-size: 30px;
        }

    .hero {
        grid-template-columns: 1fr;
        padding: 120px 24px 60px;
    }

        .hero::before {
            display: none;
        }

    .hero-arabic {
        font-size: 26px;
    }

    .hero-visual {
        margin: 40px auto 0;
    }

    section {
        padding: 80px 24px;
    }

    .identity-section {
        padding: 100px 24px;
    }

    .testimonial-section {
        padding: 80px 24px;
    }

    .why-grid, .programs-grid, .levels-grid, .process-grid, .pricing-grid, .form-row {
        grid-template-columns: 1fr;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.logo:hover .logo-cap {
    animation: bounce 0.7s ease-in-out;
    transform-origin: 50% 100%;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    30% {
        transform: translateY(-3px) rotate(-4deg);
    }

    60% {
        transform: translateY(-1px) rotate(4deg);
    }
}

/* FOUNDER SECTION */
.founder-section {
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 120px 60px;
    position: relative;
    z-index: 2;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-portrait {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 380px;
    width: 100%;
}

    .founder-portrait::before {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid var(--gold);
        transform: translate(16px, 16px);
        border-radius: 4px;
        z-index: 0;
    }

    .founder-portrait .portrait-frame {
        position: relative;
        width: 100%;
        height: 100%;
        background: var(--paper);
        border-radius: 4px;
        overflow: hidden;
        z-index: 1;
        box-shadow: 0 30px 60px -20px rgba(26, 29, 36, 0.3);
    }

    .founder-portrait img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center top;
        display: block;
    }

.founder-content .eyebrow {
    margin-bottom: 24px;
}

.founder-content h2 {
    margin-bottom: 12px;
}

.founder-name-ar {
    font-family: 'Amiri', serif;
    direction: rtl;
    font-size: 22px;
    color: var(--teal);
    margin-bottom: 28px;
}

.founder-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 20px;
    max-width: 580px;
}

    .founder-content p:last-of-type {
        font-family: 'Fraunces', serif;
        font-style: italic;
        font-size: 19px;
        color: var(--ink);
        border-left: 2px solid var(--gold);
        padding-left: 20px;
        margin-top: 32px;
    }

.founder-credentials {
    margin-top: 32px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

    .founder-credentials span {
        position: relative;
        padding-right: 24px;
    }

        .founder-credentials span:not(:last-child)::after {
            content: '·';
            position: absolute;
            right: 6px;
            color: var(--gold);
        }

@media (max-width: 900px) {
    .founder-section {
        padding: 80px 24px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .founder-portrait {
        margin: 0 auto;
        max-width: 280px;
    }
}

.form-status {
    display: none;
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    border: 1px solid transparent;
}

    .form-status.visible {
        display: block;
    }

    .form-status.success {
        background: rgba(245, 241, 234, 0.12);
        border-color: rgba(201, 160, 82, 0.45);
        color: var(--paper);
    }

    .form-status.error {
        background: rgba(181, 78, 44, 0.16);
        border-color: rgba(181, 78, 44, 0.5);
        color: #fff3ef;
    }

.submit-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(26, 29, 36, 0.25);
    border-top-color: var(--ink);
    border-radius: 50%;
    display: none;
    animation: button-spin 0.8s linear infinite;
}

.contact-form button.is-loading .submit-spinner {
    display: inline-block;
}

.contact-form button:disabled {
    opacity: 0.85;
    cursor: wait;
    transform: none;
}

@keyframes button-spin {
    to {
        transform: rotate(360deg);
    }
}
