:root {
    --ink: #242421;
    --ink-soft: #55564f;
    --paper: #f6f2ea;
    --paper-2: #ebe4d8;
    --white: #fffdf9;
    --moss: #626a57;
    --moss-dark: #485044;
    --wood: #a46f49;
    --danger: #f2d9d5;
    --danger-dark: #7c3930;
    --line: rgba(36, 36, 33, .14);
    --shadow: 0 24px 70px rgba(28, 26, 22, .12);
    --radius: 24px;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

button {
    cursor: pointer;
}

h4 {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
    color: #836c55;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.planchic {
    color: var(--moss-dark);
    font-weight: 600;
    font-family: var(--serif), Georgia, serif;
}

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px clamp(22px, 5vw, 76px);
    color: white;
}

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 24px;
}

.brand strong, .brand small {
    display: block;
    line-height: 1.15;
}

.brand strong {
    font-size: 17px;
    letter-spacing: .02em;
}

.brand small {
    margin-top: 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    opacity: .72;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 600;
}

.main-nav > a:not(.btn) {
    position: relative;
}

.main-nav > a:not(.btn)::after {
    content: '';
    position: absolute;
    height: 1px;
    left: 0;
    right: 100%;
    bottom: -5px;
    background: currentColor;
    transition: right .2s ease;
}

.main-nav > a:hover::after {
    right: 0;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 26px;
}

.danger-zone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.25rem;
    background: #fbf4f2;
    border: 1px solid #ead2cd;
    border-radius: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: white;
    font-weight: 700;
    transition: transform .18s ease, background .18s ease;
}

.btn-danger {
    color: var(--danger-dark);
    background: var(--danger);
    border-color: var(--danger-dark);
}

.btn:hover {
    transform: translateY(-2px);
    background: #11110f;
}

.btn-danger:hover {
    transform: translateY(-2px);
    background: #f44336;
    color: var(--paper);
}

.btn-small {
    min-height: 42px;
    padding: 0 18px;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .65);
    backdrop-filter: blur(8px);
}

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

.btn-full {
    width: 100%;
}

.mb-20 {
    margin-bottom: 20px;
}
.mt-20 {
    margin-top: 20px;
}

.text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    font-weight: 700;
}

.text-link span {
    transition: transform .18s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.text-center {
    text-align: center;
}
.text-right {
    text-align: right!important;
}

.full {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: white;
    background: #30342e;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(17, 17, 15, .7), rgba(17, 17, 15, .12)), radial-gradient(circle at 72% 35%, #727766, #30342e 58%, #252720);
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(880px, 75%);
    padding: 180px clamp(22px, 7vw, 110px) 100px;
}

.eyebrow {
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 11px;
    font-weight: 700;
}

.hero h1, .page-hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: .98;
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(54px, 7vw, 105px);
}

.hero h1 em {
    font-weight: 500;
    color: #d6c7b3;
}

.hero-copy {
    max-width: 600px;
    margin: 28px 0 34px;
    font-size: clamp(17px, 1.8vw, 21px);
    color: rgba(255, 255, 255, .85);
}

.hero-actions {
    display: flex;
    gap: 26px;
    align-items: center;
}

.hero .btn {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.hero-card {
    position: absolute;
    z-index: 3;
    right: clamp(22px, 5vw, 76px);
    bottom: 48px;
    width: 250px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 20px;
    background: rgba(26, 27, 23, .45);
    backdrop-filter: blur(14px);
}

.hero-card span, .hero-card small, .hero-card strong {
    display: block;
}

.hero-card span {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
}

.hero-card strong {
    margin: 4px 0;
    font: 600 28px var(--serif);
}

.hero-card small {
    opacity: .76;
}

.section-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(40px, 8vw, 140px);
    padding: clamp(80px, 10vw, 150px) clamp(22px, 7vw, 110px);
}

.section-grid h2, .visual-copy h2, .booking-cta h2, .contact-card h2 {
    margin: 0;
    font: 500 clamp(42px, 5vw, 72px)/1.02 var(--serif);
    letter-spacing: -.035em;
}

.prose-large {
    max-width: 920px;
}

