:root {
    --paper: #edf6f0;
    --ink: #0f2418;
    --ink-soft: #264334;
    --sand: #deede3;
    --green-dark: #3b4b25;
    --green: #4e6a34;
    --green-light: #617a45;
    --gold: #4e6a34;
    --gold-deep: #3b4b25;
    --muted: #4e6757;
    --line: rgba(78, 106, 52, 0.28);
    --charcoal: #0d2a1c;
    --white: #ffffff;
    --header-h: 72px;
    --ff-head: 'Cormorant Garamond', serif;
    --ff-body: 'Jost', sans-serif;
    --curve: cubic-bezier(.22, .61, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--ff-body);
    line-height: 1.7;
}

.top-banner {
    background: #3b4b25;
    color: #d3e5d9;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 16px;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: #4e6a34;
    backdrop-filter: blur(10px);
}

.site-nav .wrap {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.site-nav .logo {
    display: flex;
    align-self: stretch;
    align-items: center;
    height: 100%;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(145deg, #617a45, #4e6a34);
    color: #0b2014;
    display: grid;
    place-items: center;
    font-family: var(--ff-head);
    font-size: 16px;
    font-weight: 600;
}

.logo-mark:has(img) {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.site-nav .logo-mark:has(img) {
    height: 100%;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-mark:has(img) img {
    width: auto;
    height: auto;
    max-height: 52px;
    max-width: min(220px, 42vw);
    object-fit: contain;
    object-position: center;
}

.logo:has(.logo-mark img) > span:last-child {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d3e5d9;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.locale-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
}

.locale-switcher a {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease;
}

.locale-switcher a.active,
.locale-switcher a:hover {
    background: rgba(255, 255, 255, 0.16);
    /*     color: var(--gold); */
}

.btn-booking {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 10px 14px;
    transition: all .3s cubic-bezier(.22, .61, .36, 1);
    will-change: background, border-color, color;
}

.btn-booking:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
}

.btn-booking:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    overflow: hidden;
}

.hero-track {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform 1.4s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(11, 42, 28, 0.18) 0%, rgba(11, 42, 28, 0.68) 100%),
        radial-gradient(circle at 15% 20%, rgba(78, 106, 52, 0.24), transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - var(--header-h));
    display: grid;
    place-items: center;
    text-align: center;
    padding: 48px 20px;
    color: #fff;
}

.hero-label {
    font-size: 11px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: #cde9d8;
    margin-bottom: 16px;
}

.hero h1 {
    margin: 0;
    font-family: var(--ff-head);
    font-size: clamp(44px, 8vw, 74px);
    line-height: 0.95;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.hero h1 em {
    font-style: italic;
    color: #cde9d8;
    text-transform: none;
}

.hero-sub {
    margin-top: 18px;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
    margin-top: 28px;
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.64);
    color: #fff;
    background: transparent;
    padding: 12px 18px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all .25s var(--curve);
}

.btn-outline-light:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: #fff;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.hero-dot.active {
    background: #fff;
}

.section {
    padding: 92px 0;
}

.container-wide {
    width: min(1220px, 92%);
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    margin: 0;
    font-family: var(--ff-head);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    line-height: 1;
    color: var(--ink);
    text-transform: uppercase;
}

.section-divider {
    width: 54px;
    height: 1px;
    background: var(--gold);
    margin: 16px 0 24px;
}

.intro-strip {
    background:
        radial-gradient(circle at 90% 20%, rgba(78, 106, 52, 0.12), transparent 40%),
        var(--sand);
    text-align: center;
    padding: 78px 16px;
}

.intro-copy {
    max-width: 760px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 2;
    letter-spacing: 0.03em;
}

.badge-row {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.badge-pill {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.46);
}

.quick-links {
    position: sticky;
    top: calc(var(--header-h) + 8px);
    z-index: 50;
    background: rgba(237, 246, 240, 0.92);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.quick-links .inner {
    width: min(1220px, 92%);
    margin: 0 auto;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
}

.quick-links a {
    white-space: nowrap;
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 2px;
    border-bottom: 1px solid transparent;
}

.quick-links a:hover {
    color: var(--ink);
}

.quick-links a.active {
    color: var(--ink);
    border-bottom-color: var(--gold);
}

.room-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 210px));
    gap: 1px;
    background: var(--line);
    margin: 16px 0 28px;
    justify-content: start;
}

