/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   GLOBAL STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --purple: #350079;
    --navy: #000c79;
    --white: #ffffff;

    --purple-bright: #7C3AED;
    --blue-bright: #3B82F6;
    --cyan-bright: #06B6D4;

    /* 8px spacing scale */
    --sp-1: 8px;
    --sp-2: 16px;
    --sp-3: 24px;
    --sp-4: 32px;
    --sp-5: 40px;
    --sp-6: 48px;
    --sp-8: 64px;
    --sp-10: 80px;
    --sp-12: 96px;

    /* Transitions */
    --t-fast: 0.18s ease;
    --t-base: 0.28s ease;
    --t-slow: 0.55s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: #06000f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle film grain — breaks up flat gradients, reads as premium */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.038;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    background-color: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--sp-3) var(--sp-4);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(53, 0, 121, 0.2);
    transition: background-color var(--t-base), box-shadow var(--t-base);
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.94);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: opacity var(--t-fast);
}

.logo a:hover img {
    opacity: 0.82;
}

nav ul {
    display: flex;
    gap: var(--sp-4);
    list-style: none;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    padding: var(--sp-1) 0;
    position: relative;
    opacity: 0.78;
    transition: opacity var(--t-fast);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--purple-bright);
    transition: width var(--t-base);
}

nav a:hover {
    opacity: 1;
}

nav a:hover::after {
    width: 100%;
}

nav a.btn::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--sp-1);
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--t-base);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   SHARED SECTION LAYOUT
   ============================================ */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: var(--sp-8);
    align-items: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    margin-top: 80px;
    padding: var(--sp-12) var(--sp-4);
    background:
        radial-gradient(ellipse at 14% 88%, rgba(0, 12, 121, 0.42) 0%, transparent 48%),
        radial-gradient(ellipse at 78% 38%, rgba(124, 58, 237, 0.18) 0%, transparent 48%),
        radial-gradient(ellipse at 48% 108%, rgba(53, 0, 121, 0.38) 0%, transparent 52%),
        linear-gradient(155deg, #06000f 0%, rgba(53, 0, 121, 0.92) 56%, rgba(90, 30, 180, 0.82) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    grid-template-columns: 1fr 1fr;
}

.hero-text h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin-bottom: var(--sp-3);
}

.hero-subheading {
    font-size: clamp(1.1rem, 2vw, 1.4375rem);
    font-weight: 400;
    margin-bottom: var(--sp-3);
    opacity: 0.75;
    line-height: 1.45;
    letter-spacing: 0.005em;
}

.hero-text p {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: var(--sp-5);
    opacity: 0.8;
    max-width: 480px;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.7s ease;
}

.hero-image:hover {
    transform: scale(1.025) translateY(-6px);
}

.hero-image img {
    max-height: 520px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(124, 58, 237, 0.32));
    transition: filter 0.7s ease;
}

.hero-image:hover img {
    filter: drop-shadow(0 36px 64px rgba(124, 58, 237, 0.46));
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--blue-bright), var(--purple-bright));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.025em;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(124, 58, 237, 0.5);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-header {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--sp-12) var(--sp-4);
    background:
        radial-gradient(ellipse at 90% 12%, rgba(53, 0, 121, 0.11) 0%, transparent 52%),
        radial-gradient(ellipse at 8% 88%, rgba(0, 12, 121, 0.09) 0%, transparent 50%),
        #06000f;
}

.about-content {
    grid-template-columns: auto 1fr;
}

/* Shared sidebar image style (about + mentoring) */
.about-image,
.mentoring-image {
    transition: transform var(--t-slow), box-shadow var(--t-slow);
}

.about-image {
    width: 320px;
    flex-shrink: 0;
}

.mentoring-image {
    border-radius: 12px;
    overflow: hidden;
}

.mentoring-image {
    box-shadow:
        0 0 0 1px rgba(0, 12, 121, 0.4),
        0 20px 56px rgba(0, 12, 121, 0.2);
}

