.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-submit:disabled { opacity: .65; cursor: wait; }

.floating-phone {
    position: fixed;
    right: max(24px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
    z-index: 90;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: var(--green);
    color: white;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .24);
    transition: background .2s, transform .2s;
}

.floating-phone:hover { background: var(--green-dark); transform: translateY(-2px); }
.floating-phone:focus-visible { outline: 3px solid var(--brown); outline-offset: 4px; }

@media (max-width: 800px) {
    .floating-phone {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-phone { transition: none; }
    .floating-phone:hover { transform: none; }
}

/* =========================================
   VARIABLES
========================================= */

:root {
    --cream: #f4f0e8;
    --cream-dark: #e9e2d7;
    --white: #fffdf9;

    --green: #3d5138;
    --green-dark: #293829;

    --brown: #8c6e54;
    --brown-dark: #624b38;

    --text: #292824;
    --muted: #6f6a61;

    --border: #ded7cc;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --container: 1240px;
}


/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.65;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(
        calc(100% - 64px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.12;
}

h2 {
    font-size: clamp(38px, 4vw, 58px);
}

h3 {
    font-size: 25px;
}

p {
    color: var(--muted);
}

.eyebrow {
    color: var(--brown);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow.light {
    color: rgba(255,255,255,.75);
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 100;

    background: rgba(255,253,249,.94);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0,0,0,.07);
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.logo-image {
    width: 100px;
    height: 82px;
    object-fit: contain;
}

.footer-brand .logo-image {
    width: 190px;
    height: 190px;
}

@media (max-width: 800px) {
    .header .logo-image {
        width: 88px;
        height: 72px;
    }
}

.logo-symbol {
    position: relative;

    width: 48px;
    height: 35px;
}

.logo-symbol span:first-child {
    position: absolute;

    width: 38px;
    height: 24px;

    left: 0;
    top: 7px;

    border-top: 2px solid var(--text);

    transform: skewY(-34deg) rotate(-10deg);
}

.logo-symbol span:last-child {
    position: absolute;

    width: 25px;
    height: 17px;

    right: 1px;
    top: 14px;

    border-top: 2px solid var(--green);

    transform: skewY(28deg) rotate(7deg);
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.logo-text small {
    font-size: 9px;
    letter-spacing: .01em;
}

.logo-text strong {
    font-family: var(--serif);

    font-size: 19px;
    letter-spacing: .04em;
}

.logo-text em {
    font-style: normal;

    font-size: 7px;
    margin-top: 3px;

    color: var(--muted);
}


/* NAVIGATION */

.navigation {
    display: flex;
    align-items: center;

    gap: 16px;

    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

.navigation a {
    position: relative;
    white-space: nowrap;
}

.navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: var(--green);

    transition: width .25s;
}

.navigation a:hover::after {
    width: 100%;
}


/* HEADER BUTTON */

.header-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: var(--green);
    color: white;

    border-radius: 50px;

    padding: 13px 20px;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    transition: .25s;
}

.header-button:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}


/* MOBILE BUTTON */

.mobile-menu {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.mobile-menu span {
    display: block;

    width: 24px;
    height: 2px;

    background: var(--text);

    margin: 5px auto;

    transition: .25s;
}


/* =========================================
   BUTTONS
========================================= */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    min-height: 48px;

    padding: 12px 22px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;

    transition: .25s;
}

.button span {
    font-size: 18px;
}

.button-green {
    background: var(--green);
    color: white;
}

.button-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.button-outline-light {
    border: 1px solid rgba(255,255,255,.7);
    color: white;
}

.button-outline-light:hover {
    background: rgba(255,255,255,.1);
}

.button-white {
    background: white;
    color: var(--green);
}

.button-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 730px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        url("img/photo_2026-08-18_18-38-45.jpg")
        center / cover no-repeat;

    transform: scale(1.01);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(35,25,17,.82) 0%,
            rgba(35,25,17,.64) 37%,
            rgba(35,25,17,.15) 72%,
            rgba(35,25,17,.05) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;
}

.hero-text {
    max-width: 630px;

    color: white;
}

.hero h1 {
    font-size: clamp(54px, 7vw, 88px);

    color: white;

    letter-spacing: -.025em;
}

.hero-text > p {
    color: white;

    font-size: 20px;

    margin-top: 25px;
}

.hero-text .hero-description {
    max-width: 560px;

    color: rgba(255,255,255,.83);

    font-size: 15px;
    line-height: 1.65;

    margin-top: 10px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


/* =========================================
   WELCOME
========================================= */

.section {
    padding: 110px 0;
}

.welcome {
    background: var(--white);
}

.welcome-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .9fr);

    gap: 80px;

    align-items: center;
}

