@font-face {
    font-family: "Manrope";
    src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
}

:root {
    --navy: #0d1b3d;
    --navy-soft: #18305f;
    --blue: #1763ff;
    --blue-dark: #0d4ed8;
    --sky: #38b6ff;
    --ice: #f3f6fb;
    --white: #ffffff;
    --ink: #17233d;
    --muted: #58667e;
    --line: #dbe4f1;
    --whatsapp: #087a3f;
    --whatsapp-hover: #056432;
    --header-height: 80px;
    --header-offset: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 24px);
    --container: 1180px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --shadow-sm: 0 10px 30px rgba(13, 27, 61, 0.08);
    --shadow-lg: 0 24px 70px rgba(13, 27, 61, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    color: var(--ink);
    background: var(--white);
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(23, 99, 255, 0.14);
}

body.nav-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

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

button,
a {
    touch-action: manipulation;
}

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

button {
    color: inherit;
}

h1,
h2,
h3,
p,
ul,
figure {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.4rem, 5.3vw, 4.85rem);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 3.7vw, 3.45rem);
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
    margin-bottom: 20px;
    color: var(--muted);
    text-wrap: pretty;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid var(--sky);
    outline-offset: 4px;
}

.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;
}

.skip-link {
    position: fixed;
    top: calc(8px + env(safe-area-inset-top, 0px));
    left: 16px;
    z-index: 1000;
    padding: 12px 18px;
    border-radius: 8px;
    color: var(--white);
    background: var(--navy);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

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

.section {
    padding-block: clamp(72px, 9vw, 112px);
}

.section--tint {
    background: var(--ice);
}

section[id] {
    scroll-margin-top: var(--header-offset);
}

#conteudo {
    scroll-margin-top: var(--header-offset);
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--blue-dark);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #bde8ff;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    fill: currentColor;
}

.button--primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 10px 24px rgba(23, 99, 255, 0.2);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--blue-dark);
    box-shadow: 0 14px 30px rgba(23, 99, 255, 0.28);
}

.button--maps {
    gap: 10px;
}

.button--maps svg {
    fill: none;
    stroke: currentColor;
}

.button--maps .button__arrow {
    font-size: 1.05em;
    line-height: 1;
    transition: transform 180ms ease;
}

.button--primary.button--maps:hover,
.button--primary.button--maps:focus-visible {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(23, 99, 255, 0.28);
}

.button--primary.button--maps:hover .button__arrow,
.button--primary.button--maps:focus-visible .button__arrow {
    transform: translateX(2px);
}

.button--whatsapp {
    color: var(--white);
    background: var(--whatsapp);
    box-shadow: 0 12px 28px rgba(8, 122, 63, 0.28);
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
    background: var(--whatsapp-hover);
    box-shadow: 0 16px 34px rgba(8, 122, 63, 0.36);
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(13, 27, 61, 0.16);
    backdrop-filter: blur(8px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
    color: var(--navy);
    border-color: var(--white);
    background: var(--white);
}

.button--large {
    min-height: 56px;
    padding-inline: 28px;
    font-size: 1rem;
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    color: var(--blue-dark);
    font-weight: 800;
}

.text-link span {
    transition: transform 180ms ease;
}

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

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: env(safe-area-inset-top, 0px);
    border-bottom: 1px solid rgba(13, 27, 61, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 20px rgba(13, 27, 61, 0.05);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    position: relative;
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
}

.brand img {
    width: 166px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 32px);
}

.nav-link {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--navy-soft);
    font-size: 0.84rem;
    font-weight: 700;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--blue);
    content: "";
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.active,
.nav-link[aria-current="location"] {
    color: var(--blue-dark);
}

.nav-link.active::after,
.nav-link[aria-current="location"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 0;
    border-radius: 12px;
    background: var(--ice);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 4px auto;
    border-radius: 4px;
    background: var(--navy);
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    display: grid;
    min-height: max(610px, min(760px, calc(100svh - var(--header-height))));
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

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

.hero__media {
    z-index: -3;
}

.hero__media img {
    object-fit: cover;
    object-position: 55% 48%;
}

.hero__overlay {
    z-index: -2;
    background: linear-gradient(90deg, rgba(7, 18, 44, 0.9) 0%, rgba(7, 18, 44, 0.72) 48%, rgba(7, 18, 44, 0.26) 100%);
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 58px;
    z-index: -1;
    background: linear-gradient(176deg, transparent 48%, var(--white) 49%);
    content: "";
}

.hero__content {
    padding-block: clamp(68px, 9vh, 100px) 92px;
}

.hero__content > * {
    max-width: 760px;
}

.hero h1 {
    color: var(--white);
}

.hero__lead {
    max-width: 680px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.03rem, 1.6vw, 1.22rem);
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 900px;
    padding: 0;
    margin: 38px 0 0;
    list-style: none;
}

