:root {
    --primary: #1c1915;
    --secondary: #3f4a3c;
    --ink: var(--primary);
    --sage: var(--secondary);
    --paper: #f3eee4;
    --clay: var(--secondary);
    --muted: #7a7268;
    --line: #d9d0c3;
    --display: "Cormorant Garamond", Georgia, serif;
    --sans: "Outfit", system-ui, sans-serif;
    --font-scale: 1.1;
    --gutter: clamp(1.15rem, 3.2vw, 2.75rem);
    --header-height: 5.55rem;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    font-size: calc(16px * var(--font-scale));
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.65;
}

a { color: inherit; }
img { max-width: 100%; }

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--primary);
    color: var(--paper);
    padding: .5rem 1rem;
}
.skip-link:focus { left: 0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .55rem var(--gutter);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-family: var(--display);
    font-size: 1.45rem;
    text-decoration: none;
    font-weight: 600;
}
.brand-logo {
    display: block;
    height: 4.35rem;
    width: auto;
    max-width: min(18rem, 56vw);
    object-fit: contain;
    background: transparent;
}

.site-nav {
    display: flex;
    gap: 1.35rem;
    align-items: center;
    font-size: 1rem;
}
.site-nav a { text-decoration: none; }
.nav-cta {
    background: var(--primary);
    color: var(--paper) !important;
    padding: .45rem 1rem;
    border-radius: 999px;
}
.nav-toggle { display: none; }

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    display: grid;
    place-items: end start;
    padding: 8vh var(--gutter) 10vh;
    background:
        linear-gradient(180deg, transparent 20%, var(--primary) 100%),
        var(--secondary);
    color: var(--paper);
}
.hero-photo {
    background: var(--primary);
}
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
    transform: scale(1);
    animation: hero-zoom 22s ease-out forwards;
}
.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgb(0 0 0 / .15) 20%, var(--primary) 100%);
    pointer-events: none;
}
.hero-copy {
    position: relative;
    z-index: 2;
}

.page-photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 var(--gutter) 3rem;
}
.feature-photo {
    position: relative;
    width: min(500px, 100%);
    margin: 0;
    height: auto;
    background: #e8e2d8;
    overflow: hidden;
    box-shadow: 0 .5rem 1.25rem rgb(28 25 21 / .18);
}
.page-photos:has(.feature-photo:nth-child(2)) .feature-photo {
    width: min(22rem, 100%);
}
.page-photos:has(.feature-photo:only-child) .feature-photo {
    width: min(22rem, 100%);
    border-radius: .85rem;
}
.about-split {
    display: grid;
    gap: 2.5rem;
    align-items: start;
    width: 100%;
    max-width: min(72rem, 100%);
    margin-inline: auto;
}
@media (min-width: 720px) {
    .about-split {
        grid-template-columns: minmax(0, 1fr) min(24rem, 40%);
    }
}
.about-split .page-photos {
    padding: 0;
    justify-content: flex-start;
}
.about-split .feature-photo {
    width: 100%;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}
.about-split .feature-photo img {
    border-radius: .85rem;
    box-shadow: 0 .5rem 1.25rem rgb(28 25 21 / .18);
}
.about-split .feature-photo-caption {
    position: static;
    color: inherit;
    text-shadow: none;
    margin-top: .75rem;
    text-align: center;
}
.feature-photo img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: unset;
    display: block;
}
.feature-photo-caption {
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .8rem;
    color: #fff;
    text-shadow: 0 1px 12px #0008;
    font-size: .85rem;
}
@keyframes hero-zoom {
    from { transform: scale(1); }
    to { transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-media img { animation: none; }
}
.hero h1 {
    font-family: var(--display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: .95;
    margin: 0 0 1rem;
    font-weight: 500;
    max-width: 12ch;
}
.hero p { max-width: min(42rem, 100%); font-size: 1.2rem; }
.btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--paper);
    color: var(--ink);
    text-decoration: none;
    padding: .75rem 1.3rem;
    border-radius: 999px;
    border: 0;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    width: auto;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
button.btn {
    font: inherit;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 500;
}
.btn-dark {
    background: var(--primary);
    color: var(--paper);
}
.btn-ghost {
    background: transparent;
    color: inherit;
    border: 1px solid currentColor;
}

.section { padding: 5rem var(--gutter); }
.section-narrow { max-width: min(88rem, 100%); }
.kicker {
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: .8rem;
    color: var(--secondary);
    margin: 0 0 .6rem;
}
.hero .kicker {
    color: color-mix(in srgb, var(--paper) 82%, var(--secondary));
}
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.15; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 1rem; }

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}
.stat {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}
.stat strong {
    display: block;
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--primary);
}