.room-summary-card {
    background: var(--paper);
    border: none;
    text-align: center;
    padding: 1rem .85rem;
    cursor: pointer;
    transition: all .25s var(--curve);
}

.room-summary-card:hover {
    background: var(--sand);
}

.room-summary-card.active {
    background: var(--ink);
    color: #fff;
}

.room-summary-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: .65rem;
}

.room-summary-card .rs-label {
    font-family: var(--ff-head);
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: .15rem;
}

.room-summary-card.active .rs-label {
    color: #cde9d8;
}

.room-summary-card .rs-type {
    font-size: .64rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}

.room-summary-card.active .rs-type {
    color: rgba(255, 255, 255, 0.8);
}

.room-summary-card .rs-pet {
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: .2rem;
    color: var(--muted);
}

.room-summary-card.active .rs-pet {
    color: rgba(255, 255, 255, 0.68);
}

.room-type-code {
    display: inline-block;
    border: 1px solid var(--line);
    padding: 3px 10px;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.room-type-name {
    font-family: var(--ff-head);
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 4px;
}

.room-type-meta {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.room-panel {
    display: none;
    margin-top: 22px;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}

.room-panel.active {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.room-gallery {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(240px, 1fr);
    grid-auto-rows: 152px;
    grid-auto-flow: dense;
    gap: 12px;
    padding: 12px;
    background: #deede3;
}

.room-gallery .photo {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #c7e0d2;
    box-shadow: 0 10px 24px rgba(11, 42, 28, 0.08);
    transition: transform .3s cubic-bezier(.22, .61, .36, 1), box-shadow .3s ease;
    will-change: transform, box-shadow;
}

.room-gallery .photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .45s cubic-bezier(.22, .61, .36, 1), filter .45s ease;
    will-change: transform, filter;
}

.room-gallery .photo:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(11, 42, 28, 0.12);
}

.room-gallery .photo:hover img {
    transform: scale(1.04);
    filter: brightness(1.04);
}

.room-gallery .photo.feature {
    grid-column: 1;
    grid-row: span 2;
}

.room-gallery .photo:not(.feature) {
    grid-column: 2;
}

.room-gallery .photo:nth-child(n + 2):not(.feature) {
    min-height: 152px;
}

.room-info {
    background: var(--charcoal);
    color: #fff;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.room-info h3 {
    margin: 0;
    font-family: var(--ff-head);
    font-size: 42px;
    line-height: .95;
    font-weight: 300;
    text-transform: uppercase;
}

.room-info .meta {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.room-list {
    margin: 16px 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.room-list li {
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.pet-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pet-chip.on {
    color: #cde9d8;
    border-color: rgba(78, 106, 52, 0.72);
    background: rgba(78, 106, 52, 0.14);
}

.pet-chip.off {
    color: rgba(255, 255, 255, 0.68);
}

.pet-policy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.73);
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-reserve {
    margin-top: auto;
    display: inline-block;
    text-decoration: none;
    border: 1px solid transparent;
    background: var(--gold);
    color: #fff;
    padding: 11px 14px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    transition: all .25s var(--curve);
}

.btn-reserve:hover {
    background: var(--gold-deep);
    color: #fff;
}

.facility-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    background: transparent;
}

.facility-item {
    background: #fff;
    padding: 0;
    width: 240px;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(11, 42, 28, 0.04);
    transition: transform 0.4s var(--curve), box-shadow 0.4s var(--curve), border-color 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.facility-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(11, 42, 28, 0.08);
    border-color: var(--gold);
}

.facility-item i {
    display: block;
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 12px;
    transition: transform 0.3s var(--curve);
}

.facility-item .facility-img-wrap {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: var(--paper);
}

.facility-item img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    transition: transform 0.7s var(--curve);
    object-fit: cover;
}

.facility-item:hover i,
.facility-item:hover img {
    transform: scale(1.08);
}

.facility-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    line-height: 1.4;
    padding: 18px 16px;
    font-weight: 500;
}

