/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --teal-900: #0a3d3d;
    --teal-800: #0D4F4F;
    --teal-700: #116363;
    --teal-600: #157878;
    --teal-500: #1a9090;
    --teal-400: #2ab0b0;
    --teal-100: #d4eded;
    --teal-50:  #eaf5f5;

    --slate-950: #0c151a;
    --slate-900: #132028;
    --slate-800: #1e3039;
    --slate-700: #2d4550;
    --slate-600: #4a6570;
    --slate-500: #6b8a96;
    --slate-400: #9bb5be;
    --slate-300: #c4d6dc;
    --slate-200: #e0eef2;
    --slate-100: #f0f7f9;
    --slate-50:  #f7fbfc;

    --gold-500: #C8A96E;
    --gold-400: #d4b97e;
    --gold-300: #e0ca9e;

    --white: #ffffff;
    --black: #0a0a0a;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--slate-800);
    background-color: var(--slate-50);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: var(--teal-800);
    color: var(--white);
    border-radius: var(--radius-sm);
    z-index: 200;
    font-size: 0.875rem;
    transition: top var(--transition);
}

.skip-link:focus {
    top: var(--space-sm);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(247, 251, 252, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    background: rgba(247, 251, 252, 0.95);
    box-shadow: 0 1px 20px rgba(13, 79, 79, 0.08);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--teal-800);
    letter-spacing: -0.02em;
}

.nav__logo-icon {
    color: var(--teal-800);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    letter-spacing: 0.01em;
    transition: color var(--transition);
    position: relative;
}

.nav__menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--teal-600);
    transition: width var(--transition);
}

.nav__menu a:hover {
    color: var(--teal-800);
}

.nav__menu a:hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--teal-800) !important;
    color: var(--white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    transition: background var(--transition), transform var(--transition) !important;
}

.nav__cta::after {
    display: none !important;
}

.nav__cta:hover {
    background: var(--teal-700) !important;
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 101;
}

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--slate-800);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    background: var(--slate-50);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, var(--teal-50) 0%, transparent 70%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-md);
    position: relative;
    z-index: 1;
}

.hero__content {
    padding-right: var(--space-lg);
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-md);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--slate-950);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
}

.hero__headline em {
    font-style: italic;
    color: var(--teal-700);
}

.hero__lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--slate-600);
    max-width: 480px;
    margin-bottom: var(--space-xl);
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero__visual {
    position: relative;
    padding-left: var(--space-lg);
}

.hero__img-stack {
    position: relative;
}

.hero__img-primary {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(13, 79, 79, 0.15);
}

.hero__img-accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 55%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 6px solid var(--slate-50);
    box-shadow: 0 15px 40px rgba(13, 79, 79, 0.12);
}

.hero__badge {
    position: absolute;
    top: 30px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(13, 79, 79, 0.1);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--teal-800);
    white-space: nowrap;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-800);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 79, 79, 0.25);
}

.btn--outline {
    background: transparent;
    color: var(--teal-800);
    border: 1.5px solid var(--teal-800);
}

.btn--outline:hover {
    background: var(--teal-800);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 0.9375rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== INTRO ===== */
.intro {
    background: var(--teal-800);
    padding: var(--space-lg) 0;
}

.intro__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
}

.intro__text {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: var(--teal-100);
    font-weight: 400;
}

.intro__text strong {
    color: var(--gold-400);
    font-weight: 700;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--slate-950);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.section-title em {
    font-style: italic;
    color: var(--teal-700);
}

/* ===== ROOMS ===== */
.rooms {
    padding: var(--space-3xl) 0;
    background: var(--slate-50);
}

.rooms__header {
    max-width: 600px;
    margin-bottom: var(--space-xl);
}

.rooms__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13, 79, 79, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13, 79, 79, 0.12);
}

.room-card__img {
    overflow: hidden;
    aspect-ratio: 16/11;
}

.room-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-card__img img {
    transform: scale(1.05);
}

.room-card__body {
    padding: var(--space-md);
}

.room-card__name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--slate-950);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.01em;
}

.room-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--slate-600);
    margin-bottom: var(--space-md);
}

.room-card__amenities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.room-card__amenities li {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--teal-700);
    background: var(--teal-50);
    padding: 0.3125rem 0.625rem;
    border-radius: 20px;
}

.rooms__note {
    font-size: 0.9375rem;
    color: var(--slate-500);
    text-align: center;
}

.rooms__note a {
    color: var(--teal-700);
    font-weight: 600;
    border-bottom: 1px solid var(--teal-200);
    transition: border-color var(--transition);
}

.rooms__note a:hover {
    border-color: var(--teal-700);
}

