/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #0f0f1a;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === CSS VARIABLES === */
:root {
    --charcoal: #1a1a2e;
    --charcoal-deep: #0f0f1a;
    --charcoal-light: #2a2a4a;
    --coral: #E8635B;
    --coral-light: #ff8a82;
    --coral-dark: #c94e47;
    --white: #ffffff;
    --off-white: #f5f0eb;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn--primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn--primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,99,91,0.35);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn--outline-light {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn--outline-light:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* === SECTION TAG === */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}
.section-tag--light { color: var(--coral-light); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.text-accent { color: var(--coral); }
.text-accent-light { color: var(--coral-light); }
.section-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    line-height: 1.7;
}
.section-sub--light { color: rgba(255,255,255,0.65); }
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header--light { color: var(--white); }

/* === NAV === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.35s ease;
}
.nav.scrolled {
    background: rgba(15,15,26,0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: var(--white);
}
.nav__logo-accent { color: var(--coral); }
.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color 0.25s;
    position: relative;
}
.nav__link:hover { color: var(--coral); }
.nav__link--cta {
    background: var(--coral);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    transition: all 0.25s;
}
.nav__link--cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15,15,26,0.98);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: var(--white);
    transition: color 0.25s;
}
.mobile-menu__link:hover { color: var(--coral); }
.mobile-menu__link--cta {
    color: var(--coral);
    font-size: 1.4rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-top: 8px;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15,15,26,0.88) 0%,
        rgba(26,26,46,0.75) 50%,
        rgba(232,99,91,0.25) 100%
    );
    z-index: 1;
}
.hero__geo {
    position: absolute;
    z-index: 1;
    opacity: 0.15;
}
.hero__geo--bl {
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border: 3px solid var(--coral);
    border-radius: 50%;
}
.hero__geo--br {
    top: 10%;
    right: -60px;
    width: 200px;
    height: 200px;
    background: var(--coral);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
}
@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}
.hero__badge {
    display: inline-block;
    background: rgba(232,99,91,0.2);
    border: 1px solid rgba(232,99,91,0.4);
    color: var(--coral-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 24px;
}
.hero__headline-line {
    display: block;
}
.hero__headline-accent {
    color: var(--coral);
}
.hero__sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}
.hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.hero__highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
}
.hero__highlight svg { color: var(--coral); }

/* === ROOMS === */
.rooms {
    position: relative;
    padding: 100px 0;
    background: var(--charcoal-deep);
    overflow: hidden;
}
.rooms__geo {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.04;
}
.rooms__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.room-card {
    background: var(--charcoal-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}
.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.room-card--featured {
    border: 2px solid var(--coral);
}
.room-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--coral);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.room-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.room-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.room-card:hover .room-card__img-wrap img {
    transform: scale(1.05);
}
.room-card__geo {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.15;
}
.room-card__body {
    padding: 24px;
}
.room-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 8px;
}
.room-card__desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}
.room-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.room-card__features li {
    background: rgba(232,99,91,0.12);
    color: var(--coral-light);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
}

/* === AMENITIES === */
.amenities {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.amenities__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.amenities__text .section-sub { margin-bottom: 32px; }
.amenities__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}
.amenity__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(232,99,91,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.amenities__visual {
    position: relative;
}
.amenities__photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.amenities__photo-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
}
.amenities__geo {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border: 3px solid var(--coral);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

/* === LOCATION === */
.location {
    padding: 100px 0;
    background: var(--charcoal-deep);
    position: relative;
    overflow: hidden;
}
.location__geo-bl {
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.04;
}
.location__geo-tr {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    border: 3px solid var(--coral);
    border-radius: 50%;
    opacity: 0.08;
}
.location__proximity {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.proximity-card {
    background: var(--charcoal-light);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}
.proximity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    border-color: rgba(232,99,91,0.3);
}
.proximity-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(232,99,91,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.proximity-card__info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 6px;
}
.proximity-card__info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* === ABOUT === */
.about {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.about__geo {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: var(--coral);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.05;
    animation: morph 10s ease-in-out infinite;
}
.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about__photos {
    position: relative;
}
.about__photo-main {
    border-radius: var(--radius);
    overflow: hidden;
    height: 500px;
}
.about__photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about__photo-stack {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--charcoal);
}
.about__stat {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--coral);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about__stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    line-height: 1;
}
.about__stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}
.about__content .section-sub { margin-bottom: 24px; }
.about__body {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about__values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.value__num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--coral);
    line-height: 1;
    min-width: 32px;
}
.value strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}
.value span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

/* === CTA BANNER === */
.cta-banner {
    padding: 80px 0;
    background: var(--coral);
    position: relative;
    overflow: hidden;
}
.cta-banner__geo-1 {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.cta-banner__geo-2 {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.cta-banner__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
.cta-banner__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}
.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* === CONTACT === */
.contact {
    padding: 100px 0;
    background: var(--charcoal-deep);
    position: relative;
    overflow: hidden;
}
.contact__geo {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.04;
}
.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact__desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact__detail-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(232,99,91,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact__detail strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.contact__detail p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.contact__detail a {
    color: var(--coral-light);
    transition: color 0.2s;
}
.contact__detail a:hover { color: var(--coral); }
.contact__form-wrap {
    background: var(--charcoal-light);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.05);
}
.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.25s, background 0.25s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background: rgba(232,99,91,0.06);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: var(--radius-sm);
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 500;
}
.form-success svg { flex-shrink: 0; }

/* === MAP === */
.map-section {
    position: relative;
}
.map-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--charcoal-deep), var(--coral), var(--charcoal-deep));
}

/* === FOOTER === */
.footer {
    background: var(--charcoal-deep);
    padding: 64px 0 0;
    position: relative;
    overflow: hidden;
}
.footer__geo {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.02;
}
.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 12px;
}
.footer__logo-accent { color: var(--coral); }
.footer__tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 300px;
}
.footer__nav strong,
.footer__contact strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}
.footer__nav ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__nav a,
.footer__contact a,
.footer__contact li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer__nav a:hover,
.footer__contact a:hover { color: var(--coral); }
.footer__bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .rooms__grid { grid-template-columns: repeat(2, 1fr); }
    .location__proximity { grid-template-columns: repeat(2, 1fr); }
    .about__layout { gap: 40px; }
    .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__toggle { display: flex; }
    .hero__headline { font-size: clamp(2.4rem, 10vw, 4rem); }
    .hero__geo--bl { width: 200px; height: 200px; bottom: -40px; left: -40px; }
    .hero__geo--br { width: 120px; height: 120px; }
    .rooms__grid { grid-template-columns: 1fr; }
    .amenities__layout { grid-template-columns: 1fr; }
    .amenities__photo-grid { display: none; }
    .amenities__grid { grid-template-columns: 1fr; }
    .location__proximity { grid-template-columns: 1fr; }
    .about__layout { grid-template-columns: 1fr; }
    .about__photo-main { height: 350px; }
    .about__photo-stack { width: 160px; right: -10px; bottom: -20px; }
    .about__stat { right: 20px; top: -10px; }
    .contact__layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .cta-banner__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__highlights { flex-direction: column; gap: 12px; }
    .container { padding: 0 16px; }
    .rooms, .amenities, .location, .about, .contact { padding: 72px 0; }
}
