/* ==========================================================================
   Nadine K. Thompson — Book Writing Coach
   Revamped 2026 · keeps original palette:
   purple #a77be4 · lavender #f2e9ff · green #40bc83 · gold #b87a2b
   ========================================================================== */

:root {
    --purple: #a77be4;
    --purple-deep: #7b4fc0;
    --purple-dark: #2a1f3d;
    --lavender: #f2e9ff;
    --lavender-soft: #faf6ff;
    --green: #40bc83;
    --green-dark: #339a6a;
    --gold: #b87a2b;
    --ink: #2d2438;
    --text: #4a4156;
    --text-light: #7a7186;
    --white: #ffffff;
    --radius: 18px;
    --radius-sm: 10px;
    --shadow: 0 10px 40px rgba(123, 79, 192, 0.12);
    --shadow-lg: 0 20px 60px rgba(42, 31, 61, 0.18);
    --font-body: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-script: 'Lavishly Yours', cursive;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
    width: min(1140px, 92vw);
    margin-inline: auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.25;
    font-weight: 700;
}

/* Script flourish above section titles */
.eyebrow {
    font-family: var(--font-script);
    color: var(--gold);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
    font-weight: 400;
}

.section-title {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    margin-bottom: 1rem;
}

.section-head { text-align: center; margin-bottom: 3rem; }

.section-head p { max-width: 620px; margin-inline: auto; color: var(--text-light); }

section { padding: 5rem 0; }

/* ==================== Buttons ==================== */

.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(64, 188, 131, 0.35);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(64, 188, 131, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--purple-deep);
    border: 2px solid var(--purple);
}

.btn-outline:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==================== Header ==================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(167, 123, 228, 0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand img { width: 54px; height: 54px; object-fit: contain; }

.brand-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.2;
}

.brand-name span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple-deep);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover { color: var(--purple-deep); }

.nav-link.active {
    color: var(--purple-deep);
    border-bottom-color: var(--gold);
}

.nav-cta { margin-left: 0.5rem; padding: 0.6rem 1.5rem; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--purple-deep);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==================== Hero ==================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 6rem;
    background:
        radial-gradient(ellipse 60% 80% at 85% 15%, rgba(167, 123, 228, 0.22), transparent 60%),
        radial-gradient(ellipse 50% 70% at 8% 90%, rgba(64, 188, 131, 0.14), transparent 60%),
        linear-gradient(160deg, var(--lavender-soft) 0%, var(--lavender) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-script {
    font-family: var(--font-script);
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    color: var(--gold);
    display: block;
    line-height: 1;
}

.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    margin: 0.5rem 0 1.4rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--purple-deep);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 2.2rem;
}

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

.hero-figure { position: relative; }

.hero-figure::before {
    content: '';
    position: absolute;
    inset: -18px -18px auto auto;
    width: 70%;
    height: 70%;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--purple), var(--green));
    opacity: 0.25;
    transform: rotate(4deg);
}

.hero-figure img {
    position: relative;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 4.3;
    object-fit: cover;
    width: 100%;
}

.hero-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 0.9rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
    color: var(--ink);
    font-size: 0.9rem;
}

.hero-badge img { width: 88px; }

/* ==================== Intro / profile strip ==================== */

.intro {
    padding: 5rem 0;
    background: var(--white);
}

.intro-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--lavender);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.intro-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.intro-card blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    color: var(--ink);
    font-style: italic;
    line-height: 1.7;
}

.intro-card .signature {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--gold);
    margin-top: 1rem;
    display: block;
}

/* ==================== Services ==================== */

.services {
    background:
        radial-gradient(ellipse 70% 90% at 90% 10%, rgba(255, 255, 255, 0.12), transparent 55%),
        linear-gradient(150deg, var(--purple) 0%, var(--purple-deep) 100%);
}

