@font-face {
    font-family: "Libertinus Serif Display";
    src: url("/wp-content/themes/lost-woods/assets/fonts/LibertinusSerifDisplay-Regular.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Libertinus Sans";
    src: url("/wp-content/themes/lost-woods/assets/fonts/LibertinusSans-Regular.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Libertinus Sans";
    src: url("/wp-content/themes/lost-woods/assets/fonts/LibertinusSans-Bold.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

:root {
    --lw-forest-deep: #10251f;
    --lw-forest-dark: #172f28;
    --lw-forest-muted: #49675d;
    --lw-sage: #91a99e;
    --lw-cream: #f4eedf;
    --lw-warm-white: #fffdf7;
    --lw-charcoal: #111816;
    --lw-gold: #b89b64;
    --lw-header-height: 84px;
    --lw-transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    overflow-x: clip;
    margin: 0;
    background: var(--lw-forest-deep);
    color: var(--lw-cream);
    font-family: "Libertinus Sans", Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

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

a {
    color: inherit;
    transition:
        color var(--lw-transition),
        opacity var(--lw-transition),
        background-color var(--lw-transition),
        border-color var(--lw-transition);
}

/* ==========================================================
   Site header
   ========================================================== */

.lw-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(244, 238, 223, 0.1);
    background: rgba(16, 37, 31, 0.88);
    backdrop-filter: blur(18px);
    transition:
        background-color var(--lw-transition),
        box-shadow var(--lw-transition),
        border-color var(--lw-transition);
}

.lw-site-header.is-scrolled {
    border-bottom-color: rgba(244, 238, 223, 0.16);
    background: rgba(16, 37, 31, 0.97);
    box-shadow: 0 16px 40px rgba(5, 14, 12, 0.24);
}

.admin-bar .lw-site-header {
    top: 32px;
}

.lw-site-header__inner {
    min-height: var(--lw-header-height);
    gap: 2rem;
    padding: 0.8rem 1.5rem;
}

.lw-site-header__brand {
    flex-shrink: 0;
    gap: 0.85rem;
}

.lw-site-logo img,
.lw-site-logo .custom-logo {
    display: block;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(244, 238, 223, 0.2);
    border-radius: 50%;
    object-fit: cover;
}

.lw-site-header__identity {
    gap: 0;
}

.lw-site-title {
    margin: 0;
}

.lw-site-title a {
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: 1.38rem;
    letter-spacing: 0.12em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-site-kicker {
    margin: 0.28rem 0 0;
    color: var(--lw-sage);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.lw-site-header__actions {
    gap: 1.3rem;
}

.lw-primary-nav {
    color: var(--lw-cream);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lw-primary-nav .wp-block-navigation-item__content {
    position: relative;
    padding: 0.45rem 0;
    text-decoration: none;
}

.lw-primary-nav .wp-block-navigation-item__content::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--lw-gold);
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition:
        opacity var(--lw-transition),
        transform var(--lw-transition);
}

.lw-primary-nav .wp-block-navigation-item__content:hover::after,
.lw-primary-nav .current-menu-item>.wp-block-navigation-item__content::after {
    opacity: 1;
    transform: scaleX(1);
}

.lw-header-cta {
    flex-shrink: 0;
}

.lw-reserve-button .wp-block-button__link {
    border: 1px solid var(--lw-cream);
    border-radius: 999px;
    background: var(--lw-cream);
    color: var(--lw-forest-deep);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 0.82rem 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-reserve-button .wp-block-button__link:hover {
    border-color: var(--lw-gold);
    background: var(--lw-gold);
    color: var(--lw-charcoal);
}

.lw-mobile-reserve-link {
    display: none;
}

/* ==========================================================
   Temporary foundation page
   ========================================================== */

.lw-foundation {
    display: grid;
    min-height: calc(100vh - var(--lw-header-height));
    place-items: center;
    padding: 6rem 1.5rem;
    text-align: center;
}

.lw-foundation__inner {
    max-width: 780px;
}

.lw-eyebrow {
    margin: 0 0 1rem;
    color: var(--lw-sage);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.lw-foundation h1 {
    margin: 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(4.5rem, 13vw, 9rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.82;
}

.lw-foundation p {
    max-width: 650px;
    margin: 1.5rem auto 0;
    color: var(--lw-sage);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

/* ==========================================================
   Site footer
   ========================================================== */

.lw-site-footer {
    border-top: 1px solid rgba(244, 238, 223, 0.12);
    background: var(--lw-charcoal);
    color: var(--lw-cream);
}

.lw-site-footer__main {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(150px, 0.48fr) minmax(190px, 0.56fr);
    gap: clamp(2rem, 7vw, 7rem);
    padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
}

.lw-site-footer__title {
    margin: 0;
}

.lw-site-footer__title a {
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    letter-spacing: -0.05em;
    line-height: 0.9;
    text-decoration: none;
}

.lw-site-footer__tagline {
    margin: 1rem 0 0;
    color: rgba(244, 238, 223, 0.62);
    font-size: 0.95rem;
    line-height: 1.65;
}

.lw-site-footer__label {
    margin: 0 0 0.9rem !important;
    color: var(--lw-gold) !important;
    font-size: 0.58rem !important;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.lw-site-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.lw-site-footer__nav a,
.lw-site-footer__contact a {
    color: rgba(244, 238, 223, 0.78);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-decoration: none;
}

.lw-site-footer__nav a:hover,
.lw-site-footer__contact a:hover {
    color: var(--lw-gold);
}

.lw-site-footer__contact p {
    margin: 0 0 0.75rem;
    color: rgba(244, 238, 223, 0.68);
    font-size: 0.86rem;
    line-height: 1.6;
}

.lw-site-footer__bottom {
    border-top: 1px solid rgba(244, 238, 223, 0.12);
}

.lw-site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.lw-site-footer__bottom p {
    margin: 0;
    color: rgba(244, 238, 223, 0.46);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .lw-site-footer__main {
        grid-template-columns: 1fr 1fr;
    }

    .lw-site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .lw-site-footer__main {
        grid-template-columns: 1fr;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .lw-site-footer__brand {
        grid-column: auto;
    }

    .lw-site-footer__bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

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

@media (max-width: 1050px) {
    .lw-site-header__inner {
        gap: 1rem;
    }

    .lw-site-header__actions {
        gap: 0.9rem;
    }

    .lw-primary-nav {
        font-size: 0.66rem;
        letter-spacing: 0.1em;
    }

    .lw-primary-nav .wp-block-navigation__container {
        gap: 0.9rem;
    }
}

@media (max-width: 900px) {
    :root {
        --lw-header-height: 76px;
    }

    .admin-bar .lw-site-header {
        top: 46px;
    }

    .lw-site-header__inner {
        padding: 0.65rem 1rem;
    }

    .lw-site-logo img,
    .lw-site-logo .custom-logo {
        width: 48px;
        height: 48px;
    }

    .lw-site-title a {
        font-size: 1.15rem;
    }

    .lw-site-kicker {
        font-size: 0.54rem;
        letter-spacing: 0.14em;
    }

    .lw-header-cta {
        display: none;
    }

    .lw-primary-nav .wp-block-navigation__responsive-container-open {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--lw-cream);
    }

    .lw-primary-nav .wp-block-navigation__responsive-container-open svg,
    .lw-primary-nav .wp-block-navigation__responsive-container-close svg {
        width: 30px;
        height: 30px;
    }

    .lw-primary-nav .wp-block-navigation__responsive-container:not(.is-menu-open) {
        display: none;
    }

    .lw-primary-nav .wp-block-navigation__responsive-container.is-menu-open {
        display: flex;
        padding: 1.25rem;
        background:
            linear-gradient(rgba(16, 37, 31, 0.93), rgba(16, 37, 31, 0.98)),
            url("/wp-content/themes/lost-woods/assets/images/forest-bg.png") center / cover;
        color: var(--lw-cream);
    }

    .lw-primary-nav .wp-block-navigation__responsive-container-close {
        top: 1.15rem;
        right: 1.15rem;
        color: var(--lw-cream);
    }

    .lw-primary-nav .wp-block-navigation__responsive-container-content {
        align-items: flex-start;
        justify-content: center;
        padding: 5rem 1.2rem 2rem;
    }

    .lw-primary-nav .wp-block-navigation__container {
        align-items: flex-start;
        gap: 0.7rem;
    }

    .lw-primary-nav .wp-block-navigation-item__content {
        font-family: "Libertinus Serif Display", Georgia, serif;
        font-size: clamp(2rem, 9vw, 3.6rem);
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1;
        text-transform: none;
    }

    .lw-primary-nav .wp-block-navigation-item__content::after {
        display: none;
    }

    .lw-mobile-reserve-link {
        display: block;
        margin-top: 1.2rem;
    }

    .lw-mobile-reserve-link .wp-block-navigation-item__content {
        border: 1px solid var(--lw-gold);
        border-radius: 999px;
        color: var(--lw-gold);
        font-family: "Libertinus Sans", Arial, sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        padding: 0.9rem 1.1rem;
        text-transform: uppercase;
    }
}

@media (max-width: 460px) {
    .lw-site-header__brand {
        gap: 0.65rem;
    }

    .lw-site-kicker {
        display: none;
    }
}

/* ==========================================================
   Homepage hero
   ========================================================== */

.home .lw-site-header {
    position: fixed;
    right: 0;
    left: 0;
    background: linear-gradient(to bottom,
            rgba(8, 19, 16, 0.82),
            rgba(8, 19, 16, 0.38));
}

.home .lw-site-header.is-scrolled {
    background: rgba(16, 37, 31, 0.97);
}

.lw-home {
    min-height: 100vh;
}

.lw-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 100svh;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(7, 18, 15, 0.94) 0%,
            rgba(7, 18, 15, 0.77) 38%,
            rgba(7, 18, 15, 0.35) 70%,
            rgba(7, 18, 15, 0.58) 100%),
        url("/wp-content/themes/lost-woods/assets/images/forest-bg.png") center / cover no-repeat;
}

.lw-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to bottom,
            rgba(8, 19, 16, 0.16) 0%,
            rgba(8, 19, 16, 0.08) 44%,
            rgba(8, 19, 16, 0.88) 100%);
    content: "";
}

.lw-hero::after {
    position: absolute;
    right: -10vw;
    bottom: -22vw;
    z-index: -1;
    width: 46vw;
    height: 46vw;
    border: 1px solid rgba(184, 155, 100, 0.17);
    border-radius: 50%;
    box-shadow:
        0 0 0 5vw rgba(184, 155, 100, 0.035),
        0 0 0 11vw rgba(184, 155, 100, 0.022);
    content: "";
}

.lw-hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 100svh;
    padding: clamp(8.5rem, 16vh, 12rem) 1.5rem 2rem;
}

.lw-hero__content {
    width: min(100%, 780px);
    margin: auto 0;
}

.lw-hero__content>* {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.lw-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.1rem;
    color: var(--lw-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.lw-hero__eyebrow::before {
    width: 44px;
    height: 1px;
    background: var(--lw-gold);
    content: "";
}

.lw-hero__title {
    margin: 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(4.6rem, 9vw, 8.8rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.84;
    text-wrap: balance;
}

.lw-hero__intro {
    max-width: 610px;
    margin-top: 1.7rem !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    color: rgba(244, 238, 223, 0.83);
    font-size: clamp(1rem, 1.7vw, 1.3rem);
    line-height: 1.6;
}

.lw-hero__buttons {
    gap: 0.8rem;
    margin-top: 2rem;
}

.lw-hero__primary-button .wp-block-button__link,
.lw-hero__secondary-button .wp-block-button__link {
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.95rem 1.4rem;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-hero__primary-button .wp-block-button__link {
    border: 1px solid var(--lw-cream);
    background: var(--lw-cream);
    color: var(--lw-forest-deep);
}

.lw-hero__primary-button .wp-block-button__link:hover {
    border-color: var(--lw-gold);
    background: var(--lw-gold);
    color: var(--lw-charcoal);
}

.lw-hero__secondary-button .wp-block-button__link {
    border: 1px solid rgba(244, 238, 223, 0.54);
    background: rgba(16, 37, 31, 0.16);
    color: var(--lw-cream);
    backdrop-filter: blur(8px);
}

.lw-hero__secondary-button .wp-block-button__link:hover {
    border-color: var(--lw-cream);
    background: rgba(244, 238, 223, 0.12);
}

.lw-hero__footer {
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(244, 238, 223, 0.22);
}

.lw-hero__meta {
    gap: clamp(1.5rem, 5vw, 4.5rem);
}

.lw-hero__meta-item {
    gap: 0;
}

.lw-hero__meta-label {
    margin: 0;
    color: var(--lw-gold);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.lw-hero__meta-value {
    margin: 0.45rem 0 0;
    color: var(--lw-cream);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.lw-hero__scroll {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    color: rgba(244, 238, 223, 0.64);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lw-hero__scroll-line {
    position: relative;
    display: block;
    width: 52px;
    height: 1px;
    overflow: hidden;
    background: rgba(244, 238, 223, 0.28);
}

.lw-hero__scroll-line::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 1px;
    background: var(--lw-gold);
    content: "";
    animation: lw-scroll-line 2.4s ease-in-out infinite;
}

@keyframes lw-scroll-line {
    0% {
        transform: translateX(-24px);
    }

    50% {
        transform: translateX(52px);
    }

    100% {
        transform: translateX(52px);
    }
}

/* ==========================================================
   Homepage hero responsive styles
   ========================================================== */

@media (max-width: 760px) {
    .lw-hero {
        background:
            linear-gradient(to bottom,
                rgba(7, 18, 15, 0.84) 0%,
                rgba(7, 18, 15, 0.55) 38%,
                rgba(7, 18, 15, 0.9) 100%),
            url("/wp-content/themes/lost-woods/assets/images/lostwoods-logo.png") 62% center / cover no-repeat;
    }

    .lw-hero__inner {
        padding: 8.8rem 1rem 1.35rem;
    }

    .lw-hero__title {
        font-size: clamp(4rem, 18vw, 6.4rem);
    }

    .lw-hero__intro {
        max-width: 520px;
        font-size: 1rem;
    }

    .lw-hero__buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .lw-hero__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .lw-hero__meta {
        display: grid;
        gap: 0.8rem;
    }
}

@media (max-width: 430px) {
    .lw-hero__eyebrow {
        font-size: 0.59rem;
        letter-spacing: 0.15em;
    }

    .lw-hero__eyebrow::before {
        width: 30px;
    }

    .lw-hero__title {
        font-size: clamp(3.7rem, 18vw, 5rem);
    }

    .lw-hero__intro {
        line-height: 1.5;
    }

    .lw-hero__primary-button .wp-block-button__link,
    .lw-hero__secondary-button .wp-block-button__link {
        font-size: 0.64rem;
        padding: 0.88rem 1.15rem;
    }

    .lw-hero__meta-value {
        font-size: 0.82rem;
    }

    .lw-hero__scroll {
        font-size: 0.57rem;
    }
}

/* ==========================================================
   Shared homepage section styles
   ========================================================== */

.lw-section-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1rem;
    color: var(--lw-gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.lw-section-eyebrow::before {
    width: 38px;
    height: 1px;
    background: var(--lw-gold);
    content: "";
}

.lw-text-link {
    margin: 1.8rem 0 0;
}

.lw-text-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--lw-cream);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-text-link a span {
    color: var(--lw-gold);
    font-size: 1.1rem;
    transition: transform var(--lw-transition);
}

.lw-text-link a:hover span {
    transform: translateX(5px);
}

/* ==========================================================
   Editorial introduction
   ========================================================== */

.lw-intro-section {
    position: relative;
    overflow: hidden;
    background: var(--lw-forest-deep);
}

.lw-intro-section::after {
    position: absolute;
    top: -180px;
    right: -180px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(184, 155, 100, 0.09);
    border-radius: 50%;
    box-shadow:
        0 0 0 56px rgba(184, 155, 100, 0.025),
        0 0 0 116px rgba(184, 155, 100, 0.015);
    content: "";
    pointer-events: none;
}

.lw-intro-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    padding: clamp(5.5rem, 10vw, 9rem) 1.5rem;
}

.lw-intro-section__heading,
.lw-intro-section__copy {
    position: relative;
    z-index: 1;
}

.lw-intro-section__title {
    max-width: 820px;
    margin: 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.4rem, 7vw, 7rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.9;
    text-wrap: balance;
}

.lw-intro-section__copy {
    align-self: center;
    padding-left: clamp(1rem, 2vw, 1.6rem);
    border-left: 1px solid rgba(244, 238, 223, 0.18);
}

.lw-intro-section__copy p {
    margin-top: 0;
    color: rgba(244, 238, 223, 0.74);
    font-size: 1.02rem;
    line-height: 1.75;
}

.lw-intro-section__copy p+p {
    margin-top: 1rem;
}

/* ==========================================================
   Food showcase
   ========================================================== */

.lw-food-showcase {
    position: relative;
    overflow: hidden;
    background: var(--lw-cream);
    color: var(--lw-charcoal);
}

.lw-food-showcase__inner {
    padding: clamp(5rem, 9vw, 8rem) 1.5rem clamp(3.8rem, 6vw, 5.5rem);
}

.lw-food-showcase__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: clamp(2rem, 6vw, 6rem);
    margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.lw-food-showcase .lw-section-eyebrow {
    color: var(--lw-forest-muted);
}

.lw-food-showcase .lw-section-eyebrow::before {
    background: var(--lw-forest-muted);
}

.lw-food-showcase__title {
    margin: 0;
    margin-bottom: 0.48rem;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.2rem, 6.4vw, 6.6rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.88;
}

.lw-food-showcase__border {
    border-top: 3px double var(--lw-forest-deep);
    border-radius: 999px;
}

.lw-food-showcase__intro-copy {
    align-self: end;
}

.lw-food-showcase__intro-copy p {
    margin: 0;
    color: rgba(17, 24, 22, 0.74);
    font-size: 1rem;
    line-height: 1.75;
}

.lw-food-showcase__actions {
    margin-top: 1.5rem;
}

.lw-outline-button .wp-block-button__link {
    border: 1px solid var(--lw-forest-deep);
    border-radius: 999px;
    background: transparent;
    color: var(--lw-forest-deep);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.92rem 1.35rem;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-outline-button .wp-block-button__link:hover {
    background: var(--lw-forest-deep);
    color: var(--lw-cream);
}

/* ==========================================================
   Food collage
   ========================================================== */

.lw-food-collage {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.72fr);
    grid-template-rows: auto auto;
    gap: clamp(1.2rem, 2.2vw, 1.8rem);
    padding: clamp(1rem, 2vw, 1.8rem);
}

/*
 * Subtle background circles keep the section expressive
 * without distracting from the photography.
 */
.lw-food-collage::before {
    position: absolute;
    top: -0.8rem;
    right: 7%;
    z-index: -2;
    width: clamp(170px, 22vw, 300px);
    height: clamp(170px, 22vw, 300px);
    border: 1px solid rgba(73, 103, 93, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 24px rgba(73, 103, 93, 0.035),
        0 0 0 52px rgba(73, 103, 93, 0.018);
    content: "";
}

/* ==========================================================
   Shared image-card treatment
   ========================================================== */

.lw-food-collage__item {
    position: relative;
    margin: 0;
    transition: transform 400ms ease;
}

.lw-food-collage__item:hover {
    transform: translateY(-6px);
}

.lw-food-collage__image-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 37, 31, 0.18);
    background: var(--lw-warm-white);
    box-shadow:
        0 18px 38px rgba(17, 24, 22, 0.11),
        0 4px 10px rgba(17, 24, 22, 0.06);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.lw-food-collage__image-wrap::before {
    position: absolute;
    inset: 0.65rem;
    z-index: 2;
    border: 1px solid rgba(244, 238, 223, 0.58);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

/*
 * This keeps the corners stable during image scaling,
 * including in Chromium-based browsers.
 */
.lw-food-collage__image-wrap::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top,
            rgba(8, 20, 17, 0.16),
            rgba(8, 20, 17, 0.01) 52%);
    content: "";
    pointer-events: none;
}

.lw-food-collage__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001) translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    transition:
        transform 700ms ease,
        filter 700ms ease;
}

.lw-food-collage__item:hover .lw-food-collage__image {
    transform: scale(1.055) translateZ(0);
    filter: saturate(1.04) contrast(1.02);
}

/* ==========================================================
   Featured image
   ========================================================== */

.lw-food-collage__item--featured {
    grid-column: 1;
    grid-row: 1 / span 2;
    padding-top: clamp(1rem, 4vw, 3.2rem);
}

.lw-food-collage__item--featured .lw-food-collage__image-wrap {
    aspect-ratio: 1 / 1.06;
    border-radius: 5rem 1.4rem 1.4rem 1.4rem;
    clip-path: inset(0 round 5rem 1.4rem 1.4rem 1.4rem);
}

/* ==========================================================
   Supporting portrait image
   ========================================================== */

.lw-food-collage__item--portrait {
    grid-column: 2;
    grid-row: 1;
}

.lw-food-collage__item--portrait .lw-food-collage__image-wrap {
    aspect-ratio: 0.9 / 1;
    border-radius: 1.3rem 1.3rem 4.2rem 1.3rem;
    clip-path: inset(0 round 1.3rem 1.3rem 4.2rem 1.3rem);
}

/* ==========================================================
   Supporting landscape image
   ========================================================== */

.lw-food-collage__item--landscape {
    grid-column: 2;
    grid-row: 2;
}

.lw-food-collage__item--landscape .lw-food-collage__image-wrap {
    aspect-ratio: 1.4 / 0.78;
    border-radius: 1.3rem 3.8rem 1.3rem 1.3rem;
    clip-path: inset(0 round 1.3rem 3.8rem 1.3rem 1.3rem);
}

/* ==========================================================
   Featured dish badge
   ========================================================== */

.lw-food-collage__badge {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    z-index: 3;
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    padding: 0.45rem;
    border: 1px solid rgba(244, 238, 223, 0.62);
    border-radius: 50%;
    background: rgba(16, 37, 31, 0.82);
    color: var(--lw-cream);
    text-align: center;
    backdrop-filter: blur(8px);
}

.lw-food-collage__badge::before {
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(184, 155, 100, 0.74);
    border-radius: 50%;
    content: "";
}

.lw-food-collage__badge span {
    position: relative;
    z-index: 1;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.25;
    text-transform: uppercase;
}

/* ==========================================================
   Captions
   ========================================================== */

.lw-food-collage__caption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0.62rem 0.85rem;
    border: 1px solid rgba(244, 238, 223, 0.3);
    border-radius: 999px;
    background: rgba(16, 37, 31, 0.84);
    color: var(--lw-cream);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.lw-food-collage__caption span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.7rem;
    height: 1.7rem;
    border: 1px solid rgba(184, 155, 100, 0.68);
    border-radius: 50%;
    color: var(--lw-gold);
    font-size: 0.52rem;
    letter-spacing: 0.08em;
}

/* ==========================================================
   Editorial note
   ========================================================== */

.lw-food-collage__note {
    position: relative;
    grid-column: 1;
    z-index: 3;
    max-width: 380px;
    margin-top: -1.6rem;
    margin-left: clamp(1rem, 4vw, 3.4rem);
    padding: 1.2rem 1.4rem;
    border: 1px solid rgba(184, 155, 100, 0.5);
    border-radius: 0.35rem 1.3rem 1.3rem 1.3rem;
    background:
        linear-gradient(135deg,
            rgba(23, 47, 40, 0.99),
            rgba(16, 37, 31, 0.99));
    color: var(--lw-cream);
    box-shadow: 0 14px 28px rgba(17, 24, 22, 0.16);
}

.lw-food-collage__note::before {
    position: absolute;
    top: 0.3rem;
    bottom: 0.3rem;
    left: -1.2rem;
    width: 1px;
    background: rgba(184, 155, 100, 0.72);
    content: "";
}

.lw-food-collage__note::after {
    position: absolute;
    bottom: 0.15rem;
    left: -2.85rem;
    color: var(--lw-forest-muted);
    content: "Kitchen note";
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
}

.lw-food-collage__note-label {
    margin: 0;
    color: var(--lw-gold);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.lw-food-collage__note-copy {
    margin: 0.6rem 0 0;
    color: rgba(244, 238, 223, 0.8);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: 1.16rem;
    line-height: 1.26;
}

/* ==========================================================
   Editorial sections responsive styles
   ========================================================== */

@media (max-width: 820px) {

    .lw-intro-section__inner,
    .lw-food-showcase__intro {
        grid-template-columns: 1fr;
    }

    .lw-intro-section__copy {
        max-width: 640px;
        padding-top: 1.2rem;
        padding-left: 1.2rem;
    }

    .lw-food-showcase__intro-copy {
        max-width: 620px;
    }

    .lw-food-collage {
        grid-template-columns: minmax(0, 1fr) minmax(180px, 0.58fr);
    }

    .lw-food-collage__item--featured {
        padding-top: 2rem;
    }
}

@media (max-width: 620px) {

    .lw-venue-section__video-label {
        top: 0.75rem;
        right: 0.75rem;
        bottom: auto;
        padding: 0.5rem 0.65rem;
        font-size: 0.5rem;
    }

    .lw-intro-section__inner,
    .lw-food-showcase__inner {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .lw-intro-section__title,
    .lw-food-showcase__title {
        font-size: clamp(3.3rem, 15vw, 5rem);
    }

    .lw-food-collage {
        display: block;
        padding: 0.5rem 0.3rem;
    }

    .lw-food-collage::before {
        top: 8%;
        right: -1rem;
        width: 180px;
        height: 180px;
    }

    .lw-food-collage__note::before,
    .lw-food-collage__note::after {
        display: none;
    }

    .lw-food-collage__item {
        margin-top: 1.8rem;
    }

    .lw-food-collage__item:first-child {
        margin-top: 0;
    }

    .lw-food-collage__item--featured {
        padding-top: 0;
    }

    .lw-food-collage__caption {
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.5rem 0.65rem;
        font-size: 0.5rem;
    }

    .lw-food-collage__caption span:first-child {
        min-width: 1.45rem;
        height: 1.45rem;
        font-size: 0.45rem;
    }

    .lw-food-collage__item--featured .lw-food-collage__caption {
        right: 1.1rem;
        bottom: 1.1rem;
    }

    .lw-food-collage__item--portrait .lw-food-collage__caption,
    .lw-food-collage__item--landscape .lw-food-collage__caption {
        right: 0.8rem;
        bottom: 0.8rem;
        padding: 0.52rem 0.7rem;
        font-size: 0.52rem;
    }

    .lw-food-collage__item--portrait .lw-food-collage__caption span:first-child,
    .lw-food-collage__item--landscape .lw-food-collage__caption span:first-child {
        min-width: 1.5rem;
        height: 1.5rem;
        font-size: 0.47rem;
    }

    .lw-food-collage__item--featured .lw-food-collage__image-wrap,
    .lw-food-collage__item--portrait .lw-food-collage__image-wrap,
    .lw-food-collage__item--landscape .lw-food-collage__image-wrap {
        aspect-ratio: 1 / 0.94;
    }

    .lw-food-collage__item--featured .lw-food-collage__image-wrap {
        border-radius: 4.2rem 1.15rem 1.15rem 1.15rem;
        clip-path: inset(0 round 4.2rem 1.15rem 1.15rem 1.15rem);
    }

    .lw-food-collage__item--portrait .lw-food-collage__image-wrap {
        border-radius: 1.15rem 1.15rem 3.8rem 1.15rem;
        clip-path: inset(0 round 1.15rem 1.15rem 3.8rem 1.15rem);
    }

    .lw-food-collage__item--landscape .lw-food-collage__image-wrap {
        border-radius: 1.15rem 3.5rem 1.15rem 1.15rem;
        clip-path: inset(0 round 1.15rem 3.5rem 1.15rem 1.15rem);
    }

    .lw-food-collage__image-wrap::before {
        inset: 0.48rem;
    }

    .lw-food-collage__badge {
        top: 0.85rem;
        left: 0.85rem;
        width: 70px;
        height: 70px;
    }

    .lw-food-collage__badge span {
        font-size: 0.48rem;
    }

    .lw-food-collage__note {
        max-width: none;
        margin-top: 1.6rem;
        margin-left: 0;
    }
}

/* ==========================================================
   Art-gallery experience
   ========================================================== */

.lw-art-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            rgba(16, 37, 31, 0.98),
            rgba(10, 25, 21, 1));
    color: var(--lw-cream);
}

.lw-art-section::before {
    position: absolute;
    top: -190px;
    left: -170px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(184, 155, 100, 0.1);
    border-radius: 50%;
    box-shadow:
        0 0 0 62px rgba(184, 155, 100, 0.025),
        0 0 0 132px rgba(184, 155, 100, 0.014);
    content: "";
    pointer-events: none;
}

.lw-art-section__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: clamp(2.8rem, 7vw, 7rem);
    padding: clamp(6rem, 10vw, 10rem) 1.5rem;
}

/* ==========================================================
   Art section visual
   ========================================================== */

.lw-art-section__visual {
    position: relative;
    max-width: 680px;
    padding: clamp(1rem, 4vw, 3.8rem) clamp(0rem, 2vw, 1.8rem) 3rem 0;
}

.lw-art-section__visual::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 88%;
    border: 1px solid rgba(184, 155, 100, 0.3);
    content: "";
    pointer-events: none;
}

.lw-art-section__image-frame {
    position: relative;
    z-index: 1;
    aspect-ratio: 0.94 / 1;
    overflow: hidden;
    background: var(--lw-charcoal);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.lw-art-section__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms ease;
}

.lw-art-section__visual:hover .lw-art-section__image {
    transform: scale(1.045);
}

.lw-art-section__image-label {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.85rem;
    color: var(--lw-gold);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lw-art-section__image-note {
    position: absolute;
    right: clamp(-1.5rem, -3vw, -3.6rem);
    bottom: 0;
    z-index: 2;
    max-width: 290px;
    padding: 1.25rem 1.35rem;
    border-left: 1px solid var(--lw-gold);
    background: var(--lw-cream);
    color: var(--lw-forest-deep);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.lw-art-section__image-note-number {
    display: block;
    color: var(--lw-gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.lw-art-section__image-note p {
    margin: 0.55rem 0 0;
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: 1.15rem;
    line-height: 1.28;
}

/* ==========================================================
   Art section content
   ========================================================== */

.lw-art-section__content {
    align-self: center;
}

.lw-art-section__title {
    margin: 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.2rem, 5.7vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.9;
    text-wrap: balance;
}

.lw-art-section__intro {
    max-width: 570px;
    margin: 1.6rem 0 0 !important;
    color: rgba(244, 238, 223, 0.74);
    font-size: 1.02rem;
    line-height: 1.75;
}

.lw-art-section__details {
    margin-top: 2.4rem;
    border-top: 1px solid rgba(244, 238, 223, 0.16);
}

.lw-art-section__detail {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(244, 238, 223, 0.16);
}

.lw-art-section__detail-number {
    padding-top: 0.15rem;
    color: var(--lw-gold);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.lw-art-section__detail h3 {
    margin: 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.1;
}

.lw-art-section__detail p {
    margin: 0.45rem 0 0;
    color: rgba(244, 238, 223, 0.62);
    font-size: 0.9rem;
    line-height: 1.55;
}

.lw-art-section__link {
    margin-top: 2rem;
}

/* ==========================================================
   Art-gallery responsive styles
   ========================================================== */

@media (max-width: 900px) {
    .lw-art-section__inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .lw-art-section__visual {
        width: min(100%, 680px);
        margin: 0 auto;
    }

    .lw-art-section__content {
        max-width: 680px;
    }
}

@media (max-width: 620px) {
    .lw-art-section__inner {
        gap: 3rem;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .lw-art-section__visual {
        padding: 1rem 0 0;
    }

    .lw-art-section__visual::before {
        right: -0.5rem;
        width: 88%;
        height: 83%;
    }

    .lw-art-section__image-frame {
        aspect-ratio: 0.9 / 1;
    }

    .lw-art-section__image-note {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: none;
        margin-top: 1rem;
    }

    .lw-art-section__title {
        font-size: clamp(3.3rem, 15vw, 5rem);
    }

    .lw-art-section__intro {
        font-size: 0.98rem;
    }

    .lw-art-section__detail {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .lw-art-section__detail h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================================
   Venue-atmosphere section
   ========================================================== */

.lw-venue-section {
    position: relative;
    overflow: hidden;
    background: var(--lw-cream);
    color: var(--lw-charcoal);
}

.lw-venue-section::before {
    position: absolute;
    right: -130px;
    bottom: -180px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(73, 103, 93, 0.15);
    border-radius: 50%;
    box-shadow:
        0 0 0 42px rgba(73, 103, 93, 0.035),
        0 0 0 90px rgba(73, 103, 93, 0.018);
    content: "";
    pointer-events: none;
}

.lw-venue-section__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(340px, 0.84fr) minmax(0, 1.16fr);
    gap: clamp(3rem, 7vw, 7rem);
    padding: clamp(6rem, 10vw, 9rem) 1.5rem;
}

/* ==========================================================
   Venue copy
   ========================================================== */

.lw-venue-section__content {
    align-self: center;
}

.lw-venue-section .lw-section-eyebrow {
    color: var(--lw-forest-muted);
}

.lw-venue-section .lw-section-eyebrow::before {
    background: var(--lw-forest-muted);
}

.lw-venue-section__title {
    margin: 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.4rem, 6vw, 6.4rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.88;
    text-wrap: balance;
}

.lw-venue-section__intro {
    max-width: 570px;
    margin: 1.35rem 0 0 !important;
    color: rgba(17, 24, 22, 0.72);
    font-size: 1rem;
    line-height: 1.75;
}

.lw-venue-section__details {
    margin-top: 2rem;
    border-top: 1px solid rgba(16, 37, 31, 0.18);
}

.lw-venue-section__detail {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(16, 37, 31, 0.18);
}

.lw-venue-section__detail-label {
    color: var(--lw-gold);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lw-venue-section__detail-value {
    color: var(--lw-forest-deep);
    font-size: 0.9rem;
}

.lw-venue-section__actions {
    margin-top: 1.7rem;
}

/* ==========================================================
   Venue visual
   ========================================================== */

.lw-venue-section__visual {
    position: relative;
    min-height: 670px;
}

.lw-venue-section__main-image-wrap,
.lw-venue-section__inset-image-wrap {
    margin: 0;
}

.lw-venue-section__main-image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88%, 660px);
    height: 590px;
    overflow: hidden;
    border-radius: 7rem 1.6rem 1.6rem 1.6rem;
    background: var(--lw-forest-dark);
    box-shadow: 0 28px 60px rgba(17, 24, 22, 0.16);
    clip-path: inset(0 round 7rem 1.6rem 1.6rem 1.6rem);
}

/*
 * Single inside border for a cleaner venue-image treatment.
 */
.lw-venue-section__main-image-wrap::before {
    position: absolute;
    inset: 0.75rem;
    z-index: 2;
    border: 1px solid rgba(244, 238, 223, 0.58);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.lw-venue-section__main-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001) translateZ(0);
    transition: transform 800ms ease;
}

.lw-venue-section__main-image-wrap:hover .lw-venue-section__main-video {
    transform: scale(1.045) translateZ(0);
}

.lw-venue-section__video-label {
    position: absolute;
    right: 1.3rem;
    top: 1.2rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.58rem 0.8rem;
    border: 1px solid rgba(244, 238, 223, 0.36);
    border-radius: 999px;
    background: rgba(16, 37, 31, 0.78);
    color: var(--lw-cream);
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.lw-venue-section__video-dot {
    display: block;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--lw-gold);
    box-shadow: 0 0 0 4px rgba(184, 155, 100, 0.16);
    animation: lw-video-dot 2s ease-in-out infinite;
}

@keyframes lw-video-dot {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.12);
    }
}

.lw-venue-section__inset-image-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: min(40%, 250px);
    padding: 0.65rem;
    border: 1px solid rgba(16, 37, 31, 0.18);
    border-radius: 1.25rem;
    background: var(--lw-warm-white);
    box-shadow: 0 20px 42px rgba(17, 24, 22, 0.18);
}

.lw-venue-section__inset-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.88;
    border-radius: 0.8rem;
    object-fit: cover;
}

.lw-venue-section__inset-image-wrap figcaption {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0.15rem 0.1rem;
    color: var(--lw-forest-muted);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lw-venue-section__stamp {
    position: absolute;
    right: 1.2rem;
    bottom: 0.8rem;
    z-index: 4;
    display: grid;
    width: 104px;
    height: 104px;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(184, 155, 100, 0.7);
    border-radius: 50%;
    background: rgba(16, 37, 31, 0.9);
    color: var(--lw-cream);
    text-align: center;
    box-shadow: 0 12px 26px rgba(17, 24, 22, 0.16);
}

.lw-venue-section__stamp::before {
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(244, 238, 223, 0.4);
    border-radius: 50%;
    content: "";
}

.lw-venue-section__stamp span {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

/* ==========================================================
   Venue responsive styles
   ========================================================== */

@media (max-width: 920px) {
    .lw-venue-section__inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .lw-venue-section__content {
        max-width: 680px;
    }

    .lw-venue-section__visual {
        width: min(100%, 760px);
        min-height: 590px;
        margin: 0 auto;
    }
}

@media (max-width: 620px) {
    .lw-venue-section__inner {
        gap: 2.6rem;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .lw-venue-section__title {
        font-size: clamp(3.3rem, 15vw, 5rem);
    }

    .lw-venue-section__detail {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .lw-venue-section__visual {
        display: flex;
        min-height: auto;
        flex-direction: column;
        gap: 1rem;
    }

    .lw-venue-section__main-image-wrap,
    .lw-venue-section__inset-image-wrap {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .lw-venue-section__main-image-wrap {
        width: 100%;
        height: auto;
        aspect-ratio: 0.94 / 1;
        border-radius: 4.4rem 1.2rem 1.2rem 1.2rem;
        clip-path: inset(0 round 4.4rem 1.2rem 1.2rem 1.2rem);
    }

    .lw-venue-section__main-image-wrap::before {
        inset: 0.55rem;
    }

    .lw-venue-section__inset-image-wrap {
        width: min(68%, 270px);
        margin-top: -2.6rem;
        margin-left: auto;
    }

    .lw-venue-section__stamp {
        right: auto;
        bottom: 1.1rem;
        left: 0.8rem;
        width: 86px;
        height: 86px;
    }

    .lw-venue-section__stamp span {
        font-size: 0.49rem;
    }
}

/* ==========================================================
   Upcoming events preview
   ========================================================== */

.lw-events-preview {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg,
            rgba(10, 25, 21, 1),
            rgba(16, 37, 31, 1));
    color: var(--lw-cream);
}

.lw-events-preview::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background:
        repeating-linear-gradient(135deg,
            rgba(184, 155, 100, 0.05) 0,
            rgba(184, 155, 100, 0.05) 1px,
            transparent 1px,
            transparent 18px);
    content: "";
    pointer-events: none;
}

.lw-events-preview__inner {
    position: relative;
    z-index: 1;
    padding: clamp(6rem, 10vw, 9rem) 1.5rem;
}

/* ==========================================================
   Events heading
   ========================================================== */

.lw-events-preview__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
    gap: clamp(2rem, 6vw, 6rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.lw-events-preview__title {
    margin: 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.5rem, 6.5vw, 7rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.88;
}

.lw-events-preview__heading-copy {
    align-self: end;
    padding-left: 1.4rem;
    border-left: 1px solid rgba(244, 238, 223, 0.18);
}

.lw-events-preview__heading-copy p {
    margin: 0;
    color: rgba(244, 238, 223, 0.72);
    font-size: 1rem;
    line-height: 1.75;
}

.lw-events-preview__heading-copy p+p {
    margin-top: 0.9rem;
}

/* ==========================================================
   Event cards
   ========================================================== */

.lw-events-preview__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.4rem, 3vw, 2.5rem);
}

.lw-event-card {
    display: grid;
    grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1fr);
    gap: clamp(1.2rem, 2.5vw, 2rem);
    padding: clamp(1rem, 2vw, 1.4rem);
    border: 1px solid rgba(244, 238, 223, 0.14);
    border-radius: 1.4rem;
    background: rgba(244, 238, 223, 0.045);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    transition:
        transform 350ms ease,
        border-color 350ms ease,
        background-color 350ms ease;
}

.lw-event-card:hover {
    border-color: rgba(184, 155, 100, 0.52);
    background: rgba(244, 238, 223, 0.075);
    transform: translateY(-7px);
}

.lw-event-card__poster-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--lw-charcoal);
    clip-path: inset(0 round 1rem);
}

.lw-event-card__poster-wrap::before {
    position: absolute;
    inset: 0.48rem;
    z-index: 2;
    border: 1px solid rgba(244, 238, 223, 0.48);
    border-radius: 0.72rem;
    content: "";
    pointer-events: none;
}

.lw-event-card__poster {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    transform: scale(1.001) translateZ(0);
    transition: transform 700ms ease;
}

.lw-event-card:hover .lw-event-card__poster {
    transform: scale(1.055) translateZ(0);
}

.lw-event-card__poster-label {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 3;
    padding: 0.5rem 0.68rem;
    border: 1px solid rgba(244, 238, 223, 0.34);
    border-radius: 999px;
    background: rgba(16, 37, 31, 0.84);
    color: var(--lw-cream);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

/* ==========================================================
   Event-card copy
   ========================================================== */

.lw-event-card__content {
    align-self: center;
}

.lw-event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    margin-bottom: 1rem;
    color: var(--lw-gold);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.lw-event-card__meta span+span {
    color: var(--lw-sage);
}

.lw-event-card h3 {
    margin: 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(2rem, 3vw, 3.1rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.94;
}

.lw-event-card p {
    margin: 1rem 0 0;
    color: rgba(244, 238, 223, 0.68);
    font-size: 0.9rem;
    line-height: 1.65;
}

.lw-event-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    color: var(--lw-cream);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-event-card__link span {
    color: var(--lw-gold);
    font-size: 1rem;
    transition: transform var(--lw-transition);
}

.lw-event-card__link:hover span {
    transform: translateX(5px);
}

/* ==========================================================
   Events footer
   ========================================================== */

.lw-events-preview__footer {
    gap: 1.5rem;
    margin-top: 2.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(244, 238, 223, 0.16);
}

.lw-events-preview__footer p {
    max-width: 660px;
    margin: 0;
    color: rgba(244, 238, 223, 0.6);
    font-size: 0.88rem;
}

.lw-light-outline-button .wp-block-button__link {
    border: 1px solid rgba(244, 238, 223, 0.64);
    border-radius: 999px;
    background: transparent;
    color: var(--lw-cream);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.9rem 1.3rem;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-light-outline-button .wp-block-button__link:hover {
    border-color: var(--lw-gold);
    background: var(--lw-gold);
    color: var(--lw-charcoal);
}

/* ==========================================================
   Events responsive styles
   ========================================================== */

@media (max-width: 1100px) {
    .lw-events-preview__grid {
        grid-template-columns: 1fr;
    }

    .lw-event-card {
        grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
    }

    .lw-event-card__poster {
        min-height: 290px;
    }
}

@media (max-width: 760px) {
    .lw-events-preview__heading {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .lw-events-preview__heading-copy {
        max-width: 620px;
        padding-left: 1rem;
    }

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

    .lw-event-card__poster {
        aspect-ratio: 0.92 / 1;
        min-height: auto;
    }

    .lw-events-preview__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .lw-events-preview__inner {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .lw-events-preview__title {
        font-size: clamp(3.3rem, 15vw, 5rem);
    }

    .lw-event-card {
        padding: 0.8rem;
        border-radius: 1.15rem;
    }

    .lw-event-card__poster-wrap {
        border-radius: 0.85rem;
        clip-path: inset(0 round 0.85rem);
    }

    .lw-event-card__poster-wrap::before {
        inset: 0.4rem;
        border-radius: 0.62rem;
    }

    .lw-event-card__content {
        padding: 0.35rem 0.25rem 0.45rem;
    }
}

/* ==========================================================
   Guest reviews
   ========================================================== */

.lw-reviews-section {
    position: relative;
    overflow: hidden;
    background: var(--lw-cream);
    color: var(--lw-charcoal);
}

.lw-reviews-section::before {
    position: absolute;
    top: -220px;
    left: -170px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(73, 103, 93, 0.13);
    border-radius: 50%;
    box-shadow:
        0 0 0 46px rgba(73, 103, 93, 0.028),
        0 0 0 96px rgba(73, 103, 93, 0.014);
    content: "";
    pointer-events: none;
}

.lw-reviews-section__inner {
    position: relative;
    z-index: 1;
    padding: clamp(5.5rem, 9vw, 8.5rem) 1.5rem;
}

/* ==========================================================
   Reviews heading and rating summary
   ========================================================== */

.lw-reviews-section__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.44fr);
    gap: clamp(2rem, 6vw, 6rem);
    margin-bottom: clamp(2.8rem, 5vw, 4.5rem);
}

.lw-reviews-section .lw-section-eyebrow {
    color: var(--lw-forest-muted);
}

.lw-reviews-section .lw-section-eyebrow::before {
    background: var(--lw-forest-muted);
}

.lw-reviews-section__title {
    margin: 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.6rem, 6.5vw, 7rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.86;
}

.lw-reviews-section__summary {
    align-self: end;
    padding: 1.25rem 0 0 1.35rem;
    border-top: 1px solid rgba(16, 37, 31, 0.22);
    border-left: 1px solid rgba(16, 37, 31, 0.22);
}

.lw-reviews-section__summary-stars {
    display: flex;
    gap: 0.2rem;
    color: var(--lw-gold);
    font-size: 1rem;
    letter-spacing: 0.04em;
    line-height: 1;
}

.lw-reviews-section__summary-score {
    margin: 0.75rem 0 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: 4.2rem;
    letter-spacing: -0.06em;
    line-height: 0.82;
}

.lw-reviews-section__summary-out-of {
    color: var(--lw-forest-muted);
    font-family: "Libertinus Sans", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.lw-reviews-section__summary-copy {
    margin: 1rem 0 0;
    color: rgba(17, 24, 22, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lw-reviews-section__summary-count {
    margin: 0.4rem 0 0;
    color: var(--lw-forest-muted);
    font-size: 0.86rem;
}

/* ==========================================================
   Review cards
   ========================================================== */

.lw-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.lw-review-card {
    display: flex;
    min-height: 270px;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.4rem;
    border: 1px solid rgba(16, 37, 31, 0.16);
    border-radius: 1.3rem;
    background: rgba(255, 253, 247, 0.76);
    box-shadow: 0 16px 34px rgba(17, 24, 22, 0.07);
    transition:
        transform 350ms ease,
        border-color 350ms ease,
        box-shadow 350ms ease;
}

.lw-review-card:hover {
    border-color: rgba(184, 155, 100, 0.66);
    box-shadow: 0 22px 42px rgba(17, 24, 22, 0.11);
    transform: translateY(-6px);
}

.lw-review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lw-review-card__stars {
    color: var(--lw-gold);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    line-height: 1;
}

.lw-review-card__quote {
    margin: 1.4rem 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: 1.26rem;
    line-height: 1.34;
}

.lw-review-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 37, 31, 0.14);
}

.lw-review-card__avatar,
.lw-review-card__initials {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--lw-forest-dark);
    color: var(--lw-cream);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    object-fit: cover;
}

.lw-review-card__identity {
    min-width: 0;
}

.lw-review-card__author-name {
    margin: 0;
    overflow: hidden;
    color: var(--lw-forest-deep);
    font-size: 0.82rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lw-review-card__time {
    margin: 0.2rem 0 0;
    color: var(--lw-forest-muted);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

.lw-review-card__report {
    margin-left: auto;
    color: var(--lw-forest-muted);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-review-card__report:hover {
    color: var(--lw-forest-deep);
}

/* ==========================================================
   Review loading and fallback states
   ========================================================== */

.lw-review-card--loading {
    justify-content: flex-start;
    gap: 0.9rem;
}

.lw-review-card__loading-line {
    width: 100%;
    height: 0.8rem;
    border-radius: 999px;
    background: linear-gradient(90deg,
            rgba(73, 103, 93, 0.1),
            rgba(73, 103, 93, 0.2),
            rgba(73, 103, 93, 0.1));
    background-size: 200% 100%;
    animation: lw-review-loading 1.6s ease-in-out infinite;
}

.lw-review-card__loading-line--short {
    width: 36%;
}

.lw-review-card__loading-line--medium {
    width: 68%;
}

@keyframes lw-review-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.lw-reviews-grid__message {
    grid-column: 1 / -1;
    margin: 0;
    padding: 1.4rem;
    border: 1px solid rgba(16, 37, 31, 0.16);
    border-radius: 1.1rem;
    background: rgba(255, 253, 247, 0.72);
    color: var(--lw-forest-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ==========================================================
   Reviews footer
   ========================================================== */

.lw-reviews-section__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(16, 37, 31, 0.18);
}

.lw-reviews-section__footer p {
    margin: 0;
    color: var(--lw-forest-muted);
    font-size: 0.76rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.lw-reviews-section__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.lw-reviews-section__secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--lw-forest-deep);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-reviews-section__secondary-link span {
    color: var(--lw-gold);
    font-size: 0.9rem;
}

.lw-reviews-section__primary-link {
    border: 1px solid var(--lw-forest-deep);
    border-radius: 999px;
    background: var(--lw-forest-deep);
    color: var(--lw-cream);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    padding: 0.85rem 1.15rem;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-reviews-section__primary-link:hover {
    border-color: var(--lw-gold);
    background: var(--lw-gold);
    color: var(--lw-charcoal);
}

/* ==========================================================
   Reviews responsive styles
   ========================================================== */

@media (max-width: 980px) {
    .lw-reviews-grid {
        grid-template-columns: 1fr;
    }

    .lw-review-card {
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .lw-reviews-section__heading {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .lw-reviews-section__summary {
        max-width: 320px;
    }
}

@media (max-width: 620px) {
    .lw-reviews-section__inner {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .lw-reviews-section__title {
        font-size: clamp(3.3rem, 15vw, 5rem);
    }

    .lw-review-card {
        padding: 1.1rem;
        border-radius: 1.05rem;
    }

    .lw-review-card__quote {
        font-size: 1.15rem;
    }

    .lw-reviews-section__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ==========================================================
   Closing contact CTA
   ========================================================== */

.lw-contact-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(7, 18, 15, 0.96) 0%,
            rgba(7, 18, 15, 0.88) 48%,
            rgba(7, 18, 15, 0.76) 100%),
        url("/wp-content/themes/lost-woods/assets/images/forest-footer.png") center / cover no-repeat;
    color: var(--lw-cream);
}

.lw-contact-cta::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to bottom,
            rgba(16, 37, 31, 0.24),
            rgba(8, 20, 17, 0.72));
    content: "";
}

.lw-contact-cta::after {
    position: absolute;
    right: -130px;
    bottom: -170px;
    z-index: -1;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(184, 155, 100, 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 46px rgba(184, 155, 100, 0.045),
        0 0 0 94px rgba(184, 155, 100, 0.022);
    content: "";
}

.lw-contact-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.54fr);
    gap: clamp(3rem, 8vw, 8rem);
    padding: clamp(6.5rem, 11vw, 10rem) 1.5rem;
}

.lw-contact-cta__content {
    align-self: center;
}

.lw-contact-cta__title {
    margin: 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(4.2rem, 8vw, 8.5rem);
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 0.84;
}

.lw-contact-cta__intro {
    max-width: 610px;
    margin: 1.6rem 0 0 !important;
    color: rgba(244, 238, 223, 0.78);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.7;
}

.lw-contact-cta__buttons {
    gap: 0.75rem;
    margin-top: 2rem;
}

.lw-contact-cta__primary-button .wp-block-button__link,
.lw-contact-cta__secondary-button .wp-block-button__link {
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.95rem 1.35rem;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-contact-cta__primary-button .wp-block-button__link {
    border: 1px solid var(--lw-cream);
    background: var(--lw-cream);
    color: var(--lw-forest-deep);
}

.lw-contact-cta__primary-button .wp-block-button__link:hover {
    border-color: var(--lw-gold);
    background: var(--lw-gold);
    color: var(--lw-charcoal);
}

.lw-contact-cta__secondary-button .wp-block-button__link {
    border: 1px solid rgba(244, 238, 223, 0.54);
    background: rgba(16, 37, 31, 0.3);
    color: var(--lw-cream);
    backdrop-filter: blur(8px);
}

.lw-contact-cta__secondary-button .wp-block-button__link:hover {
    border-color: var(--lw-cream);
    background: rgba(244, 238, 223, 0.12);
}

/* ==========================================================
   Closing contact panel
   ========================================================== */

.lw-contact-cta__panel {
    align-self: center;
    padding: 1.5rem;
    border: 1px solid rgba(244, 238, 223, 0.24);
    border-radius: 1.4rem;
    background: rgba(16, 37, 31, 0.74);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
}

.lw-contact-cta__panel-label {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(244, 238, 223, 0.17);
    color: var(--lw-gold);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lw-contact-cta__panel-section {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(244, 238, 223, 0.17);
}

.lw-contact-cta__panel-heading {
    margin: 0;
    color: var(--lw-gold);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lw-contact-cta__panel-value,
.lw-contact-cta__panel-link {
    display: block;
    margin: 0.5rem 0 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: 1.3rem;
    line-height: 1.25;
    text-decoration: none;
}

.lw-contact-cta__panel-link:hover {
    color: var(--lw-gold);
}

.lw-contact-cta__panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.15rem;
    color: var(--lw-cream);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-contact-cta__panel-footer span:last-child {
    color: var(--lw-gold);
    font-size: 1.1rem;
    transition: transform var(--lw-transition);
}

.lw-contact-cta__panel-footer:hover span:last-child {
    transform: translateX(5px);
}

/* ==========================================================
   Closing CTA responsive styles
   ========================================================== */

@media (max-width: 860px) {
    .lw-contact-cta__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lw-contact-cta__panel {
        width: min(100%, 540px);
    }
}

@media (max-width: 620px) {
    .lw-contact-cta__inner {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .lw-contact-cta__title {
        font-size: clamp(4rem, 18vw, 5.8rem);
    }

    .lw-contact-cta__buttons {
        align-items: flex-start;
        flex-direction: column;
    }

    .lw-contact-cta__panel {
        padding: 1.15rem;
        border-radius: 1.15rem;
    }

    .lw-contact-cta__panel-value,
    .lw-contact-cta__panel-link {
        font-size: 1.16rem;
    }
}

/* ==========================================================
   Homepage section transitions
   ========================================================== */

.lw-intro-section,
.lw-food-showcase,
.lw-art-section,
.lw-venue-section,
.lw-events-preview,
.lw-reviews-section,
.lw-contact-cta {
    position: relative;
}

.lw-intro-section::before,
.lw-food-showcase::after,
.lw-art-section::after,
.lw-venue-section::after,
.lw-events-preview::after,
.lw-reviews-section::after {
    position: absolute;
    right: 1.5rem;
    bottom: 0;
    left: 1.5rem;
    z-index: 5;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(184, 155, 100, 0.42),
            transparent);
    content: "";
    pointer-events: none;
}

/* ==========================================================
   Homepage section transition lines
   ========================================================== */

.lw-home section+section {
    border-top: 1px solid rgba(184, 155, 100, 0.18);
}

/* ==========================================================
   Keyboard focus states
   ========================================================== */

a:focus-visible,
button:focus-visible,
.wp-block-navigation__responsive-container-open:focus-visible,
.wp-block-navigation__responsive-container-close:focus-visible {
    outline: 2px solid var(--lw-gold);
    outline-offset: 4px;
}

/* ==========================================================
   Reduced-motion support
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 620px) {

    .lw-intro-section__inner,
    .lw-food-showcase__inner,
    .lw-art-section__inner,
    .lw-venue-section__inner,
    .lw-events-preview__inner,
    .lw-reviews-section__inner,
    .lw-contact-cta__inner {
        padding-top: 4.8rem;
        padding-bottom: 4.8rem;
    }
}

/* ==========================================================
   Public Menu page
   ========================================================== */

.lw-menu-page {
    background: var(--lw-cream);
    color: var(--lw-charcoal);
}

/* ==========================================================
   Menu hero
   ========================================================== */

.lw-menu-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(7, 18, 15, 0.96),
            rgba(7, 18, 15, 0.72)),
        url("/wp-content/themes/lost-woods/assets/images/food-landscape.jpg") center / cover no-repeat;
    color: var(--lw-cream);
}

.lw-menu-hero::after {
    position: absolute;
    right: -120px;
    bottom: -160px;
    z-index: -1;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(184, 155, 100, 0.2);
    border-radius: 50%;
    box-shadow:
        0 0 0 38px rgba(184, 155, 100, 0.045),
        0 0 0 82px rgba(184, 155, 100, 0.022);
    content: "";
}

.lw-menu-hero__inner {
    padding: clamp(7.5rem, 14vw, 11rem) 1.5rem clamp(5.5rem, 9vw, 8rem);
}

.lw-menu-hero__eyebrow,
.lw-menu-kicker {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
    color: var(--lw-gold);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.lw-menu-hero__eyebrow::before,
.lw-menu-kicker::before {
    width: 38px;
    height: 1px;
    background: currentColor;
    content: "";
}

.lw-menu-hero__title {
    margin: 0.8rem 0 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(5rem, 13vw, 11rem);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.78;
}

.lw-menu-hero__intro {
    max-width: 630px;
    margin: 1.6rem 0 0 !important;
    color: rgba(244, 238, 223, 0.8);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.65;
}

/* ==========================================================
   Menu content
   ========================================================== */

.lw-menu-content {
    background: var(--lw-cream);
}

.lw-menu-content__inner {
    padding: clamp(2.2rem, 4vw, 3.8rem) 1.5rem;
}

/* ==========================================================
   Featured dishes
   ========================================================== */

.lw-menu-featured {
    display: grid;
    grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
    gap: clamp(2rem, 6vw, 5rem);
    padding-bottom: clamp(3.5rem, 6vw, 5rem);
    border-bottom: 1px solid rgba(16, 37, 31, 0.18);
}

.lw-menu-featured__heading h2 {
    margin: 0.85rem 0 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.88;
}

.lw-menu-featured__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

/* ==========================================================
   Menu category navigation
   ========================================================== */

.lw-menu-category-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(16, 37, 31, 0.18);
}

.lw-menu-category-nav__label {
    flex-shrink: 0;
    margin: 0;
    color: var(--lw-gold);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lw-menu-category-nav__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

.lw-menu-category-nav__links a {
    border: 1px solid rgba(16, 37, 31, 0.22);
    border-radius: 999px;
    color: var(--lw-forest-deep);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.55rem 0.76rem;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-menu-category-nav__links a:hover {
    border-color: var(--lw-forest-deep);
    background: var(--lw-forest-deep);
    color: var(--lw-cream);
}

/* ==========================================================
   Menu categories
   ========================================================== */

.lw-menu-category {
    scroll-margin-top: calc(var(--lw-header-height) + 1rem);
    padding: clamp(3.8rem, 7vw, 6rem) 0;
    border-bottom: 1px solid rgba(16, 37, 31, 0.18);
}

.lw-menu-category__heading {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.lw-menu-category__index {
    margin: 0;
    color: var(--lw-gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.lw-menu-category__heading h2 {
    margin: 0.45rem 0 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.9;
}

.lw-menu-category__heading>p {
    align-self: end;
    max-width: 620px;
    margin: 0;
    color: rgba(17, 24, 22, 0.68);
    font-size: 0.95rem;
    line-height: 1.7;
}

.lw-menu-category__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

/* ==========================================================
   Menu item cards
   ========================================================== */

.lw-menu-item-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(16, 37, 31, 0.16);
    border-radius: 1.15rem;
    background: rgba(255, 253, 247, 0.76);
    box-shadow: 0 12px 26px rgba(17, 24, 22, 0.06);
    transition:
        transform 320ms ease,
        border-color 320ms ease,
        box-shadow 320ms ease;
}

.lw-menu-item-card:hover {
    border-color: rgba(184, 155, 100, 0.72);
    box-shadow: 0 18px 34px rgba(17, 24, 22, 0.1);
    transform: translateY(-5px);
}

.lw-menu-item-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.35 / 0.74;
    background: var(--lw-forest-dark);
}

.lw-menu-item-card__image-wrap::before {
    position: absolute;
    inset: 0.55rem;
    z-index: 2;
    border: 1px solid rgba(244, 238, 223, 0.54);
    border-radius: 0.66rem;
    content: "";
    pointer-events: none;
}

.lw-menu-item-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001) translateZ(0);
    transition: transform 650ms ease;
}

.lw-menu-item-card:hover .lw-menu-item-card__image {
    transform: scale(1.055) translateZ(0);
}

.lw-menu-item-card__spotlight-label {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 3;
    border: 1px solid rgba(244, 238, 223, 0.38);
    border-radius: 999px;
    background: rgba(16, 37, 31, 0.84);
    color: var(--lw-cream);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 0.54rem 0.7rem;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.lw-menu-item-card__content {
    padding: 1.1rem 1.2rem 1.2rem;
}

.lw-menu-item-card__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.lw-menu-item-card h3 {
    margin: 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.05;
}

.lw-menu-item-card__price {
    flex-shrink: 0;
    margin: 0;
    color: var(--lw-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lw-menu-item-card__description {
    margin: 0.75rem 0 0;
    color: rgba(17, 24, 22, 0.68);
    font-size: 0.88rem;
    line-height: 1.6;
}

.lw-menu-item-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.9rem;
}

.lw-menu-item-card__tags span {
    border: 1px solid rgba(73, 103, 93, 0.24);
    border-radius: 999px;
    color: var(--lw-forest-muted);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.48rem;
    text-transform: uppercase;
}

/* ==========================================================
   Menu contact note
   ========================================================== */

.lw-menu-contact-note {
    margin-top: clamp(4rem, 7vw, 6rem);
    padding: clamp(2rem, 5vw, 3.7rem);
    border-radius: 1.5rem;
    background: var(--lw-forest-deep);
    color: var(--lw-cream);
}

.lw-menu-contact-note h2 {
    max-width: 720px;
    margin: 0.8rem 0 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.92;
}

.lw-menu-contact-note a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    color: var(--lw-cream);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-menu-contact-note a span {
    color: var(--lw-gold);
    font-size: 1rem;
    transition: transform var(--lw-transition);
}

.lw-menu-contact-note a:hover span {
    transform: translateX(5px);
}

/* ==========================================================
   Compact Menu placeholder
   ========================================================== */

.lw-menu-placeholder {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    padding: clamp(1.2rem, 2vw, 1.6rem);
    border-radius: 1.5rem;
    background:
        linear-gradient(90deg,
            rgba(7, 18, 15, 0.97) 0%,
            rgba(7, 18, 15, 0.9) 38%,
            rgba(7, 18, 15, 0.56) 68%,
            rgba(7, 18, 15, 0.42) 100%),
        url("/wp-content/themes/lost-woods/assets/images/food-featured.jpg") center / cover no-repeat;
    box-shadow: 0 18px 42px rgba(17, 24, 22, 0.14);
    color: var(--lw-cream);
}

/*
 * Clean internal frame.
 */
.lw-menu-placeholder::before {
    position: absolute;
    inset: 0.7rem;
    z-index: -1;
    border: 1px solid rgba(244, 238, 223, 0.42);
    border-radius: 1rem;
    content: "";
    pointer-events: none;
}

/*
 * Restrained decorative circle.
 */
.lw-menu-placeholder::after {
    position: absolute;
    right: -100px;
    bottom: -130px;
    z-index: -1;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(184, 155, 100, 0.32);
    border-radius: 50%;
    box-shadow:
        0 0 0 32px rgba(184, 155, 100, 0.06),
        0 0 0 68px rgba(184, 155, 100, 0.03);
    content: "";
}

/* ==========================================================
   Placeholder topline
   ========================================================== */

.lw-menu-placeholder__topline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0.45rem;
    color: rgba(244, 238, 223, 0.72);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* ==========================================================
   Placeholder copy
   ========================================================== */

.lw-menu-placeholder__content {
    width: min(100%, 690px);
    padding: clamp(1.4rem, 4vw, 3.6rem) clamp(0.45rem, 2vw, 1.3rem);
}

.lw-menu-placeholder__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
    color: var(--lw-gold);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lw-menu-placeholder__eyebrow::before {
    width: 38px;
    height: 1px;
    background: var(--lw-gold);
    content: "";
}

.lw-menu-placeholder h2 {
    margin: 0.9rem 0 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.8rem, 7vw, 7.2rem);
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 0.82;
}

.lw-menu-placeholder__intro {
    max-width: 610px;
    margin: 1.25rem 0 0;
    color: rgba(244, 238, 223, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================
   Placeholder actions
   ========================================================== */

.lw-menu-placeholder__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.lw-menu-placeholder__primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lw-cream);
    border-radius: 999px;
    background: var(--lw-cream);
    color: var(--lw-forest-deep);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    padding: 0.86rem 1.05rem;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.lw-menu-placeholder__primary-link:hover {
    border-color: var(--lw-gold);
    background: var(--lw-gold);
    color: var(--lw-charcoal);
}

.lw-menu-placeholder__secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: var(--lw-cream);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-menu-placeholder__secondary-link span {
    color: var(--lw-gold);
    font-size: 1rem;
    transition: transform var(--lw-transition);
}

.lw-menu-placeholder__secondary-link:hover span {
    transform: translateX(5px);
}

/* ==========================================================
   Placeholder footer note
   ========================================================== */

.lw-menu-placeholder__note {
    margin: 1.4rem 0 0;
    padding: 0.35rem 0.45rem;
    color: rgba(244, 238, 223, 0.62);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ==========================================================
   Menu placeholder responsive corrections
   Must stay after the base placeholder rules.
   ========================================================== */

@media (max-width: 620px) {
    .lw-menu-placeholder {
        padding: 0.9rem;
        border-radius: 1.15rem;
        background:
            linear-gradient(to bottom,
                rgba(7, 18, 15, 0.9),
                rgba(7, 18, 15, 0.76)),
            url("/wp-content/themes/lost-woods/assets/images/food-featured.jpg") 62% center / cover no-repeat;
    }

    .lw-menu-placeholder::before {
        inset: 0.5rem;
        border-radius: 0.84rem;
    }

    .lw-menu-placeholder__topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.2rem;
    }

    .lw-menu-placeholder__content {
        padding: 1.35rem 0.45rem 0.4rem;
    }

    .lw-menu-placeholder h2 {
        font-size: clamp(3.35rem, 15vw, 4.9rem);
    }

    .lw-menu-placeholder__intro {
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .lw-menu-placeholder__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.2rem;
    }

    .lw-menu-placeholder__note {
        margin-top: 1rem;
    }
}

/* ==========================================================
   Final Menu placeholder spacing correction
   ========================================================== */

.lw-menu-placeholder {
    padding: 1rem;
}

.lw-menu-placeholder__content {
    width: min(100%, 690px);
    padding: 1.35rem 0.45rem 0.35rem;
}

.lw-menu-placeholder__actions {
    margin-top: 1.2rem;
}

.lw-menu-placeholder__note {
    display: none;
}

@media (max-width: 620px) {
    .lw-menu-placeholder {
        padding: 0.8rem;
    }

    .lw-menu-placeholder__content {
        padding: 1.1rem 0.35rem 0.2rem;
    }

    .lw-menu-placeholder__topline {
        gap: 0.15rem;
    }

    .lw-menu-placeholder__actions {
        margin-top: 1rem;
    }
}

/* ==========================================================
   Art page
   ========================================================== */

.lw-art-page {
    background: var(--lw-forest-deep);
    color: var(--lw-cream);
}

/* ==========================================================
   Art page hero
   ========================================================== */

.lw-art-page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(7, 18, 15, 0.97),
            rgba(7, 18, 15, 0.72)),
        url("/wp-content/themes/lost-woods/assets/images/art-featured.jpg") center / cover no-repeat;
}

.lw-art-page-hero__inner {
    padding: clamp(7rem, 12vw, 10rem) 1.5rem clamp(4.8rem, 8vw, 7rem);
}

.lw-art-page-hero__eyebrow,
.lw-art-page-kicker {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
    color: var(--lw-gold);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lw-art-page-hero__eyebrow::before,
.lw-art-page-kicker::before {
    width: 38px;
    height: 1px;
    background: currentColor;
    content: "";
}

.lw-art-page-hero__title {
    margin: 0.8rem 0 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(4.8rem, 11vw, 9.5rem);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.8;
}

.lw-art-page-hero__intro {
    max-width: 640px;
    margin: 1.5rem 0 0 !important;
    color: rgba(244, 238, 223, 0.8);
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    line-height: 1.65;
}

/* ==========================================================
   Featured gallery section
   ========================================================== */

.lw-art-page-feature {
    background: var(--lw-cream);
    color: var(--lw-charcoal);
}

.lw-art-page-feature__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(4.5rem, 8vw, 7.5rem) 1.5rem;
}

.lw-art-page-feature__visual {
    align-self: start;
}

.lw-art-page-feature__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 5rem 1.4rem 1.4rem 1.4rem;
    background: var(--lw-forest-dark);
    box-shadow: 0 24px 50px rgba(17, 24, 22, 0.14);
    clip-path: inset(0 round 5rem 1.4rem 1.4rem 1.4rem);
}

.lw-art-page-feature__image-wrap::before {
    position: absolute;
    inset: 0.7rem;
    z-index: 2;
    border: 1px solid rgba(244, 238, 223, 0.54);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.lw-art-page-feature__video {
    display: block;
    width: 100%;
    aspect-ratio: 0.96 / 1;
    object-fit: cover;
    transform: scale(1.001) translateZ(0);
    transition: transform 700ms ease;
}

.lw-art-page-feature__image-wrap:hover .lw-art-page-feature__video {
    transform: scale(1.035) translateZ(0);
}

.lw-art-page-feature__video-label {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.58rem 0.75rem;
    border: 1px solid rgba(244, 238, 223, 0.36);
    border-radius: 999px;
    background: rgba(16, 37, 31, 0.8);
    color: var(--lw-cream);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.lw-art-page-feature__video-dot {
    display: block;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--lw-gold);
    box-shadow: 0 0 0 4px rgba(184, 155, 100, 0.16);
    animation: lw-art-page-video-dot 2s ease-in-out infinite;
}

@keyframes lw-art-page-video-dot {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.12);
    }
}

.lw-art-page-feature__image-label {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.8rem;
    color: var(--lw-forest-muted);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lw-art-page-feature__content {
    align-self: center;
}

.lw-art-page-feature__content h2 {
    margin: 0.9rem 0 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.3rem, 5.7vw, 5.8rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.88;
}

.lw-art-page-feature__content>p:not(.lw-art-page-kicker) {
    margin: 1rem 0 0;
    color: rgba(17, 24, 22, 0.7);
    font-size: 1rem;
    line-height: 1.75;
}

.lw-art-page-feature__details {
    margin-top: 1.8rem;
    border-top: 1px solid rgba(16, 37, 31, 0.18);
}

.lw-art-page-feature__details div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(16, 37, 31, 0.18);
}

.lw-art-page-feature__details span {
    color: var(--lw-gold);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.lw-art-page-feature__details p {
    margin: 0;
    color: var(--lw-forest-deep);
    font-size: 0.9rem;
}

/* ==========================================================
   Gallery notice
   ========================================================== */

.lw-art-page-notice {
    background: var(--lw-forest-dark);
    color: var(--lw-cream);
}

.lw-art-page-notice__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(3.2rem, 6vw, 5.5rem) 1.5rem;
}

.lw-art-page-notice h2 {
    margin: 0.8rem 0 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.2rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.86;
}

.lw-art-page-notice__copy {
    max-width: 650px;
    margin: 1rem 0 0;
    color: rgba(244, 238, 223, 0.72);
    line-height: 1.7;
}

.lw-art-page-notice__link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0.45rem;
    color: var(--lw-cream);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-art-page-notice__link span {
    color: var(--lw-gold);
    font-size: 1rem;
    transition: transform var(--lw-transition);
}

.lw-art-page-notice__link:hover span {
    transform: translateX(5px);
}

/* ==========================================================
   Artist CTA
   ========================================================== */

.lw-art-page-artists {
    background: var(--lw-cream);
    color: var(--lw-charcoal);
}

.lw-art-page-artists__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 6rem) 1.5rem;
    text-align: center;
}

.lw-art-page-artists__inner .lw-art-page-kicker {
    justify-content: center;
}

.lw-art-page-artists h2 {
    margin: 0.9rem 0 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.88;
}

.lw-art-page-artists p {
    max-width: 620px;
    margin: 1rem auto 0;
    color: rgba(17, 24, 22, 0.7);
    line-height: 1.7;
}

.lw-art-page-artists__button {
    display: inline-block;
    margin-top: 1.4rem;
    border: 1px solid var(--lw-forest-deep);
    border-radius: 999px;
    background: var(--lw-forest-deep);
    color: var(--lw-cream);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 0.88rem 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-art-page-artists__button:hover {
    border-color: var(--lw-gold);
    background: var(--lw-gold);
    color: var(--lw-charcoal);
}

/* ==========================================================
   Art page responsive styles
   ========================================================== */

@media (max-width: 820px) {
    .lw-art-page-feature__inner {
        grid-template-columns: 1fr;
    }

    .lw-art-page-feature__visual {
        width: min(100%, 680px);
    }

    .lw-art-page-notice__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {

    .lw-art-page-hero__inner,
    .lw-art-page-feature__inner,
    .lw-art-page-notice__inner,
    .lw-art-page-artists__inner {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .lw-art-page-hero__title {
        font-size: clamp(4.1rem, 18vw, 5.8rem);
    }

    .lw-art-page-feature__image-wrap {
        border-radius: 3.8rem 1.1rem 1.1rem 1.1rem;
        clip-path: inset(0 round 3.8rem 1.1rem 1.1rem 1.1rem);
    }

    .lw-art-page-feature__video-label {
        top: 0.85rem;
        right: 0.85rem;
        padding: 0.5rem 0.62rem;
        font-size: 0.48rem;
    }
}

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

.lw-events-page {
    background: var(--lw-cream);
    color: var(--lw-charcoal);
}

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

.lw-events-page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(7, 18, 15, 0.97),
            rgba(7, 18, 15, 0.72)),
        url("/wp-content/themes/lost-woods/assets/images/events/event-placeholder.png") center 34% / cover no-repeat;
    color: var(--lw-cream);
}

.lw-events-page-hero__inner {
    padding: clamp(7rem, 12vw, 10rem) 1.5rem clamp(4.8rem, 8vw, 7rem);
}

.lw-events-page-kicker {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
    color: var(--lw-gold);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lw-events-page-kicker::before {
    width: 38px;
    height: 1px;
    background: currentColor;
    content: "";
}

.lw-events-page-hero__title {
    margin: 0.8rem 0 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(4.8rem, 11vw, 9.5rem);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.8;
}

.lw-events-page-hero__intro {
    max-width: 630px;
    margin: 1.5rem 0 0 !important;
    color: rgba(244, 238, 223, 0.8);
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    line-height: 1.65;
}

/* ==========================================================
   Events content
   ========================================================== */

.lw-events-page-content {
    background: var(--lw-cream);
}

.lw-events-page-content__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(4rem, 7vw, 6.5rem) 1.5rem;
}

.lw-events-page__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
    align-items: end;
    gap: clamp(2rem, 6vw, 6rem);
    margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.lw-events-page__intro h2 {
    margin: 0.85rem 0 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.2rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.87;
}

.lw-events-page__intro>p {
    margin: 0;
    padding-left: 1.2rem;
    border-left: 1px solid rgba(16, 37, 31, 0.18);
    color: rgba(17, 24, 22, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================
   Events test cards
   ========================================================== */

.lw-events-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(1.2rem, 2.5vw, 2rem);
}

.lw-events-page-card {
    overflow: hidden;
    border: 1px solid rgba(16, 37, 31, 0.16);
    border-radius: 1.3rem;
    background: var(--lw-warm-white);
    box-shadow: 0 14px 30px rgba(17, 24, 22, 0.07);
    transition:
        transform 320ms ease,
        border-color 320ms ease,
        box-shadow 320ms ease;
}

.lw-events-page-card:hover {
    border-color: rgba(184, 155, 100, 0.62);
    box-shadow: 0 20px 38px rgba(17, 24, 22, 0.11);
    transform: translateY(-6px);
}

.lw-events-page-card__poster-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.48 / 1;
    background: var(--lw-charcoal);
}

.lw-events-page-card__poster-wrap::before {
    position: absolute;
    inset: 0.62rem;
    z-index: 2;
    border: 1px solid rgba(244, 238, 223, 0.5);
    border-radius: 0.78rem;
    content: "";
    pointer-events: none;
}

.lw-events-page-card__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001) translateZ(0);
    transition: transform 700ms ease;
}

.lw-events-page-card:hover .lw-events-page-card__poster {
    transform: scale(1.05) translateZ(0);
}

.lw-events-page-card__label {
    position: absolute;
    right: 0.95rem;
    bottom: 0.95rem;
    z-index: 3;
    border: 1px solid rgba(244, 238, 223, 0.34);
    border-radius: 999px;
    background: rgba(16, 37, 31, 0.84);
    color: var(--lw-cream);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    padding: 0.55rem 0.72rem;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.lw-events-page-card__content {
    padding: 1.25rem;
}

.lw-events-page-card__meta {
    margin: 0;
    color: var(--lw-gold);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lw-events-page-card h3 {
    margin: 0.75rem 0 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.9;
}

.lw-events-page-card__description {
    margin: 0.9rem 0 0;
    color: rgba(17, 24, 22, 0.68);
    font-size: 0.92rem;
    line-height: 1.65;
}

.lw-events-page-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    color: var(--lw-forest-deep);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-events-page-card__link span {
    color: var(--lw-gold);
    font-size: 1rem;
    transition: transform var(--lw-transition);
}

.lw-events-page-card__link:hover span {
    transform: translateX(5px);
}

/* ==========================================================
   Events empty state
   ========================================================== */

.lw-events-empty-state {
    max-width: 860px;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid rgba(16, 37, 31, 0.18);
    border-radius: 1.35rem;
    background:
        linear-gradient(135deg,
            rgba(255, 253, 247, 0.98),
            rgba(244, 238, 223, 0.88));
    box-shadow: 0 14px 30px rgba(17, 24, 22, 0.07);
}

.lw-events-empty-state h2 {
    margin: 0.9rem 0 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.3rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 0.84;
}

.lw-events-empty-state>p:not(.lw-events-page-kicker) {
    max-width: 650px;
    margin: 1.1rem 0 0;
    color: rgba(17, 24, 22, 0.7);
    line-height: 1.7;
}

.lw-events-empty-state__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.lw-events-empty-state__primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lw-forest-deep);
    border-radius: 999px;
    background: var(--lw-forest-deep);
    color: var(--lw-cream);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    padding: 0.86rem 1.05rem;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.lw-events-empty-state__primary-link:hover {
    border-color: var(--lw-gold);
    background: var(--lw-gold);
    color: var(--lw-charcoal);
}

.lw-events-empty-state__secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: var(--lw-forest-deep);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-events-empty-state__secondary-link span {
    color: var(--lw-gold);
    font-size: 1rem;
    transition: transform var(--lw-transition);
}

.lw-events-empty-state__secondary-link:hover span {
    transform: translateX(5px);
}

/* ==========================================================
   Events responsive styles
   ========================================================== */

@media (max-width: 820px) {
    .lw-events-page__intro {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .lw-events-page__intro>p {
        max-width: 680px;
    }

    .lw-events-page__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {

    .lw-events-page-hero__inner,
    .lw-events-page-content__inner {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .lw-events-page-hero__title {
        font-size: clamp(4.1rem, 18vw, 5.8rem);
    }

    .lw-events-page-card {
        border-radius: 1.05rem;
    }

    .lw-events-page-card__poster-wrap {
        aspect-ratio: 1.08 / 1;
    }

    .lw-events-page-card__content {
        padding: 1rem;
    }

    .lw-events-empty-state {
        padding: 1.4rem;
        border-radius: 1.05rem;
    }

    .lw-events-empty-state__actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ==========================================================
   Interactive event cards
   ========================================================== */

.lw-events-page-card--interactive {
    cursor: pointer;
}

.lw-events-page-card--interactive:focus-visible {
    outline: 2px solid var(--lw-gold);
    outline-offset: 5px;
}

.lw-events-page-card--interactive .lw-events-page-card__link {
    width: fit-content;
}

/* ==========================================================
   Event details modal
   ========================================================== */

.lw-event-modal {
    width: min(94vw, 1040px);
    max-height: 90vh;
    padding: 0;
    border: 0;
    border-radius: 1.4rem;
    background: transparent;
    color: var(--lw-charcoal);
    overflow: visible;
}

.lw-event-modal::backdrop {
    background: rgba(5, 14, 12, 0.78);
    backdrop-filter: blur(8px);
}

.lw-event-modal__panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(244, 238, 223, 0.22);
    border-radius: 1.4rem;
    background: var(--lw-cream);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.lw-event-modal__close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 4;
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    place-items: center;
    border: 1px solid rgba(244, 238, 223, 0.34);
    border-radius: 50%;
    background: rgba(16, 37, 31, 0.84);
    color: var(--lw-cream);
    cursor: pointer;
    font-size: 1.55rem;
    line-height: 1;
    transition:
        background-color var(--lw-transition),
        border-color var(--lw-transition),
        transform var(--lw-transition);
}

.lw-event-modal__close:hover {
    border-color: var(--lw-gold);
    background: var(--lw-forest-deep);
    transform: scale(1.06);
}

.lw-event-modal__layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
}

.lw-event-modal__poster-wrap {
    position: relative;
    overflow: hidden;
    background: var(--lw-charcoal);
}

.lw-event-modal__poster-wrap::before {
    position: absolute;
    inset: 0.65rem;
    z-index: 2;
    border: 1px solid rgba(244, 238, 223, 0.48);
    border-radius: 0.72rem;
    content: "";
    pointer-events: none;
}

.lw-event-modal__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lw-event-modal__content {
    padding: clamp(2rem, 5vw, 4rem);
}

.lw-event-modal h2 {
    margin: 0.85rem 0 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3rem, 5vw, 5.3rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.86;
}

.lw-event-modal__description {
    margin: 1.1rem 0 0;
    color: rgba(17, 24, 22, 0.7);
    font-size: 0.96rem;
    line-height: 1.7;
}

.lw-event-modal__details {
    margin-top: 1.55rem;
    border-top: 1px solid rgba(16, 37, 31, 0.18);
}

.lw-event-modal__detail {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 1rem;
    padding: 0.82rem 0;
    border-bottom: 1px solid rgba(16, 37, 31, 0.18);
}

.lw-event-modal__detail-label {
    color: var(--lw-gold);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.lw-event-modal__detail-value {
    color: var(--lw-forest-deep);
    font-size: 0.9rem;
    line-height: 1.5;
}

.lw-event-modal__contact-link {
    display: inline-flex;
    margin-top: 1.45rem;
    border: 1px solid var(--lw-forest-deep);
    border-radius: 999px;
    background: var(--lw-forest-deep);
    color: var(--lw-cream);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    padding: 0.88rem 1.05rem;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-event-modal__contact-link:hover {
    border-color: var(--lw-gold);
    background: var(--lw-gold);
    color: var(--lw-charcoal);
}

/* ==========================================================
   Event modal responsive styles
   ========================================================== */

@media (max-width: 760px) {
    .lw-event-modal {
        width: min(94vw, 620px);
        max-height: 88vh;
        overflow-y: auto;
    }

    .lw-event-modal__layout {
        grid-template-columns: 1fr;
    }

    .lw-event-modal__poster-wrap {
        max-height: 330px;
    }

    .lw-event-modal__poster {
        aspect-ratio: 1.3 / 1;
    }

    .lw-event-modal__content {
        padding: 1.35rem;
    }

    .lw-event-modal__detail {
        grid-template-columns: 1fr;
        gap: 0.2rem;
        padding: 0.7rem 0;
    }
}

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

.lw-about-page {
    background: var(--lw-cream);
    color: var(--lw-charcoal);
}

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

.lw-about-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(7, 18, 15, 0.97),
            rgba(7, 18, 15, 0.76)),
        url("/wp-content/themes/lost-woods/assets/images/lostwoods-logo.png") center / cover no-repeat;
    color: var(--lw-cream);
}

.lw-about-hero__inner {
    padding: clamp(7rem, 12vw, 10rem) 1.5rem clamp(4.8rem, 8vw, 7rem);
}

.lw-about-kicker {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
    color: var(--lw-gold);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lw-about-kicker::before {
    width: 38px;
    height: 1px;
    background: currentColor;
    content: "";
}

.lw-about-hero__title {
    margin: 0.85rem 0 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(4.7rem, 10vw, 9rem);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.8;
}

.lw-about-hero__intro {
    max-width: 650px;
    margin: 1.5rem 0 0 !important;
    color: rgba(244, 238, 223, 0.8);
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    line-height: 1.65;
}

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

.lw-about-story {
    background: var(--lw-cream);
}

.lw-about-story__inner {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(4.5rem, 8vw, 7.5rem) 1.5rem;
}

.lw-about-story__content {
    align-self: center;
}

.lw-about-story__content h2 {
    margin: 0.9rem 0 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.2rem, 5.7vw, 5.8rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.88;
}

.lw-about-story__content>p:not(.lw-about-kicker) {
    margin: 1rem 0 0;
    color: rgba(17, 24, 22, 0.7);
    font-size: 1rem;
    line-height: 1.75;
}

.lw-about-story__visual {
    align-self: start;
}

.lw-about-story__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 5rem 1.4rem 1.4rem 1.4rem;
    background: var(--lw-forest-dark);
    box-shadow: 0 24px 50px rgba(17, 24, 22, 0.14);
    clip-path: inset(0 round 5rem 1.4rem 1.4rem 1.4rem);
}

.lw-about-story__image-wrap::before {
    position: absolute;
    inset: 0.7rem;
    z-index: 2;
    border: 1px solid rgba(244, 238, 223, 0.54);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.lw-about-story__image {
    width: 100%;
    aspect-ratio: 1.04 / 0.92;
    object-fit: cover;
    transform: scale(1.001) translateZ(0);
    transition: transform 700ms ease;
}

.lw-about-story__image-wrap:hover .lw-about-story__image {
    transform: scale(1.045) translateZ(0);
}

.lw-about-story__image-label {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.8rem;
    color: var(--lw-forest-muted);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

.lw-about-identity {
    background: var(--lw-forest-deep);
    color: var(--lw-cream);
}

.lw-about-identity__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(3.8rem, 7vw, 6.5rem) 1.5rem;
}

.lw-about-identity__heading h2 {
    margin: 0.85rem 0 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.2rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.87;
}

.lw-about-identity__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.lw-about-identity__item {
    padding: 1.25rem;
    border: 1px solid rgba(244, 238, 223, 0.16);
    border-radius: 1.15rem;
    background: rgba(244, 238, 223, 0.045);
}

.lw-about-identity__item span {
    color: var(--lw-gold);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.lw-about-identity__item h3 {
    margin: 0.75rem 0 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1;
}

.lw-about-identity__item p {
    margin: 0.75rem 0 0;
    color: rgba(244, 238, 223, 0.68);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ==========================================================
   About visit CTA
   ========================================================== */

.lw-about-visit {
    background: var(--lw-cream);
}

.lw-about-visit__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(3.8rem, 7vw, 6.5rem) 1.5rem;
    text-align: center;
}

.lw-about-visit__inner .lw-about-kicker {
    justify-content: center;
}

.lw-about-visit h2 {
    margin: 0.9rem 0 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.3rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 0.85;
}

.lw-about-visit p {
    max-width: 620px;
    margin: 1rem auto 0;
    color: rgba(17, 24, 22, 0.7);
    line-height: 1.7;
}

.lw-about-visit__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.lw-about-visit__primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lw-forest-deep);
    border-radius: 999px;
    background: var(--lw-forest-deep);
    color: var(--lw-cream);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    padding: 0.88rem 1.05rem;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.lw-about-visit__primary-link:hover {
    border-color: var(--lw-gold);
    background: var(--lw-gold);
    color: var(--lw-charcoal);
}

.lw-about-visit__secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: var(--lw-forest-deep);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-about-visit__secondary-link span {
    color: var(--lw-gold);
    font-size: 1rem;
    transition: transform var(--lw-transition);
}

.lw-about-visit__secondary-link:hover span {
    transform: translateX(5px);
}

/* ==========================================================
   About responsive styles
   ========================================================== */

@media (max-width: 820px) {
    .lw-about-story__inner {
        grid-template-columns: 1fr;
    }

    .lw-about-story__visual {
        width: min(100%, 680px);
    }

    .lw-about-identity__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {

    .lw-about-hero__inner,
    .lw-about-story__inner,
    .lw-about-identity__inner,
    .lw-about-visit__inner {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .lw-about-hero__title {
        font-size: clamp(4rem, 18vw, 5.8rem);
    }

    .lw-about-story__image-wrap {
        border-radius: 3.8rem 1.1rem 1.1rem 1.1rem;
        clip-path: inset(0 round 3.8rem 1.1rem 1.1rem 1.1rem);
    }

    .lw-about-visit__actions {
        align-items: center;
        flex-direction: column;
    }
}

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

.lw-contact-page {
    background: var(--lw-cream);
    color: var(--lw-charcoal);
}

/* ==========================================================
   Contact hero
   ========================================================== */

.lw-contact-page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(7, 18, 15, 0.97),
            rgba(7, 18, 15, 0.74)),
        url("/wp-content/themes/lost-woods/assets/images/lostwoods-logo.png") center / cover no-repeat;
    color: var(--lw-cream);
}

.lw-contact-page-hero__inner {
    padding: clamp(7rem, 12vw, 10rem) 1.5rem clamp(4.8rem, 8vw, 7rem);
}

.lw-contact-page-kicker {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
    color: var(--lw-gold);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lw-contact-page-kicker::before {
    width: 38px;
    height: 1px;
    background: currentColor;
    content: "";
}

.lw-contact-page-hero__title {
    margin: 0.85rem 0 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(4.7rem, 10vw, 9rem);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.8;
}

.lw-contact-page-hero__intro {
    max-width: 640px;
    margin: 1.5rem 0 0 !important;
    color: rgba(244, 238, 223, 0.8);
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    line-height: 1.65;
}

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

.lw-contact-page-content {
    background: var(--lw-cream);
}

.lw-contact-page-content__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(2rem, 6vw, 5.5rem);
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(4rem, 7vw, 6.5rem) 1.5rem;
}

/* ==========================================================
   Contact details
   ========================================================== */

.lw-contact-page-details {
    align-self: start;
}

.lw-contact-page-details h2,
.lw-contact-page-form-wrap h2 {
    margin: 0.9rem 0 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.3rem, 5.8vw, 5.8rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.86;
}

.lw-contact-page-details__intro,
.lw-contact-page-form-wrap__intro {
    margin: 1rem 0 0;
    color: rgba(17, 24, 22, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

.lw-contact-page-details__list {
    margin-top: 1.7rem;
    border-top: 1px solid rgba(16, 37, 31, 0.18);
}

.lw-contact-page-details__item {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(16, 37, 31, 0.18);
}

.lw-contact-page-details__label {
    display: block;
    color: var(--lw-gold);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lw-contact-page-details__item p,
.lw-contact-page-details__item a {
    display: block;
    margin: 0.4rem 0 0;
    color: var(--lw-forest-deep);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: 1.28rem;
    line-height: 1.25;
    text-decoration: none;
}

.lw-contact-page-details__item a:hover {
    color: var(--lw-gold);
}

.lw-contact-page-details__directions {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    margin-top: 1.2rem;
    color: var(--lw-forest-deep);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-contact-page-details__directions span {
    color: var(--lw-gold);
    font-size: 1rem;
    transition: transform var(--lw-transition);
}

.lw-contact-page-details__directions:hover span {
    transform: translateX(5px);
}

/* ==========================================================
   Reservation form
   ========================================================== */

.lw-contact-page-form-wrap {
    align-self: start;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border: 1px solid rgba(16, 37, 31, 0.18);
    border-radius: 1.35rem;
    background: var(--lw-warm-white);
    box-shadow: 0 14px 30px rgba(17, 24, 22, 0.07);
}

.lw-contact-page-form {
    margin-top: 1.4rem;
}

.lw-contact-page-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.lw-contact-page-form__field {
    display: block;
    margin-top: 1rem;
}

.lw-contact-page-form__grid .lw-contact-page-form__field {
    margin-top: 0;
}

.lw-contact-page-form__field span {
    display: block;
    margin-bottom: 0.38rem;
    color: var(--lw-forest-deep);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lw-contact-page-form__field input,
.lw-contact-page-form__field textarea {
    width: 100%;
    border: 1px solid rgba(16, 37, 31, 0.2);
    border-radius: 0.72rem;
    background: rgba(244, 238, 223, 0.42);
    color: var(--lw-charcoal);
    font: inherit;
    padding: 0.75rem 0.82rem;
    transition:
        border-color var(--lw-transition),
        background-color var(--lw-transition),
        box-shadow var(--lw-transition);
}

.lw-contact-page-form__field textarea {
    resize: vertical;
}

.lw-contact-page-form__field input:focus,
.lw-contact-page-form__field textarea:focus {
    border-color: var(--lw-gold);
    background: var(--lw-warm-white);
    box-shadow: 0 0 0 3px rgba(184, 155, 100, 0.16);
    outline: none;
}

.lw-contact-page-form__honeypot {
    position: absolute;
    left: -9999px;
}

.lw-contact-page-form__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.2rem;
    border: 1px solid var(--lw-forest-deep);
    border-radius: 999px;
    background: var(--lw-forest-deep);
    color: var(--lw-cream);
    cursor: pointer;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    padding: 0.9rem 1.1rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.lw-contact-page-form__button:hover {
    border-color: var(--lw-gold);
    background: var(--lw-gold);
    color: var(--lw-charcoal);
}

.lw-contact-page-form__note {
    margin: 0.85rem 0 0;
    color: rgba(17, 24, 22, 0.6);
    font-size: 0.78rem;
    line-height: 1.55;
}

/* ==========================================================
   Call section
   ========================================================== */

.lw-contact-page-call {
    background: var(--lw-forest-deep);
    color: var(--lw-cream);
}

.lw-contact-page-call__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(3.5rem, 6vw, 5.5rem) 1.5rem;
    text-align: center;
}

.lw-contact-page-call__inner .lw-contact-page-kicker {
    justify-content: center;
}

.lw-contact-page-call h2 {
    margin: 0.9rem 0 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.3rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 0.85;
}

.lw-contact-page-call a {
    display: inline-flex;
    margin-top: 1.3rem;
    border: 1px solid var(--lw-cream);
    border-radius: 999px;
    background: var(--lw-cream);
    color: var(--lw-forest-deep);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    padding: 0.9rem 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.lw-contact-page-call a:hover {
    border-color: var(--lw-gold);
    background: var(--lw-gold);
    color: var(--lw-charcoal);
}

/* ==========================================================
   Contact responsive styles
   ========================================================== */

@media (max-width: 820px) {
    .lw-contact-page-content__inner {
        grid-template-columns: 1fr;
    }

    .lw-contact-page-details {
        max-width: 680px;
    }
}

@media (max-width: 620px) {

    .lw-contact-page-hero__inner,
    .lw-contact-page-content__inner,
    .lw-contact-page-call__inner {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .lw-contact-page-hero__title {
        font-size: clamp(4rem, 18vw, 5.8rem);
    }

    .lw-contact-page-form-wrap {
        padding: 1.1rem;
        border-radius: 1.05rem;
    }

    .lw-contact-page-form__grid {
        grid-template-columns: 1fr;
    }

    .lw-contact-page-form__button {
        width: 100%;
        white-space: normal;
    }
}

/* ==========================================================
   Kitchen preparation videos
   ========================================================== */

.lw-kitchen-prep {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg,
            rgba(10, 25, 21, 1),
            rgba(16, 37, 31, 1));
    color: var(--lw-cream);
}

.lw-kitchen-prep::before {
    position: absolute;
    top: -180px;
    right: -150px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(184, 155, 100, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 42px rgba(184, 155, 100, 0.025),
        0 0 0 92px rgba(184, 155, 100, 0.014);
    content: "";
    pointer-events: none;
}

.lw-kitchen-prep__inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(4.8rem, 8vw, 7.5rem) 1.5rem;
}

/* ==========================================================
   Kitchen preparation heading
   ========================================================== */

.lw-kitchen-prep__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
    align-items: end;
    gap: clamp(2rem, 6vw, 6rem);
    margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.lw-kitchen-prep__heading h2 {
    margin: 0;
    color: var(--lw-cream);
    font-family: "Libertinus Serif Display", Georgia, serif;
    font-size: clamp(3.3rem, 6vw, 6.2rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.86;
}

.lw-kitchen-prep__heading>p {
    margin: 0;
    padding-left: 1.2rem;
    border-left: 1px solid rgba(244, 238, 223, 0.18);
    color: rgba(244, 238, 223, 0.72);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================
   Kitchen preparation grid
   ========================================================== */

.lw-kitchen-prep__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.8rem, 1.7vw, 1.25rem);
}

.lw-kitchen-prep__card {
    margin: 0;
}

/*
 * The original footage is 9:16.
 * A 9:13.5 ratio trims the height slightly without flattening
 * the portrait composition.
 */
.lw-kitchen-prep__video-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9 / 13.5;
    border-radius: 1.2rem;
    background: var(--lw-charcoal);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    clip-path: inset(0 round 1.2rem);
}

.lw-kitchen-prep__video-wrap::before {
    position: absolute;
    inset: 0.5rem;
    z-index: 2;
    border: 1px solid rgba(244, 238, 223, 0.5);
    border-radius: 0.82rem;
    content: "";
    pointer-events: none;
}

.lw-kitchen-prep__video-wrap::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top,
            rgba(7, 18, 15, 0.45),
            transparent 44%);
    content: "";
    pointer-events: none;
}

.lw-kitchen-prep__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001) translateZ(0);
    transition:
        transform 700ms ease,
        filter 700ms ease;
}

.lw-kitchen-prep__card:hover .lw-kitchen-prep__video {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.045) translateZ(0);
}

.lw-kitchen-prep__number {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 3;
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid rgba(244, 238, 223, 0.42);
    border-radius: 50%;
    background: rgba(16, 37, 31, 0.78);
    color: var(--lw-gold);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    backdrop-filter: blur(8px);
}

.lw-kitchen-prep__card figcaption {
    padding: 0.75rem 0.1rem 0;
    color: rgba(244, 238, 223, 0.72);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ==========================================================
   Kitchen preparation responsive styles
   ========================================================== */

@media (max-width: 920px) {
    .lw-kitchen-prep__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 620px) {
    .lw-kitchen-prep__inner {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .lw-kitchen-prep__heading {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .lw-kitchen-prep__heading>p {
        padding-left: 1rem;
    }

    /*
	 * Keep the portrait cards readable on narrow screens.
	 * Visitors can swipe horizontally through the four clips.
	 */
    .lw-kitchen-prep__grid {
        display: flex;
        gap: 0.85rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .lw-kitchen-prep__card {
        width: min(72vw, 270px);
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .lw-kitchen-prep__video-wrap {
        aspect-ratio: 9 / 13;
        border-radius: 1rem;
        clip-path: inset(0 round 1rem);
    }

    .lw-kitchen-prep__video-wrap::before {
        inset: 0.42rem;
        border-radius: 0.68rem;
    }
}