.prose-large p {
    margin-top: 0;
    font-size: clamp(19px, 2vw, 26px);
    color: var(--ink-soft);
    line-height: 1.65;
}

.feature-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--ink);
    color: white;
}

.feature-band article {
    min-height: 260px;
    padding: 42px 34px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.feature-no {
    display: block;
    font: 500 23px var(--serif);
    opacity: .45;
}

.feature-band h3 {
    margin: 60px 0 10px;
    font: 500 25px var(--serif);
}

.feature-band p {
    color: rgba(255, 255, 255, .66);
}

.visual-story {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 720px;
}

.visual-block {
    background: linear-gradient(145deg, #8a897c, #454b40);
    background-position: center;
    background-size: cover;
}

.visual-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 8vw, 120px);
    background: #e2d8c8;
}

.visual-copy p:not(.eyebrow) {
    max-width: 560px;
    color: var(--ink-soft);
    font-size: 18px;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    padding: 0;
    margin-top: 28px;
    list-style: none;
    font-weight: 600;
}

.check-list li {
    border-top: 1px solid rgba(36, 36, 33, .2);
    padding-top: 12px;
}

.quote-section {
    padding: clamp(90px, 12vw, 180px) clamp(22px, 12vw, 190px);
    text-align: center;
}

.quote-section blockquote {
    max-width: 1100px;
    margin: auto;
    font: 500 clamp(42px, 6vw, 84px)/1.08 var(--serif);
    letter-spacing: -.04em;
}

.quote-section p {
    color: var(--ink-soft);
}

.booking-cta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    padding: clamp(70px, 9vw, 130px) clamp(22px, 7vw, 110px);
    background: var(--moss-dark);
    color: white;
}

.booking-cta h2 {
    font-size: clamp(42px, 5.5vw, 80px);
}

.site-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 70px clamp(22px, 7vw, 110px);
    background: #1d1e1b;
    color: rgba(255, 255, 255, .72);
}

.site-footer > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.site-footer strong {
    color: white;
}

.site-footer > div > strong {
    margin-bottom: 10px;
}

.site-footer p {
    max-width: 410px;
}

