:root {
    --ink: #11100e;
    --ink-soft: #1b1916;
    --sand: #d9c7aa;
    --sand-light: #f1e8da;
    --paper: #f7f4ee;
    --white: #ffffff;
    --muted: #7e776d;
    --line: rgba(17, 16, 14, 0.15);
    --dark-line: rgba(255, 255, 255, 0.18);
    --container: 1380px;
    --font-body: "DM Sans", sans-serif;
    --font-display: "Italiana", serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    cursor: pointer;
}

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

.wide-container {
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
}

.section-label {
    color: #987956;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Demo bar */

.demo-bar {
    position: relative;
    z-index: 1200;
    background: #080807;
    color: rgba(255, 255, 255, 0.65);
}

.demo-bar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
}

.demo-bar a {
    color: var(--sand);
    display: flex;
    gap: 8px;
    font-weight: 700;
}

/* Header */

.site-header {
    position: absolute;
    top: 38px;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 22px 0;
    color: var(--white);
    transition: background 0.3s ease;
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(10, 10, 9, 0.94);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand-emblem {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 23px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
}

.brand-text small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 7px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navigation > a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

.navigation > a:hover {
    color: var(--white);
}

.header-booking-link {
    padding-left: 27px;
    border-left: 1px solid var(--dark-line);
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--dark-line);
    background: transparent;
}

.menu-button span {
    display: block;
    width: 19px;
    height: 1px;
    margin: 6px auto;
    background: var(--white);
}

/* Hero */

.hero {
    position: relative;
    min-height: 970px;
    color: var(--white);
    overflow: hidden;
}

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

.hero-media img {
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    background:
        linear-gradient(
            90deg,
            rgba(7, 7, 6, 0.88),
            rgba(7, 7, 6, 0.43) 55%,
            rgba(7, 7, 6, 0.18)
        ),
        linear-gradient(
            to top,
            rgba(7, 7, 6, 0.67),
            transparent 48%
        );
}

.hero-layout {
    position: relative;
    z-index: 2;
    min-height: 720px;
    padding-top: 190px;
    display: grid;
    grid-template-columns: 1fr 300px;
    align-items: center;
    gap: 80px;
}

.hero-label {
    color: var(--sand);
    font-size: 9px;
    letter-spacing: 0.23em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 900px;
    margin-top: 25px;
    font-family: var(--font-display);
    font-size: clamp(82px, 10vw, 148px);
    font-weight: 400;
    line-height: 0.84;
    letter-spacing: -0.055em;
}

.hero-copy h1 em {
    display: block;
    color: var(--sand-light);
    font-weight: 400;
}

.hero-copy p {
    max-width: 560px;
    margin-top: 36px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 15px;
}

.hero-side-note {
    padding-left: 28px;
    border-left: 1px solid var(--dark-line);
}

.hero-side-note > span {
    color: var(--sand);
    font-size: 9px;
    text-transform: uppercase;
}

.hero-side-note p {
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-display);
    font-size: 21px;
    line-height: 1.45;
}

.hero-booking-form {
    position: relative;
    z-index: 5;
    padding: 18px;
    background: var(--paper);
    color: var(--ink);
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.booking-field {
    padding: 0 24px;
    border-right: 1px solid var(--line);
}

.booking-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.booking-field input,
.booking-field select {
    width: 100%;
    height: 37px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--ink);
}

.hero-booking-form button {
    min-width: 205px;
    border: none;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 11px;
    font-weight: 700;
}

.hero-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    z-index: 3;
}

.hero-footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-progress {
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-progress span {
    display: block;
    width: 20%;
    height: 1px;
    background: var(--sand);
}

/* Story */

.story-section {
    padding: 150px 0;
}

.story-layout {
    display: grid;
    grid-template-columns: 100px 1.2fr 0.8fr;
    gap: 65px;
}

.story-number {
    color: #a59c90;
    font-family: var(--font-display);
    font-size: 42px;
}

.story-heading h2 {
    max-width: 720px;
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: clamp(56px, 6vw, 88px);
    font-weight: 400;
    line-height: 0.98;
}

.story-copy p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
}

.story-copy a {
    margin-top: 25px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ink);
    display: inline-flex;
    gap: 30px;
    font-size: 11px;
    font-weight: 700;
}

.story-images {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
    gap: 26px;
}

.story-image-primary img {
    height: 710px;
    object-fit: cover;
}

.story-image-secondary {
    position: relative;
}

.story-image-secondary img {
    height: 480px;
    object-fit: cover;
}

.story-image-secondary figcaption {
    position: absolute;
    left: -45px;
    bottom: 35px;
    padding: 22px;
    background: var(--ink);
    color: var(--white);
}

