/* ── Design tokens ─────────────────────────────── */

:root {
    --purple:        #5f0082;
    --purple-dark:   #3d0056;
    --purple-deeper: #110020;
    --purple-mid:    #7b00a8;
    --purple-faint:  #faf7fd;
    --purple-muted:  #e8d8f5;
    --white:         #ffffff;
    --text:          #111827;
    --text-body:     #374151;
    --text-muted:    #6b7280;
    --text-light:    #9ca3af;
    --border:        #e5e7eb;
    --radius:        8px;
    --shadow-sm:     0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:     0 4px 20px rgba(95,0,130,0.12);
    --shadow-lg:     0 12px 40px rgba(95,0,130,0.2);
    --ease:          0.2s ease;
}

/* ── Reset & base ──────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    text-align: center;
    flex: 1;
}
img  { max-width: 100%; display: block; }

/* ── Shared layout ─────────────────────────────── */

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5.5rem 0;
}

.section--alt {
    background: var(--purple-faint);
}

/* ── Section headings ──────────────────────────── */

.eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0 auto 2.25rem;
    position: relative;
    padding-bottom: 1rem;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 3px;
    background: var(--purple);
    border-radius: 2px;
}

.section-title--left {
    text-align: left;
    margin-left: 0;
}

.section-title--left::after {
    left: 0;
    transform: none;
}

/* ── Buttons ───────────────────────────────────── */

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all var(--ease);
    cursor: pointer;
    border: 1.5px solid transparent;
    font-family: 'Inter', sans-serif;
}

.btn--white {
    background: var(--white);
    color: var(--purple);
    border-color: transparent;
}

.btn--white:hover {
    background: var(--purple-faint);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}

.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--purple {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

.btn--purple:hover {
    background: var(--purple-mid);
    border-color: var(--purple-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ── Profile picture ───────────────────────────── */

.profile-pic {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 0 8px rgba(255,255,255,0.07),
                0 20px 60px rgba(0,0,0,0.4);
}

.profile-pic--large {
    width: 230px;
    height: 230px;
}

.profile-pic--light {
    border-color: var(--purple);
    box-shadow: var(--shadow-md);
}

/* ── Home hero ─────────────────────────────────── */

.home-hero {
    background: linear-gradient(155deg,
        var(--purple-deeper) 0%,
        var(--purple-dark)   55%,
        var(--purple)        100%
    );
    padding: 7rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 65% -5%,
        rgba(123,0,168,0.55) 0%,
        transparent 55%
    );
    pointer-events: none;
}

.home-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-hero .profile-pic {
    margin-bottom: 2rem;
}

.hero-name {
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--white);
    margin: 0 0 0.875rem;
    letter-spacing: -0.01em;
    line-height: 1.08;
}

.hero-tagline {
    font-family: 'Oxanium', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: rgba(255,255,255,0.62);
    margin: 0 0 3rem;
    max-width: 420px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Inner page hero ───────────────────────────── */

.page-hero {
    background: linear-gradient(155deg,
        var(--purple-deeper) 0%,
        var(--purple-dark)   55%,
        var(--purple)        100%
    );
    padding: 4.5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 65% -5%,
        rgba(123,0,168,0.5) 0%,
        transparent 55%
    );
    pointer-events: none;
}

.page-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    line-height: 1.15;
}

.page-hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.62);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ── About ─────────────────────────────────────── */

.about-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4.5rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* ── Rich content ──────────────────────────────── */

.rich-content {
    max-width: 720px;
    width: 90%;
    margin: 0 auto 1.5rem;
    text-align: left;
    line-height: 1.8;
    color: var(--text-body);
    font-size: 1.0125rem;
}

.rich-content p { margin-top: 0; }

.rich-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--purple);
    margin: 1.75rem 0 0.35rem;
}

.rich-content ul,
.rich-content ol { padding-left: 1.25rem; }

.rich-content li { margin-bottom: 0.4rem; }

.rich-content--flush {
    margin: 0;
    width: 100%;
    max-width: none;
}

/* ── Podcast cards ─────────────────────────────── */

.podcast-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1020px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.podcast-grid .podcast-card {
    flex: 0 1 240px;
}

.podcast-card {
    background: var(--white);
    border: 1px solid var(--purple-muted);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.podcast-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.podcast-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
    overflow: hidden;
    flex-shrink: 0;
}

.podcast-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.podcast-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oxanium', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
}

.podcast-info {
    padding: 1.25rem 1.375rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.podcast-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.podcast-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
}

.podcast-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--purple);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color var(--ease);
    margin-top: auto;
}

.podcast-link:hover {
    color: var(--purple-mid);
}

/* ── Testimonials ──────────────────────────────── */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1020px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--purple-muted);
    border-radius: 12px;
    padding: 1.875rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 0.25rem;
    right: 1.25rem;
    font-size: 5.5rem;
    color: var(--purple-muted);
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.125rem;
}

.client-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    flex-shrink: 0;
    letter-spacing: 0.06em;
}