.services .eyebrow { color: #ffd9a0; }

.services .section-title,
.services .section-head p { color: var(--white); }

.services .section-head p { opacity: 0.85; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.4rem 1.8rem;
    text-align: center;
    box-shadow: 0 14px 36px rgba(42, 31, 61, 0.22);
    transition: transform 0.25s ease;
}

.service-card:hover { transform: translateY(-8px); }

.service-card .icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 1.3rem;
    border-radius: 50%;
    background: var(--lavender);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .icon img { width: 44px; height: 44px; object-fit: contain; }

.service-card h3 { font-size: 1.25rem; margin-bottom: 0.7rem; }

.service-card p { color: var(--text-light); font-size: 0.98rem; }

/* ==================== Testimonials ==================== */

.testimonials { background: var(--lavender-soft); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.4rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--purple);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: var(--purple);
    opacity: 0.25;
    position: absolute;
    top: 0.6rem;
    left: 1.4rem;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.3rem;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 800;
    color: var(--purple-deep);
    letter-spacing: 0.06em;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.stars { width: 110px; margin-bottom: 1.2rem; }

/* ==================== Books ==================== */

.books {
    background:
        radial-gradient(ellipse 60% 70% at 12% 8%, rgba(167, 123, 228, 0.25), transparent 60%),
        linear-gradient(165deg, #221833 0%, #14101c 100%);
}

.books .eyebrow { color: var(--gold); }
.books .section-title { color: var(--white); }
.books .section-head p { color: rgba(255, 255, 255, 0.65); }

.book-feature {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 4.5rem;
}

.book-feature-cover img {
    border-radius: var(--radius-sm);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    transition: transform 0.3s ease;
}

.book-feature-cover img:hover { transform: scale(1.04) rotate(-1deg); }

.book-feature-review { color: rgba(255, 255, 255, 0.85); }

.book-feature-review h3 {
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
}

.book-feature-review blockquote {
    font-style: italic;
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.book-feature-review .author {
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--purple);
    text-transform: uppercase;
    font-size: 0.88rem;
}

.book-feature-review .btn { margin-top: 1.6rem; }

.collab-title {
    text-align: center;
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.4rem;
}

.collab-grid a {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease;
}

.collab-grid a:hover { transform: translateY(-8px) scale(1.03); }

.collab-grid img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }

/* ==================== Paths (work with me) ==================== */

.paths { background: var(--white); }

.paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.path-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    background: var(--lavender-soft);
    border: 1px solid rgba(167, 123, 228, 0.25);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.path-card img { width: 100%; height: 100%; object-fit: cover; }

.path-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.path-card h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.5; }

.path-card .btn { align-self: flex-start; padding: 0.65rem 1.7rem; font-size: 0.92rem; }

/* ==================== CTA band ==================== */

.cta-band {
    background: linear-gradient(135deg, var(--green) 0%, #2ea372 100%);
    text-align: center;
    padding: 4.5rem 0;
}

.cta-band .eyebrow { color: #fff3da; }

.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }

.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 560px; margin: 0 auto 2rem; }

.cta-band .btn {
    background: var(--white);
    color: var(--green-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.cta-band .btn:hover { transform: translateY(-2px); }

/* ==================== Page hero (inner pages) ==================== */

.page-hero {
    background:
        radial-gradient(ellipse 60% 80% at 85% 15%, rgba(167, 123, 228, 0.22), transparent 60%),
        linear-gradient(160deg, var(--lavender-soft) 0%, var(--lavender) 100%);
    padding: 4rem 0 3.5rem;
    text-align: center;
}

.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }

.page-hero p { max-width: 640px; margin: 1rem auto 0; color: var(--text-light); font-size: 1.1rem; }

/* ==================== About page ==================== */

.about-profile {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3.5rem;
    align-items: start;
}

.about-photo { position: relative; }

.about-photo::before {
    content: '';
    position: absolute;
    inset: auto -16px -16px auto;
    width: 65%;
    height: 65%;
    background: linear-gradient(135deg, var(--purple), var(--green));
    opacity: 0.25;
    border-radius: var(--radius);
}

.about-photo img {
    position: relative;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-text h2 { font-size: 1.9rem; margin-bottom: 1.2rem; }

.about-text p { margin-bottom: 1.2rem; }

.about-text .signature {
    font-family: var(--font-script);
    font-size: 2.4rem;
    color: var(--gold);
    display: block;
    margin-top: 0.6rem;
}

.moments { background: var(--lavender-soft); }

.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.moment-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease;
}

.moment-card:hover { transform: translateY(-6px); }

.moment-card img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }

.moment-card figcaption { padding: 1.2rem 1.4rem; }