.welcome-text {
    max-width: 610px;
}

.welcome h2 {
    max-width: 600px;

    margin-bottom: 25px;
}

.welcome-text p {
    max-width: 570px;

    margin-bottom: 17px;
}

.image-frame {
    height: 500px;

    border-radius: 15px;

    overflow: hidden;

    background: var(--cream-dark);
}

.image-frame img {
    height: 100%;
    object-fit: cover;
}


/* FEATURES */

.features {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;

    margin-top: 45px;
}

.feature {
    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 10px;

    font-size: 11px;
    line-height: 1.35;
}

.feature-icon {
    width: 39px;
    height: 39px;

    border: 1px solid var(--green);

    border-radius: 50%;

    display: grid;
    place-items: center;

    color: var(--green);

    font-size: 18px;
}


/* =========================================
   ROOMS
========================================= */

.rooms {
    display: grid;

    grid-template-columns:
        1.05fr
        1.05fr
        .65fr;

    padding: 0;

    background: var(--cream);
}

.room-image {
    min-height: 510px;
}

.room-image-background {
    width: 100%;
    height: 100%;

    background:
        url("img/photo_2026-09-11_11-10-52 (2).jpg")
        center / cover no-repeat;
}

.room-content {
    padding: 80px 55px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    max-width: 580px;
}

.room-content h2 {
    margin-bottom: 25px;
}

.room-content p {
    margin-bottom: 30px;

    max-width: 520px;
}

.room-equipment {
    display: flex;
    align-items: center;

    padding: 60px 35px;
}

.room-equipment ul {
    list-style: none;

    width: 100%;
}

.room-equipment li {
    position: relative;

    padding-left: 23px;

    margin-bottom: 10px;

    color: #57534c;

    font-size: 12px;
}

.room-equipment li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--green);

    font-weight: 700;
}


/* =========================================
   BREAKFAST
========================================= */

.breakfast {
    background: var(--white);
}

.breakfast-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.breakfast-text {
    max-width: 570px;
}

.breakfast-text h2 {
    margin-bottom: 28px;
}

.breakfast-text p {
    margin-bottom: 17px;
}

.breakfast-image {
    height: 430px;

    border-radius: 15px;

    overflow: hidden;
}

.breakfast-photo {
    width: 100%;
    height: 100%;

    background:
        url("img/photo_2026-08-18_18-40-12.jpg")
        center / cover no-repeat;
}


/* =========================================
   LOCATION
========================================= */

.location {
    display: grid;

    grid-template-columns:
        1.1fr
        1fr
        .8fr;

    background: var(--cream);

    min-height: 490px;
}

.location-image {
    min-height: 490px;

    background:
        url("img/photo_2026-08-18_18-38-46.jpg")
        center / cover no-repeat;
}