.story-image-secondary strong,
.story-image-secondary span {
    display: block;
}

.story-image-secondary strong {
    font-family: var(--font-display);
    font-size: 38px;
}

.story-image-secondary span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
}

/* Rooms */

.rooms-section {
    padding: 130px 0;
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
}

.rooms-heading {
    margin-bottom: 55px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.rooms-heading h2 {
    margin-top: 17px;
    font-family: var(--font-display);
    font-size: clamp(58px, 7vw, 94px);
    font-weight: 400;
}

.rooms-heading p {
    max-width: 350px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

.rooms-scroller {
    padding-left: max(32px, calc((100vw - var(--container)) / 2));
    padding-right: 32px;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.room-slide {
    flex: 0 0 min(620px, 82vw);
    scroll-snap-align: start;
}

.room-slide-image {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.room-slide-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.room-slide:hover img {
    transform: scale(1.035);
}

.room-index {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 34px;
}

.room-slide-content {
    padding: 28px 0;
}

.room-type {
    color: var(--sand);
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.room-slide h3 {
    margin-top: 8px;
    font-family: var(--font-display);
    font-size: 41px;
    font-weight: 400;
}

.room-details {
    margin-top: 14px;
    display: flex;
    gap: 25px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
}

.room-bottom {
    margin-top: 26px;
    padding-top: 21px;
    border-top: 1px solid var(--dark-line);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.room-bottom strong {
    display: block;
    color: var(--sand-light);
    font-family: var(--font-display);
    font-size: 29px;
}

.room-bottom small {
    color: rgba(255, 255, 255, 0.4);
}

.room-bottom a {
    display: flex;
    gap: 20px;
    font-size: 10px;
}

/* Experiences */

.experience-editorial {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 850px;
}

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

.experience-content {
    padding: 110px 8vw;
    background: var(--sand-light);
}

.experience-content h2 {
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: clamp(52px, 5vw, 76px);
    font-weight: 400;
    line-height: 1;
}

.experience-list {
    margin-top: 65px;
}

.experience-list article {
    padding: 25px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
}

.experience-list article > span {
    color: #987956;
    font-size: 10px;
}

.experience-list h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
}

.experience-list p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
}

/* Dining */

.dining-feature {
    padding: 150px 0;
}

.dining-layout {
    display: grid;
    grid-template-columns: 0.75fr 1fr 0.55fr;
    align-items: end;
    gap: 28px;
}

.dining-copy {
    padding-right: 35px;
}

.dining-copy h2 {
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: clamp(49px, 5vw, 73px);
    font-weight: 400;
    line-height: 1;
}

.dining-copy p {
    margin-top: 23px;
    color: var(--muted);
    font-size: 13px;
}

.dining-copy a {
    margin-top: 35px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ink);
    display: inline-flex;
    gap: 28px;
    font-size: 11px;
}

.dining-image-large img {
    height: 680px;
    object-fit: cover;
}

.dining-image-small img {
    height: 410px;
    object-fit: cover;
}

/* Gallery */

.gallery-section {
    padding: 130px 0;
    background: #ddd0bd;
}

.gallery-heading {
    margin-bottom: 55px;
}

.gallery-heading h2 {
    margin-top: 17px;
    font-family: var(--font-display);
    font-size: clamp(58px, 7vw, 94px);
    font-weight: 400;
}

.gallery-masonry {
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    grid-auto-rows: 310px;
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

/* Booking */

.booking-section {
    padding: 150px 0;
    background: var(--paper);
}

.booking-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 100px;
    align-items: start;
}

.booking-intro {
    position: sticky;
    top: 120px;
}

.booking-intro h2 {
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: clamp(54px, 6vw, 82px);
    font-weight: 400;
    line-height: 1;
}

.booking-intro > p {
    margin-top: 25px;
    color: var(--muted);
}

.booking-contact-details {
    margin-top: 45px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.booking-contact-details span,
.booking-contact-details strong,
.booking-contact-details small {
    display: block;
}

.booking-contact-details span {
    color: #987956;
    font-size: 8px;
    text-transform: uppercase;
}

.booking-contact-details strong {
    margin-top: 7px;
    font-family: var(--font-display);
    font-size: 27px;
}

.booking-contact-details small {
    color: var(--muted);
}

.booking-panel {
    padding: 45px;
    border: 1px solid var(--line);
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    margin-bottom: 21px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--line);
    outline: none;
    background: transparent;
    color: var(--ink);
}

.form-field input,
.form-field select {
    height: 49px;
}

.form-field textarea {
    min-height: 110px;
    padding-top: 12px;
    resize: vertical;
}

.booking-panel button {
    width: 100%;
    min-height: 58px;
    border: none;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 11px;
    font-weight: 700;
}

.form-message {
    min-height: 20px;
    margin-top: 12px;
    color: #987956;
    font-size: 10px;
    text-align: center;
}

/* Location */

.location-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 700px;
}

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

.location-content {
    padding: 100px 7vw;
    background: var(--ink);
    color: var(--white);
}

.location-content h2 {
    margin-top: 17px;
    font-family: var(--font-display);
    font-size: clamp(55px, 6vw, 82px);
    font-weight: 400;
    line-height: 1;
}

.location-details {
    margin: 50px 0;
}

.location-details div {
    padding: 18px 0;
    border-top: 1px solid var(--dark-line);
}

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

.location-details span {
    color: var(--sand);
    font-size: 8px;
    text-transform: uppercase;
}

.location-details strong {
    margin-top: 5px;
    font-size: 12px;
}

.location-content > a {
    padding-bottom: 7px;
    border-bottom: 1px solid var(--white);
    display: inline-flex;
    gap: 25px;
    font-size: 11px;
}

/* Footer */

.site-footer {
    padding: 90px 0 25px;
    background: #080807;
    color: var(--white);
}

.footer-top {
    padding-bottom: 65px;
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 55px;
}

.footer-top > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-top > div > span {
    margin-bottom: 10px;
    color: var(--sand);
    font-size: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-top a,
.footer-top p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid var(--dark-line);
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.35);
    font-size: 9px;
}

.footer-bottom a {
    display: flex;
    gap: 8px;
}

.floating-booking {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--sand);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.floating-booking span {
    display: block;
}

/* Responsive */

@media (max-width: 1000px) {
    .menu-button {
        display: block;
    }

    .navigation {
        position: fixed;
        top: 100px;
        left: 24px;
        right: 24px;
        padding: 26px;
        background: rgba(8, 8, 7, 0.98);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .navigation.open {
        display: flex;
    }

    .header-booking-link {
        padding: 15px 0 0;
        border-left: none;
        border-top: 1px solid var(--dark-line);
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-side-note {
        display: none;
    }

    .hero-booking-form {
        grid-template-columns: 1fr 1fr;
    }

    .story-layout {
        grid-template-columns: 70px 1fr;
    }

    .story-copy {
        grid-column: 2;
    }

    .experience-editorial,
    .booking-layout,
    .location-section {
        grid-template-columns: 1fr;
    }

    .booking-intro {
        position: static;
    }

    .dining-layout {
        grid-template-columns: 1fr 1fr;
    }

    .dining-copy {
        grid-column: 1 / 3;
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .wide-container {
        width: min(calc(100% - 28px), var(--container));
    }

    .demo-bar-inner {
        min-height: 48px;
        font-size: 8px;
    }

    .site-header {
        top: 48px;
    }

    .site-header.scrolled {
        top: 0;
    }

    .hero {
        min-height: 900px;
    }

    .hero-layout {
        min-height: 620px;
        padding-top: 155px;
    }

    .hero-copy h1 {
        font-size: 68px;
    }

    .hero-booking-form {
        grid-template-columns: 1fr;
    }

    .booking-field {
        padding: 14px 5px;
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .hero-booking-form button {
        min-height: 55px;
    }

    .hero-footer {
        display: none;
    }

    .story-section,
    .rooms-section,
    .dining-feature,
    .gallery-section,
    .booking-section {
        padding: 85px 0;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .story-copy {
        grid-column: auto;
    }

    .story-heading h2 {
        font-size: 51px;
    }

    .story-images {
        margin-top: 60px;
        grid-template-columns: 1fr;
    }

    .story-image-primary img {
        height: 480px;
    }

    .story-image-secondary img {
        height: 350px;
    }

    .story-image-secondary figcaption {
        left: 18px;
    }

    .rooms-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .room-slide {
        flex-basis: 88vw;
    }

    .room-slide-image {
        height: 420px;
    }

    .experience-content {
        padding: 75px 24px;
    }

    .dining-layout {
        grid-template-columns: 1fr;
    }

    .dining-copy {
        grid-column: auto;
    }

    .dining-image-large img {
        height: 480px;
    }

    .dining-image-small img {
        height: 330px;
    }

    .gallery-masonry {
        padding: 0 14px;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 230px;
    }

    .gallery-tall {
        grid-row: span 2;
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .booking-panel {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .location-image {
        min-height: 430px;
    }

    .location-content {
        padding: 75px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top > div:first-child {
        grid-column: 1 / 3;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .floating-booking {
        width: 64px;
        height: 64px;
        right: 14px;
        bottom: 14px;
    }
}