.hero__highlights li {
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-sm);
    background: rgba(13, 27, 61, 0.32);
    backdrop-filter: blur(8px);
}

.hero__highlights strong,
.hero__highlights span {
    display: block;
}

.hero__highlights strong {
    margin-bottom: 3px;
    color: var(--white);
    font-size: 0.86rem;
}

.hero__highlights span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.75rem;
    line-height: 1.45;
}

/* About */
.about__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(48px, 7vw, 90px);
}

.about__copy > p:not(.eyebrow) {
    max-width: 62ch;
}

.award-panel {
    position: relative;
    max-width: 560px;
    padding: 22px 24px 22px 28px;
    margin: 30px 0 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--ice);
    overflow: hidden;
}

.award-panel::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: linear-gradient(var(--sky), var(--blue));
    content: "";
}

.award-panel p {
    margin: 0;
}

.award-panel__title {
    color: var(--navy);
    font-size: 1.02rem;
    font-weight: 800;
}

.about__gallery {
    position: relative;
    min-height: 540px;
}

.about__photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__photo--large {
    top: 0;
    right: 0;
    width: 82%;
    aspect-ratio: 4 / 3;
}

.about__photo--small {
    bottom: 0;
    left: 0;
    width: 52%;
    aspect-ratio: 4 / 3;
    border: 8px solid var(--white);
}

/* Shared section heading */
.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    align-items: end;
    gap: 40px;
    margin-bottom: 48px;
}

.section-heading h2,
.section-heading p {
    margin-bottom: 0;
}

.section-heading > p {
    max-width: 48ch;
    justify-self: end;
}

.section-heading--center {
    display: block;
    max-width: 770px;
    margin-inline: auto;
    text-align: center;
}

.section-heading--center > p {
    margin: 18px auto 0;
}

/* Rooms */
.room-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.room-track:focus-visible {
    outline-offset: 8px;
}

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

.room-card > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.room-card__body {
    display: flex;
    min-height: 410px;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(24px, 3.2vw, 38px);
}

.room-card__title-row {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.capacity {
    flex: 0 0 auto;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--blue-dark);
    background: #e8f0ff;
    font-size: 0.75rem;
    font-weight: 800;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 18px;
    width: 100%;
    padding: 0;
    margin: 6px 0 28px;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 19px;
    color: var(--ink);
    font-size: 0.88rem;
}

.feature-list li::before {
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sky);
    content: "";
    transform: translateY(-50%);
}

.room-card .button {
    width: 100%;
    margin-top: auto;
}

.carousel-controls {
    display: none;
}

.icon-button,
.carousel-dots button {
    display: inline-grid;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-items: center;
    background: var(--white);
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.icon-button svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-button:hover,
.icon-button:focus-visible {
    color: var(--white);
    border-color: var(--blue);
    background: var(--blue);
}

.icon-button:disabled {
    color: #9aa7ba;
    background: #e9eef6;
    cursor: default;
}

.carousel-dots {
    display: flex;
    gap: 2px;
}

.carousel-dots button {
    border-color: transparent;
    background: transparent;
}

.carousel-dots button span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #aab7ca;
    transition: width 180ms ease, background-color 180ms ease;
}

.carousel-dots button[aria-current="true"] span {
    width: 24px;
    background: var(--blue);
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.amenity-card {
    min-width: 0;
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.amenity-card:hover {
    border-color: #b7cffb;
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.amenity-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 14px;
    place-items: center;
    color: var(--blue-dark);
    background: #e9f5ff;
}

.amenity-icon svg {
    width: 18px;
    height: 18px;
    max-width: none;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.amenity-card h3 {
    margin-bottom: 8px;
    font-size: 1.04rem;
    letter-spacing: -0.02em;
}

.amenity-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Location */
.location__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 26px;
}

.map-frame,
.location__card {
    min-width: 0;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

.location__card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.location__card > div {
    padding: clamp(24px, 3.4vw, 40px);
}

.location__card .button {
    margin-top: 6px;
}

/* FAQ */
.faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(48px, 8vw, 100px);
}

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

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    min-height: 66px;
    padding: 20px 48px 20px 0;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--blue);
    content: "";
    transition: transform 180ms ease;
}