.client-avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--purple-muted);
}

.client-name {
    margin: 0 0 0.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.client-business {
    margin: 0;
    font-size: 0.78rem;
    color: var(--text-light);
}

.testimonial-quote {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-body);
    font-style: italic;
}

/* ── CTA ───────────────────────────────────────── */

.cta-section {
    background: linear-gradient(135deg,
        var(--purple-deeper) 0%,
        var(--purple)        100%
    );
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(123,0,168,0.45) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-name {
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--white);
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.cta-section .section-title {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-section .section-title::after {
    background: rgba(255,255,255,0.3);
}

.cta-section p {
    color: rgba(255,255,255,0.72);
    font-size: 1.0625rem;
    max-width: 460px;
    margin: 0 auto 2.25rem;
}

/* ── Contact ───────────────────────────────────── */

.contact-section {
    padding: 5.5rem 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
    text-align: left;
}

.contact-intro-col h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.contact-intro-col p {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0 0 1rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--purple-faint);
    border: 1px solid var(--purple-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--purple-muted);
    border-radius: 12px;
    padding: 2.25rem;
    box-shadow: var(--shadow-md);
}

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

label {
    display: block;
    margin-bottom: 0.375rem;
    font-weight: 500;
    font-size: 0.8125rem;
    color: #374151;
    letter-spacing: 0.01em;
}

input, textarea {
    font: 0.9375rem 'Inter', sans-serif;
    width: 100%;
    padding: 0.625rem 0.9rem;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1.5px solid var(--border);
    outline: none;
    transition: border-color var(--ease), box-shadow var(--ease);
    color: var(--text);
    background: var(--white);
}

input:focus, textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(95,0,130,0.09);
}

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

button[type="submit"] {
    width: 100%;
    font: 600 0.875rem 'Inter', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--purple);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
    margin-top: 0.375rem;
}

button[type="submit"]:hover {
    background: var(--purple-mid);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.success-msg {
    margin-bottom: 1.25rem;
    color: #065f46;
    padding: 0.75rem 1rem;
    background: #d1fae5;
    border-radius: 6px;
    border-left: 3px solid #10b981;
    font-size: 0.9rem;
}

/* ── Contact entries page ──────────────────────── */

.entries-page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.entries-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 800px;
    margin: 2rem auto 1rem;
}

.back-link,
.admin-link {
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1.5px solid var(--purple);
    padding: 0.4rem 1.1rem;
    border-radius: 6px;
    transition: background var(--ease), color var(--ease);
}

.back-link:hover,
.admin-link:hover {
    background: var(--purple);
    color: var(--white);
}

.entries-list {
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

.entry-card {
    background: var(--white);
    border: 1px solid var(--purple-muted);
    border-left: 4px solid var(--purple);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.entry-meta { display: flex; flex-direction: column; gap: 0.1rem; }
.entry-name  { font-weight: 600; font-size: 1rem; color: var(--purple); }
.entry-email { font-size: 0.85rem; color: var(--text-muted); }
.entry-date  { font-size: 0.8rem; color: var(--text-light); white-space: nowrap; }

.entry-subject {
    font-weight: 600;
    font-size: 0.925rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.entry-message {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
    white-space: pre-wrap;
    margin-bottom: 1rem;
    border-top: 1px solid #f3e8ff;
    padding-top: 0.75rem;
}

.entry-footer { display: flex; justify-content: flex-end; }

.delete-btn {
    background: transparent;
    color: #dc2626;
    border: 1.5px solid #dc2626;
    padding: 0.3rem 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    font: 600 0.8rem 'Inter', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: auto;
    transition: background var(--ease), color var(--ease);
}

.delete-btn:hover {
    background: #dc2626;
    color: var(--white);
}

.empty-state {
    padding: 5rem 2rem;
    color: var(--text-light);
    font-size: 1rem;
}

/* ── Privacy notice ────────────────────────────── */

.privacy-notice {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0.75rem 0 0.5rem;
}

.privacy-notice a {
    color: var(--purple);
    text-decoration: underline;
}

/* ── Footer ────────────────────────────────────── */

.site-footer {
    background: var(--purple-deeper);
    padding: 1.25rem 2rem;
}

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

.footer-linkedin {
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    transition: color var(--ease);
}

.footer-linkedin:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

/* ── Responsive ────────────────────────────────── */

@media (max-width: 768px) {
    .section { padding: 4rem 0; }
    .contact-section { padding: 4rem 1.25rem; }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-actions .btn {
        text-align: center;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .about-layout .profile-pic {
        margin: 0 auto;
    }

    .section-title--left {
        text-align: center;
    }

    .section-title--left::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .podcast-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .podcast-grid .podcast-card {
        flex: none;
        flex-direction: row;
        align-items: flex-start;
    }

    .podcast-cover {
        width: 100px;
        flex-shrink: 0;
    }

    .podcast-info {
        padding: 0.875rem 1rem;
    }
}