.about-image:hover {
}

.mentoring-image:hover {
    transform: translateY(-5px) scale(1.035);
    box-shadow:
        0 0 0 1px rgba(0, 12, 121, 0.65),
        0 32px 72px rgba(0, 12, 121, 0.32);
}

.about-image img,
.mentoring-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-text h2,
.mentoring-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: var(--sp-3);
    color: var(--white);
}

.about-text p,
.mentoring-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: var(--sp-2);
}

.about-text p:last-of-type,
.mentoring-text p:last-of-type {
    margin-bottom: var(--sp-4);
}

/* ============================================
   MENTORING SECTION
   ============================================ */
.mentoring {
    padding: var(--sp-12) var(--sp-4);
    background:
        radial-gradient(ellipse at 86% 88%, rgba(0, 12, 121, 0.42) 0%, transparent 48%),
        radial-gradient(ellipse at 22% 38%, rgba(124, 58, 237, 0.18) 0%, transparent 48%),
        radial-gradient(ellipse at 52% 108%, rgba(53, 0, 121, 0.38) 0%, transparent 52%),
        linear-gradient(205deg, #06000f 0%, rgba(53, 0, 121, 0.92) 56%, rgba(90, 30, 180, 0.82) 100%);
}

.mentoring-content {
    grid-template-columns: 2fr 1fr;
}

.mentoring-content .mentoring-text {
    order: 1;
}

.mentoring-content .mentoring-image {
    order: 2;
}

/* ============================================
   MODAL (under construction)
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-4);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-base), visibility var(--t-base);
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.78);
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: linear-gradient(160deg, #06000f 0%, rgba(53, 0, 121, 0.72) 100%);
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: 16px;
    padding: var(--sp-6) var(--sp-5);
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(124, 58, 237, 0.12);
}

.modal-message {
    font-size: 1.0625rem;
    line-height: 1.72;
    margin-bottom: var(--sp-4);
    color: var(--white);
    opacity: 0.9;
}

.modal-close {
    position: absolute;
    top: var(--sp-2);
    right: var(--sp-2);
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.45;
    padding: var(--sp-1);
    transition: opacity var(--t-fast);
    border-radius: 4px;
}

.modal-close:hover {
    opacity: 1;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
    padding: var(--sp-12) var(--sp-4);
    background:
        radial-gradient(ellipse at 78% 62%, rgba(124, 58, 237, 0.08) 0%, transparent 52%),
        radial-gradient(ellipse at 16% 22%, rgba(0, 12, 121, 0.09) 0%, transparent 50%),
        #06000f;
}

.newsletter-content {
    grid-template-columns: 1fr 2fr;
}

.newsletter-image {
    height: clamp(260px, 32vw, 420px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.7s ease;
}

.newsletter-image:hover {
    transform: scale(1.03) translateY(-4px);
}

.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 16px 32px rgba(124, 58, 237, 0.2));
    transition: filter 0.7s ease;
}

.newsletter-image:hover img {
    filter: drop-shadow(0 24px 48px rgba(124, 58, 237, 0.34));
}

.newsletter-image span {
    font-size: 1.2rem;
    opacity: 0.7;
}

.newsletter-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: var(--sp-2);
}

.newsletter-subheading {
    font-size: 1.1875rem;
    font-weight: 500;
    margin-bottom: var(--sp-3);
    opacity: 0.7;
    line-height: 1.45;
    letter-spacing: 0.005em;
}

.newsletter-text p {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: var(--sp-4);
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: var(--sp-2);
    margin-top: var(--sp-3);
}

.newsletter-form input {
    flex: 1;
    padding: 14px var(--sp-3);
    border: 1px solid rgba(124, 58, 237, 0.38);
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--t-fast), background-color var(--t-fast);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
    border-color: var(--purple-bright);
    background-color: rgba(124, 58, 237, 0.07);
}

/* ============================================
   ABOUT PAGE & CONTACT PAGE
   ============================================ */
.page-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: var(--sp-10) var(--sp-4);
    background:
        radial-gradient(ellipse at 8% 20%, rgba(0, 12, 121, 0.16) 0%, transparent 50%),
        radial-gradient(ellipse at 88% 72%, rgba(124, 58, 237, 0.10) 0%, transparent 48%),
        radial-gradient(ellipse at 50% 95%, rgba(53, 0, 121, 0.14) 0%, transparent 52%),
        linear-gradient(155deg, #06000f 0%, rgba(53, 0, 121, 0.28) 60%, rgba(90, 30, 180, 0.18) 100%);
}

.about-page,
.contact-page {
    max-width: 680px;
    margin: 0 auto;
}

.about-page-inner h1,
.contact-page-inner h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: var(--sp-5);
    color: var(--white);
}