.brand-footer {
    color: white;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 64vh;
    display: flex;
    align-items: flex-end;
    padding: 160px clamp(22px, 7vw, 110px) 80px;
    background: linear-gradient(135deg, #20221e, #606658);
    color: white;
}

.page-hero > div {
    max-width: 1000px;
}

.page-hero h1 {
    font-size: clamp(58px, 8vw, 110px);
}

.page-hero p:last-child {
    max-width: 700px;
    font-size: 19px;
    color: rgba(255, 255, 255, .75);
}

.page-hero.compact {
    min-height: 480px;
}

.room-intro {
    padding-bottom: 80px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 130px;
    gap: 12px;
    padding: 0 clamp(22px, 5vw, 80px) 100px;
}

.gallery-item {
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    background: #ccc;
}

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

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

.gallery-item-1 {
    grid-column: span 7;
    grid-row: span 4;
}

.gallery-item-2 {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item-3 {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item:nth-child(n+4) {
    grid-column: span 4;
    grid-row: span 2;
}

.lightbox {
    width: min(94vw, 1300px);
    padding: 0;
    border: 0;
    background: transparent;
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, .86);
}

.lightbox img {
    max-height: 86vh;
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    border: 0;
    background: transparent;
    color: white;
    font-size: 42px;
}

.amenities {
    background: var(--white);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 34px;
}

.amenity {
    display: flex;
    gap: 13px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
}

.amenity span {
    color: var(--moss);
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
    gap: clamp(30px, 5vw, 80px);
    padding: 80px clamp(22px, 7vw, 110px) 120px;
    align-items: start;
}

.booking-form-card, .contact-card, .login-card {
    padding: clamp(28px, 4vw, 52px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.form-grid .full {
    grid-column: 1/-1;
}

.form-grid > div > div, .admin-form-card > form > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

label, .form-grid label {
    display: flex;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
}

input, select, textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #cbc6bd;
    border-radius: 12px;
    background: #fff;
    padding: 11px 13px;
    color: var(--ink);
    outline: none;
}

input[type="checkbox" i] {
    min-height: auto;
    width: auto;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--moss);
    box-shadow: 0 0 0 3px rgba(98, 106, 87, .12);
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: .12em;
}

.booking-summary {
    position: sticky;
    top: 26px;
    padding: 38px;
    border-radius: var(--radius);
    background: var(--ink);
    color: white;
}

.summary-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 10px 0 0;
}

.summary-price strong {
    font: 500 55px var(--serif);
}

.summary-price span {
    opacity: .6;
}

.booking-summary > p:not(.eyebrow) {
    min-height: 52px;
    color: rgba(255, 255, 255, .66);
}

.summary-rule {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.summary-rule span {
    opacity: .6;
}

.booking-summary small {
    display: block;
    margin-top: 28px;
    color: rgba(255, 255, 255, .5);
}

.is-available .booking-summary {
    background: var(--moss-dark);
}

.contact-layout {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: clamp(30px, 5vw, 80px);
    padding: 80px clamp(22px, 7vw, 110px) 120px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-card h2 {
    margin-bottom: 22px;
}

.contact-card a {
    font-weight: 700;
    margin-top: 8px;
}

.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 100px 22px;
    background: linear-gradient(135deg, #23241f, #646a5b);
}

.login-card {
    width: min(460px, 100%);
}

.login-card h1 {
    margin-top: 0;
    font: 500 46px var(--serif);
}

.login-card label {
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flash-wrap {
    position: fixed;
    top: 90px;
    right: 25px;
    z-index: 100;
    width: min(420px, calc(100vw - 50px));
}

.flash {
    margin-bottom: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #e7efe2;
    border: 1px solid #b6c5aa;
    color: #2f4929;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
}

.flash-error {
    background: #f9e3df;
    border-color: #e6aaa0;
    color: #7a3329;
}

.flash-info {
    background: #e7f0f9;
    border-color: #a3c4e1;
    color: #2b4d6c;
}

.flash-warning {
    color: #7a4b2b;
}

.flash-warning ul li {
    line-height: 18px;
    list-style: none;
}

/* ==========================================================
   RATES
   ========================================================== */

.rates-hero {
    padding: 7rem 1.5rem 4.5rem;

    text-align: center;

    background:
        linear-gradient(
            180deg,
            #f4f1e9 0%,
            #faf9f5 100%
        );
}


.rates-hero__inner {
    max-width: 800px;
    margin: 0 auto;
}

.rate-bg_green {
    background: var(--moss-dark);
}


.rates-hero h1 {
    margin: .4rem 0 1rem;
    font-family: var(--serif), serif;
    font-size: clamp(3.6rem, 8vw, 6.5rem);
    font-weight: 400;
    line-height: .95;
    color: var(--ink);
    letter-spacing: -.055em;
}


.rates-hero__intro {
    max-width: 520px;
    margin: 0 auto;

    font-size: 1.05rem;
    line-height: 1.7;

    color: var(--ink-soft);
}


.rates-page {
    width: min(1180px, calc(100% - 3rem));

    margin: 0 auto;
    padding: 5rem 0 7rem;
}


/* ==========================================================
   PERIOD
   ========================================================== */

.rates-period {
    margin-bottom: 5rem;
}


.rates-period__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;

    margin-bottom: 1.8rem;
}


.rates-period__header h2 {
    margin: .25rem 0 0;

    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;

    color: var(--ink);

    letter-spacing: -.035em;
}


.rates-period__dates {
    display: flex;
    align-items: center;
    gap: .5rem;

    padding: .55rem .8rem;

    font-size: .72rem;
    font-weight: 650;

    color: #776a5d;

    background: #f2eee6;

    border-radius: 999px;
}


/* ==========================================================
   RATE CARDS
   ========================================================== */

.rates-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}


.rate-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.4rem;
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(41, 52, 45, .04);
}

.rate-card--featured {
    border-color: #9cab9f;
    box-shadow: 0 15px 35px rgba(41, 52, 45, .08);
}

.rate-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: .4rem .8rem;
    font-size: .62rem;
    font-weight: 700;
    color: #fff;
    background: #41594a;
    border-radius: 999px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.rate-card__duration {
    margin-bottom: 1.2rem;
    font-family: var(--serif);
    font-size: 1.45rem;
    color: #29342d;
}

.rate-card__prices {
    display: grid;
    gap: .65rem;
}

.rate-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 82px;
    padding: .9rem 1rem;
    background: #faf9f6;
    border: 1px solid #ebe7df;
    border-radius: 12px;
}