.amenity-list {
    columns: 2;
    gap: 3rem;
    padding: 0;
    list-style: none;
}
.amenity-list li {
    padding: .45rem 0;
    border-bottom: 1px solid var(--line);
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.5rem;
}
.cards:has(.card:nth-child(4)) {
    justify-content: center;
}
.card {
    background: #fffdf8;
    padding: 1.5rem;
    border: 1px solid var(--line);
    box-sizing: border-box;
    flex: 0 1 calc((100% - 3rem) / 3);
    max-width: calc((100% - 3rem) / 3);
}
.card h3 { margin-top: 0; font-size: 1.7rem; }

.cards-carousel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .75rem;
}
.cards-carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: .15rem 0;
}
.cards-carousel-track::-webkit-scrollbar { display: none; }
.cards-carousel .card {
    flex: 0 0 calc((100% - 3rem) / 3);
    max-width: none;
    scroll-snap-align: start;
}
.carousel-nav {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fffdf8;
    color: var(--ink);
    font: inherit;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}
.carousel-nav:disabled {
    opacity: .35;
    cursor: default;
}

.gallery-frame {
    position: relative;
    height: 100vh;
    background: var(--primary);
}
.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-caption {
    position: absolute;
    left: var(--gutter);
    bottom: 2.5rem;
    color: #fff;
    text-shadow: 0 1px 12px #0008;
    font-size: .95rem;
}

