:root {
    --gold: #b89157;
    --gold-light: #e8d8bb;
    --wine: #6f282d;
    --wine-dark: #43171a;
    --ink: #191714;
    --body: #514b43;
    --cream: #f4efe6;
    --paper: #fbfaf7;
    --white: #ffffff;
    --line: rgba(58, 48, 36, 0.14);
    --shadow: 0 22px 70px rgba(34, 25, 17, 0.12);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;
    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    color: var(--body);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

[id] {
    scroll-margin-top: 100px;
}

.sr-only {
    width: 1px;
    height: 1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: -100px;
    z-index: 3000;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--ink);
    text-decoration: none;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1500;
    height: 82px;
    color: var(--ink);
    background: rgba(251, 250, 247, 0.92);
    border-bottom: 1px solid rgba(184, 145, 87, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    background: rgba(251, 250, 247, 0.98);
    box-shadow: 0 10px 40px rgba(24, 20, 14, 0.08);
}

.nav-wrap {
    width: min(var(--container), calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.brand {
    flex: 0 0 auto;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.brand span {
    color: var(--gold);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1rem, 1.8vw, 1.75rem);
    margin-left: auto;
    list-style: none;
}

.nav-links > li > a:not(.button) {
    position: relative;
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links > li > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.language {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    padding-left: 1rem;
    border-left: 1px solid var(--line);
    color: #938a7e;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.language a {
    text-decoration: none;
}

.language a.active {
    color: var(--gold);
}

.mobile-actions {
    display: none;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    width: 24px;
    height: 1px;
    display: block;
    background: var(--ink);
    content: "";
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span {
    margin: 5px 0;
}

.menu-toggle[aria-expanded="true"] span {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
    transform: translateY(-6px) rotate(-45deg);
}

.button {
    min-height: 48px;
    padding: 0.82rem 1.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: 1px solid var(--ink);
    color: var(--white);
    background: var(--ink);
    font-size: 0.69rem;
    font-weight: 650;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover {
    color: var(--ink);
    background: transparent;
}

.button-gold {
    border-color: var(--gold);
    color: var(--ink);
    background: var(--gold);
}

.button-gold:hover {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.button-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
    background: transparent;
}

.button-light:hover {
    border-color: var(--white);
    color: var(--ink);
    background: var(--white);
}

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

.text-link::after {
    width: 34px;
    height: 1px;
    background: var(--gold);
    content: "";
    transition: width 0.25s ease;
}

.text-link:hover::after {
    width: 52px;
}

.hero {
    min-height: 94svh;
    padding: 150px 24px 80px;
    position: relative;
    display: grid;
    place-items: center;
    color: var(--white);
    background-color: var(--ink);
    background-image: linear-gradient(90deg, rgba(20, 15, 12, 0.78), rgba(20, 15, 12, 0.28)), var(--hero-image);
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(17, 13, 10, 0.52), transparent 48%);
    content: "";
}

.hero-content {
    width: min(var(--container), 100%);
    margin: 0 auto;
}

.hero-copy {
    max-width: 780px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.15rem;
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.23em;
    text-transform: uppercase;
}

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

.hero h1,
.page-hero h1 {
    max-width: 950px;
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(4rem, 8vw, 7.6rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 0.86;
}

.hero h1 em,
.page-hero h1 em {
    color: var(--gold-light);
    font-weight: 500;
}

.hero-copy > p {
    max-width: 670px;
    margin-top: 1.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 350;
}

.hero-actions,
.section-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-facts {
    width: min(var(--container), calc(100% - 48px));
    min-height: 94px;
    margin: -47px auto 0;
    padding: 1.2rem 2rem;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
}

.fact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-right: 1px solid var(--line);
}

.fact:last-child {
    border: 0;
}

.fact i {
    color: var(--gold);
    font-size: 1.15rem;
}

.fact strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.1;
}

.fact span {
    display: block;
    color: #837b70;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.availability-section {
    margin-top: -62px;
    padding: 0 24px;
    position: relative;
    z-index: 6;
}

.availability-card {
    width: min(var(--container), 100%);
    margin: 0 auto;
    padding: clamp(2rem, 3.5vw, 3.4rem);
    color: var(--body);
    background: var(--paper);
    border: 1px solid rgba(184, 145, 87, 0.28);
    box-shadow: 0 28px 80px rgba(32, 23, 15, 0.18);
}

.availability-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    color: inherit;
    list-style: none;
    cursor: pointer;
}

.availability-summary::-webkit-details-marker {
    display: none;
}

.availability-summary::marker {
    content: "";
}

.availability-summary:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 8px;
}

.availability-heading {
    display: block;
    max-width: 820px;
}

.availability-heading .eyebrow {
    color: var(--gold);
}

.availability-title {
    display: block;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    font-weight: 550;
    letter-spacing: -0.035em;
    line-height: 0.95;
}

.availability-description {
    max-width: 690px;
    margin-top: 1rem;
    display: block;
    font-size: 0.96rem;
}

.availability-summary-action {
    min-width: 205px;
    min-height: 52px;
    padding: 0.8rem 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 1px solid var(--gold);
    color: var(--ink);
    background: var(--gold);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.availability-summary:hover .availability-summary-action {
    border-color: var(--ink);
    color: var(--white);
    background: var(--ink);
}

.availability-summary-action i {
    transition: transform 0.25s ease;
}

.availability-label-open {
    display: none;
}

.availability-card[open] .availability-label-closed {
    display: none;
}

.availability-card[open] .availability-label-open {
    display: inline;
}

.availability-card[open] .availability-summary-action i {
    transform: rotate(180deg);
}

.availability-panel {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.availability-card[open] .availability-panel {
    animation: availability-panel-reveal 0.32s ease both;
}

@keyframes availability-panel-reveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.availability-form,
.availability-fields {
    min-width: 0;
}

.availability-fields {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem 0.8rem;
    border: 0;
}

.booking-field {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.booking-field-date,
.booking-field-wide {
    grid-column: span 2;
}

.booking-field-compact {
    grid-column: span 1;
}

.booking-field-full {
    grid-column: 1 / -1;
}

.booking-field label {
    min-height: 2.55rem;
    margin-bottom: 0.45rem;
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.3;
    text-transform: uppercase;
}

.booking-field label i {
    width: 1rem;
    flex: 0 0 1rem;
    color: var(--gold);
    text-align: center;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(58, 48, 36, 0.24);
    border-radius: 2px;
    color: var(--ink);
    background: var(--white);
    font-size: 0.86rem;
    line-height: 1.4;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-field input,
.booking-field select {
    min-height: 54px;
    padding: 0.75rem 0.85rem;
}

.booking-field textarea {
    min-height: 100px;
    padding: 0.9rem;
    resize: vertical;
}

.booking-field input:hover,
.booking-field select:hover,
.booking-field textarea:hover {
    border-color: rgba(184, 145, 87, 0.76);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 145, 87, 0.14);
}

.booking-field [aria-invalid="true"] {
    border-color: var(--wine);
    box-shadow: 0 0 0 2px rgba(111, 40, 45, 0.12);
}

.field-help,
.field-error {
    margin-top: 0.3rem;
    display: block;
    font-size: 0.64rem;
    line-height: 1.4;
}

.field-help {
    color: #746c61;
}

.field-error {
    min-height: 0.9rem;
    color: var(--wine);
    font-weight: 650;
}

.field-error:not(:empty)::before {
    margin-right: 0.3rem;
    content: "!";
}

.availability-submit-row {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--line);
}

.booking-assurance {
    max-width: 690px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #665e54;
    font-size: 0.73rem;
    line-height: 1.6;
}

.booking-assurance i {
    margin-top: 0.22rem;
    flex: 0 0 auto;
    color: var(--gold);
}

.availability-submit-button {
    min-height: 58px;
    border-color: var(--gold);
    color: var(--ink);
    background: var(--gold);
}

.availability-submit-button:hover {
    border-color: var(--ink);
    color: var(--white);
    background: var(--ink);
}

.booking-direct {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.7rem;
    color: #746c61;
    font-size: 0.72rem;
}

.booking-direct a {
    color: var(--ink);
    font-weight: 650;
    text-underline-offset: 3px;
}

.availability-section + .hero-facts {
    margin-top: 2.4rem;
}

.section {
    padding: 7.5rem 24px;
}

.section-sm {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.container {
    width: min(var(--container), 100%);
    margin: 0 auto;
}

.section-head {
    max-width: 750px;
    margin-bottom: 3.2rem;
}

.section-head.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-head.center .eyebrow {
    justify-content: center;
}

.section-head.center .eyebrow::before {
    display: none;
}

.section-title {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 550;
    letter-spacing: -0.035em;
    line-height: 0.95;
}

.section-title em {
    color: var(--wine);
    font-weight: inherit;
}

.section-head > p,
.lead {
    max-width: 720px;
    margin-top: 1.4rem;
    font-size: 1.03rem;
}

.intro-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.intro-images {
    min-height: 590px;
    position: relative;
}

.intro-images img:first-child {
    width: 82%;
    height: 520px;
    margin-left: auto;
    object-fit: cover;
}

.intro-images img:last-child {
    width: 48%;
    height: 260px;
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: cover;
    border: 10px solid var(--paper);
    box-shadow: var(--shadow);
}

.check-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1.5rem;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 0.7rem;
    color: var(--ink);
    font-size: 0.83rem;
    font-weight: 550;
}

.check-list i {
    margin-top: 0.35rem;
    color: var(--gold);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.experience-card {
    min-height: 500px;
    padding: 2rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
}

.experience-card::before,
.experience-card::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
}

.experience-card::before {
    background-image: var(--card-image);
    background-position: var(--image-position, center);
    background-size: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.experience-card::after {
    background: linear-gradient(0deg, rgba(18, 13, 10, 0.86), rgba(18, 13, 10, 0.04) 70%);
}

.experience-card:hover::before {
    transform: scale(1.045);
}

.experience-card span {
    color: var(--gold-light);
    font-size: 0.66rem;
    font-weight: 650;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.experience-card h3 {
    margin: 0.35rem 0 0.5rem;
    font-family: var(--serif);
    font-size: 2.35rem;
    font-weight: 550;
    line-height: 1;
}

.experience-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.86rem;
}

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

.dark-section {
    color: rgba(255, 255, 255, 0.76);
    background: var(--ink);
}

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

.dark-section .section-title em {
    color: var(--gold-light);
}

.room-showcase {
    display: grid;
    grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
}

.photo-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.photo-mosaic img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
}

.photo-mosaic img:first-child {
    grid-column: 1 / -1;
}

.info-note {
    margin-top: 1.8rem;
    padding: 1.2rem 1.3rem;
    display: flex;
    gap: 1rem;
    border-left: 3px solid var(--gold);
    background: rgba(184, 145, 87, 0.1);
    color: var(--body);
    font-size: 0.84rem;
}

.info-note i {
    margin-top: 0.35rem;
    color: var(--gold);
}

.dark-section .info-note {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.77);
}

.dining-feature {
    min-height: 680px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.dining-feature-photo {
    min-height: 540px;
    background-image: var(--feature-image);
    background-position: center;
    background-size: cover;
}

.dining-feature-copy {
    padding: clamp(3rem, 6vw, 6.5rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: rgba(255, 255, 255, 0.76);
    background: var(--wine-dark);
}

.dining-feature-copy .section-title {
    color: var(--white);
}

.dining-feature-copy .eyebrow {
    color: var(--gold-light);
}

.pilgrim-band {
    width: min(var(--container), calc(100% - 48px));
    margin: 7rem auto;
    padding: clamp(3rem, 7vw, 6rem);
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    background: linear-gradient(90deg, rgba(38, 25, 19, 0.94), rgba(38, 25, 19, 0.72)), url("images/exterior/img_5417.webp") center/cover;
    overflow: hidden;
}

.pilgrim-band::after {
    position: absolute;
    top: -30px;
    right: 5%;
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--serif);
    font-size: 16rem;
    line-height: 1;
    content: "✦";
}

.pilgrim-band > * {
    max-width: 760px;
    position: relative;
    z-index: 1;
}

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

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.review-card {
    padding: 2.3rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--white);
}

.review-stars {
    margin-bottom: 1.2rem;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
}

.review-card blockquote {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1.35;
}

.review-card cite {
    margin-top: auto;
    padding-top: 1.7rem;
    display: block;
    color: #837b70;
    font-family: var(--sans);
    font-size: 0.69rem;
    font-style: normal;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.location-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    color: rgba(255, 255, 255, 0.72);
    background: var(--ink);
}

.location-copy {
    padding: clamp(3rem, 6vw, 5.5rem);
}

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

.location-details {
    padding: clamp(3rem, 6vw, 5.5rem);
    display: grid;
    align-content: center;
    gap: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: #24201b;
}

.location-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 1rem;
}

.location-item i {
    margin-top: 0.35rem;
    color: var(--gold);
}

.location-item strong,
.location-item span {
    display: block;
}

.location-item strong {
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
}

.location-item span {
    font-size: 0.83rem;
}

.page-hero {
    min-height: 66svh;
    padding: 150px 24px 70px;
    position: relative;
    display: grid;
    align-items: end;
    color: var(--white);
    background-color: var(--ink);
    background-image: linear-gradient(90deg, rgba(18, 13, 10, 0.76), rgba(18, 13, 10, 0.23)), var(--hero-image);
    background-position: center;
    background-size: cover;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero p {
    max-width: 650px;
    margin-top: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.page-intro {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(2rem, 6vw, 6rem);
}

.page-intro .section-title {
    font-size: clamp(2.8rem, 4.7vw, 4.6rem);
}

.page-intro-copy p + p {
    margin-top: 1rem;
}

.flexibility-banner {
    margin-top: 3rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1.3rem;
    border: 1px solid rgba(184, 145, 87, 0.35);
    background: #f8f3ea;
}

.flexibility-banner i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--wine);
}

.flexibility-banner strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.4rem;
}

.flexibility-banner p {
    font-size: 0.87rem;
}

.sample-list {
    display: grid;
    gap: 7rem;
}

.sample-row {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
}

.sample-row:nth-child(even) {
    grid-template-columns: 0.75fr 1.25fr;
}

.sample-row:nth-child(even) .sample-gallery {
    order: 2;
}

.sample-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.sample-gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
}