.faq-list summary::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary::after {
    transform: rotate(0);
}

.faq-list details p {
    max-width: 64ch;
    padding: 0 42px 22px 0;
    margin: 0;
}

/* Contact */
.contact {
    position: relative;
    display: grid;
    min-height: 590px;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

.contact__media,
.contact__media img,
.contact__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact__media {
    z-index: -2;
}

.contact__media img {
    object-fit: cover;
    object-position: center 60%;
}

.contact__overlay {
    z-index: -1;
    background: rgba(6, 18, 45, 0.8);
}

.contact__content {
    max-width: 860px;
    padding-block: 90px;
    text-align: center;
}

.contact h2 {
    color: var(--white);
}

.contact__content > p:not(.eyebrow, .contact__phone) {
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.06rem;
}

.contact__phone {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
}

/* Footer */
.site-footer {
    position: relative;
    padding: 72px 0 0;
    color: rgba(255, 255, 255, 0.78);
    background: var(--navy);
}

.site-footer__wave {
    position: absolute;
    top: -41px;
    right: 0;
    left: 0;
    height: 42px;
    color: var(--navy);
}

.site-footer__wave svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(150px, 0.65fr) minmax(220px, 0.85fr);
    gap: clamp(42px, 7vw, 90px);
    padding-bottom: 54px;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 0.96rem;
    letter-spacing: 0;
}

.site-footer a {
    transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--sky);
}

.site-footer__about img {
    width: 190px;
    margin-bottom: 20px;
}

.site-footer__about p {
    max-width: 38ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer nav,
.site-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer nav a,
.site-footer__contact a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    font-size: 0.9rem;
}

.site-footer__contact a {
    margin-bottom: 10px;
    line-height: 1.55;
}