.gallery-masonry {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    padding: 0 var(--gutter) 5rem;
}
.section .gallery-masonry {
    padding: 0;
}
.gallery-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.gallery-masonry .gallery-frame {
    height: auto;
    margin: 0;
    overflow: hidden;
    background: #e8e2d8;
}
.gallery-masonry .gallery-frame img {
    height: auto;
    object-fit: unset;
}
.gallery-masonry .gallery-caption {
    left: .85rem;
    right: .85rem;
    bottom: .8rem;
    font-size: .85rem;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.gallery-title { font-weight: 600; }
.gallery-link {
    color: inherit;
    text-decoration: none;
    display: block;
}
.gallery-masonry .gallery-link img {
    transition: transform .35s ease, opacity .35s ease;
}
.gallery-masonry .gallery-link:hover img {
    transform: scale(1.03);
    opacity: .92;
}

.form {
    display: grid;
    gap: 1rem;
    max-width: min(52rem, 100%);
}
@media (min-width: 800px) {
    .form-contact {
        grid-template-columns: 1fr 1fr;
        max-width: none;
        gap: 1rem 1.5rem;
    }
    .form-contact > .span-2,
    .form-contact > .flash,
    .form-contact > .hint,
    .form-contact > .js-summary {
        grid-column: 1 / -1;
    }
}
.form .btn {
    margin-top: .35rem;
    justify-self: start;
}
label { font-size: .95rem; color: var(--muted); }
input, textarea, select {
    width: 100%;
    padding: .7rem .8rem;
    border: 1px solid var(--line);
    background: #fffdf8;
    font: inherit;
    color: var(--ink);
}
.flash {
    padding: .9rem 1rem;
    background: #e7efe4;
    border: 1px solid #c3d4bc;
    margin-bottom: 1.2rem;
}
.flash-error { background: #f7e6e1; border-color: #e3c1b6; }
.flash-error ul,
.validation-summary-errors ul {
    margin: .4rem 0 0;
    padding-left: 1.2rem;
}
.validation-summary-valid { display: none; }
input.is-invalid,
textarea.is-invalid,
select.is-invalid,
.input-validation-error {
    border-color: #b42318;
    background: #fdf2f0;
}
.field-error,
.field-validation-error {
    display: block;
    color: #b42318;
    font-size: .88rem;
    margin-top: .35rem;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    max-width: 28rem;
}
.calendar span, .calendar button {
    aspect-ratio: 1;
    border: 0;
    background: #fffdf8;
    font: inherit;
    font-size: .85rem;
}
.calendar .muted { color: var(--muted); background: transparent; }
.calendar .busy { background: #e8ddd4; color: var(--muted); text-decoration: line-through; }
.calendar .picked { background: var(--primary); color: var(--paper); }
.cal-head { font-size: .7rem; color: var(--muted); background: transparent; }

.rules {
    white-space: pre-wrap;
    background: #fffdf8;
    padding: 1.5rem;
    border: 1px solid var(--line);
}

.back-to-top {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 30;
    width: 2.7rem;
    height: 2.7rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--primary);
    color: var(--paper);
    text-decoration: none;
    font-size: 1.15rem;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(.55rem);
    transition: opacity .35s ease, transform .35s ease, visibility .35s;
    box-shadow: 0 .35rem 1rem rgb(28 25 21 / .22);
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .back-to-top { transition: none; }
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem var(--gutter);
    border-top: 1px solid var(--line);
    font-size: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .4rem; }
.footer-links a { text-decoration: none; }
.footer-social { display: flex; gap: 1rem; flex-wrap: wrap; margin: .6rem 0 0; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    text-decoration: none;
}
.footer-social a:hover { text-decoration: underline; }
.social-icon {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
}

.map-embed {
    width: 100%;
    height: 22rem;
    border: 0;
    margin: 1.2rem 0 1.6rem;
    background: #e8e2d8;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-map {
    position: relative;
    min-height: 78vh;
    background: #e8e2d8;
}
.contact-map-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.contact-map-host {
    position: absolute;
    inset: 0;
}
.contact-map-consent {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    padding: 1.5rem;
    text-align: center;
    background: #e8e2d8;
    z-index: 1;
}
.contact-map-consent p {
    margin: 0;
    max-width: 22rem;
    color: var(--muted);
}
.contact-card {
    position: absolute;
    top: 50%;
    right: max(2rem, 5vw);
    transform: translateY(-50%);
    width: min(22.5rem, calc(100% - 3rem));
    background: #fff;
    padding: 2.1rem 1.9rem 1.6rem;
    box-shadow: 0 18px 50px rgb(28 25 21 / .16);
    z-index: 2;
}
.contact-card h2 {
    font-family: var(--sans);
    font-size: 1.7rem;
    font-weight: 600;
    margin: 0 0 1.4rem;
}
.contact-card h2 span {
    color: var(--secondary);
    font-weight: 600;
}
.contact-label {
    font-weight: 600;
    margin: 0 0 .35rem;
}
.contact-value {
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ece8e1;
    color: #3a3834;
    line-height: 1.5;
}
.contact-card .contact-value:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.contact-value a { text-decoration: none; }

.event-card {
    max-width: none;
    margin: 0 0 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}
.event-card.has-media {
    display: flex;
    align-items: stretch;
    gap: 2.25rem;
    max-width: none;
    width: auto;
    margin: 0 0 2.5rem;
    min-height: calc(100dvh - 5rem);
    padding: 0;
    border-bottom: none;
}
.event-card-media {
    flex: 1 1 48%;
    min-width: 0;
    min-height: calc(100dvh - 5rem);
    background: #e8e2d8;
}
.event-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: calc(100dvh - 5rem);
    object-fit: cover;
}
.event-card-body {
    flex: 1 1 48%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 1.25rem 2.5rem 0;
}
.event-card.has-media h3 {
    font-family: var(--display);
    font-size: clamp(2.1rem, 4.5vw, 3.6rem);
    line-height: 1.1;
    font-weight: 500;
}
.event-card h3 { margin: 0 0 .35rem; font-size: 1.6rem; }
.event-card.is-past { opacity: .8; }
.event-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .2rem 1rem;
    margin: 0 0 .15rem;
}
.event-date {
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .8rem;
    color: var(--muted);
    margin: 0;
}
.event-time {
    font-size: .9rem;
    color: var(--muted);
}
.event-card-body .small { margin: 0 0 .15rem; }