.sample-gallery img:first-child {
    grid-column: 1 / -1;
}

.sample-number {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.5rem;
    font-style: italic;
}

.sample-copy h2 {
    margin: 0.4rem 0 1rem;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    font-weight: 550;
    line-height: 0.95;
}

.sample-copy small {
    margin-top: 1rem;
    display: block;
    color: #8b8175;
    font-size: 0.72rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.amenity {
    min-height: 180px;
    padding: 2rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.amenity i {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.25rem;
}

.amenity h3 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
}

.amenity p {
    margin-top: 0.35rem;
    font-size: 0.79rem;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.venue-card {
    border: 1px solid var(--line);
    background: var(--white);
}

.venue-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
}

.venue-card-copy {
    padding: 2rem;
}

.venue-card h2 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 550;
    line-height: 1;
}

.venue-card p {
    margin-top: 0.8rem;
    font-size: 0.86rem;
}

.editorial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.editorial-row:nth-child(even) .editorial-image {
    order: 2;
}

.editorial-image {
    min-height: 540px;
}

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

.editorial-copy {
    padding: clamp(3rem, 7vw, 6.5rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: var(--cream);
}

.editorial-row:nth-child(even) .editorial-copy {
    color: rgba(255, 255, 255, 0.74);
    background: var(--wine-dark);
}

.editorial-row:nth-child(even) .editorial-copy .section-title {
    color: var(--white);
}

.editorial-copy p {
    margin-top: 1.2rem;
}

.gallery-toolbar {
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.filter-button {
    min-height: 42px;
    padding: 0.65rem 1rem;
    border: 1px solid var(--line);
    color: var(--body);
    background: transparent;
    font-size: 0.67rem;
    font-weight: 650;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
    border-color: var(--ink);
    color: var(--white);
    background: var(--ink);
}

.gallery-grid {
    columns: 4 250px;
    column-gap: 0.75rem;
}

.gallery-item {
    width: 100%;
    margin: 0 0 0.75rem;
    position: relative;
    display: inline-block;
    border: 0;
    background: #e8e1d6;
    break-inside: avoid;
    vertical-align: top;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-item[hidden] {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.55s ease;
}

.gallery-item::after {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(25, 20, 16, 0.25);
    font-family: "Font Awesome 6 Free";
    font-size: 1.2rem;
    font-weight: 900;
    content: "\f00e";
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item:hover::after {
    opacity: 1;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2500;
    padding: 64px clamp(20px, 6vw, 90px);
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(12, 10, 8, 0.94);
}

.lightbox.open {
    display: flex;
}

.lightbox-figure {
    max-width: min(1200px, 100%);
    max-height: 100%;
}

.lightbox img {
    max-width: 100%;
    max-height: calc(100vh - 150px);
    margin: auto;
    object-fit: contain;
}

.lightbox figcaption {
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    background: transparent;
    font-size: 1.15rem;
    cursor: pointer;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    top: 50%;
    left: 20px;
}

.lightbox-next {
    top: 50%;
    right: 20px;
}

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

.reviews-page-grid .review-card {
    min-height: 320px;
}

.cta-panel {
    padding: clamp(3rem, 6vw, 5rem);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.72);
    background: var(--wine-dark);
}

.cta-panel h2 {
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 550;
    line-height: 1;
}

.cta-panel p {
    max-width: 680px;
    margin-top: 0.8rem;
}

.site-footer {
    padding: 5.5rem 24px 2rem;
    color: #aaa298;
    background: #11100e;
}

.footer-grid {
    width: min(var(--container), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.9fr 0.8fr;
    gap: 3rem;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 1.3rem;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-brand span {
    color: var(--gold);
    font-weight: 700;
}

.footer-col h2 {
    margin-bottom: 1.2rem;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: #aaa298;
    font-size: 0.8rem;
}

.footer-col ul {
    display: grid;
    gap: 0.6rem;
    list-style: none;
}

.footer-col a {
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--gold-light);
}

.footer-contact p + p {
    margin-top: 0.6rem;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.7rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.footer-bottom {
    width: min(var(--container), 100%);
    margin: 4rem auto 0;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
}

.floating-whatsapp {
    width: 54px;
    height: 54px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1400;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: #1e8e50;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
    font-size: 1.4rem;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.floating-whatsapp:hover {
    background: #177440;
    transform: translateY(-3px);
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

@media (max-width: 1120px) {
    .nav-wrap {
        width: min(100% - 32px, var(--container));
    }

    .mobile-actions {
        display: flex;
    }

    .nav-links {
        width: 100%;
        max-height: calc(100svh - 82px);
        padding: 1.4rem 24px 2rem;
        position: fixed;
        top: 82px;
        right: 0;
        left: 0;
        display: grid;
        justify-items: stretch;
        gap: 0;
        background: var(--paper);
        box-shadow: 0 22px 60px rgba(25, 20, 14, 0.12);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links > li > a:not(.button) {
        padding: 0.9rem 0;
        display: block;
        border-bottom: 1px solid var(--line);
        font-size: 0.75rem;
    }

    .nav-links > li > a:not(.button)::after,
    .nav-links .language {
        display: none;
    }

    .nav-links .button {
        margin-top: 1rem;
    }

    .availability-fields {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .experience-grid,
    .venue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-card:last-child,
    .venue-card:last-child {
        grid-column: 1 / -1;
    }

    .gallery-grid { columns: 3; }

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

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

@media (max-width: 820px) {
    .section {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem;
    }

    .hero {
        min-height: 88svh;
        background-image: linear-gradient(90deg, rgba(20, 15, 12, 0.75), rgba(20, 15, 12, 0.38)), var(--hero-image);
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(3.8rem, 15vw, 6rem);
    }

    .hero-facts {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding: 0;
    }

    .availability-section {
        margin-top: 0;
        padding-top: 2rem;
    }

    .availability-card {
        padding: 2rem;
    }

    .availability-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-field-date,
    .booking-field-wide {
        grid-column: span 1;
    }

    .availability-submit-row {
        grid-template-columns: 1fr;
    }

    .availability-submit-button {
        width: 100%;
    }

    .availability-section + .hero-facts {
        margin-top: 2rem;
    }

    .fact {
        padding: 1.2rem 1.5rem;
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .intro-split,
    .room-showcase,
    .page-intro,
    .sample-row,
    .sample-row:nth-child(even),
    .location-card,
    .dining-feature,
    .editorial-row,
    .reviews-page-grid {
        grid-template-columns: 1fr;
    }

    .intro-images {
        min-height: 530px;
    }

    .room-showcase .photo-mosaic {
        order: -1;
    }

    .dining-feature-copy {
        min-height: 520px;
    }

    .sample-list {
        gap: 5rem;
    }

    .sample-row:nth-child(even) .sample-gallery {
        order: 0;
    }

    .editorial-row:nth-child(even) .editorial-image {
        order: 0;
    }

    .editorial-image {
        min-height: 440px;
    }

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

    .gallery-grid { columns: 2; }

    .location-details {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 0;
    }

    .cta-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .site-header {
        height: 72px;
    }

    .nav-links {
        top: 72px;
        max-height: calc(100svh - 72px);
    }

    .brand {
        font-size: 0.94rem;
        letter-spacing: 0.2em;
    }

    .mobile-actions .language {
        padding-left: 0;
        border: 0;
    }

    .section,
    .page-hero,
    .hero {
        padding-right: 18px;
        padding-left: 18px;
    }

    .hero {
        min-height: 82svh;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(3.25rem, 17vw, 5rem);
    }

    .hero-actions .button,
    .section-actions .button {
        width: 100%;
    }

    .hero-facts {
        width: calc(100% - 36px);
    }

    .availability-section {
        padding-right: 18px;
        padding-left: 18px;
    }

    .availability-card {
        padding: 1.55rem 1.25rem;
    }

    .availability-summary {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .availability-title {
        font-size: clamp(2.55rem, 14vw, 3.7rem);
    }

    .availability-summary-action {
        width: 100%;
    }

    .availability-panel {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .availability-fields {
        grid-template-columns: 1fr;
    }

    .booking-field-date,
    .booking-field-compact,
    .booking-field-wide,
    .booking-field-full {
        grid-column: 1;
    }

    .booking-field label {
        min-height: auto;
    }

    .availability-submit-button {
        min-height: 58px;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .booking-direct {
        align-items: flex-start;
        flex-direction: column;
    }

    .booking-direct > span {
        display: none;
    }

    .section-title {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .check-list,
    .experience-grid,
    .venue-grid,
    .amenities-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .experience-card,
    .experience-card:last-child,
    .venue-card:last-child {
        min-height: 430px;
        grid-column: auto;
    }

    .intro-images {
        min-height: 410px;
    }

    .intro-images img:first-child {
        width: 92%;
        height: 360px;
    }

    .intro-images img:last-child {
        width: 55%;
        height: 190px;
        border-width: 7px;
    }

    .pilgrim-band {
        width: calc(100% - 36px);
        margin-top: 5rem;
        margin-bottom: 5rem;
    }

    .page-hero {
        min-height: 60svh;
        padding-top: 120px;
    }

    .flexibility-banner {
        grid-template-columns: 1fr;
    }

    .dining-feature-photo { min-height: 360px; }
    .dining-feature-copy { min-height: auto; }
    .gallery-grid { columns: 1; }

    .lightbox {
        padding: 60px 14px 72px;
    }

    .lightbox-nav {
        top: auto;
        bottom: 14px;
    }

    .lightbox-prev {
        left: calc(50% - 58px);
    }

    .lightbox-next {
        right: calc(50% - 58px);
    }

    .review-card {
        padding: 1.8rem;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