.site-footer__bottom {
    padding-block: 22px calc(22px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
}

/* Floating actions */
.floating-actions {
    position: fixed;
    right: max(24px, env(safe-area-inset-right, 0px));
    bottom: max(24px, calc(env(safe-area-inset-bottom, 0px) + 16px));
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-button {
    display: grid;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(13, 27, 61, 0.14);
    border-radius: 50%;
    place-items: center;
    color: var(--navy);
    background: var(--white);
    box-shadow: 0 10px 28px rgba(13, 27, 61, 0.2);
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.floating-button:hover {
    transform: translateY(-3px);
}

.floating-button svg {
    width: 24px;
    height: 24px;
}

.back-to-top svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-button--whatsapp {
    color: var(--white);
    border-color: transparent;
    background: var(--whatsapp);
}

.floating-button--whatsapp svg {
    fill: currentColor;
}

.floating-button--whatsapp:hover,
.floating-button--whatsapp:focus-visible {
    background: var(--whatsapp-hover);
}

@media (max-width: 1023px) {
    :root {
        --header-height: 74px;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: flex;
        max-height: calc(100dvh - var(--header-height) - env(safe-area-inset-top, 0px));
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 24px calc(18px + env(safe-area-inset-bottom, 0px));
        border-bottom: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 20px 35px rgba(13, 27, 61, 0.14);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .site-nav:not(.is-open) {
        display: none;
    }

    .nav-link {
        min-height: 54px;
        justify-content: space-between;
        border-bottom: 1px solid var(--line);
        font-size: 0.94rem;
    }

    .nav-link:last-child {
        border-bottom: 0;
    }

    .nav-link::after {
        top: 50%;
        right: 4px;
        bottom: auto;
        left: auto;
        width: 8px;
        height: 8px;
        transform: translateY(-50%) scale(0);
    }

    .nav-link.active::after,
    .nav-link[aria-current="location"]::after {
        transform: translateY(-50%) scale(1);
    }

    .hero__overlay {
        background: linear-gradient(90deg, rgba(7, 18, 44, 0.9), rgba(7, 18, 44, 0.58));
    }

    .about__grid {
        gap: 48px;
    }

    .about__gallery {
        min-height: 430px;
    }

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

    .site-footer__grid {
        grid-template-columns: 1fr 0.6fr 1fr;
        gap: 42px;
    }
}

@media (max-width: 820px) {
    .about__grid,
    .faq__grid {
        grid-template-columns: 1fr;
    }

    .about__gallery {
        width: min(100%, 620px);
        min-height: 500px;
        margin-inline: auto;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        max-width: 58ch;
        margin-top: 18px;
    }

    .room-carousel {
        margin-inline: -24px;
        overflow: hidden;
    }

    .room-track {
        display: flex;
        gap: 16px;
        padding: 4px 24px 14px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-padding-inline: 24px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .room-track::-webkit-scrollbar {
        display: none;
    }

    .room-card {
        flex: 0 0 min(88%, 520px);
        scroll-snap-align: start;
    }

    .carousel-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 18px;
    }

    .location__grid {
        grid-template-columns: 1fr;
    }

    .map-frame iframe {
        min-height: 420px;
    }

    .faq__grid {
        gap: 30px;
    }

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

    .site-footer__about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    :root {
        --header-height: 70px;
        --header-offset: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 18px);
    }

    .container {
        width: min(calc(100% - 40px), var(--container));
    }

    .brand img {
        width: 142px;
    }

    .site-nav {
        padding-inline: 20px;
    }

    .hero {
        min-height: max(660px, calc(100svh - var(--header-height)));
        align-items: end;
    }

    .hero__media img {
        object-position: 62% center;
    }

    .hero__overlay {
        background: linear-gradient(180deg, rgba(7, 18, 44, 0.35) 0%, rgba(7, 18, 44, 0.84) 48%, rgba(7, 18, 44, 0.96) 100%);
    }

    .hero::after {
        height: 30px;
    }

    .hero__content {
        padding-block: 64px 66px;
    }

    .hero h1 {
        margin-bottom: 18px;
        font-size: clamp(2.05rem, 10vw, 3rem);
    }

    .hero__lead {
        margin-bottom: 24px;
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .hero__actions {
        display: grid;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__highlights {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 26px;
    }

    .hero__highlights li {
        display: grid;
        grid-template-columns: minmax(100px, 0.85fr) 1.5fr;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
    }

    .hero__highlights strong {
        margin: 0;
    }

    .about__gallery {
        min-height: 355px;
    }

    .about__photo--large {
        width: 88%;
    }

    .about__photo--small {
        width: 57%;
        border-width: 5px;
    }

    .room-carousel {
        margin-inline: -20px;
    }

    .room-track {
        padding-inline: 20px;
        scroll-padding-inline: 20px;
    }

    .room-card {
        flex-basis: 88%;
    }

    .room-card__body {
        min-height: 430px;
        padding: 24px;
    }

    .room-card__title-row {
        display: block;
    }

    .capacity {
        display: inline-block;
        margin-bottom: 14px;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 7px;
    }

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

    .amenity-card {
        min-height: 190px;
        padding: 21px 18px;
    }

    .amenity-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 16px;
    }

    .amenity-icon svg {
        width: 16px;
        height: 16px;
    }

    .amenity-card h3 {
        font-size: 0.94rem;
    }

    .amenity-card p {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .map-frame iframe {
        min-height: 340px;
    }

    .location__card .button {
        width: 100%;
    }

    .contact {
        min-height: 620px;
    }

    .contact__content {
        padding-block: 74px 96px;
    }

    .contact .button {
        width: 100%;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .site-footer__about {
        grid-column: auto;
    }

    .floating-actions {
        right: max(16px, env(safe-area-inset-right, 0px));
        bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 12px));
        gap: 10px;
    }

    .floating-button {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 359px) {
    .container {
        width: calc(100% - 32px);
    }

    .brand img {
        width: 132px;
    }

    .hero__highlights li {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .room-carousel {
        margin-inline: -16px;
    }

    .room-track {
        padding-inline: 16px;
        scroll-padding-inline: 16px;
    }

    .room-card {
        flex-basis: 92%;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .amenity-card {
        min-height: auto;
    }
}

@media (max-height: 520px) and (orientation: landscape) {
    .hero {
        min-height: 470px;
        align-items: center;
    }

    .hero__content {
        padding-block: 38px 50px;
    }

    .hero h1 {
        max-width: 760px;
        margin-bottom: 12px;
        font-size: clamp(2rem, 6.5vw, 3.2rem);
    }

    .hero__lead {
        margin-bottom: 16px;
        line-height: 1.45;
    }

    .hero__highlights {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