.page-hero { padding: 7rem var(--gutter) 2rem; }
.page-hero:not(.page-hero-banner) + .section { padding-top: 0; }
.page-hero-banner + .section { padding-top: 2.25rem; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); margin: 0; }
.page-hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 13.5rem;
    display: grid;
    align-items: end;
    padding: calc(var(--header-height) + .85rem) var(--gutter) 1.35rem;
    color: var(--paper);
    background: var(--primary);
}
.page-hero-banner.is-regular { min-height: 18rem; }
.page-hero-banner.is-tall { min-height: 24rem; }
.page-hero-banner.is-compact h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
.page-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
}
.page-hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgb(0 0 0 / .18) 15%, var(--primary) 100%);
    pointer-events: none;
}
.page-hero-copy { position: relative; z-index: 2; }
.page-hero-banner .kicker {
    color: color-mix(in srgb, var(--paper) 82%, var(--secondary));
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
    gap: 1.25rem;
}
.product-card {
    background: #fffdf8;
    border: 1px solid var(--line);
    overflow: hidden;
}
.product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.product-body { padding: 1.1rem 1.2rem 1.3rem; }
.product-body h2 { font-size: 1.55rem; margin: 0 0 .4rem; }
.product-price {
    font-family: var(--display);
    font-size: 1.45rem;
    margin: .8rem 0 0;
}
.product-price span {
    font-family: var(--sans);
    font-size: .85rem;
    color: var(--muted);
}
.small { font-size: .9rem; color: var(--muted); }

@media (max-width: 1100px) {
    .card {
        flex-basis: calc((100% - 1.5rem) / 2);
        max-width: calc((100% - 1.5rem) / 2);
    }
    .cards-carousel .card {
        flex-basis: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
        background: none;
        border: 1px solid var(--line);
        padding: .35rem .7rem;
        font: inherit;
    }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem var(--gutter) 1.4rem;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
    }
    .site-nav.is-open { display: flex; }
    .stats, .amenity-list { grid-template-columns: 1fr; columns: 1; }
    .card {
        flex-basis: 100%;
        max-width: none;
    }
    .cards-carousel .card {
        flex-basis: 85%;
    }
    .site-footer { flex-direction: column; }
    .event-card.has-media {
        flex-direction: column;
        gap: 1.25rem;
        min-height: 0;
        margin-bottom: 2rem;
    }
    .event-card-media,
    .event-card-media img {
        flex: none;
        width: 100%;
        min-height: 48dvh;
        height: 48dvh;
    }
    .event-card-body {
        padding: 0 0 1.5rem;
    }
    .contact-map {
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
    .contact-map-frame {
        position: relative;
        height: 52vh;
        min-height: 18rem;
    }
    .contact-map-host {
        position: relative;
        height: 52vh;
        min-height: 18rem;
    }
    .contact-card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: auto;
        margin: 1.25rem;
    }
}

.cookie-bar:not([hidden]) {
    position: sticky;
    bottom: 0;
    z-index: 40;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem var(--gutter);
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgb(28 25 21 / .1);
}
.cookie-bar p { margin: 0; max-width: 40rem; }
.cookie-bar-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-bar .btn { margin-top: 0; }

.privacy-doc h2 {
    font-size: 1.45rem;
    margin: 2rem 0 .7rem;
}
.privacy-doc ul { padding-left: 1.2rem; }
.privacy-doc li { margin-bottom: .75rem; }