.location-content {
    padding: 65px 55px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.location-content h2 {
    margin-bottom: 24px;
}

.location-content p {
    margin-bottom: 13px;
}

.location-content .button {
    align-self: flex-start;

    margin-top: 20px;
}

.why-us {
    background: rgba(255,255,255,.55);

    margin: 28px;

    padding: 30px;

    border-radius: 14px;
}

.why-us h3 {
    font-size: 25px;

    margin-bottom: 24px;
}

.why-item {
    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 12px;

    margin-bottom: 20px;
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-icon {
    width: 32px;
    height: 32px;

    border: 1px solid var(--green);

    border-radius: 50%;

    display: grid;
    place-items: center;

    color: var(--green);
}

.why-item strong {
    display: block;

    font-size: 12px;
}

.why-item p {
    font-size: 10px;

    line-height: 1.4;

    margin-top: 2px;
}


/* =========================================
   BUSINESS
========================================= */

.business {
    display: grid;

    grid-template-columns:
        1fr
        1.15fr
        .8fr;

    background: var(--white);
}

.business-image {
    min-height: 440px;

    background:
        url("img/photo_2026-09-11_11-11-38 (2).jpg")
        center / cover no-repeat;
}

.business-content {
    padding: 70px 55px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.business-content h2 {
    margin-bottom: 24px;
}

.business-content p {
    margin-bottom: 27px;
}

.business-content .button {
    align-self: flex-start;
}

.business-list {
    padding: 70px 40px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.business-list h3 {
    font-family: var(--sans);

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 15px;
}

.business-list ul {
    list-style: none;

    margin-bottom: 35px;
}

.business-list li {
    position: relative;

    padding-left: 20px;

    margin-bottom: 9px;

    color: var(--muted);

    font-size: 12px;
}

.business-list li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--green);
}

.business-list .after-work-title {
    margin-bottom: 6px;
}

.business-list p {
    font-size: 11px;

    line-height: 1.5;
}


/* =========================================
   REGION
========================================= */

.region {
    padding: 105px 0;

    background: var(--cream);
}

.region-header {
    display: flex;

    justify-content: space-between;
    align-items: end;

    gap: 50px;

    margin-bottom: 50px;
}

.region-header h2 {
    max-width: 600px;
}

.region-header > p {
    max-width: 450px;
}

.region-cards {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.region-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 30px;
}

.region-number {
    font-family: var(--serif);

    color: var(--brown);

    font-size: 28px;

    margin-bottom: 30px;
}

.region-card h3 {
    font-size: 23px;

    margin-bottom: 13px;
}

.region-card p {
    font-size: 13px;
}


/* =========================================
   FAQ
========================================= */

.faq-section {
    background: var(--white);
}

.faq-header {
    margin-bottom: 45px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-list details {
    border-bottom: 1px solid var(--border);
}

.faq-list summary {
    list-style: none;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 25px 0;

    font-weight: 600;

    font-size: 15px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    font-size: 25px;

    color: var(--green);

    font-weight: 400;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 750px;

    padding: 0 0 25px;

    font-size: 14px;
}


/* =========================================
   BOOKING
========================================= */

.booking {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(42,60,38,.98),
            rgba(42,60,38,.93)
        );

    color: white;

    padding: 75px 0;
}

.booking::after {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    right: -130px;
    top: -220px;
}

.booking-inner {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1.4fr .7fr;

    align-items: center;

    gap: 70px;
}

.booking h2 {
    max-width: 700px;

    color: white;

    margin-bottom: 18px;
}

.booking-text > p {
    color: rgba(255,255,255,.75);

    max-width: 650px;
    font-size: 18px;
}

.booking-methods {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;

    margin-top: 27px;

    color: rgba(255,255,255,.85);

    font-size: 20px;
}

.booking-contact {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-weight: 600;
    color: white;
    overflow-wrap: anywhere;
}

.booking-contact-label {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,.75);
}

.booking-methods .booking-platform {
    font-size: 16px;
    white-space: normal;
}

.booking-contact:hover > span:last-child {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.booking-methods a:focus-visible {
    outline: 2px solid white;
    outline-offset: 5px;
}

.booking-actions {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.booking-actions .button {
    width: 100%;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #f7f4ee;

    padding: 70px 0 25px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

    gap: 50px;

    padding-bottom: 55px;
}

.footer-brand .logo {
    margin-bottom: 22px;
}

.footer-brand > p {
    font-family: var(--serif);

    font-size: 20px;

    color: var(--text);
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.footer-column h4 {
    font-size: 16px;

    margin-bottom: 2px;
}

.footer-column a,
.footer-column span {
    color: var(--muted);

    font-size: 14px;
}

.footer-column a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid var(--border);

    padding-top: 20px;

    color: #8c877f;

    font-size: 10px;
}

.footer-bottom div {
    display: flex;

    gap: 20px;
}


/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 1100px) {

    .navigation {
        gap: 12px;

        font-size: 16px;
    }

    .header-button {
        padding: 11px 15px;
    }

    .rooms {
        grid-template-columns: 1fr 1fr;
    }

    .room-equipment {
        grid-column: 2;

        padding-top: 0;
    }

    .location {
        grid-template-columns: 1fr 1fr;
    }

    .location-image {
        grid-row: span 2;
    }

    .why-us {
        margin: 30px;
    }

    .business {
        grid-template-columns: 1fr 1fr;
    }

    .business-list {
        grid-column: span 2;

        padding-top: 20px;
        padding-bottom: 50px;
    }

    .region-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

}


/* Keep navigation readable on smaller desktop and tablet screens. */
@media (min-width: 1101px) and (max-width: 1250px) {
    .header-button { display: none; }
}

@media (min-width: 801px) and (max-width: 1100px) {
    .header-button { display: none; }
    .mobile-menu { display: block; }
    .navigation {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 32px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
    }
    .navigation.active { display: flex; }
    .navigation a { width: 100%; padding: 12px 5px; }
    .navigation a::after { display: none; }
}

@media (max-width: 1100px) {
    .navigation { max-height: calc(100dvh - 82px); overflow-y: auto; }
}

/* =========================================
   RESPONSIVE — MOBILE
========================================= */

@media (max-width: 800px) {

    .container {
        width: min(
            calc(100% - 34px),
            var(--container)
        );
    }


    /* HEADER */

    .header-inner {
        min-height: 72px;
    }

    .navigation {
        position: absolute;

        top: 72px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        background: var(--white);

        border-bottom: 1px solid var(--border);

        padding: 10px 20px;
    }

    .navigation.active {
        display: flex;
    }

    .navigation a {
        width: 100%;

        padding: 12px 5px;

        font-size: 16px;
    }

    .navigation a::after {
        display: none;
    }

    .header-button {
        display: none;
    }

    .mobile-menu {
        display: block;
    }


    /* HERO */

    .hero {
        min-height: 680px;
    }

    .hero-background {
        background-position: 60% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(30,23,17,.83),
                rgba(30,23,17,.43)
            );
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: clamp(46px, 13vw, 68px);
    }

    .hero-text > p {
        font-size: 17px;
    }

    .hero-description {
        font-size: 14px !important;
    }


    /* GENERAL */

    .section {
        padding: 75px 0;
    }


    /* WELCOME */

    .welcome-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .image-frame {
        height: 420px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px;
    }


    /* ROOMS */

    .rooms {
        display: flex;

        flex-direction: column;
    }

    .room-image {
        min-height: 400px;
    }

    .room-content {
        padding: 65px 25px;
    }

    .room-equipment {
        padding: 0 25px 65px;
    }


    /* BREAKFAST */

    .breakfast-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .breakfast-image {
        height: 350px;
    }


    /* LOCATION */

    .location {
        grid-template-columns: 1fr;
    }

    .location-image {
        min-height: 350px;

        grid-row: auto;
    }

    .location-content {
        padding: 65px 25px;
    }

    .why-us {
        margin: 0 20px 30px;
    }


    /* BUSINESS */

    .business {
        grid-template-columns: 1fr;
    }

    .business-image {
        min-height: 350px;
    }

    .business-content {
        padding: 65px 25px;
    }

    .business-list {
        grid-column: auto;

        padding: 0 25px 65px;
    }


    /* REGION */

    .region {
        padding: 75px 0;
    }

    .region-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .region-cards {
        grid-template-columns: 1fr;
    }


    /* BOOKING */

    .booking {
        padding: 65px 0;
    }

    .booking-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 12px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .logo-text strong {
        font-size: 16px;
    }

    .logo-text small {
        font-size: 8px;
    }

    .logo-text em {
        font-size: 6px;
    }

    .logo-symbol {
        width: 39px;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .button {
        width: 100%;
    }

    .image-frame {
        height: 330px;
    }

    .features {
        gap: 20px 5px;
    }

    .feature {
        font-size: 10px;
    }

    .room-image {
        min-height: 0px;
    }

    .breakfast-image {
        height: 280px;
    }

    .location-image {
        min-height: 280px;
    }

    .business-image {
        min-height: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom div {
        flex-direction: column;

        gap: 5px;
    }

}



/* =========================================
   BOOKING FORM
========================================= */

.booking-inner {
    grid-template-columns: 1fr 500px;
}

.booking-form {
    position: relative;
    z-index: 3;

    background: rgba(255, 253, 249, .97);

    color: var(--text);

    border-radius: 16px;

    padding: 32px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .18);
}

.form-title {
    font-family: var(--serif);

    font-size: 28px;

    margin-bottom: 25px;

    color: var(--text);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: flex;

    justify-content: space-between;

    margin-bottom: 7px;

    color: #4c4943;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: .03em;
}

.optional {
    color: #99938a;

    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    display: block;

    width: 90%;

    border: 1px solid #d9d2c7;

    border-radius: 8px;

    background: #fff;

    color: var(--text);

    font-family: var(--sans);

    font-size: 16px;

    outline: none;

    transition:
        border-color .2s,
        box-shadow .2s;
}

.form-group input,
.form-group select {
    height: 52px;

    padding: 0 13px;
}

.form-group textarea {
    resize: vertical;

    min-height: 82px;

    padding: 12px 13px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);

    box-shadow:
        0 0 0 3px rgba(61, 81, 56, .09);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa49b;
}


/* DATE INPUT */

.form-group input[type="date"] {
    color-scheme: light;
}


/* PRIVACY */

.privacy-check {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    cursor: pointer;

    margin: 4px 0 20px;

    color: #777169;

    font-size: 14px;

    line-height: 1.5;
}

.privacy-check input {
    width: 15px;
    height: 15px;

    flex-shrink: 0;

    margin-top: 1px;

    accent-color: var(--green);
}


/* SUBMIT */

.form-submit {
    width: 100%;
    font-size: 16px;

    border: 0;

    cursor: pointer;

    background: var(--green);

    color: white;
}

.form-submit:hover {
    background: var(--green-dark);
}


/* STATUS */

.form-status {
    display: none;

    margin-top: 14px;

    padding: 11px 13px;

    border-radius: 8px;

    background: #e8efe5;

    color: var(--green-dark);

    font-size: 15px;

    line-height: 1.45;
}

.form-status.visible {
    display: block;
}


/* ERROR */

.form-group.error input,
.form-group.error select {
    border-color: #b45c4c;

    box-shadow:
        0 0 0 3px rgba(180, 92, 76, .08);
}


/* =========================================
   BOOKING RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .booking-inner {
        grid-template-columns: 1fr 430px;
    }

}


@media (max-width: 800px) {

    .booking-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .booking-form {
        padding: 25px;
    }

}


@media (max-width: 480px) {

    .booking-form {
        padding: 21px;

        border-radius: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-title {
        font-size: 25px;
    }

}


.room-types-grid {
    align-items: stretch;
}

.room-type-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-type-card .room-info-button {
    margin-top: auto;
}