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

html {
    scroll-behavior: smooth;
    background: #e0e0e0;
}

body {
    background: #e0e0e0;
    padding: 2rem 2rem 0 2rem;
    min-height: 100vh;
}

/* Fixed Navigation - DESKTOP */
nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1100px;
    background: white;
    border-bottom: 0px solid #ccc;
    padding: 1.5rem 0;
    z-index: 1000;
    font-family: "Helvetica Neue";
    transition: top 0.2s ease;
}

.mobile-menu-btn {
    display: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-title {
    font-family: "Helvetica Neue";
    font-weight: 600;
    font-size: 1rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: black;
}

/* Sections - DESKTOP */
section {
    padding: 2rem 0;
    scroll-margin-top: 5rem;
    background: white;
    margin: 0 auto 2rem auto;
    max-width: 1100px;
    box-shadow: 0 0 60px rgba(0,0,0,0.15);
}

section:last-child {
    margin-bottom: 0;
}

#home {
    padding-top: 7rem;
    padding-bottom: 2rem;
}

/* HOME SECTION - DESKTOP: Image left, text right, everything left-aligned */
#home .home-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

#home .home-image {
    flex: 1;
}

#home .home-image img {
    width: 100%;
    height: auto;
    display: block;
}

#home .home-content {
    flex: 1;
    text-align: left;
}

#home .home-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

#home .home-content .blurb {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: left;
}

#home .button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
}

#home .button-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}

/* ABOUT SECTION - DESKTOP: Text left, image right */
#about .home-content p:last-child {
    margin-bottom: 0;
}

#about .home-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

#about .home-image {
    flex: 0 0 320px;
    overflow: hidden;
}

#about .home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

#about .home-content {
    flex: 1;
    text-align: left;
}

#about .home-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

#about .home-content .blurb {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: left;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.book-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.book-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Clickable news item variant */
.news-item-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.news-item-link:hover {
    opacity: 0.75;
}

.news-item-link:hover h3 {
    color: #007AFF;
}

.news-text {
    flex: 1;
}

.news-image {
    flex: 0 0 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    line-height: 1.8;
    font-family: Helvetica;
}

h1, h2, h3 {
    font-family: "Helvetica Neue";
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h1 {
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-family: Helvetica;
}

/* Review blocks */
.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease, margin 0.5s ease;
}

.reviews-container.active {
    max-height: 1000px;
    opacity: 1;
    margin-top: 2rem;
}

.review-block {
    border-top: 2px solid #cacaca;
    padding-top: 1.25rem;
}

.review-label {
    font-family: "Helvetica Neue";
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 0.75rem;
}

.review-block p:not(.review-label) {
    font-style: italic;
    color: #444;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Video grid - 3 columns */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.video-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* YouTube facade — high-res thumbnail + custom title, no avatar, no play button */
.yt-facade {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #000;
}

.yt-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.yt-facade:hover img {
    transform: scale(1.03);
}

.yt-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.6rem 0.75rem 1.75rem;
    font-family: "Helvetica Neue";
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0));
    pointer-events: none;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: #007AFF;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 1.5px solid #007AFF;
    vertical-align: middle;
    line-height: 1;
    cursor: pointer;
}

button.btn {
    background: transparent;
}

.btn:hover {
    background: #0051D5;
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    color: #007AFF;
    border: 1.5px solid #007AFF;
}

.btn-outline:hover {
    background: #007AFF;
    color: white;
}

/* MOBILE - Everything stacks, text centered in #home */
@media (max-width: 768px) {
    body {
        padding: 1rem 1rem 0 1rem;
    }

    /* Mobile Nav */
    nav {
        top: 1rem;
        width: calc(100% - 2rem);
        padding: 0.75rem 0;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        display: block;
        width: 22px;
        height: 2px;
        background: black;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

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

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

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

    .nav-title {
        display: block;
        font-family: "Helvetica Neue";
        font-weight: 600;
        font-size: 1rem;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0 1rem;
        position: relative;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        gap: 0;
        padding: 0;
        border-top: 1px solid #f0f0f0;
    }

    .nav-links.active {
        max-height: 300px;
        opacity: 1;
    }

    .nav-links li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    /* Section spacing */
    section {
        scroll-margin-top: 5rem;
        margin-bottom: 1rem;
        padding: 1.5rem 0;
    }

    #home {
        padding-top: 5rem;
        padding-bottom: 1.5rem;
    }

    .content-wrapper {
        padding: 0 1.5rem;
    }

    /* HOME SECTION - MOBILE: Stack vertically, center everything */
    #home .home-container {
        flex-direction: column;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    #home .home-image {
        flex: none;
        max-width: 70%;
        margin: 0 auto;
    }

    #home .home-content {
        flex: none;
        width: 100%;
        text-align: center;
    }

    #home .home-content h1 {
        font-size: 1.75rem;
        text-align: center;
        white-space: normal;
    }

    #home .home-content .blurb {
        font-size: 1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
    }

    #home .button-group {
        align-items: center;
    }

    #home .button-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* ABOUT SECTION - MOBILE: Stack vertically, left-align */
    #about .home-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    #about .home-content {
        flex: none;
        width: 100%;
        text-align: left;
    }

    #about .home-content h1 {
        font-size: 1.75rem;
        text-align: left;
    }

    #about .home-content .blurb {
        font-size: 1rem;
        text-align: left;
    }

    #about .home-image {
        flex: none;
        width: 60%;
        height: auto;
        aspect-ratio: 1;
        overflow: hidden;
        margin: 0;
    }

    #about .home-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Reviews */
    .reviews-container {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .reviews-container.active {
        margin-top: 1.5rem;
    }

    .review-block p:not(.review-label) {
        font-size: 0.9rem;
    }

    /* Book items */
    .book-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .book-item h3 {
        font-size: 1.2rem;
    }

    /* News items */
    .news-item {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .news-image {
        flex: none;
        width: 100%;
    }

    .news-image img {
        height: 180px;
    }

    .news-item h3 {
        font-size: 1.2rem;
    }

    /* Video grid - 1 column on mobile */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Contact */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Typography */
    h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}