/* ===== EXPERIENCE ===== */
.experience {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.experience__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.experience__text {
    padding-right: var(--space-lg);
}

.experience__body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--slate-600);
    margin-bottom: var(--space-xl);
}

.experience__highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.highlight {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.highlight svg {
    flex-shrink: 0;
    color: var(--teal-600);
    margin-top: 2px;
}

.highlight strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.125rem;
}

.highlight span {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.5;
}

.experience__images {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.img-group {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.img-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== ABOUT ===== */
.about {
    padding: var(--space-3xl) 0;
    background: var(--slate-950);
    color: var(--white);
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about__image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.about__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 6/7;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__image:hover img {
    transform: scale(1.03);
}

.about__content {
    padding-left: var(--space-lg);
}

.about__content .section-title {
    color: var(--white);
}

.about__content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--slate-400);
    margin-bottom: var(--space-md);
}

.about__stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--slate-800);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat__number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-500);
    line-height: 1;
}

.stat__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-500);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== LOCATION ===== */
.location {
    padding: var(--space-3xl) 0;
    background: var(--slate-50);
}

.location__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.location__info {
    padding-right: var(--space-lg);
}

.location__address {
    font-style: normal;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--slate-700);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--teal-600);
}

.location__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.location__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--teal-700);
    transition: color var(--transition);
}

.location__contact-item:hover {
    color: var(--teal-500);
}

.location__note {
    font-size: 0.9375rem;
    color: var(--slate-500);
    font-style: italic;
}

.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(13, 79, 79, 0.1);
    min-height: 400px;
}

.location__map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===== CTA ===== */
.cta {
    padding: var(--space-3xl) 0;
    background: var(--teal-800);
    text-align: center;
}

.cta__inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta__title {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta__title em {
    color: var(--gold-400);
}

.cta__lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--teal-100);
    margin-bottom: var(--space-xl);
}

.cta__contact-row {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn--primary {
    background: var(--white);
    color: var(--teal-800);
}

.cta .btn--primary:hover {
    background: var(--gold-400);
    color: var(--slate-950);
}

.cta .btn--outline {
    border-color: var(--teal-400);
    color: var(--teal-100);
}

.cta .btn--outline:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    color: var(--white);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.contact-form__inner {
    max-width: 680px;
    margin: 0 auto;
}

.form {
    margin-top: var(--space-xl);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form__group--full {
    margin-bottom: var(--space-md);
}

.form__group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-700);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form__group input,
.form__group select,
.form__group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--slate-50);
    color: var(--slate-900);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--teal-600);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(21, 120, 120, 0.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--slate-400);
}

.form__group textarea {
    resize: vertical;
    min-height: 120px;
}

.form__success {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: var(--space-md);
    padding: 1rem 1.25rem;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--teal-800);
}

.form__success svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--slate-950);
    color: var(--slate-400);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-xl);
    align-items: start;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--slate-800);
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.footer__tagline {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--slate-400);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--teal-400);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    font-size: 0.875rem;
}

.footer__contact a {
    color: var(--teal-400);
    transition: color var(--transition);
}

.footer__contact a:hover {
    color: var(--gold-400);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    font-size: 0.8125rem;
    color: var(--slate-600);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        padding-right: 0;
        order: 2;
    }

    .hero__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
        padding-left: 0;
    }

    .hero__img-accent {
        left: -20px;
        bottom: -20px;
    }

    .hero__badge {
        right: 0;
    }

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

    .experience__layout,
    .about__layout,
    .location__layout {
        grid-template-columns: 1fr;
    }

    .experience__text,
    .about__content,
    .location__info {
        padding-right: 0;
    }

    .about__content {
        padding-left: 0;
    }

    .location__info {
        order: 2;
    }

    .location__map {
        order: 1;
    }

    .footer__top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        padding: var(--space-xl);
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 100;
    }

    .nav__menu.open {
        transform: translateX(0);
    }

    .nav__menu a {
        font-size: 1.125rem;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-xl);
    }

    .hero__grid {
        padding: var(--space-lg) var(--space-md);
    }

    .hero__img-accent {
        width: 60%;
        left: -10px;
        bottom: -15px;
    }

    .hero__badge {
        display: none;
    }

    .hero__scroll {
        display: none;
    }

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

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

    .about__stats {
        gap: var(--space-lg);
    }

    .cta__contact-row {
        flex-direction: column;
        align-items: center;
    }

    .cta .btn {
        width: 100%;
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 2.25rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__visual {
        padding-left: 0;
    }

    .hero__img-accent {
        display: none;
    }
}

/* Mobile menu overlay */
.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 21, 26, 0.5);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.nav__overlay.active {
    opacity: 1;
    pointer-events: all;
}
