/* =========================
   Base
========================= */

:root {
    --brown-dark: #2a1d17;
    --brown: #5b4032;
    --brown-light: #8a6752;
    --cream: #f3ede5;
    --cream-dark: #e5d8ca;
    --text: #33251f;
    --white: #fffaf5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   Navigation
========================= */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 7%;

    background: rgba(243, 237, 229, 0.88);
    backdrop-filter: blur(12px);

    z-index: 100;
}

.logo {
    font-family: "DM Serif Display", serif;
    font-size: 25px;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav a {
    font-size: 14px;
    color: var(--brown);
    transition: opacity .3s;
}

nav a:hover {
    opacity: .55;
}


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

.hero {
    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: var(--cream);
}

.hero-image {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        transparent,
        rgba(42, 29, 23, .18)
    );
}

.hero-content {
    display: flex;
    align-items: center;

    padding: 12%;
}

.hero-inner {
    max-width: 520px;
}

.small-title {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brown-light);

    margin-bottom: 20px;
}

.hero h1 {
    font-family: "DM Serif Display", serif;

    font-size: clamp(70px, 9vw, 125px);
    font-weight: 400;
    line-height: .9;

    color: var(--brown-dark);

    margin-bottom: 30px;
}

.hero-description {
    font-size: 17px;
    color: var(--brown);

    max-width: 430px;
}

.hero-button {
    display: inline-block;

    margin-top: 40px;
    padding: 13px 28px;

    border: 1px solid var(--brown);
    border-radius: 999px;

    color: var(--brown);

    transition: .3s;
}

.hero-button:hover {
    background: var(--brown);
    color: var(--cream);
}


/* =========================
   Sections
========================= */

section {
    padding: 120px 8%;
}

.section-label {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: var(--brown-light);

    margin-bottom: 15px;
}

.section-title {
    font-family: "DM Serif Display", serif;

    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400;

    color: var(--brown-dark);

    margin-bottom: 45px;
}


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

.about {
    background: var(--brown-dark);
    color: var(--cream);
}

.about .section-label {
    color: var(--cream-dark);
}

.about .section-title {
    color: var(--white);
}

.about-text {
    max-width: 720px;

    font-size: 20px;
    line-height: 1.9;

    color: var(--cream-dark);
}


/* =========================
   Videos
========================= */

.videos {
    background: var(--cream);
}

.video-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 35px;
}

.video-card {
    background: var(--white);

    border-radius: 18px;
    overflow: hidden;

    box-shadow:
        0 12px 30px rgba(42, 29, 23, .08);

    transition: transform .3s;
}

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

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

    border: none;
    display: block;
}

.video-info {
    padding: 24px;
}

.video-info h3 {
    font-family: "DM Serif Display", serif;

    font-size: 24px;
    font-weight: 400;

    color: var(--brown-dark);

    margin-bottom: 5px;
}

.video-info p {
    color: var(--brown-light);
    font-size: 14px;
}


/* =========================
   Blog
========================= */

.blog {
    background: var(--cream-dark);
}

.blog-description {
    max-width: 600px;

    color: var(--brown);

    margin-bottom: 40px;
}

.blog-container {
    width: 100%;

    background: white;

    border-radius: 18px;
    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(42, 29, 23, .12);
}

.blog-container iframe {
    display: block;

    width: 100%;
    height: 600px;

    border: none;
}


/* =========================
   Social
========================= */

.social {
    text-align: center;

    background: var(--brown);

    color: var(--cream);
}

.social .section-label {
    color: var(--cream-dark);
}

.social .section-title {
    color: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 18px;
}

.social-links a {
    padding: 12px 25px;

    border: 1px solid rgba(255,255,255,.5);
    border-radius: 999px;

    color: var(--cream);

    transition: .3s;
}

.social-links a:hover {
    background: var(--cream);
    color: var(--brown);
}


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

footer {
    padding: 35px;

    text-align: center;

    background: var(--brown-dark);

    color: #b9a89c;

    font-size: 13px;
}


/* =========================
   Mobile
========================= */

@media (max-width: 800px) {

    nav {
        padding: 18px 6%;
    }

    nav ul {
        gap: 16px;
    }

    nav a {
        font-size: 12px;
    }

    .hero {
        display: flex;
        flex-direction: column;
    }

    .hero-image {
        height: 58vh;
        min-height: auto;
    }

    .hero-content {
        padding: 80px 8%;
    }

    .hero h1 {
        font-size: 75px;
    }

    section {
        padding: 90px 7%;
    }

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

    .blog-container iframe {
        height: 500px;
    }
}