.rate-card__price-row--weekend {
    background: #f0f4f0;
    border-color: #dce5dd;
}

.rate-card__price-label {
    display: flex;
    align-items: center;
    gap: .7rem;
    min-width: 0;
}

.rate-card__price-label > div {
    display: flex;
    flex-direction: column;
    gap: .12rem;
}

.rate-card__price-label strong {
    font-size: .75rem;
    font-weight: 700;
    color: #354039;
}

.rate-card__price-label small {
    font-size: .62rem;
    color: #99948c;
}

.rate-card__day-dot {
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    background: #b7aa99;
    border-radius: 50%;
}

.rate-card__price-row--weekend .rate-card__day-dot {
    background: #627b69;
}

.rate-card__price {
    display: grid;
    grid-template-columns: auto auto;
    align-items: baseline;
    column-gap: .25rem;
    flex-shrink: 0;
    text-align: right;
}

.rate-card__price strong {
    font-family: var(--serif);
    font-size: 1.85rem;
    font-weight: 400;
    line-height: 1;
    color: #29342d;
}

.rate-card__price > span {
    font-size: .65rem;
    font-weight: 700;
    color: #77736c;
}

.rate-card__price small {
    grid-column: 1 / -1;
    margin-top: .15rem;
    font-size: .58rem;
    color: #aaa59c;
}

.rate-card__saving {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-top: 1rem;
    padding: .7rem .8rem;
    font-size: .68rem;
    color: #52705c;
    background: #f3f6f2;
    border-radius: 9px;
}

.rate-card__saving strong {
    font-size: .7rem;
}

.rate-card__saving--empty {
    color: #9a958d;
    background: transparent;
}

.rate-card__included {
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: .68rem;
    color: #8b877f;
    border-top: 1px solid #eeeae3;
}

.rate-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 1rem;
    padding: 0 1rem;
    font-size: .72rem;
    font-weight: 700;
    color: #41594a;
    background: transparent;
    border: 1px solid #cad4cc;
    border-radius: 10px;
    text-decoration: none;
    transition: color .15s ease, background .15s ease, border-color .15s ease, transform .15s ease;
}

.rate-card__button:hover {
    color: #fff;
    background: #41594a;
    border-color: #41594a;
    transform: translateY(-1px);
}

.rate-card--featured .rate-card__button {
    color: #fff;
    background: #41594a;
    border-color: #41594a;
}

.rate-card--featured .rate-card__button:hover {
    background: #314438;
    border-color: #314438;
}


.rate-card__included {
    display: grid;
    gap: .65rem;

    margin: 0 0 2rem;
    padding: 0;

    list-style: none;
}


.rate-card__included li {
    position: relative;

    padding-left: 1.4rem;

    font-size: .8rem;
    line-height: 1.5;

    color: #626963;
}


.rate-card__included li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #5e8068;
}


.rate-card__button {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    margin-top: auto;

    font-size: .76rem;
    font-weight: 700;

    color: #fff;

    background: #41594a;

    border-radius: 11px;

    text-decoration: none;

    transition:
        background .15s ease,
        transform .15s ease;
}


.rate-card__button:hover {
    color: #fff;

    background: #314438;

    transform: translateY(-1px);
}


/* ==========================================================
   INFORMATION
   ========================================================== */

.rates-info {
    margin: 6rem 0;

    padding: 3.5rem;

    background: #29342d;

    border-radius: 26px;
}


.rates-info__main {
    max-width: 700px;
}


.rates-info__main .eyebrow {
    color: #c2ad93;
}


