:root {
    --nc-ink: #171c1a;
    --nc-muted: #626b67;
    --nc-paper: #f7f8f6;
    --nc-white: #ffffff;
    --nc-forest: #173d32;
    --nc-forest-deep: #102b24;
    --nc-coral: #c85d43;
    --nc-coral-dark: #9f422f;
    --nc-gold: #c6a96f;
    --nc-line: #d8d8d1;
    --nc-soft-green: #dce7e1;
    --nc-shadow: 0 18px 46px rgba(18, 31, 27, 0.12);
    --nc-header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    background: var(--nc-paper);
    color: var(--nc-ink);
    font-family: Inter, Arial, sans-serif;
    letter-spacing: 0;
    margin: 0;
    overflow-x: clip;
}

body,
button,
input,
select,
textarea {
    font-family: Inter, Arial, sans-serif;
}

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

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

.nc-container {
    margin: 0 auto;
    max-width: 1240px;
    padding-left: 28px;
    padding-right: 28px;
    width: 100%;
}

.nc-main {
    min-height: 60vh;
}

.nc-skip-link {
    background: var(--nc-ink);
    color: #fff;
    left: 12px;
    padding: 10px 14px;
    position: fixed;
    top: -80px;
    z-index: 10000;
}

.nc-skip-link:focus {
    top: 12px;
}

.nc-header {
    background: rgba(244, 243, 238, 0.98);
    border-bottom: 1px solid rgba(23, 28, 26, 0.11);
    height: var(--nc-header-height);
    position: relative;
    z-index: 1000;
}

.nc-header.is-sticky,
.nc-header.scrolled {
    box-shadow: 0 8px 24px rgba(23, 28, 26, 0.08);
}

.nc-header__inner {
    align-items: center;
    display: flex;
    gap: 28px;
    height: 100%;
    justify-content: space-between;
}

.nc-brand {
    flex: 0 0 auto;
    min-width: 118px;
}

.nc-brand .custom-logo-link {
    align-items: center;
    display: flex;
}

.nc-brand .custom-logo {
    height: 46px;
    max-width: 132px;
    object-fit: contain;
    width: auto;
}

