:root {
    --green-950: #063f35;
    --green-900: #0a4c40;
    --green-700: #1c6d59;
    --sage: #dfe8dc;
    --cream: #f7f2ea;
    --warm: #e8dccb;
    --sand: #c7a97b;
    --ink: #17221f;
    --muted: #66716d;
    --line: rgba(23, 34, 31, 0.12);
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(10, 76, 64, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "Archivo", Arial, sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

.site-header {
    align-items: center;
    background: rgba(247, 242, 234, 0.86);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    box-shadow: 0 18px 60px rgba(6, 63, 53, 0.08);
    display: flex;
    gap: 28px;
    justify-content: space-between;
    left: 50%;
    max-width: 1180px;
    padding: 14px 18px 14px 24px;
    position: fixed;
    top: 20px;
    transform: translateX(-50%);
    transition: background 180ms ease, box-shadow 180ms ease;
    width: calc(100% - 40px);
    z-index: 20;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 60px rgba(6, 63, 53, 0.14);
}

.brand img {
    height: 48px;
    width: auto;
}

.main-nav {
    align-items: center;
    display: flex;
    gap: 8px;
}

.main-nav a {
    border-radius: 999px;
    color: var(--green-950);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 15px;
}

.main-nav a:hover {
    background: rgba(10, 76, 64, 0.08);
}

.main-nav a.is-active {
    background: rgba(10, 76, 64, 0.1);
}

.main-nav .nav-cta {
    background: var(--green-950);
    color: var(--white);
    padding: 12px 20px;
}

.nav-toggle {
    background: var(--green-950);
    border: 0;
    border-radius: 50%;
    display: none;
    height: 46px;
    padding: 0;
    position: relative;
    width: 46px;
}

.nav-toggle span {
    background: var(--white);
    display: block;
    height: 2px;
    left: 14px;
    position: absolute;
    transition: transform 180ms ease, opacity 180ms ease;
    width: 18px;
}

.nav-toggle span:nth-child(1) {
    top: 16px;
}

.nav-toggle span:nth-child(2) {
    top: 22px;
}

.nav-toggle span:nth-child(3) {
    top: 28px;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    min-height: 92vh;
    overflow: hidden;
    position: relative;
}

.hero-media,
.hero-shade {
    inset: 0;
    position: absolute;
}

.hero-media {
    background-image: url("../img/banner/05.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(6, 63, 53, 0.86) 0%, rgba(6, 63, 53, 0.56) 42%, rgba(6, 63, 53, 0.12) 100%),
        linear-gradient(0deg, rgba(23, 34, 31, 0.38), rgba(23, 34, 31, 0.04));
}

.hero-content {
    color: var(--white);
    max-width: 720px;
    padding: 210px 8vw 120px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: var(--warm);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--green-700);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: "Playfair Display", Georgia, serif;
    line-height: 0.98;
}

h1 {
    font-size: clamp(62px, 10vw, 128px);
    margin-bottom: 26px;
}

h2 {
    color: var(--green-950);
    font-size: clamp(42px, 6vw, 82px);
    margin-bottom: 24px;
}

h3 {
    color: var(--green-950);
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-copy {
    font-size: clamp(19px, 2.1vw, 26px);
    line-height: 1.45;
    margin-bottom: 34px;
    max-width: 650px;
}

.hero-actions,
.hero-points,
.room-tags {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--sand);
    color: var(--ink);
}

.button-primary:hover {
    background: #d8bd8f;
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.hero-points {
    margin-top: 42px;
}

.hero-points span {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 14px;
}

.booking-strip {
    margin: -46px auto 0;
    max-width: 1140px;
    padding: 0 24px;
    position: relative;
    z-index: 4;
}

.booking-form {
    align-items: end;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 18px;
}

.booking-form label {
    display: grid;
    gap: 7px;
}

.booking-form span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.booking-form input,
.booking-form select {
    background: #f7f6f2;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    min-height: 52px;
    padding: 0 14px;
    width: 100%;
}

.intro-section,
.room-section,
.experience-section,
.perks-section,
.reviews-section {
    padding: 110px max(24px, 7vw);
}

.intro-section {
    align-items: center;
    display: grid;
    gap: 60px;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.intro-copy p:not(.eyebrow),
.section-heading > p,
.experience-copy p,
.perk p,
.room-card p,
.site-footer p {
    color: var(--muted);
}

.intro-copy p:not(.eyebrow) {
    font-size: 18px;
    max-width: 620px;
}

.text-link {
    color: var(--green-950);
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    margin-top: 20px;
    position: relative;
}

.text-link::after {
    background: var(--sand);
    bottom: -5px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.image-stack {
    display: grid;
    grid-template-columns: 1fr 0.58fr;
    min-height: 560px;
    position: relative;
}

.image-stack img {
    box-shadow: var(--shadow);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.image-large {
    border-radius: 8px;
    grid-column: 1 / 3;
    grid-row: 1;
}

.image-small {
    align-self: end;
    border: 10px solid var(--cream);
    border-radius: 8px;
    grid-column: 2;
    grid-row: 1;
    height: 62% !important;
    transform: translate(30px, 34px);
}

.room-section,
.reviews-section {
    background: var(--white);
}

.section-heading {
    align-items: end;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin: 0 auto 42px;
    max-width: 1180px;
}

.section-heading h2 {
    margin-bottom: 0;
    max-width: 760px;
}

.section-heading.centered {
    align-items: center;
    display: block;
    margin-bottom: 46px;
    max-width: 760px;
    text-align: center;
}

.section-heading.centered p:last-child {
    font-size: 18px;
    margin: 0 auto;
    max-width: 620px;
}

.room-grid,
.perks-grid,
.review-grid {
    display: grid;
    gap: 22px;
    margin: 0 auto;
    max-width: 1180px;
}

.room-grid,
.review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-card,
.perk,
blockquote {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.room-card {
    background: var(--cream);
}

.room-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.room-card-body {
    padding: 24px;
}

.room-meta {
    color: var(--green-700) !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 9px;
    text-transform: uppercase;
}

.room-tags {
    margin-top: 20px;
}

.room-tags span {
    background: rgba(10, 76, 64, 0.08);
    border-radius: 999px;
    color: var(--green-950);
    font-size: 12px;
    font-weight: 800;
    padding: 8px 10px;
}

.experience-section {
    background: var(--green-950);
    color: var(--white);
    display: grid;
    gap: 64px;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
}

.experience-section h2,
.experience-section h3 {
    color: var(--white);
}

.experience-image img {
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
    height: 100%;
    max-height: 720px;
    object-fit: cover;
    width: 100%;
}

.experience-copy {
    align-self: center;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.feature-list div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    gap: 4px 18px;
    grid-template-columns: 36px minmax(0, 1fr);
    padding-top: 22px;
}

.feature-list i {
    color: var(--sand);
    font-size: 24px;
    grid-row: span 2;
    padding-top: 4px;
}

.feature-list p {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 0;
}

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

.perk,
blockquote {
    background: rgba(255, 255, 255, 0.72);
    padding: 30px;
}

.perk span {
    color: var(--sand);
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 44px;
    line-height: 1;
    margin-bottom: 28px;
}

blockquote {
    background: var(--cream);
    margin: 0;
}

blockquote p {
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    line-height: 1.32;
    margin-bottom: 26px;
}

cite {
    color: var(--green-700);
    font-style: normal;
    font-weight: 800;
}

.site-footer {
    background: var(--ink);
    color: var(--white);
    display: grid;
    gap: 32px;
    grid-template-columns: 1.2fr 0.7fr 1fr;
    padding: 70px max(24px, 7vw) 34px;
}

.footer-brand img {
    height: 54px;
    margin-bottom: 24px;
    width: auto;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.62);
    max-width: 460px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    grid-column: 1 / -1;
    margin: 10px 0 0;
    padding-top: 24px;
}

.whatsapp-cta {
    align-items: center;
    background: #25d366;
    border-radius: 999px;
    bottom: 24px;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.28);
    color: var(--white);
    display: inline-flex;
    font-weight: 800;
    gap: 10px;
    min-height: 52px;
    padding: 0 20px;
    position: fixed;
    right: 24px;
    z-index: 18;
}

.whatsapp-cta:hover {
    background: #128c7e;
}

.whatsapp-cta i {
    font-size: 22px;
}

.rooms-page {
    background: var(--cream);
}

.rooms-hero {
    background: var(--green-950);
    color: var(--white);
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    min-height: 760px;
    padding: 170px max(24px, 7vw) 90px;
}

.rooms-hero h1 {
    font-size: clamp(58px, 8vw, 116px);
    margin-bottom: 28px;
    max-width: 820px;
}

.rooms-hero h1,
.rooms-hero h2 {
    color: var(--white);
}

.rooms-hero-copy {
    align-self: center;
}

.rooms-hero-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.45;
    margin-bottom: 34px;
    max-width: 660px;
}

.rooms-hero-gallery {
    align-self: center;
    display: block;
    min-height: 0;
}

.rooms-hero-gallery img {
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.room-finder {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: -34px auto 0;
    max-width: 1020px;
    padding: 12px;
    position: relative;
    width: calc(100% - 48px);
    z-index: 3;
}

.room-finder a {
    border-radius: 999px;
    color: var(--green-950);
    font-size: 13px;
    font-weight: 800;
    padding: 10px 14px;
}

.room-finder a:hover {
    background: rgba(10, 76, 64, 0.08);
}

.room-list-section {
    display: grid;
    gap: 28px;
    padding: 96px max(24px, 7vw);
}

.room-detail-card {
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 55px rgba(10, 76, 64, 0.08);
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
    margin: 0 auto;
    max-width: 1180px;
    overflow: hidden;
    padding: 20px;
}

.featured-room {
    border-color: rgba(199, 169, 123, 0.6);
}

.room-gallery {
    display: block;
    height: 100%;
    min-height: 460px;
}

.room-gallery > img {
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.room-detail-copy {
    align-self: center;
    padding: 20px 20px 20px 0;
}

.room-kicker {
    color: var(--green-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.room-detail-copy h2 {
    font-size: clamp(40px, 5vw, 72px);
    margin-bottom: 20px;
}

.room-detail-copy > p:not(.room-kicker) {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
    margin-bottom: 22px;
}

.room-amenities {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 24px 0;
    padding-top: 22px;
}

.room-amenities span {
    align-items: center;
    color: var(--ink);
    display: flex;
    font-size: 14px;
    font-weight: 700;
    gap: 9px;
}

.room-amenities i {
    color: var(--sand);
    font-size: 17px;
    width: 18px;
}

.rooms-booking-panel {
    align-items: center;
    background: var(--sage);
    display: flex;
    gap: 36px;
    justify-content: space-between;
    margin: 0 max(24px, 7vw) 110px;
    padding: 46px;
    border-radius: 8px;
}

.page-hero {
    background-position: center;
    background-size: cover;
    color: var(--white);
    min-height: 680px;
    overflow: hidden;
    padding: 180px max(24px, 7vw) 96px;
    position: relative;
}

.page-hero::before {
    background:
        linear-gradient(90deg, rgba(6, 63, 53, 0.88) 0%, rgba(6, 63, 53, 0.55) 48%, rgba(6, 63, 53, 0.16) 100%),
        linear-gradient(0deg, rgba(23, 34, 31, 0.34), rgba(23, 34, 31, 0.04));
    content: "";
    inset: 0;
    position: absolute;
}

.page-hero-copy {
    max-width: 780px;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(58px, 8vw, 112px);
    margin-bottom: 28px;
}

.page-hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.45;
    max-width: 680px;
}

.about-hero {
    background-image: url("../img/banner/06.jpg");
}

.gallery-hero {
    background-image: url("../img/gallery/14.jpg");
}

.contact-hero {
    background-image: url("../img/bg/04.jpg");
}

.story-section,
.gallery-feature,
.contact-main,
.split-feature {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    padding: 110px max(24px, 7vw);
}

.story-copy p:not(.eyebrow),
.gallery-feature p:not(.eyebrow),
.split-feature p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.story-images {
    display: grid;
    gap: 14px;
    grid-template-columns: 0.72fr 1fr;
}

.story-section-full {
    display: block;
}

.story-section-full .story-copy {
    max-width: 980px;
}

.story-section-full .story-copy p:not(.eyebrow) {
    max-width: 760px;
}

.story-images img,
.gallery-feature img,
.split-feature img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.story-images img:first-child {
    margin-top: 64px;
}

.story-images img:last-child {
    min-height: 540px;
}

.values-section {
    background: var(--white);
    padding: 110px max(24px, 7vw);
}

.values-grid,
.contact-overview {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1180px;
}

.values-grid article,
.contact-overview article {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
}

.values-grid i,
.contact-overview i {
    color: var(--sand);
    font-size: 28px;
    margin-bottom: 22px;
}

.values-grid p,
.contact-overview p {
    color: var(--muted);
    margin-bottom: 0;
}

.split-feature {
    background: var(--sage);
}

.split-feature img {
    min-height: 520px;
}

.gallery-feature {
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.gallery-feature img {
    max-height: 620px;
}

.modern-gallery {
    columns: 3 280px;
    column-gap: 18px;
    padding: 0 max(24px, 7vw) 110px;
}

.gallery-item {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 16px 46px rgba(10, 76, 64, 0.09);
    break-inside: avoid;
    display: block;
    margin: 0 0 18px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    transition: transform 220ms ease;
    width: 100%;
}

.gallery-item.tall img {
    aspect-ratio: 3 / 4;
}

.gallery-item.wide img {
    aspect-ratio: 16 / 10;
}

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

.gallery-item span {
    background: rgba(6, 63, 53, 0.82);
    bottom: 12px;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    left: 12px;
    padding: 8px 12px;
    position: absolute;
}

.contact-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -42px;
    padding: 0 max(24px, 7vw);
    position: relative;
    z-index: 2;
}

.contact-overview article {
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-overview h2 {
    font-family: "Archivo", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.contact-overview a {
    color: var(--green-950);
    font-weight: 800;
}

.contact-main {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.arrival-notes {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
}

.arrival-notes div {
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.arrival-notes strong {
    color: var(--green-950);
}

.arrival-notes span {
    color: var(--muted);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
    padding: 28px;
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    background: #f7f6f2;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    padding: 15px 14px;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.map-section {
    padding: 0 max(24px, 7vw) 110px;
}

.map-section iframe {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.rooms-booking-panel h2 {
    font-size: clamp(38px, 5vw, 64px);
    margin-bottom: 18px;
}

.rooms-booking-panel p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 0;
    max-width: 720px;
}

@media (max-width: 1020px) {
    .site-header {
        border-radius: 24px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        background: var(--white);
        border-radius: 22px;
        box-shadow: var(--shadow);
        display: none;
        left: 0;
        padding: 14px;
        position: absolute;
        right: 0;
        top: calc(100% + 10px);
    }

    .main-nav.is-open {
        display: grid;
    }

    .main-nav a {
        padding: 14px 16px;
    }

    .booking-form,
    .intro-section,
    .experience-section,
    .rooms-hero,
    .room-detail-card,
    .story-section,
    .gallery-feature,
    .contact-main,
    .split-feature,
    .room-grid,
    .perks-grid,
    .review-grid,
    .values-grid,
    .contact-overview,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .intro-section,
    .room-section,
    .experience-section,
    .perks-section,
    .reviews-section,
    .values-section,
    .story-section,
    .gallery-feature,
    .contact-main,
    .split-feature {
        padding: 84px 24px;
    }

    .section-heading {
        align-items: flex-start;
        display: grid;
    }

    .image-stack {
        min-height: 480px;
    }

    .image-small {
        transform: translate(0, 28px);
    }

    .rooms-hero {
        min-height: auto;
        padding-top: 140px;
    }

    .room-detail-copy {
        padding: 4px 8px 12px;
    }

    .rooms-booking-panel {
        align-items: flex-start;
        display: grid;
        margin-bottom: 84px;
        padding: 34px;
    }

    .page-hero {
        min-height: 560px;
        padding-top: 150px;
    }

    .contact-overview {
        margin-top: -28px;
        padding: 0 24px;
    }

    .story-images img:first-child {
        margin-top: 0;
    }
}

@media (max-width: 680px) {
    .site-header {
        padding: 12px;
        top: 12px;
        width: calc(100% - 24px);
    }

    .brand img {
        height: 40px;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-content {
        padding: 150px 24px 92px;
    }

    h1 {
        font-size: 58px;
    }

    h2 {
        font-size: 42px;
    }

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

    .booking-strip {
        margin-top: -32px;
        padding: 0 16px;
    }

    .booking-form {
        padding: 14px;
    }

    .image-stack {
        display: block;
        min-height: auto;
    }

    .image-large {
        aspect-ratio: 4 / 5;
    }

    .image-small {
        display: none;
    }

    .experience-image img {
        aspect-ratio: 4 / 5;
    }

    .perk,
    blockquote,
    .room-card-body {
        padding: 22px;
    }

    .whatsapp-cta {
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-cta span {
        display: none;
    }

    .rooms-hero {
        gap: 34px;
        padding: 130px 24px 72px;
    }

    .rooms-hero h1 {
        font-size: 54px;
    }

    .rooms-hero-gallery img {
        aspect-ratio: 4 / 3;
        margin-top: 12px;
    }

    .room-finder {
        justify-content: flex-start;
        margin-top: -24px;
        width: calc(100% - 32px);
    }

    .room-list-section {
        gap: 22px;
        padding: 64px 16px;
    }

    .room-detail-card {
        gap: 20px;
        padding: 12px;
    }

    .room-gallery > img {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .room-detail-copy h2 {
        font-size: 38px;
    }

    .room-amenities {
        grid-template-columns: 1fr;
    }

    .rooms-booking-panel {
        margin: 0 16px 76px;
        padding: 26px;
    }

    .page-hero {
        min-height: 520px;
        padding: 130px 24px 72px;
    }

    .page-hero h1 {
        font-size: 52px;
    }

    .story-images {
        display: block;
    }

    .story-images img {
        aspect-ratio: 4 / 3;
    }

    .story-images img + img {
        margin-top: 14px;
    }

    .story-images img:last-child,
    .split-feature img {
        min-height: auto;
    }

    .modern-gallery {
        columns: 1;
        padding: 0 16px 76px;
    }

    .gallery-feature img,
    .split-feature img {
        aspect-ratio: 4 / 3;
    }

    .contact-overview {
        margin-top: -20px;
        padding: 0 16px;
    }

    .contact-main {
        padding: 64px 16px;
    }

    .arrival-notes div {
        display: grid;
        gap: 4px;
    }

    .contact-form {
        padding: 22px;
    }

    .map-section {
        padding: 0 16px 76px;
    }
}