.rates-info__main h2 {
    margin: .4rem 0 1rem;

    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.08;

    color: #fff;
}


.rates-info__main > p:last-child {
    max-width: 620px;

    line-height: 1.7;

    color: rgba(255, 255, 255, .65);
}


.rates-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;

    margin-top: 3rem;
}


.rates-info-card {
    padding: 1.4rem;

    background: rgba(255, 255, 255, .06);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
}


.rates-info-card__number {
    display: block;

    margin-bottom: 1rem;

    font-family: var(--serif);
    font-size: 1.8rem;

    color: #fff;
}


.rates-info-card strong {
    display: block;

    margin-bottom: .35rem;

    color: #fff;
}


.rates-info-card p {
    margin: 0;

    font-size: .75rem;
    line-height: 1.55;

    color: rgba(255, 255, 255, .55);
}


/* ==========================================================
   FEES
   ========================================================== */

.rates-fees {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;

    margin: 5rem 0;
}


.rates-fees h2 {
    margin: .3rem 0;

    font-family: var(--serif);
    font-size: 2.3rem;
    font-weight: 500;

    color: var(--ink);
}


.rates-fees__list {
    display: grid;
}


.rates-fee {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;

    padding: 1.2rem 0;

    border-bottom: 1px solid #e8e5df;
}


.rates-fee:first-child {
    padding-top: 0;
}


.rates-fee strong {
    color: var(--ink);
}


.rates-fee p {
    margin: .3rem 0 0;

    font-size: .75rem;
    line-height: 1.5;

    color: var(--ink-soft);
}


.rates-fee > span {
    font-weight: 700;

    color: #41594a;

    white-space: nowrap;
}


.rates-fee > span small {
    display: block;

    margin-top: .2rem;

    font-size: .62rem;
    font-weight: 500;

    color: #99958e;

    text-align: right;
}


/* ==========================================================
   CTA
   ========================================================== */

.rates-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;

    margin-top: 6rem;
    padding: 3rem;

    background: #f3f0e8;

    border-radius: 22px;
}


.rates-cta h2 {
    margin: .3rem 0;

    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 500;

    color: var(--ink);
}


.rates-cta p:last-child {
    margin: .5rem 0 0;

    color: var(--ink-soft);
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

    .rates-cards {
        grid-template-columns: 1fr;
    }

    .rates-info__grid {
        grid-template-columns: 1fr;
    }

    .rates-fees {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

}


@media (max-width: 650px) {

    .rates-page {
        width: min(
            100% - 2rem,
            1180px
        );

        padding-top: 3rem;
    }

    .rates-hero {
        padding-top: 5rem;
    }

    .rates-period__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .rates-info {
        padding: 2rem 1.4rem;
    }

    .rates-cta {
        align-items: stretch;
        flex-direction: column;

        padding: 2rem;
    }

    .rates-cta .btn {
        width: 100%;
    }

}

@media (max-width: 900px) {
    .site-header {
        color: white;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
        border-radius: 18px;
        background: rgba(24, 25, 22, .96);
    }

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

    .hero {
        min-height: 800px;
    }

    .hero-content {
        width: 100%;
        padding-bottom: 190px;
    }

    .hero-card {
        left: 22px;
        right: 22px;
        bottom: 35px;
        width: auto;
    }

    .section-grid, .visual-story, .booking-layout, .contact-layout {
        grid-template-columns: 1fr;
    }

    .feature-band {
        grid-template-columns: 1fr 1fr;
    }

    .booking-summary {
        position: static;
    }

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

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

@media (max-width: 620px) {
    .hero h1 {
        font-size: 53px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-grid {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .feature-band {
        grid-template-columns: 1fr;
    }

    .feature-band article {
        min-height: 200px;
    }

    .feature-band h3 {
        margin-top: 35px;
    }

    .check-list, .amenity-grid, .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .full {
        grid-column: auto;
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-item, .gallery-item-1, .gallery-item-2, .gallery-item-3, .gallery-item:nth-child(n+4) {
        grid-column: auto;
        grid-row: auto;
    }

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

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

    .site-footer > div:first-child {
        grid-column: auto;
    }
}