.about-heading {
    font-size: 1.1875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-top: var(--sp-6);
    margin-bottom: var(--sp-2);
    color: var(--white);
    opacity: 0.95;
}

.about-page-inner .about-heading:first-of-type {
    margin-top: var(--sp-4);
}

.about-intro {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.76;
    margin-bottom: var(--sp-2);
}

.about-bio-card {
    background: linear-gradient(160deg, rgba(53, 0, 121, 0.18) 0%, rgba(0, 12, 121, 0.1) 100%);
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-left: 3px solid var(--purple-bright);
    border-radius: 12px;
    padding: var(--sp-4) var(--sp-5);
    margin-bottom: var(--sp-6);
}

.about-bio-card .about-intro:last-child {
    margin-bottom: 0;
}

.about-section {
    font-size: 1.0625rem;
    line-height: 1.85;
    opacity: 0.76;
    margin-bottom: var(--sp-2);
}

.about-page-inner .btn {
    margin-top: var(--sp-4);
}

.contact-intro {
    font-size: 1.0625rem;
    opacity: 0.72;
    margin-bottom: var(--sp-4);
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.contact-form label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    opacity: 0.52;
    margin-bottom: -8px;
}

.contact-form input,
.contact-form textarea {
    padding: 13px var(--sp-3);
    border: 1px solid rgba(124, 58, 237, 0.28);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--t-fast), background-color var(--t-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--purple-bright);
    background-color: rgba(124, 58, 237, 0.06);
}

.contact-form textarea {
    resize: vertical;
    min-height: 128px;
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: var(--sp-1);
}

.contact-form .hidden,
.newsletter-form .hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ============================================
   MAILERLITE EMBED OVERRIDES
   ============================================ */
.ml-embedded,
.ml-embedded .ml-form-embedWrapper,
.ml-embedded .ml-form-embedBody,
.ml-embedded .ml-form-embedContent,
.ml-embedded .ml-form-successBody,
.ml-embedded .ml-form-formContent {
    background: transparent !important;
}

/* ============================================
   COMING SOON PAGE
   ============================================ */
.coming-soon {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-10) var(--sp-4);
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 12, 121, 0.28) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(124, 58, 237, 0.16) 0%, transparent 48%),
        radial-gradient(ellipse at 50% 100%, rgba(53, 0, 121, 0.32) 0%, transparent 52%),
        linear-gradient(155deg, #06000f 0%, rgba(53, 0, 121, 0.48) 60%, rgba(90, 30, 180, 0.28) 100%);
}

.coming-soon-content {
    max-width: 540px;
    text-align: center;
}

.coming-soon-badge {
    display: inline-block;
    padding: 6px 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(124, 58, 237, 0.22));
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 50px;
    margin-bottom: var(--sp-4);
}

.coming-soon-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: var(--sp-3);
    color: var(--white);
}

