/* ───────────────────────────────────────────
   AmericInn Ogallala — Custom Styles
   Palette: Plum (#6B3A6E) + Amber (#F5A623)
   Fonts: DM Serif Display + Nunito
─────────────────────────────────────────── */

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

:root {
    --plum: #6B3A6E;
    --plum-dark: #4E2A50;
    --plum-light: #8B5A8E;
    --plum-muted: #C490D1;
    --plum-bg: #F3E8F5;
    --amber: #F5A623;
    --amber-light: #FCC872;
    --amber-dark: #D4891A;
    --cream: #FDF6EE;
    --cream-dark: #F5E6D3;
    --warm-white: #FFFAF5;
    --text-dark: #2A1A2E;
    --text-mid: #5A4060;
    --text-light: #8A7090;
    --shadow-sm: 0 2px 8px rgba(107, 58, 110, 0.08);
    --shadow-md: 0 8px 30px rgba(107, 58, 110, 0.12);
    --shadow-lg: 0 16px 50px rgba(107, 58, 110, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h3 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
}

em {
    font-style: italic;
    color: var(--plum);
}

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

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─────────────────────────
   Navigation
───────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 238, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 58, 110, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 246, 238, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--plum);
}

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

.nav__logo-accent {
    color: var(--amber);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav__link {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-mid);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--plum);
    background: var(--plum-bg);
}

.nav__link--cta {
    background: var(--plum);
    color: #fff !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--plum-dark);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-bar {
    width: 24px;
    height: 2.5px;
    background: var(--plum);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-menu__link {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--plum);
    background: var(--plum-bg);
}

.mobile-menu__link--cta {
    margin-top: 16px;
    background: var(--plum);
    color: #fff !important;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ─────────────────────────
   Buttons
───────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum);
    color: #fff;
    border-color: var(--plum);
}

.btn--primary:hover {
    background: var(--plum-dark);
    border-color: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--plum);
    border-color: var(--plum);
}

.btn--ghost:hover {
    background: var(--plum-bg);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--plum);
    border-color: var(--plum);
}

.btn--outline:hover {
    background: var(--plum);
    color: #fff;
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--plum);
    border-color: rgba(107, 58, 110, 0.3);
}

.btn--outline-light:hover {
    background: rgba(107, 58, 110, 0.08);
    transform: translateY(-2px);
}

.btn--light {
    background: #fff;
    color: var(--plum);
    border-color: #fff;
}

.btn--light:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* ─────────────────────────
   Section Shared
───────────────────────── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--plum-bg);
    color: var(--plum);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.8;
}

/* ─────────────────────────
   Hero
───────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--plum-bg) 50%, var(--cream-dark) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, var(--plum) 1.5px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(107, 58, 110, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero__headline {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.hero__headline-accent {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.45em;
    font-weight: 800;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 8px;
}

.hero__subheadline {
    font-size: 1.15rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-mid);
}

.hero__trust-item svg {
    color: var(--amber);
}

/* Hero Image Stack */
.hero__image-col {
    position: relative;
}

.hero__image-stack {
    position: relative;
    height: 620px;
}

.hero__image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 80%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero__image-float {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}

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

.hero__image-float-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--plum);
    backdrop-filter: blur(10px);
}

.hero__image-accent {
    position: absolute;
    top: 5%;
    left: 20%;
    color: var(--plum);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(5deg); }
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero__wave svg {
    width: 100%;
    height: 80px;
}

/* ─────────────────────────
   Rooms
───────────────────────── */
.rooms {
    padding: 100px 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.rooms__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.room-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.room-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.room-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--amber);
    color: #fff;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-card__body {
    padding: 28px;
}

.room-card__title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.room-card__desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.room-card__features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.room-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-mid);
}

.room-card__features svg {
    color: var(--amber);
    flex-shrink: 0;
}

/* ─────────────────────────
   Amenities
───────────────────────── */
.amenities {
    padding: 100px 0;
    background: var(--warm-white);
}

.amenities__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.amenities__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.amenity-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.amenity-item__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--plum-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
}

.amenity-item__text strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.amenity-item__text span {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.amenities__image-group {
    position: relative;
    height: 620px;
}

.amenities__img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 75%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.amenities__img-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}

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

/* ─────────────────────────
   Location
───────────────────────── */
.location {
    padding: 100px 0;
    background: var(--cream);
}

.location__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.location__highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location__highlight:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.location__highlight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--plum-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location__highlight div strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.location__highlight div span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.location__map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 480px;
}

/* ─────────────────────────
   About
───────────────────────── */
.about {
    padding: 100px 0;
    background: var(--warm-white);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-stack {
    position: relative;
    height: 580px;
}

.about__img-primary {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 78%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about__img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}

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

.about__body {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding: 28px 32px;
    background: var(--plum-bg);
    border-radius: var(--radius-lg);
}

.about__stat {
    text-align: center;
    flex: 1;
}

.about__stat-number {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 6px;
}

.about__stat-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about__stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(107, 58, 110, 0.15);
    border-radius: 2px;
}

/* ─────────────────────────
   CTA Banner
───────────────────────── */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-banner__title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #fff;
    max-width: 520px;
    line-height: 1.2;
}

.cta-banner__title em {
    color: var(--amber-light);
}

.cta-banner__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    max-width: 420px;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ─────────────────────────
   Contact
───────────────────────── */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--plum-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
}

.contact__detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.95rem;
    color: var(--text-mid);
    transition: var(--transition);
}

.contact__detail a:hover {
    color: var(--plum);
}

.contact__form-col {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact__form-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--warm-white);
    transition: var(--transition);
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--plum);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(107, 58, 110, 0.08);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-light);
}

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

.form__success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--plum-bg);
    border-radius: var(--radius-sm);
    color: var(--plum);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 16px;
}

/* ─────────────────────────
   Footer
───────────────────────── */
.footer {
    padding: 60px 0 0;
    background: var(--plum-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
}

.footer__logo-icon {
    color: #fff;
}

.footer__logo-accent {
    color: var(--amber);
}

.footer__tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer__col strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer__col a,
.footer__col span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 5px 0;
    transition: var(--transition);
}

.footer__col a:hover {
    color: var(--amber);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer__bottom a:hover {
    color: var(--amber);
}

/* ─────────────────────────
   Animations
───────────────────────── */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─────────────────────────
   Responsive
───────────────────────── */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__image-col {
        max-width: 500px;
    }

    .hero__image-stack {
        height: 480px;
    }

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

    .amenities__inner,
    .location__inner,
    .about__inner,
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .amenities__image-group,
    .about__image-stack {
        height: 420px;
    }

    .location__map-wrapper {
        height: 360px;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__inner {
        gap: 40px;
    }

    .hero__image-stack {
        height: 380px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__trust {
        gap: 16px;
    }

    .rooms__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .about__stats {
        flex-direction: column;
        gap: 16px;
    }

    .about__stat-divider {
        width: 40px;
        height: 2px;
    }

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

    .cta-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner__actions .btn {
        justify-content: center;
    }

    .contact__form-col {
        padding: 28px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__headline {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero__image-stack {
        height: 320px;
    }

    .amenities__image-group,
    .about__image-stack {
        height: 320px;
    }

    .room-card__features {
        grid-template-columns: 1fr;
    }
}