.moment-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }

.moment-card p { font-size: 0.92rem; color: var(--text-light); }

.recognition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.recognition-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(167, 123, 228, 0.2);
}

.recognition-card img { width: 100%; object-fit: cover; }

.recognition-card figcaption {
    padding: 1.3rem 1.5rem;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
}

/* ==================== Events page ==================== */

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease;
}

.event-card:hover { transform: translateY(-6px); }

.event-card img { width: 100%; height: auto; display: block; }

.event-card-body { padding: 1.4rem 1.5rem 1.7rem; }

.event-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }

.event-card p { font-size: 0.94rem; color: var(--text-light); }

.videos { background: var(--lavender-soft); }

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.video-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card figcaption { padding: 1.3rem 1.5rem; }

.video-card h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }

.video-card p { font-size: 0.94rem; color: var(--text-light); }

/* ==================== Archive page ==================== */

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.archive-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.archive-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.archive-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 600px) {
    .archive-grid { grid-template-columns: 1fr; }
}

/* ==================== Contact page ==================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-aside { display: flex; flex-direction: column; gap: 1.4rem; }

.info-card {
    background: var(--lavender);
    border-radius: var(--radius);
    padding: 1.7rem 1.8rem;
    border-left: 4px solid var(--purple);
}

.info-card h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }

.info-card p { font-size: 0.95rem; color: var(--text); }

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(167, 123, 228, 0.2);
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.45rem;
    font-size: 0.95rem;
}

.required { color: var(--gold); }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 2px solid #e4dbf2;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--lavender-soft);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(167, 123, 228, 0.18);
    background: var(--white);
}

.form-message {
    margin-top: 1.2rem;
    padding: 0;
    border-radius: var(--radius-sm);
    font-weight: 700;
    display: none;
}

.form-message.success {
    display: block;
    padding: 1rem 1.3rem;
    background: rgba(64, 188, 131, 0.14);
    color: var(--green-dark);
}

.form-message.error {
    display: block;
    padding: 1rem 1.3rem;
    background: rgba(220, 80, 80, 0.12);
    color: #b03a3a;
}

/* ==================== Footer ==================== */

.footer {
    background: linear-gradient(165deg, #221833 0%, #14101c 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 3.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 52px;
    background: var(--white);
    border-radius: 50%;
    padding: 5px;
}

.footer-brand strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.footer p { font-size: 0.93rem; }

.footer h4 {
    color: var(--white);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.footer ul { list-style: none; }

.footer ul li { margin-bottom: 0.55rem; }

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover { color: var(--purple); }

.footer-bottom {
    text-align: center;
    padding-top: 1.8rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ==================== Reveal animation ==================== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ==================== Responsive ==================== */

@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-figure { max-width: 460px; }
    .services-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
    .book-feature { grid-template-columns: 1fr; gap: 2.5rem; }
    .book-feature-cover { max-width: 260px; margin-inline: auto; }
    .collab-grid { grid-template-columns: repeat(3, 1fr); }
    .paths-grid { grid-template-columns: 1fr; }
    .about-profile { grid-template-columns: 1fr; }
    .about-photo { max-width: 420px; }
    .contact-layout { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .recognition-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .intro-card { grid-template-columns: 1fr; }
    .intro-card img { max-width: 320px; }
}

@media (max-width: 760px) {
    section { padding: 3.5rem 0; }

    .menu-toggle { display: flex; }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0 1rem;
        box-shadow: 0 18px 30px rgba(42, 31, 61, 0.15);
        display: none;
    }

    .nav-menu.open { display: flex; }

    .nav-menu li { text-align: center; }

    .nav-link {
        display: block;
        padding: 0.9rem 0;
        border-bottom: none;
    }

    .nav-cta { margin: 0.8rem auto 0; }

    .brand-name { font-size: 1rem; }

    .collab-grid { grid-template-columns: repeat(2, 1fr); }

    .path-card { grid-template-columns: 1fr; }

    .path-card img { aspect-ratio: 16 / 9; }

    .hero { padding: 3.5rem 0 4.5rem; }

    .hero-badge { left: 8px; bottom: -18px; padding: 0.7rem 1rem; }

    .contact-form { padding: 1.8rem; }
}