.coming-soon-description {
    font-size: 1.0625rem;
    line-height: 1.75;
    opacity: 0.75;
    margin-bottom: var(--sp-5);
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-form {
    margin-bottom: var(--sp-5);
}

.coming-soon-back {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    opacity: 0.45;
    transition: opacity var(--t-fast);
    letter-spacing: 0.01em;
}

.coming-soon-back:hover {
    opacity: 0.85;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: var(--sp-5);
    right: var(--sp-4);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(6, 0, 15, 0.72);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--t-base), visibility var(--t-base), transform var(--t-base), border-color var(--t-fast), background var(--t-fast);
    z-index: 999;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.back-to-top.visible {
    opacity: 0.55;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    opacity: 1;
    border-color: rgba(124, 58, 237, 0.7);
    background: rgba(53, 0, 121, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: #06000f;
    padding: var(--sp-5) var(--sp-4);
    text-align: center;
    border-top: 1px solid rgba(53, 0, 121, 0.18);
}

footer p {
    opacity: 0.36;
    font-size: 0.8125rem;
    letter-spacing: 0.07em;
}

.footer-socials {
    display: none; /* change to 'flex' to show socials */
    justify-content: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-3);
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    opacity: 0.45;
    transition: opacity var(--t-fast), transform var(--t-fast);
}
.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}
.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .mentoring-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: var(--sp-5);
    }

    .mentoring-content .mentoring-text,
    .mentoring-content .mentoring-image {
        order: initial;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-height: 380px;
    }

    .newsletter-image {
        height: clamp(240px, 50vw, 400px);
    }

    .about-image {
        width: 320px;
        justify-self: center;
    }

    .mentoring-image {
        height: auto;
        width: 100%;
        max-width: 380px;
        justify-self: center;
    }

    .mentoring-image img {
        height: auto;
        object-fit: contain;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    header {
        padding: var(--sp-2) var(--sp-3);
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 72%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(160deg, #06000f 0%, var(--purple) 100%);
        transition: right var(--t-base);
        padding: 72px var(--sp-4) var(--sp-4);
        border-left: 1px solid rgba(53, 0, 121, 0.38);
        box-shadow: -16px 0 60px rgba(0, 0, 0, 0.6);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: var(--sp-4);
        align-items: flex-start;
    }

    nav a {
        padding: var(--sp-1) 0;
        font-size: 1.1875rem;
        display: block;
        width: 100%;
        opacity: 0.88;
    }

    nav a::after {
        display: none;
    }

    .logo img {
        height: 36px;
    }

    .hero {
        padding: var(--sp-8) var(--sp-3);
        min-height: auto;
    }

    .about,
    .mentoring,
    .newsletter {
        padding: var(--sp-10) var(--sp-3);
    }

    .about-text h2,
    .mentoring-text h2,
    .newsletter-text h2 {
        font-size: 1.75rem;
    }

    .newsletter-subheading {
        font-size: 1.125rem;
    }

    .about-text p,
    .mentoring-text p {
        font-size: 1rem;
    }

    .newsletter-text p {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn {
        padding: 13px 28px;
        font-size: 0.9375rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .coming-soon {
        padding: var(--sp-8) var(--sp-2);
    }

    .coming-soon-title {
        font-size: 1.75rem;
    }

    .coming-soon-description {
        font-size: 1rem;
    }

    .hero {
        padding: var(--sp-8) var(--sp-2);
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subheading {
        font-size: 1.125rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image img {
        max-height: 240px;
    }

    .about-image {
        width: 240px;
        justify-self: center;
    }

    .mentoring-image {
        height: auto;
        width: 100%;
        max-width: 240px;
        justify-self: center;
    }

    .mentoring-image img {
        height: auto;
        object-fit: contain;
    }

    .about-text h2,
    .mentoring-text h2,
    .newsletter-text h2 {
        font-size: 1.625rem;
    }

    .newsletter-subheading {
        font-size: 1rem;
    }

    .newsletter-image {
        height: 240px;
    }

    nav a {
        font-size: 1.125rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .newsletter-form input {
        font-size: 0.9375rem;
    }

    .page-content {
        padding: var(--sp-8) var(--sp-2);
    }
}
