:root {
    --bg: #f5f5ef;
    --surface: #ffffff;
    --surface-soft: #eef2ec;
    --surface-mist: #dde9ea;
    --ink: #163239;
    --ink-soft: #58717a;
    --line: rgba(22, 50, 57, 0.12);
    --brand: #1f7c82;
    --brand-deep: #0f4e57;
    --sand: #d6c297;
    --success: #1f7c82;
    --shadow: 0 24px 60px rgba(15, 35, 39, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shell: 1180px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: radial-gradient(circle at top, rgba(97, 167, 174, 0.18), transparent 34%), var(--bg);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    overflow-x: clip;
}

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

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

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

.shell {
    width: min(calc(100% - 2rem), var(--shell));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    transform: translateY(0);
    backdrop-filter: blur(18px);
    background: rgba(245, 245, 239, 0.82);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.mobile-topbar {
    position: sticky;
    top: 0;
    z-index: 55;
    transform: translateY(0);
    background: rgba(245, 245, 239, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    transition: background 0.35s ease, border-color 0.35s ease;
    display: none;
}

.site-header.is-hidden,
.mobile-topbar.is-hidden {
    transform: translateY(0);
}

.mobile-topbar.is-scrolled {
    background: rgba(245, 245, 239, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.mobile-topbar__inner {
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-topbar__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-topbar__language {
    gap: 0.3rem;
}

.mobile-topbar__lang {
    min-height: 2.75rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.68rem;
    border-radius: 999px;
}

.mobile-topbar .brand__mark {
    width: 2rem;
    height: 2rem;
    font-size: 1.05rem;
    background: linear-gradient(135deg, var(--sand), #fff1cc);
    color: var(--brand-deep);
    border: 1px solid transparent;
}

.mobile-topbar .brand__text {
    color: var(--ink);
    font-size: 1.25rem;
}

.mobile-topbar.is-scrolled .brand__mark {
    background: linear-gradient(135deg, var(--sand), #fff1cc);
    color: var(--brand-deep);
    border-color: transparent;
}

.mobile-topbar.is-scrolled .brand__text {
    color: var(--ink);
}

.mobile-topbar__login {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(22, 50, 57, 0.12);
    color: var(--ink);
    transition: transform 0.2s ease, background 0.2s ease;
}

.mobile-topbar__login:hover {
    background: rgba(255, 255, 255, 0.32);
}

.mobile-topbar.is-scrolled .mobile-topbar__login {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(22, 50, 57, 0.1);
    color: var(--ink);
}

.mobile-topbar__login:active {
    transform: scale(0.96);
}

.mobile-topbar__login svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

.site-header.is-scrolled {
    border-color: var(--line);
}

.site-header__inner,
.site-actions,
.site-nav,
.hero__actions,
.hero__rating,
.section-heading,
.room-card__actions,
.room-meta,
.review-card__footer,
.contact-actions,
.site-footer__meta,
.bottom-nav {
    display: flex;
    align-items: center;
}

.site-header__inner {
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sand), #fff1cc);
    color: var(--brand-deep);
    font: 700 1.35rem/1 "Cormorant Garamond", serif;
}

.brand__text,
.hero h1,
.section h2,
.section h3,
.site-footer .brand__text {
    font-family: "Cormorant Garamond", serif;
}

.brand__text {
    font-size: 1.5rem;
    font-weight: 700;
}

.site-nav {
    gap: 1.1rem;
    justify-content: center;
    flex: 1;
}

.site-nav a,
.site-footer__links a,
.bottom-nav a {
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.site-nav a:hover,
.site-footer__links a:hover,
.bottom-nav a:hover,
.bottom-nav a.is-active {
    color: var(--brand-deep);
}

.mobile-dashboard-nav {
    display: none;
    gap: 0.5rem;
    align-items: center;
    overflow-x: auto;
    padding: 0.45rem 0.9rem 0.7rem;
    border-top: 1px solid var(--line);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mobile-dashboard-nav::-webkit-scrollbar {
    display: none;
}

.mobile-dashboard-nav a {
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-soft);
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(22, 50, 57, 0.15);
    background: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
}

.mobile-dashboard-nav a.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.dashboard-list-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.dashboard-list-table--inquiries {
    min-width: 880px;
}

.dashboard-list-table--reservations,
.dashboard-list-table--errors {
    min-width: 980px;
}

.dashboard-list-table--feedbacks {
    min-width: 900px;
}

.dashboard-list-table th,
.dashboard-list-table td {
    text-align: left;
}

.dashboard-detail-form {
    max-width: 400px;
}

.dashboard-success-toggle {
    width: 100%;
}

.site-actions {
    gap: 0.75rem;
}

.site-actions>.button {
    min-height: 2.75rem;
    padding: 0.72rem 1rem;
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: center;
    margin-block: 0.5rem;
    margin-inline-start: 0.5rem;
}

.language-switcher {
    display: flex;
    gap: 0.35rem;
}

.chip,
.button,
.contact-tile,
.highlight-pill,
.stat-card,
.review-card,
.room-card,
.amenity-card,
.nearby-card,
.faq-item,
.form-panel,
.address-card,
.map-frame,
.media-card,
.gallery-card,
.contact-tile,
.price-badge {
    border-radius: var(--radius-lg);
}

.chip,
.button,
.contact-tile {
    border: 1px solid transparent;
}

.chip,
.button {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover,
.chip:hover {
    transform: translateY(-1px);
}

.button:active,
.chip:active {
    transform: scale(0.98);
}

.chip {
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    color: var(--ink-soft);
}

.chip--ghost,
.button--secondary {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--ink);
}

.chip.is-active,
.button,
.contact-tile--accent {
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff;
    box-shadow: 0 14px 30px rgba(31, 124, 130, 0.25);
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 3.25rem;
    padding: 0.95rem 1.4rem;
    font-weight: 700;
}

.button.is-submitted {
    background: linear-gradient(135deg, #2f9e44, #237a34);
    box-shadow: 0 10px 22px rgba(35, 122, 52, 0.28);
    cursor: default;
    pointer-events: none;
    transition: none;
    animation: none;
}

.button.is-submitted:hover,
.button.is-submitted:active {
    transform: none;
}

.button--secondary {
    box-shadow: none;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: end;
    overflow: clip;
}

.hero__image,
.hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    object-fit: cover;
}

.hero__overlay {
    background: linear-gradient(180deg, rgba(14, 31, 37, 0.12) 0%, rgba(14, 31, 37, 0.58) 58%, rgba(14, 31, 37, 0.82) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 8rem 0 4rem;
    color: #fefdf8;
}

.hero__content [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    animation: reveal-up 0.7s ease forwards;
}

.hero__content [data-reveal]:nth-child(1) {
    animation-delay: 0.08s;
}

.hero__content [data-reveal]:nth-child(2) {
    animation-delay: 0.16s;
}

.hero__content [data-reveal]:nth-child(3) {
    animation-delay: 0.24s;
}

.hero__content [data-reveal]:nth-child(4) {
    animation-delay: 0.32s;
}

.hero__content [data-reveal]:nth-child(5) {
    animation-delay: 0.42s;
}

.hero__eyebrow,
.eyebrow {
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
}

.hero__eyebrow {
    display: inline-block;
    padding: 0.65rem 0.95rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.hero h1 {
    max-width: 11ch;
    margin: 1rem 0 0;
    font-size: clamp(3.4rem, 7vw, 6.2rem);
    line-height: 0.92;
}

.hero p,
.section p,
.room-card p,
.amenity-card p,
.nearby-card p,
.faq-item p,
.form-panel p,
.site-footer p {
    color: var(--ink-soft);
    line-height: 1.75;
}

.hero p {
    max-width: 40rem;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
}

.hero__actions,
.hero__rating,
.contact-actions,
.review-score,
.filter-row,
.highlights,
.rating-group,
.site-footer__links {
    gap: 0.9rem;
}

.hero__actions {
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero__rating {
    margin-top: 1.5rem;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.82);
}

.stars {
    color: #f5d28a;
    letter-spacing: 0.15em;
}

.highlights {
    margin-top: -2.2rem;
    position: relative;
    z-index: 25;
    padding: 0;
    overflow-x: auto;
}

.highlight-pill {
    flex: 0 0 auto;
    min-width: 5.8rem;
    padding: 0.85rem 0.8rem;
    display: grid;
    justify-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(22, 50, 57, 0.1);
    box-shadow: 0 12px 28px rgba(22, 50, 57, 0.08);
    text-align: center;
}

.highlight-pill__icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(221, 233, 234, 0.85);
    color: var(--brand-deep);
    font-size: 1rem;
    font-weight: 700;
}

.section {
    padding: 6rem 0;
}

.flash-stack {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.section--mist,
.section--faq {
    background: linear-gradient(180deg, rgba(221, 233, 234, 0.55), rgba(245, 245, 239, 0.6));
}

.section-grid,
.contact-grid,
.region-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.section-heading {
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.section-heading--compact {
    align-items: end;
}

.section h2 {
    margin: 0.3rem 0 0;
    font-size: clamp(2.5rem, 4vw, 4.1rem);
    line-height: 0.98;
}

.media-card,
.gallery-card,
.room-card,
.amenity-card,
.nearby-card,
.review-card,
.form-panel,
.address-card,
.map-frame,
.faq-item,
.contact-tile,
.room-dialog__card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.media-card {
    overflow: hidden;
}

.media-card--portrait img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.stats-grid,
.amenity-grid,
.nearby-grid,
.gallery-grid,
.room-grid {
    display: grid;
    gap: 1.25rem;
}

.gallery-grid {
    gap: 0.55rem;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.stat-card {
    padding: 1.2rem;
    background: rgba(221, 233, 234, 0.52);
    text-align: center;
}

.stat-card strong,
.review-score strong {
    display: block;
    font: 700 2rem/1 "Cormorant Garamond", serif;
    color: var(--brand-deep);
}

.stat-card span,
.review-score span,
.price-badge,
.room-meta span,
.address-card span,
.review-card__footer span,
.site-footer__meta {
    color: var(--ink-soft);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.gallery-panels {
    position: relative;
    min-height: 24rem;
}

.gallery-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.7s ease, visibility 0s linear 0.7s;
}

.gallery-panel.is-active,
.gallery-panel.is-revealing,
.gallery-panel.is-hiding,
.gallery-panel.is-entering,
.gallery-panel.is-leaving {
    visibility: visible;
}

.gallery-panel.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.7s ease;
}

.gallery-panel.is-revealing,
.gallery-panel.is-entering {
    opacity: 0;
}

.gallery-panel.is-hiding,
.gallery-panel.is-leaving {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    justify-items: center;
    gap: 0.5rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 10rem;
    max-height: 200px;
    cursor: pointer;
    margin: 0;
}

.gallery-card img,
.room-card__image-wrap img {
    transition: transform 0.65s ease;
}

.gallery-card:hover img,
.room-card:hover .room-card__image-wrap img {
    transform: scale(1.04);
}

.gallery-card:nth-child(4n + 1) {
    grid-row: span 1;
}

.gallery-card img,
.amenity-card img,
.room-card__image-wrap img,
.room-dialog img,
.region-visuals img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: 1.1rem;
    background: linear-gradient(180deg, transparent, rgba(14, 31, 37, 0.84));
    color: #fff;
}

.gallery-card figcaption span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.78;
}

.room-grid,
.amenity-grid,
.nearby-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.room-card,
.amenity-card,
.nearby-card,
.review-card,
.form-panel,
.contact-tile,
.address-card {
    overflow: hidden;
}

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

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

.room-card__image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
}

.room-card__image-wrap--empty {
    min-height: 14rem;
    background: linear-gradient(135deg, rgba(31, 124, 130, 0.18), rgba(14, 31, 37, 0.2));
}

.room-card__body,
.amenity-card__face--back,
.nearby-card,
.review-card,
.form-panel,
.address-card,
.room-dialog__body {
    padding: 1.4rem;
}

.room-dialog__actions {
    display: flex;
    gap: 0.9rem;
    padding: 1.4rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.room-dialog__actions .button {
    width: 100%;
}

.room-card__body {
    flex: 1;
}

.price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.6rem 0.85rem;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.86rem;
}

.room-card h3,
.amenity-card h3,
.nearby-card h3,
.form-panel h3,
.room-dialog h3 {
    margin: 0;
    font-size: 2rem;
}

.room-meta {
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.7rem;
}

.room-meta--dialog {
    margin: 0.7rem 0 1.4rem;
}

.room-card__actions {
    gap: 0.85rem;
    padding: 0 1.4rem 1.4rem;
    margin-top: auto;
}

.room-card__actions .button,
.room-card__actions .button--secondary {
    flex: 1;
}

.room-dialog {
    display: none;
    border: 0;
    padding: 0;
    max-width: min(46rem, calc(100% - 1rem));
    background: transparent;
}

.room-dialog[open] {
    display: block;
}

.room-dialog.is-open {
    display: block;
    position: fixed;
    inset: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    max-height: 100vh;
    padding: 0.5rem;
    background: rgba(12, 28, 31, 0.75);
    z-index: 120;
}

.room-dialog::backdrop {
    background: rgba(12, 28, 31, 0.75);
}

.room-dialog__card {
    position: relative;
    border-radius: 32px;
    padding: 0;
    overflow: hidden;
}

.room-dialog.is-open .room-dialog__card {
    margin: 0 auto;
    max-height: calc(100vh - 1rem);
    overflow: auto;
    background: var(--surface);
}

body.has-room-dialog-open {
    overflow: hidden;
}

.room-dialog img {
    aspect-ratio: 16 / 9;
}

.room-dialog__book {
    display: inline-flex;
    margin: 0 auto;
    width: 100%;
}

.dialog-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
}

.feature-list,
.faq-list,
.stack-form,
.form-errors {
    display: grid;
    gap: 1rem;
}

.feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 1.2rem 0 1.4rem;
    padding: 0;
    list-style: none;
}

.feature-list li {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(221, 233, 234, 0.55);
}

.amenity-card {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    perspective: 1200px;
}

.amenity-card:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.amenity-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.75s ease;
}

.amenity-card:hover .amenity-card__inner,
.amenity-card:focus .amenity-card__inner,
.amenity-card:focus-within .amenity-card__inner {
    transform: rotateY(180deg);
}

.amenity-card__face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.amenity-card__face--front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenity-card__caption {
    margin-top: auto;
    padding: 1rem 1.2rem;
    background: linear-gradient(180deg, transparent, rgba(14, 31, 37, 0.86));
}

.amenity-card__caption h3 {
    margin: 0;
    color: #fff;
    font-size: 1.55rem;
}

.amenity-card__face--back {
    justify-content: center;
    gap: 0.9rem;
    transform: rotateY(180deg);
    background: linear-gradient(145deg, rgba(246, 251, 251, 0.98), rgba(226, 239, 240, 0.96));
}

.amenity-card__face--back h3 {
    margin: 0;
    font-size: 1.6rem;
}

.amenity-card__face--back p {
    margin: 0;
}

.region-visuals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.region-visuals img,
.map-frame iframe {
    border: 0;
    border-radius: var(--radius-lg);
    min-height: 100%;
}

.nearby-grid {
    margin-top: 2rem;
}

.review-score {
    justify-content: flex-end;
}

.review-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(18rem, 24rem);
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.review-card p {
    margin-bottom: 1.4rem;
}

.review-card__footer {
    gap: 0.9rem;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.avatar {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
}

.form-panel {
    padding: 1.6rem;
}

.form-panel--narrow {
    margin-top: 2rem;
    max-width: 36rem;
}

.stack-form label,
.stack-form legend {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.stack-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.form-control {
    width: 100%;
    min-height: 3.35rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(22, 50, 57, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
}

.form-control--textarea {
    min-height: 8.5rem;
    resize: vertical;
}

.field-error,
.form-errors,
.message {
    margin-top: 0.45rem;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    font-size: 0.92rem;
}

.field-error,
.form-errors {
    background: rgba(184, 79, 63, 0.1);
    color: #8b3b2c;
}

.message {
    background: rgba(31, 124, 130, 0.11);
    color: var(--success);
}

.message--success {
    background: rgba(31, 124, 130, 0.11);
    color: var(--success);
}

.message--error {
    background: rgba(184, 79, 63, 0.1);
    color: #8b3b2c;
}

.message--warning {
    background: rgba(200, 140, 30, 0.12);
    color: #8a5e10;
}

.message--info {
    background: rgba(31, 100, 130, 0.1);
    color: #1a5072;
}

.rating-group ul {
    display: flex;
    gap: 0.85rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.rating-group label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
}

.rating-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.35rem;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    cursor: pointer;
    line-height: 1;
}

.rating-stars label::before {
    content: "★";
    font-size: 1.75rem;
    color: #b8bec2;
    transition: color 0.18s ease;
}

.rating-stars input:checked~label::before,
.rating-stars label:hover::before,
.rating-stars label:hover~label::before {
    color: #f5c24b;
}

.auth-dialog,
.gallery-lightbox {
    border: 0;
    padding: 0;
    background: transparent;
}

.auth-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0.45rem;
}

.gallery-lightbox {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0.45rem;
}

.auth-dialog::backdrop,
.gallery-lightbox::backdrop {
    background: rgba(9, 23, 28, 0.76);
}

.auth-dialog__card {
    width: min(28rem, calc(100vw - 1rem));
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    padding: 1.35rem;
    box-shadow: var(--shadow);
    position: relative;
    margin: 0 auto;
    max-height: calc(100vh - 0.9rem);
    overflow-y: auto;
}

.auth-pane h3 {
    margin: 0 0 0.9rem;
    font-size: 2rem;
}

.auth-switch {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.gallery-lightbox__card {
    position: relative;
    width: min(calc(100vw - 0.9rem), 52rem);
    max-height: 92vh;
    border-radius: 20px;
    overflow: hidden;
    background: #09171c;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}

.gallery-lightbox__card img {
    width: 100%;
    height: min(92vh, 46rem);
    object-fit: contain;
    background: #09171c;
}

.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(10, 30, 37, 0.48);
    color: #fff;
    font-size: 1.55rem;
    line-height: 1;
}

.gallery-lightbox__nav--prev {
    left: 0.6rem;
}

.gallery-lightbox__nav--next {
    right: 0.6rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.faq-item {
    padding: 1.2rem 1.35rem;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font: 600 1.25rem/1.3 "Cormorant Garamond", serif;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0.9rem 0 0;
}

.date-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.contact-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 2rem 0 1rem;
}

.contact-tile,
.address-card {
    display: grid;
    gap: 0.35rem;
    padding: 1.1rem;
    color: var(--ink);
}

.contact-tile {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.contact-tile__icon {
    width: 1.2rem;
    height: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-tile__icon svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}

.contact-tile strong,
.address-card strong,
.site-footer__meta a,
.site-footer__meta span {
    font-weight: 700;
}

.map-frame {
    margin-top: 1rem;
    overflow: hidden;
    min-height: 0;
}

.map-frame iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
}

.site-footer {
    padding: 4rem 0 7rem;
    background: #11272d;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner,
.site-footer__links {
    display: grid;
    gap: 1rem;
}

.site-footer__inner {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: start;
    gap: 1.2rem;
}

.site-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 1rem;
}

.brand--footer .brand__mark {
    background: linear-gradient(135deg, #6dc7c0, #d7c89b);
}

.site-footer p,
.site-footer__links a,
.site-footer__meta a,
.site-footer__meta span {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__meta {
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.site-footer__social {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.84);
    transition: background 0.2s ease, color 0.2s ease;
}

.site-footer__social a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.bottom-nav {
    position: fixed;
    left: max(0.6rem, env(safe-area-inset-left));
    right: max(0.6rem, env(safe-area-inset-right));
    bottom: max(0.7rem, env(safe-area-inset-bottom));
    transform: none;
    display: none;
    z-index: 80;
    width: auto;
    max-width: 32rem;
    margin: 0 auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.bottom-nav__item {
    display: grid;
    justify-items: center;
    gap: 0.2rem;
    padding: 0.5rem 0.35rem 0.35rem;
    border-radius: 16px;
    color: var(--ink-soft);
    transition: color 0.2s ease, background 0.2s ease;
}

.bottom-nav__item svg {
    width: 1.12rem;
    height: 1.12rem;
    fill: currentColor;
}

.bottom-nav__item span {
    font-size: 0.65rem;
    font-weight: 700;
}

.bottom-nav__item.is-active {
    background: rgba(31, 124, 130, 0.12);
    color: var(--brand-deep);
}

.bottom-nav__cta {
    justify-self: center;
    margin-top: -1.6rem;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff;
    box-shadow: 0 16px 34px rgba(15, 78, 87, 0.35);
    transition: transform 0.2s ease;
}

.bottom-nav__cta svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: currentColor;
}

.bottom-nav__cta:active {
    transform: scale(0.95);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

#home,
#gallery,
#rooms,
#amenities,
#region,
#reviews,
#faq,
#contact {
    scroll-margin-top: 5.6rem;
}

@keyframes reveal-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}