.checkin-section {
    background: var(--charcoal);
    color: #fff;
}

.checkin-section .section-title {
    color: #fff;
}

.checkin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.checkin-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    padding: 22px;
    display: flex;
    gap: 12px;
}

.checkin-num {
    color: #cde9d8;
    font-family: var(--ff-head);
    font-size: 42px;
    line-height: .9;
    flex: 0 0 auto;
}

.checkin-card h4 {
    margin: 0 0 4px;
    font-family: var(--ff-head);
    font-size: 23px;
    font-weight: 400;
}

.checkin-card p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.74);
}

.info-box {
    border-left: 2px solid var(--gold);
    background: #fff;
    padding: 14px 16px;
    margin-bottom: 12px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.9;
}

.access-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: start;
}

.access-item {
    display: flex;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.access-item i {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--gold);
    flex: 0 0 34px;
    font-size: 14px;
}

.access-item h4 {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
}

.access-item p {
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.8;
}

.map-frame {
    width: 100%;
    min-height: 360px;
    border: 0;
    background: #d7eadf;
}

.enjoy-section {
    background: var(--charcoal);
    color: #fff;
    padding: 0;
}

.enjoy-head {
    text-align: center;
    padding: 56px 12px 32px;
}

.enjoy-head .section-title {
    color: #fff;
}

.enjoy-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 6px;
    padding: 0 6px 6px;
}

.enjoy-gallery .img-wrap {
    overflow: hidden;
    position: relative;
}

.enjoy-gallery .img-wrap.feature {
    grid-row: span 2;
}

.enjoy-gallery .shot {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.enjoy-gallery .img-wrap:hover .shot {
    transform: scale(1.05);
}

.faq-wrap .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
}

.faq-wrap .accordion-button {
    background: transparent;
    box-shadow: none;
    color: var(--ink);
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 18px 0;
}

.faq-wrap .accordion-body {
    color: var(--ink-soft);
    font-size: 14px;
    padding: 0 0 18px;
}

.doc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.doc-links a {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 12px;
}

.site-footer {
    background: var(--charcoal);
    color: #ffffff;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .brand {
    font-family: var(--ff-head);
    font-size: 1.4rem;
    letter-spacing: 0.16em;
    color: #ffffff;
    display: block;
    margin-bottom: 0.55rem;
    font-weight: 600;
}

.site-footer .brand span {
    color: var(--gold);
}

.site-footer .contact-info {
    font-size: 0.78rem;
    line-height: 2;
    letter-spacing: 0.08em;
}

.site-footer .contact-info a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer .contact-info a:hover {
    color: var(--gold);
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
}

.site-footer a:hover {
    /*! color: var(--gold); */
}

.site-footer .footer-label {
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.site-footer .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-footer .footer-nav a {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.25s ease;
}

.site-footer .footer-nav a:hover {
    color: var(--gold);
}

.site-footer .group-copy {
    font-size: 0.78rem;
    color: #ffffff;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.site-footer .btn-book-lite {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    padding: 0.78rem 1.5rem;
    transition: background 0.25s ease, color 0.25s ease;
}

.site-footer .btn-book-lite:hover {
    background: #ffffff;
    color: var(--charcoal);
}

.site-footer .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.74rem;
    letter-spacing: 0.09em;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.9rem;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.site-footer .social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.site-footer .copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.22, .61, .36, 1), transform .6s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .room-panel.active {
        grid-template-columns: 1fr;
    }

    .access-grid {
        grid-template-columns: 1fr;
    }

    .enjoy-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .enjoy-gallery .img-wrap.feature {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 820px) {
    .nav-links {
        display: none;
    }

    .nav-actions {
        margin-left: auto;
    }

    .hero h1 {
        font-size: clamp(38px, 13vw, 62px);
        line-height: 1.03;
    }

    .section {
        padding: 72px 0;
    }

    .room-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
        grid-auto-flow: row;
        padding: 0;
    }

    .room-gallery .photo.feature {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 240px;
    }

    .room-gallery .photo:not(.feature) {
        grid-column: span 1;
    }

    .checkin-grid {
        grid-template-columns: 1fr;
    }
}