* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: #faf8f3;
}

body {
    margin: 0;
    padding: 0;
    background-color: #faf8f3;
    min-height: 100%;
}

.navbar {
    background-color: #fdf9f2;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    position: relative;
    z-index: 999;
    line-height: 1;
}

.navbar__container {
    border-bottom: 1px solid rgba(31, 30, 30, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    z-index: 999;
}

#navbar__logo {
    padding-left: 2vw;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar__logo-text {
    font-family: 'Playfair Display', sans-serif;
    font-weight: 750;
    font-size: 1.7rem;
    letter-spacing: 0.1vw;
    color: #1c1a16;
    cursor: pointer;
    padding: 0.1em 0.05em;
}

.navbar__logo-img {
    display: block;
    width: 6vw;
    height: 6vw;
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    cursor: pointer;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    padding-right: 2vw;
}

.navbar__links {
    color: #1c1a16;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 0.85rem;
}

.navbar__button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.5rem;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 1vh 1.5vw;
    border: none;
    border-radius: 15px;
    background: #cda63ba9;
    color: white;
    border: 2px solid #cda63ba9;
}

.button:hover {
    background: white;
    color: #bfaa72;
    border: 2px solid #bfaa72;
    transition: all 0.3s ease;
}

.navbar__links:hover {
    color: #c7af6e;
    transition: all 0.35s ease-out;
}

.eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.9rem);
    font-weight: 900;
    letter-spacing: 0.2rem;
    line-height: 1.5;
    color: #195923c1;
}

h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 0.2rem;
    line-height: 1.3;
    text-align: left;
    color: #195923c1;
    margin-bottom: 1rem;
}

h3 {
    font-family: 'Playfair Display', sans-serif;
    font-size: clamp(1rem, 10vw, 1.5rem);
    font-weight: 900;
    letter-spacing: 0.1rem;
    line-height: 1.5;
    text-align: left;
    color: #1b6927a9;
}

h4 {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

p {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    line-height: 1.5;
    text-align: left;
}

/* ── 1400px ── */
@media screen and (max-width: 1400px) {
    #navbar__logo {
        padding-left: 1.5vw;
    }

    .navbar__links {
        padding: 0 0.7rem;
        font-size: 1rem;
    }

    .navbar__logo-text {
        font-size: 1.3rem;
    }

    .button {
        padding: 1vh 0.7rem;
        font-size: 1rem;
    }
}

/* ── Mobile navbar — minimal style ── */
@media screen and (max-width: 1000px) {
    .navbar {
        height: 64px;
        z-index: 1000;
        position: sticky;
        top: 0;
    }

    .navbar__menu {
        background-color: #fdf9f2;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 999;
        padding: 6px 20px 20px;
    }

    .navbar__menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        border-bottom: 0.5px solid rgba(31, 30, 30, 0.08);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

    .navbar__toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        background: #1c1a16;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        border-radius: 2px;
    }

    .navbar__toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        font-size: 0.9rem;
        font-weight: 400;
        padding: 13px 0;
        width: 100%;
        justify-content: flex-start;
        border-radius: 0;
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
        background-color: transparent;
        margin: 0;
    }

    .navbar__item:last-of-type .navbar__links {
        border-bottom: none;
    }

    .navbar__links:hover {
        color: #9c7c13;
        transition: 0.2s all;
    }

    .navbar__logo-img {
        height: 44px;
        width: 44px;
        max-height: unset;
        max-width: unset;
    }

    .navbar__logo-text {
        font-size: 1.3rem;
    }

    .navbar__button {
        width: 100%;
        padding: 0;
        margin-top: 16px;
    }

    .button {
        background: #bfaa72;
        border: 2px solid #bfaa72;
        color: white;
        border-radius: 12px;
        padding: 0.75rem;
        font-size: 0.9rem;
        font-weight: 500;
        width: 100%;
        letter-spacing: 0.03rem;
        text-align: center;
    }

    .button:hover {
        background: white;
        color: #bfaa72;
    }

    #mobile-menu {
        order: 1;
        margin-left: auto;
        margin-right: 16px;
        padding: 8px;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ── Header ── */
.header {
    height: auto;
    padding: 4vh 0;
    background-color: #f5f2e9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-top: 3vh;
    background-image: radial-gradient(circle, rgba(180, 150, 80, 0.651) 1px, transparent 1px);
    background-size: 20px 20px;
    border-bottom: 0.5px solid rgba(109, 109, 109, 0.241);
}

.subtext {
    width: 75vw;
    background-color: rgba(229, 203, 117, 0.671);
    height: auto;
    min-height: 5vh;
    font-size: clamp(0.6rem, 1.5vw, 0.9rem);
    line-height: 1.5;
    text-align: center;
    align-content: center;
    color: #1c1a16;
    letter-spacing: 0.02rem;
    border-radius: 20px;
    margin-bottom: 2vh;
    padding: 8px 16px;
}

h1 {
    font-family: 'Playfair Display', sans-serif;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: 0.3rem;
    line-height: 1.5;
    text-align: center;
    color: rgb(220, 194, 109);
}

.header__links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6vw;
    flex-wrap: wrap;
}

.header__links a {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    text-decoration: none;
    color: #1c1a16;
    text-transform: uppercase;
    letter-spacing: 0.07rem;
}

.header__links a:hover {
    color: #9c7c13;
    transition: all 0.35s ease-out;
}

/* ── Mobile header ── */
@media screen and (max-width: 880px) {
    .header {
        padding: 4vh 6vw;
        gap: 1rem;
    }

    h1 {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    h2 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    h4 {
        max-width: 100vw;
    }

    .header__links {
        gap: 4vw;
    }

    .header__links a {
        font-size: clamp(0.75rem, 3vw, 0.9rem);
    }

    .subtext {
        width: 90vw;
        padding: 10px 16px;
        font-size: clamp(0.5rem, 3vw, 0.8rem);
    }
}