/* HEARTMOOD base styles */
@import url("https://fonts.googleapis.com/css2?family=Beleza&family=Lora:ital,wght@0,400;0,500;1,400&family=Montserrat:wght@400;500;600&display=swap");

:root {
    --black: #0b0b0b;
    --soft-black: #11100e;
    --gold: #bb8d36;
    --gold-soft: #d6b56c;
    --cream: #f1ede6;
    --text-light: #e8ded2;
    --text-muted: #b8aa96;
    --taupe: #9a8f7a;
    --brown: #3a2f24;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Lora", Georgia, serif;
    background: var(--black);
    color: var(--text-light);
    line-height: 1.7;
}

/* Header */

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: rgba(11, 11, 11, 0.96);
    border-bottom: 1px solid rgba(187, 141, 54, 0.25);
}

.logo {
    font-family: "Beleza", Georgia, serif;
    color: var(--gold);
    font-size: 24px;
    letter-spacing: 5px;
    font-weight: 400;
}

.main-nav a {
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 18px;
    font-size: 13px;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: var(--gold);
}

/* Main */

main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 48px;
}

h1 {
    font-family: "Beleza", Georgia, serif;
    color: var(--gold);
    font-size: clamp(54px, 8vw, 108px);
    letter-spacing: 7px;
    margin: 0 0 18px;
    font-weight: 400;
    line-height: 1;
}

p {
    max-width: 650px;
    font-size: 18px;
    color: var(--text-light);
}

/* Hero */

.hero {
    min-height: 82vh;
    padding: 90px 0;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 76px;
    align-items: center;
}

.hero-content {
    max-width: 720px;
}

.eyebrow {
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 22px;
}

.hero h2 {
    font-family: "Lora", Georgia, serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--cream);
    max-width: 760px;
    margin: 0 0 28px;
}

.hero-text {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 660px;
    margin-bottom: 36px;
}

/* Hero image */

.hero-image-wrap {
    position: relative;
    max-width: 430px;
    margin-left: auto;
}

.hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(187, 141, 54, 0.35);
    z-index: 0;
}

.hero-image-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.88) contrast(0.96) saturate(0.92);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* Buttons */

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 13px 24px;
    text-decoration: none;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.button.primary {
    background: var(--gold);
    color: var(--black);
}

.button.secondary {
    border: 1px solid rgba(187, 141, 54, 0.7);
    color: var(--gold);
}

.button:hover {
    opacity: 0.85;
}

/* Section intro */

.section-intro {
    max-width: 720px;
    margin-bottom: 50px;
}

.section-intro h2 {
    font-family: "Beleza", Georgia, serif;
    color: var(--gold);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 2px;
    margin: 0 0 22px;
}

.section-intro p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 620px;
}

/* Atmosphere section */

.atmosphere-section {
    padding: 90px 0;
    border-top: 1px solid rgba(187, 141, 54, 0.18);
}

.atmosphere-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.atmosphere-card {
    overflow: hidden;
}

.atmosphere-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    filter: brightness(0.82) saturate(0.9);
    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.atmosphere-card:hover img {
    transform: scale(1.04);
    filter: brightness(0.95) saturate(1);
}

.atmosphere-card h3 {
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 18px 0 6px;
}

.atmosphere-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

/* Video section */

.video-section {
    padding: 90px 0;
    border-top: 1px solid rgba(187, 141, 54, 0.18);
}

.video-frame {
    max-width: 920px;
    border: 1px solid rgba(187, 141, 54, 0.35);
    background: var(--soft-black);
    padding: 12px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.video-frame video {
    width: 100%;
    display: block;
    background: var(--black);
}

/* Booking options and flyer downloads */

.booking-options-section {
    padding: 90px 0;
    border-top: 1px solid rgba(187, 141, 54, 0.18);
}

.booking-format-line {
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 34px 0 48px;
}

.booking-format-line span {
    color: var(--text-muted);
    margin: 0 10px;
}

.flyer-downloads {
    background: var(--soft-black);
    border: 1px solid rgba(187, 141, 54, 0.3);
    padding: 34px;
    max-width: 920px;
}

.flyer-downloads h3 {
    font-family: "Beleza", Georgia, serif;
    color: var(--gold);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 10px;
}

.download-intro {
    color: var(--text-muted);
    font-size: 16px;
    margin: 0 0 28px;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
}

.download-button {
    display: inline-block;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(187, 141, 54, 0.65);
    text-decoration: none;
    padding: 12px 20px;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.download-button:hover {
    background: rgba(187, 141, 54, 0.12);
    color: var(--gold-soft);
    border-color: var(--gold-soft);
}

/* Contact section */

.contact-section {
    padding: 90px 0 110px;
    border-top: 1px solid rgba(187, 141, 54, 0.18);
}

.contact-box {
    background: var(--soft-black);
    border: 1px solid rgba(187, 141, 54, 0.35);
    padding: 48px;
    max-width: 760px;
}

.contact-box h2 {
    font-family: "Beleza", Georgia, serif;
    color: var(--gold);
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 22px;
}

.contact-box p {
    color: var(--text-muted);
}

.contact-links {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 17px;
}

.contact-links a:hover {
    color: var(--gold);
}

/* Footer */

.site-footer {
    padding: 32px 48px;
    color: var(--taupe);
    background: var(--black);
    border-top: 1px solid rgba(187, 141, 54, 0.2);
    font-size: 13px;
}

/* Tablet */

@media (max-width: 1000px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .hero-image-wrap {
        max-width: 420px;
        margin: 0;
    }

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

    .atmosphere-card img {
        height: 320px;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .site-header {
        padding: 20px 24px;
        flex-direction: column;
        gap: 14px;
    }

    .main-nav a {
        margin: 0 8px;
    }

    main {
        padding: 0 24px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 70px;
    }

    h1 {
        letter-spacing: 3px;
    }

    .hero-text {
        font-size: 17px;
    }

    .button {
        width: 100%;
        text-align: center;
    }

    .atmosphere-section,
    .video-section,
    .booking-options-section {
        padding: 65px 0;
    }

    .section-intro {
        margin-bottom: 34px;
    }

    .atmosphere-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .atmosphere-card img {
        height: 360px;
    }

    .booking-format-line {
        font-size: 13px;
        line-height: 2;
        margin: 30px 0 40px;
    }

    .booking-format-line span {
        margin: 0 7px;
    }

    .flyer-downloads {
        padding: 28px 22px;
    }

    .flyer-downloads h3 {
        font-size: 34px;
    }

    .download-intro {
        font-size: 15px;
    }

    .download-button {
        width: 100%;
        text-align: center;
    }

    /* Service area / local SEO text */

    .service-area-section {
        padding: 45px 0;
        border-top: 1px solid rgba(187, 141, 54, 0.12);
    }

    .service-area-section p {
        color: var(--text-muted) !important;
        font-size: 18px;
        max-width: 620px;
        line-height: 1.7;
        margin: 0;
    }

    .contact-section {
        padding: 65px 0 85px;
    }

    .contact-box {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-image-wrap::before {
        inset: 12px -12px -12px 12px;
    }

    .logo {
        font-size: 22px;
    }
}