.nc-brand > a {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nc-brand strong {
    color: var(--nc-forest);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 21px;
    font-weight: 600;
}

.nc-brand span {
    color: var(--nc-muted);
    font-size: 8px;
    font-weight: 600;
    margin-top: 6px;
    text-transform: uppercase;
}

.nc-nav {
    margin-left: auto;
}

.nc-nav ul {
    align-items: center;
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nc-nav a {
    color: #303734;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.nc-nav a:hover,
.nc-nav a:focus-visible {
    color: var(--nc-coral-dark);
}

.nc-header__actions {
    align-items: center;
    display: flex;
    gap: 12px;
}

.nc-menu-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    height: 44px;
    justify-content: center;
    padding: 10px;
    width: 44px;
}

.nc-menu-toggle span {
    background: var(--nc-ink);
    display: block;
    height: 2px;
    margin: 5px auto;
    width: 22px;
}

.nc-mobile-nav {
    background: var(--nc-paper);
    border-top: 1px solid var(--nc-line);
    display: none;
    left: 0;
    max-height: calc(100vh - var(--nc-header-height));
    overflow-y: auto;
    padding: 12px 28px 24px;
    position: absolute;
    right: 0;
    top: 100%;
}

.nc-mobile-nav.is-open,
.nc-mobile-nav.open {
    display: block;
}

.nc-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nc-mobile-nav li {
    border-bottom: 1px solid var(--nc-line);
}

.nc-mobile-nav a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 0;
}

.nc-button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    text-align: center;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nc-button:hover,
.nc-button:focus-visible {
    transform: translateY(-1px);
}

.nc-button--small {
    min-height: 40px;
    padding: 9px 15px;
}

.nc-button--accent {
    background: var(--nc-coral);
    color: #fff;
}

.nc-button--accent:hover,
.nc-button--accent:focus-visible {
    background: var(--nc-coral-dark);
    color: #fff;
}

.nc-button--messenger {
    background: #fff;
    border-color: var(--nc-forest);
    color: var(--nc-forest);
}

.nc-button--messenger:hover,
.nc-button--messenger:focus-visible {
    background: var(--nc-soft-green);
    border-color: var(--nc-forest-deep);
    color: var(--nc-forest-deep);
}

.nc-button--dark {
    background: var(--nc-forest);
    color: #fff;
}

.nc-button--dark:hover,
.nc-button--dark:focus-visible {
    background: var(--nc-forest-deep);
    color: #fff;
}

.nc-button--light {
    background: var(--nc-white);
    color: var(--nc-forest-deep);
}

.nc-button--ghost {
    border-color: rgba(255, 255, 255, 0.72);
    color: #fff;
}

.nc-button--outline {
    background: transparent;
    border-color: var(--nc-forest);
    color: var(--nc-forest);
}

.nc-button--block {
    display: flex;
    width: 100%;
}

.nc-kicker {
    color: var(--nc-coral-dark);
    display: block;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.nc-kicker--light {
    color: #f2c8b9;
}

.nc-hero {
    background-color: var(--nc-forest-deep);
    background-image: var(--nc-hero-image);
    background-position: center;
    background-size: cover;
    height: 82vh;
    max-height: 820px;
    min-height: 650px;
    overflow: hidden;
    position: relative;
}

.nc-hero__overlay {
    background: rgba(10, 24, 20, 0.61);
    inset: 0;
    position: absolute;
}

.nc-hero__content {
    align-items: flex-start;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding-bottom: 54px;
    padding-top: 54px;
    position: relative;
    z-index: 1;
}

.nc-hero h1 {
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 72px;
    font-weight: 500;
    line-height: 1.02;
    margin: 0 0 25px;
    max-width: 800px;
}

.nc-hero__content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 30px;
    max-width: 680px;
}

.nc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nc-hero__facts {
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    display: flex;
    gap: 34px;
    margin-top: 40px;
    padding-top: 22px;
}

.nc-hero__facts span {
    align-items: baseline;
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    font-size: 12px;
    gap: 7px;
}

.nc-hero__facts strong {
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    font-weight: 500;
}

.nc-hero__next {
    bottom: 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    right: 28px;
    text-transform: uppercase;
    z-index: 2;
}

.nc-section {
    padding: 92px 0;
}

.nc-section-head {
    margin-bottom: 42px;
}

.nc-section-head--split {
    align-items: end;
    display: grid;
    gap: 50px;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.nc-section-head h2,
.nc-experience-band h2,
.nc-final-cta h2,
.nc-room-copy h2,
.nc-location-info h2 {
    color: var(--nc-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 43px;
    font-weight: 500;
    line-height: 1.15;
    margin: 0;
}

.nc-section-head p,
.nc-location-info p {
    color: var(--nc-muted);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.nc-pathways {
    background: var(--nc-paper);
}

.nc-pathway-list {
    border-top: 1px solid var(--nc-line);
}

.nc-pathway {
    align-items: center;
    border-bottom: 1px solid var(--nc-line);
    display: grid;
    gap: 24px;
    grid-template-columns: 54px minmax(210px, 0.7fr) minmax(300px, 1.3fr) 170px;
    padding: 25px 0;
}

.nc-pathway:hover h3,
.nc-pathway:focus-visible h3,
.nc-pathway:hover .nc-pathway__action,
.nc-pathway:focus-visible .nc-pathway__action {
    color: var(--nc-coral-dark);
}

.nc-pathway__number {
    color: var(--nc-coral-dark);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
}

.nc-pathway h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.nc-pathway p {
    color: var(--nc-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.nc-pathway__action {
    font-size: 13px;
    font-weight: 700;
    justify-self: end;
}

.nc-featured {
    background: var(--nc-white);
}

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

.nc-room-card {
    background: var(--nc-white);
    border: 1px solid var(--nc-line);
    border-radius: 6px;
    min-width: 0;
    overflow: hidden;
}

.nc-room-card__media {
    aspect-ratio: 16 / 10;
    background: var(--nc-soft-green);
    display: block;
    overflow: hidden;
    position: relative;
}

.nc-room-card__media img {
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
    width: 100%;
}

.nc-room-card:hover .nc-room-card__media img {
    transform: scale(1.025);
}

.nc-room-card__line,
.nc-room-card__status {
    background: rgba(16, 43, 36, 0.88);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    left: 14px;
    padding: 7px 9px;
    position: absolute;
    text-transform: uppercase;
    top: 14px;
}

.nc-room-card__status {
    background: rgba(255, 255, 255, 0.92);
    color: var(--nc-forest);
    left: auto;
    right: 14px;
}

.nc-room-card__body {
    padding: 25px;
}

.nc-room-card__heading {
    align-items: start;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.nc-room-card__heading h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.nc-room-card__heading > span {
    color: var(--nc-muted);
    flex: 0 0 auto;
    font-size: 12px;
    margin-top: 6px;
}

.nc-room-card__meta {
    color: var(--nc-forest);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    margin: 14px 0 9px;
}

.nc-room-card__copy {
    color: var(--nc-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    min-height: 69px;
}

.nc-room-card__footer {
    align-items: end;
    border-top: 1px solid var(--nc-line);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 18px;
}

.nc-price {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.nc-price > span {
    color: var(--nc-muted);
    font-size: 10px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.nc-price strong {
    font-size: 17px;
    white-space: nowrap;
}

.nc-price small {
    color: var(--nc-muted);
    font-size: 11px;
    font-weight: 500;
}

.nc-text-link {
    color: var(--nc-coral-dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-align: right;
}

.nc-section-action {
    margin-top: 36px;
    text-align: center;
}

.nc-experience-band {
    background: var(--nc-forest-deep);
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(400px, 0.82fr);
    min-height: 610px;
}

.nc-experience-band__media {
    min-height: 610px;
    overflow: hidden;
}

.nc-experience-band__media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.nc-experience-band__content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}

.nc-experience-band h2 {
    color: #fff;
    margin-bottom: 25px;
}

.nc-experience-band p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 30px;
}

.nc-location-preview {
    background: var(--nc-paper);
}

.nc-location-preview__grid,
.nc-location-info {
    align-items: start;
    display: grid;
    gap: 80px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
}

.nc-location-preview h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 46px;
    font-weight: 500;
    margin: 0 0 18px;
}

.nc-location-preview p {
    color: var(--nc-muted);
    line-height: 1.75;
    margin: 0 0 20px;
    max-width: 620px;
}

.nc-contact-bar {
    border-top: 1px solid var(--nc-line);
    min-width: 0;
}

.nc-contact-bar a {
    align-items: center;
    border-bottom: 1px solid var(--nc-line);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    min-height: 66px;
    padding: 12px 0;
}

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

.nc-contact-bar strong {
    font-size: 14px;
    text-align: right;
}

.nc-final-cta {
    background: var(--nc-forest);
    color: #fff;
    padding: 72px 0;
}

.nc-final-cta__inner {
    align-items: center;
    display: grid;
    gap: 90px;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.nc-final-cta h2 {
    color: #fff;
}

.nc-final-cta p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin: 0 0 24px;
}

.nc-page-hero {
    background: var(--nc-forest-deep);
    color: #fff;
    min-height: 430px;
    padding: 100px 0 82px;
    position: relative;
}

.nc-page-hero--image {
    background-image: var(--nc-page-image);
    background-position: center;
    background-size: cover;
}

.nc-page-hero--image::before {
    background: rgba(10, 25, 21, 0.67);
    content: "";
    inset: 0;
    position: absolute;
}

.nc-page-hero .nc-container {
    position: relative;
    z-index: 1;
}

.nc-page-hero h1,
.nc-simple-hero h1,
.nc-booking-intro h1,
.nc-room-top h1 {
    color: inherit;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 62px;
    font-weight: 500;
    line-height: 1.08;
    margin: 0 0 22px;
    max-width: 900px;
}

.nc-page-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
    max-width: 720px;
}

.nc-rate-plans {
    background: var(--nc-forest);
    color: #fff;
    padding: 30px 0;
}

.nc-rate-plans__grid {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
}

.nc-rate-plans__grid > div {
    display: flex;
    flex-direction: column;
}

.nc-rate-plans strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 500;
}

.nc-rate-plans span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.5;
}

.nc-booking-intro {
    background: var(--nc-white);
    border-bottom: 1px solid var(--nc-line);
    padding: 65px 0 55px;
}

.nc-booking-intro__grid {
    align-items: end;
    display: grid;
    gap: 60px;
    grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr);
}

.nc-booking-intro h1 {
    color: var(--nc-ink);
    font-size: 51px;
}

.nc-booking-intro p {
    color: var(--nc-muted);
    line-height: 1.7;
    margin: 0;
    max-width: 680px;
}

.nc-booking-intro ol {
    border-top: 1px solid var(--nc-line);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 16px 0 0;
}

.nc-booking-intro li {
    color: var(--nc-muted);
    display: flex;
    flex-direction: column;
    font-size: 11px;
    gap: 6px;
}

.nc-booking-intro li span {
    color: var(--nc-coral-dark);
    font-size: 16px;
    font-weight: 800;
}

.nc-booking-shell {
    padding: 56px 0 90px;
}

.nc-booking-shell__grid {
    align-items: start;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) 350px;
}

.nc-booking-form {
    min-width: 0;
}

.nc-form-section {
    background: var(--nc-white);
    border: 1px solid var(--nc-line);
    border-radius: 6px;
    margin-bottom: 18px;
    padding: 28px;
}

.nc-form-section__head {
    align-items: start;
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.nc-form-section__head > span {
    color: var(--nc-coral-dark);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    line-height: 1.3;
}

.nc-form-section h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 5px;
}

.nc-form-section__head p {
    color: var(--nc-muted);
    font-size: 12px;
    margin: 0;
}

.nc-segmented {
    background: #eceeea;
    border-radius: 5px;
    display: grid;
    gap: 4px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 22px;
    padding: 4px;
}

.nc-segmented label {
    cursor: pointer;
    min-width: 0;
}

.nc-segmented input {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.nc-segmented span {
    align-items: center;
    border-radius: 3px;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    min-height: 44px;
    padding: 9px 12px;
    text-align: center;
}

.nc-segmented input:checked + span {
    background: var(--nc-white);
    box-shadow: 0 2px 10px rgba(23, 28, 26, 0.08);
    color: var(--nc-forest);
}

.nc-segmented input:focus-visible + span {
    outline: 2px solid var(--nc-coral);
    outline-offset: 1px;
}

.nc-fields {
    display: grid;
    gap: 16px;
}

.nc-fields--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.nc-field {
    margin-bottom: 18px;
    min-width: 0;
}

.nc-field label {
    color: #303734;
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.nc-field input,
.nc-field select,
.nc-field textarea {
    background: #fff;
    border: 1px solid #c7cbc7;
    border-radius: 4px;
    color: var(--nc-ink);
    font-size: 14px;
    line-height: 1.4;
    max-width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    width: 100%;
}

.nc-field textarea {
    min-height: 92px;
    resize: vertical;
}

.nc-field input:focus,
.nc-field select:focus,
.nc-field textarea:focus {
    border-color: var(--nc-forest);
    box-shadow: 0 0 0 3px rgba(23, 61, 50, 0.11);
    outline: 0;
}

.nc-consent {
    align-items: flex-start;
    color: var(--nc-muted);
    cursor: pointer;
    display: flex;
    font-size: 11px;
    gap: 9px;
    line-height: 1.5;
}

.nc-consent input {
    flex: 0 0 auto;
    height: 17px;
    margin-top: 1px;
    width: 17px;
}

.nc-honeypot {
    height: 0;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.nc-form-submit {
    align-items: center;
    background: var(--nc-forest-deep);
    border-radius: 6px;
    color: #fff;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding: 22px 24px;
}

.nc-form-submit > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nc-form-submit strong {
    font-size: 13px;
}

.nc-form-submit span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    line-height: 1.5;
}

.nc-form-submit button[disabled] {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.nc-form-status {
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 14px;
    padding: 14px 16px;
}

.nc-form-status.is-success {
    background: #dcebe4;
    color: #174b38;
}

.nc-form-status.is-error {
    background: #f4dfda;
    color: #8a3025;
}

.nc-booking-aside {
    min-width: 0;
}

.nc-booking-aside__sticky,
.nc-room-booking__sticky {
    background: var(--nc-white);
    border: 1px solid var(--nc-line);
    border-radius: 6px;
    padding: 27px;
    position: sticky;
    top: 96px;
}

.nc-booking-aside h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 12px;
}

.nc-booking-aside__sticky > p {
    color: var(--nc-muted);
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 20px;
}

.nc-booking-note {
    background: var(--nc-paper);
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 24px;
    padding: 15px;
}

.nc-booking-note strong {
    font-size: 12px;
}

.nc-booking-note span {
    color: var(--nc-muted);
    font-size: 11px;
    line-height: 1.5;
}

.nc-room-top {
    background: var(--nc-white);
    padding: 26px 0 32px;
}

.nc-breadcrumb {
    color: var(--nc-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 11px;
    gap: 8px;
    margin-bottom: 22px;
}

.nc-room-top__grid {
    align-items: end;
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 1.3fr) minmax(430px, 0.7fr);
}

.nc-room-top h1 {
    color: var(--nc-ink);
    font-size: 44px;
    line-height: 1.08;
    margin: 12px 0 12px;
}

.nc-room-top h1 > span,
.nc-room-top h1 > small {
    display: block;
}

.nc-room-top h1 > small {
    color: var(--nc-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 8px;
}

.nc-room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.nc-room-tags span {
    border: 1px solid var(--nc-line);
    border-radius: 3px;
    color: var(--nc-forest);
    font-size: 10px;
    font-weight: 750;
    padding: 5px 7px;
}

.nc-room-top__grid > div > p {
    color: var(--nc-muted);
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
}

.nc-room-top__facts {
    border-bottom: 1px solid var(--nc-line);
    border-top: 1px solid var(--nc-line);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 14px 0;
}

.nc-room-top__facts span {
    color: var(--nc-muted);
    display: flex;
    flex-direction: column;
    font-size: 10px;
    gap: 5px;
    justify-content: center;
    min-width: 0;
    padding: 0 8px;
    text-align: center;
    text-transform: uppercase;
}

.nc-room-top__facts strong {
    color: var(--nc-ink);
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-transform: none;
}

.nc-room-top__facts .is-status strong {
    color: var(--nc-forest);
}

.nc-gallery {
    display: grid;
    gap: 8px;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 205px);
    max-width: 1500px;
    padding-bottom: 0;
    padding-top: 20px;
}

.nc-gallery__item {
    background: var(--nc-soft-green);
    border: 0;
    cursor: zoom-in;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.nc-gallery__primary {
    grid-row: 1 / 3;
}

.nc-gallery img {
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease;
    width: 100%;
}

.nc-gallery__item:hover img,
.nc-gallery__item:focus-visible img {
    transform: scale(1.025);
}

.nc-gallery__item:focus-visible {
    outline: 3px solid var(--nc-coral);
    outline-offset: 3px;
}

.nc-gallery__more {
    background: rgba(16, 27, 23, 0.88);
    bottom: 14px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 9px 12px;
    position: absolute;
    right: 14px;
}

.nc-gallery__more--mobile {
    display: none;
}

body.nc-lightbox-open {
    overflow: hidden;
}

.nc-room-lightbox[hidden] {
    display: none !important;
}

.nc-room-lightbox {
    inset: 0;
    position: fixed;
    z-index: 99999;
}

.nc-room-lightbox__backdrop {
    background: rgba(8, 12, 10, 0.96);
    inset: 0;
    position: absolute;
}

.nc-room-lightbox__dialog {
    display: grid;
    grid-template-rows: 68px minmax(0, 1fr) 96px;
    inset: 0;
    position: absolute;
}

.nc-room-lightbox__toolbar {
    align-items: center;
    color: #fff;
    display: flex;
    height: auto;
    justify-content: space-between;
    padding: 10px 18px;
    position: relative;
    z-index: 2;
}

.nc-room-lightbox__toolbar > span {
    font-size: 13px;
    font-weight: 800;
}

.nc-room-lightbox__toolbar > div {
    display: flex;
    gap: 8px;
}

.nc-room-lightbox__toolbar button,
.nc-room-lightbox__previous,
.nc-room-lightbox__next {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: Arial, sans-serif;
    height: 46px;
    justify-content: center;
    padding: 0;
    width: 46px;
}

.nc-room-lightbox__toolbar button {
    font-size: 26px;
}

.nc-room-lightbox__toolbar button:hover,
.nc-room-lightbox__toolbar button:focus-visible,
.nc-room-lightbox__previous:hover,
.nc-room-lightbox__previous:focus-visible,
.nc-room-lightbox__next:hover,
.nc-room-lightbox__next:focus-visible {
    background: #fff;
    color: var(--nc-forest-deep);
    outline: 0;
}

.nc-room-lightbox__stage {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    height: auto;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
    padding: 8px 80px 16px;
    position: relative;
    width: 100%;
}

.nc-room-lightbox__stage img {
    cursor: zoom-in;
    display: block;
    max-height: 100%;
    max-width: calc(100vw - 180px);
    object-fit: contain;
    user-select: none;
}

.nc-room-lightbox__thumbnails {
    align-items: center;
    display: flex;
    gap: 8px;
    min-width: 0;
    overflow-x: auto;
    padding: 8px 72px 16px;
    position: relative;
    scrollbar-width: none;
    z-index: 3;
}

.nc-room-lightbox__thumbnails[hidden] {
    display: none;
}

.nc-room-lightbox__thumbnails::-webkit-scrollbar {
    display: none;
}

.nc-room-lightbox__thumbnail {
    background: transparent;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    flex: 0 0 72px;
    height: 66px;
    opacity: 0.62;
    overflow: hidden;
    padding: 0;
}

.nc-room-lightbox__thumbnail img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.nc-room-lightbox__thumbnail:hover,
.nc-room-lightbox__thumbnail:focus-visible,
.nc-room-lightbox__thumbnail.is-active {
    border-color: #fff;
    opacity: 1;
    outline: none;
}

.nc-room-lightbox__stage.is-zoomed {
    align-items: flex-start;
    justify-content: flex-start;
    overflow: auto;
}

.nc-room-lightbox__stage.is-zoomed img {
    cursor: zoom-out;
    margin: auto;
    max-height: none;
    max-width: none;
    min-width: 150%;
}

.nc-room-lightbox__previous,
.nc-room-lightbox__next {
    font-size: 38px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.nc-room-lightbox__previous {
    left: 18px;
}

.nc-room-lightbox__next {
    right: 18px;
}

.nc-room-content {
    padding: 48px 0 72px;
}

.nc-room-content__grid {
    align-items: start;
    display: grid;
    gap: 46px;
    grid-template-columns: minmax(0, 1fr) 380px;
}

.nc-room-copy section {
    border-bottom: 1px solid var(--nc-line);
    padding: 0 0 28px;
}

.nc-room-copy section + section {
    padding-top: 28px;
}

.nc-room-copy h2 {
    font-size: 27px;
    margin: 5px 0 15px;
}

.nc-room-story p,
.nc-room-copy > section > p {
    color: var(--nc-muted);
    font-size: 15px;
    line-height: 1.72;
}

.nc-room-story p {
    margin: 0 0 12px;
}

.nc-room-story p:last-child {
    margin-bottom: 0;
}

.nc-room-section-heading {
    align-items: end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.nc-room-status {
    background: var(--nc-soft-green);
    border-radius: 3px;
    color: var(--nc-forest);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 15px;
    padding: 7px 9px;
}

.nc-room-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
}

.nc-room-specs div {
    border-bottom: 1px solid var(--nc-line);
    border-right: 1px solid var(--nc-line);
    border-top: 1px solid var(--nc-line);
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 76px;
    padding: 14px;
}

.nc-room-specs div:nth-child(n+4) {
    border-top: 0;
}

.nc-room-specs div:nth-child(3n+1) {
    border-left: 1px solid var(--nc-line);
}

.nc-room-specs dt {
    color: var(--nc-muted);
    font-size: 10px;
    text-transform: uppercase;
}

.nc-room-specs dd {
    color: var(--nc-ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.nc-room-info-grid {
    border-bottom: 1px solid var(--nc-line);
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nc-room-info-grid section,
.nc-room-info-grid section + section {
    border-bottom: 0;
    padding: 28px 0;
}

.nc-room-info-grid section + section {
    border-left: 1px solid var(--nc-line);
    padding-left: 36px;
}

.nc-room-info-grid h2 {
    font-size: 22px;
}

.nc-room-info-grid + .nc-room-amenities {
    padding-top: 28px;
}

.nc-room-checklist {
    display: grid;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nc-room-checklist li {
    border-top: 1px solid var(--nc-line);
    color: var(--nc-ink);
    font-size: 13px;
    line-height: 1.5;
    padding: 10px 0 10px 23px;
    position: relative;
}

.nc-room-checklist li::before {
    color: var(--nc-forest);
    content: "✓";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 10px;
}

.nc-room-checklist--plain li::before {
    content: "•";
}

.nc-amenities {
    display: grid;
    gap: 0 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.nc-amenities li {
    border-bottom: 1px solid var(--nc-line);
    font-size: 13px;
    line-height: 1.45;
    padding: 11px 0 11px 20px;
    position: relative;
}

.nc-amenities li::before {
    color: var(--nc-coral);
    content: "✓";
    font-size: 11px;
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 12px;
}

.nc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nc-chips span {
    background: var(--nc-soft-green);
    border-radius: 3px;
    color: var(--nc-forest);
    font-size: 12px;
    font-weight: 700;
    padding: 9px 11px;
}

.nc-room-note {
    background: var(--nc-paper);
    border-left: 3px solid var(--nc-coral);
    margin-top: 28px;
    padding: 16px 18px;
}

.nc-room-note strong {
    color: var(--nc-ink);
    font-size: 13px;
}

.nc-room-note p {
    color: var(--nc-muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 6px 0 0;
}

.nc-room-booking__price {
    border-bottom: 1px solid var(--nc-line);
    margin: 0 0 16px;
    padding-bottom: 18px;
}

.nc-room-booking__price strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    font-weight: 500;
}

.nc-room-booking__price span {
    color: var(--nc-muted);
    font-size: 12px;
}

.nc-room-booking__sticky > p:not(.nc-room-booking__price) {
    color: var(--nc-muted);
    font-size: 12px;
    line-height: 1.6;
    margin: 0 0 18px;
}

.nc-room-booking .nc-button + .nc-button {
    margin-top: 9px;
}

.nc-room-booking dl {
    margin: 24px 0 0;
}

.nc-room-booking dl div {
    border-top: 1px solid var(--nc-line);
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    padding: 12px 0;
}

.nc-room-booking dt {
    color: var(--nc-muted);
}

.nc-simple-hero {
    background: var(--nc-white);
    padding: 90px 0 76px;
}

.nc-simple-hero h1 {
    color: var(--nc-ink);
}

.nc-simple-hero p {
    color: var(--nc-muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
}

.nc-map-section {
    background: #d8ded9;
    line-height: 0;
}

.nc-map-section iframe {
    display: block;
}

.nc-review-themes {
    border-top: 1px solid var(--nc-line);
}

.nc-review-themes article {
    align-items: start;
    border-bottom: 1px solid var(--nc-line);
    display: grid;
    gap: 34px;
    grid-template-columns: 60px minmax(220px, 0.7fr) minmax(300px, 1.3fr);
    padding: 32px 0;
}

.nc-review-themes article > span {
    color: var(--nc-coral-dark);
    font-family: "Playfair Display", Georgia, serif;
}

.nc-review-themes h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    font-weight: 500;
    margin: 0;
}

.nc-review-themes p {
    color: var(--nc-muted);
    line-height: 1.75;
    margin: 0;
}

.nc-review-channel {
    background: var(--nc-forest-deep);
    color: #fff;
    padding: 76px 0;
}

.nc-review-channel > .nc-container {
    display: grid;
    gap: 80px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
}

.nc-review-channel h2 {
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 42px;
    font-weight: 500;
    margin: 0 0 16px;
}

.nc-review-channel p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
    margin: 0;
}

.nc-review-channel .nc-contact-bar,
.nc-review-channel .nc-contact-bar a {
    border-color: rgba(255, 255, 255, 0.2);
}

.nc-review-channel .nc-contact-bar span {
    color: rgba(255, 255, 255, 0.62);
}

.nc-footer {
    background: #121816;
    color: #fff;
    padding: 66px 0 22px;
}

.nc-footer__grid {
    display: grid;
    gap: 42px;
    grid-template-columns: 1.45fr repeat(3, minmax(150px, 0.75fr));
}

.nc-footer__brand strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    font-weight: 500;
}

.nc-footer__brand > span {
    color: var(--nc-gold);
    display: block;
    font-size: 9px;
    margin-top: 7px;
    text-transform: uppercase;
}

.nc-footer__brand p {
    color: rgba(255, 255, 255, 0.56);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 17px;
    margin-top: 26px;
}

.nc-footer h2 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 700;
    margin: 0 0 17px;
    text-transform: uppercase;
}

.nc-footer__grid > div:not(.nc-footer__brand) {
    display: flex;
    flex-direction: column;
}

.nc-footer__grid a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 11px;
    overflow-wrap: anywhere;
}

.nc-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.44);
    display: flex;
    font-size: 10px;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 20px;
}

.nc-mobile-cta {
    display: none;
}

.nc-prose {
    font-size: 16px;
    line-height: 1.75;
    max-width: 850px;
}

@media (max-width: 1120px) {
    .nc-nav ul {
        gap: 15px;
    }

    .nc-nav a {
        font-size: 12px;
    }

    .nc-experience-band__content {
        padding: 50px;
    }

    .nc-room-card__copy {
        min-height: 92px;
    }
}

@media (max-width: 960px) {
    :root {
        --nc-header-height: 68px;
    }

    .nc-nav,
    .nc-header__actions > .nc-button {
        display: none;
    }

    .nc-menu-toggle {
        display: block;
    }

    .nc-section-head--split,
    .nc-final-cta__inner,
    .nc-booking-intro__grid,
    .nc-room-top__grid {
        align-items: start;
        gap: 24px;
        grid-template-columns: 1fr;
    }

    .nc-pathway {
        grid-template-columns: 44px minmax(190px, 0.8fr) minmax(280px, 1.2fr);
    }

    .nc-pathway__action {
        grid-column: 2 / -1;
        justify-self: start;
    }

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

    .nc-location-preview__grid,
    .nc-location-info {
        gap: 45px;
        grid-template-columns: 1fr 1fr;
    }

    .nc-booking-shell__grid,
    .nc-room-content__grid {
        grid-template-columns: minmax(0, 1fr) 310px;
    }

    .nc-fields--3 {
        grid-template-columns: 1fr;
    }

    .nc-gallery {
        grid-template-rows: repeat(2, 180px);
    }

    .nc-footer__grid {
        grid-template-columns: 1.2fr repeat(3, minmax(130px, 1fr));
    }
}

@media (max-width: 767px) {
    .nc-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .nc-brand .custom-logo {
        height: 39px;
        max-width: 118px;
    }

    .nc-hero {
        height: 74vh;
        max-height: 700px;
        min-height: 590px;
    }

    .nc-hero__content {
        justify-content: flex-end;
        padding-bottom: 68px;
        padding-top: 38px;
    }

    .nc-hero h1 {
        font-size: 43px;
        margin-bottom: 18px;
    }

    .nc-hero__content > p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .nc-actions {
        width: 100%;
    }

    .nc-actions .nc-button {
        flex: 1 1 100%;
    }

    .nc-hero__facts {
        gap: 12px;
        justify-content: space-between;
        margin-top: 24px;
        padding-top: 15px;
        width: 100%;
    }

    .nc-hero__facts span {
        align-items: flex-start;
        flex-direction: column;
        font-size: 9px;
        gap: 2px;
    }

    .nc-hero__facts strong {
        font-size: 19px;
    }

    .nc-hero__next {
        display: none;
    }

    .nc-section {
        padding: 64px 0;
    }

    .nc-section-head {
        margin-bottom: 28px;
    }

    .nc-section-head h2,
    .nc-experience-band h2,
    .nc-final-cta h2,
    .nc-location-info h2 {
        font-size: 33px;
    }

    .nc-section-head--split {
        gap: 14px;
    }

    .nc-pathway {
        gap: 8px 14px;
        grid-template-columns: 36px minmax(0, 1fr);
        padding: 21px 0;
    }

    .nc-pathway h3 {
        font-size: 21px;
    }

    .nc-pathway p,
    .nc-pathway__action {
        grid-column: 2;
    }

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

    .nc-room-card__body {
        padding: 20px;
    }

    .nc-room-card__heading h3 {
        font-size: 22px;
    }

    .nc-room-card__copy {
        min-height: 0;
    }

    .nc-room-card__footer {
        align-items: start;
        flex-direction: column;
        gap: 14px;
    }

    .nc-text-link {
        text-align: left;
    }

    .nc-experience-band {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .nc-experience-band__media {
        aspect-ratio: 4 / 3;
        min-height: 0;
    }

    .nc-experience-band__content {
        padding: 48px 18px 56px;
    }

    .nc-location-preview__grid,
    .nc-location-info,
    .nc-final-cta__inner,
    .nc-review-channel > .nc-container {
        gap: 34px;
        grid-template-columns: minmax(0, 1fr);
    }

    .nc-location-preview h2 {
        font-size: 35px;
    }

    .nc-final-cta {
        padding: 58px 0;
    }

    .nc-page-hero {
        min-height: 390px;
        padding: 78px 0 65px;
    }

    .nc-page-hero h1,
    .nc-simple-hero h1,
    .nc-booking-intro h1,
    .nc-room-top h1 {
        font-size: 34px;
        overflow-wrap: anywhere;
    }

    .nc-room-top h1 > small {
        font-size: 13px;
    }

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

    .nc-rate-plans__grid .nc-button {
        grid-column: 1 / -1;
    }

    .nc-rate-plans strong {
        font-size: 23px;
    }

    .nc-booking-intro {
        padding: 48px 0 36px;
    }

    .nc-booking-intro__grid {
        gap: 26px;
    }

    .nc-booking-shell {
        padding: 30px 0 76px;
    }

    .nc-booking-shell__grid,
    .nc-room-content__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .nc-form-section {
        padding: 21px 17px;
    }

    .nc-fields--2,
    .nc-fields--3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .nc-form-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .nc-form-submit .nc-button {
        width: 100%;
    }

    .nc-booking-aside__sticky,
    .nc-room-booking__sticky {
        position: static;
    }

    .nc-room-top {
        padding: 25px 0 32px;
    }

    .nc-breadcrumb {
        margin-bottom: 25px;
    }

    .nc-room-top__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .nc-room-top__facts span {
        min-height: 58px;
    }

    .nc-gallery {
        display: grid;
        gap: 6px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 270px 145px;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }

    .nc-gallery__item:nth-child(n+4) {
        display: none;
    }

    .nc-gallery__primary {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .nc-gallery__more {
        bottom: 10px;
        right: 10px;
    }

    .nc-gallery__more--mobile {
        display: block;
    }

    .nc-gallery__more--desktop {
        display: none;
    }

    .nc-room-lightbox__toolbar {
        padding: 8px 12px;
    }

    .nc-room-lightbox__dialog {
        grid-template-rows: 62px minmax(0, 1fr) 82px;
    }

    .nc-room-lightbox__stage {
        padding: 6px 48px 10px;
    }

    .nc-room-lightbox__stage img {
        max-height: 100%;
        max-width: calc(100vw - 32px);
    }

    .nc-room-lightbox__thumbnails {
        gap: 6px;
        padding: 7px 52px 11px;
    }

    .nc-room-lightbox__thumbnail {
        flex-basis: 58px;
        height: 56px;
    }

    .nc-room-lightbox__previous,
    .nc-room-lightbox__next {
        background: rgba(8, 12, 10, 0.72);
        height: 44px;
        width: 44px;
    }

    .nc-room-lightbox__previous {
        left: 6px;
    }

    .nc-room-lightbox__next {
        right: 6px;
    }

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

    .nc-room-content__grid {
        gap: 30px;
    }

    .nc-room-booking {
        grid-row: 1;
    }

    .nc-room-copy {
        grid-row: 2;
    }

    .nc-room-copy h2 {
        font-size: 25px;
    }

    .nc-room-specs,
    .nc-amenities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nc-room-specs div:nth-child(n) {
        border-left: 0;
        border-right: 1px solid var(--nc-line);
        border-top: 1px solid var(--nc-line);
    }

    .nc-room-specs div:nth-child(n+3) {
        border-top: 0;
    }

    .nc-room-specs div:nth-child(2n+1) {
        border-left: 1px solid var(--nc-line);
    }

    .nc-room-info-grid {
        gap: 0;
        grid-template-columns: minmax(0, 1fr);
    }

    .nc-room-info-grid section,
    .nc-room-info-grid section + section {
        border-left: 0;
        padding: 26px 0;
    }

    .nc-room-info-grid section + section {
        border-top: 1px solid var(--nc-line);
    }

    .nc-simple-hero {
        padding: 65px 0 55px;
    }

    .nc-map-section iframe {
        height: 470px;
    }

    .nc-review-themes article {
        gap: 8px 15px;
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 25px 0;
    }

    .nc-review-themes p {
        grid-column: 2;
    }

    .nc-review-channel {
        padding: 58px 0;
    }

    .nc-review-channel h2 {
        font-size: 34px;
    }

    .nc-footer {
        padding-bottom: 88px;
    }

    .nc-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nc-footer__brand {
        grid-column: 1 / -1;
    }

    .nc-footer__grid > div:last-child {
        grid-column: 1 / -1;
    }

    .nc-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .nc-mobile-cta {
        background: #fff;
        border-top: 1px solid var(--nc-line);
        bottom: 0;
        display: grid;
        gap: 8px;
        grid-template-columns: minmax(0, 1fr) 108px;
        left: 0;
        padding: 9px 12px max(9px, env(safe-area-inset-bottom));
        position: fixed;
        right: 0;
        z-index: 1500;
    }

    .nc-mobile-cta a {
        align-items: center;
        background: var(--nc-coral);
        border-radius: 4px;
        color: #fff;
        display: flex;
        font-size: 13px;
        font-weight: 800;
        justify-content: center;
        min-height: 45px;
        padding: 8px 12px;
        text-align: center;
    }

    .nc-mobile-cta a:last-child {
        background: var(--nc-forest);
    }
}

@media (max-width: 390px) {
    .nc-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .nc-hero h1 {
        font-size: 39px;
    }

    .nc-page-hero h1,
    .nc-simple-hero h1,
    .nc-booking-intro h1,
    .nc-room-top h1 {
        font-size: 31px;
    }

    .nc-segmented span {
        font-size: 12px;
        min-height: 48px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .nc-room-card__heading {
        flex-direction: column;
        gap: 2px;
    }

    .nc-rate-plans__grid {
        gap: 18px 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
