/* ===================================
   Lamp Motel — Stylesheet
   Palette: Plum + Amber | Fresh & Airy
   =================================== */

:root {
    --color-plum: #7B4A6B;
    --color-plum-deep: #5C3552;
    --color-plum-light: #A67091;
    --color-plum-pale: #E8D5E0;
    --color-plum-ghost: #F5EDF2;
    --color-amber: #D4A04A;
    --color-amber-light: #E8C47A;
    --color-amber-pale: #FDF3E0;
    --color-bg: #FDFCFA;
    --color-bg-warm: #FAF7F4;
    --color-text: #2D2030;
    --color-text-muted: #6B5A6E;
    --color-text-light: #9B8A9E;
    --color-white: #FFFFFF;
    --color-border: #E8DDD6;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(123, 74, 107, 0.06);
    --shadow-md: 0 4px 20px rgba(123, 74, 107, 0.1);
    --shadow-lg: 0 8px 40px rgba(123, 74, 107, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.65;
    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;
}

/* ===================================
   Navigation
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 250, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 221, 214, 0.5);
    transition: var(--transition);
}

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

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-plum);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.01em;
}

.nav-logo:hover {
    color: var(--color-plum-deep);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-amber);
    transition: width var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-plum);
    color: var(--color-white) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-plum-deep);
    color: var(--color-white) !important;
    transform: translateY(-1px);
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    width: 22px;
    height: 2px;
    background: var(--color-plum);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(166, 112, 145, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(212, 160, 74, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--color-plum-pale) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 520px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-amber);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--color-amber);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline-accent {
    color: var(--color-plum);
    font-style: italic;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 460px;
}

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

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

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 560/700;
}

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

.hero-image-main:hover img {
    transform: scale(1.03);
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-bg);
    aspect-ratio: 320/240;
    width: 240px;
}

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

.hero-badge {
    position: absolute;
    top: 24px;
    right: -16px;
    background: var(--color-white);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-plum);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    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: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--color-plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 74, 107, 0.25);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-plum);
    border: 1.5px solid var(--color-plum-pale);
}

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

.btn-outline {
    background: transparent;
    color: var(--color-plum);
    border: 1.5px solid var(--color-plum-pale);
    padding: 11px 24px;
    font-size: 0.875rem;
}

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

.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

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

/* ===================================
   Section Divider
   =================================== */
.section-divider {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    opacity: 0.5;
}

/* ===================================
   Section Shared
   =================================== */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-amber);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 560px;
}

/* ===================================
   Rooms Section
   =================================== */
.rooms {
    padding: 100px 0;
    background: var(--color-bg);
}

.rooms-header {
    text-align: center;
    margin-bottom: 64px;
}

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

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

.room-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--color-border);
}

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

.room-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 600/400;
}

.room-card-image 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-image img {
    transform: scale(1.05);
}

.room-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-amber);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.room-card-body {
    padding: 28px;
}

.room-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}

.room-card-desc {
    font-size: 0.925rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.room-card-features {
    margin-bottom: 24px;
}

.room-card-features li {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-card-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--color-amber);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===================================
   Amenities Section
   =================================== */
.aMENITIES {
    padding: 100px 0;
    background: var(--color-bg-warm);
}

.aMENITIES {
    padding: 100px 0;
}

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

.amenities-visual {
    position: relative;
}

.amenities-image-stack {
    position: relative;
    height: 500px;
}

.amenities-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 70%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.amenities-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 55%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-bg-warm);
}

.amenities-img-1 img,
.amenities-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenities-content {
    max-width: 480px;
}

.amenities-content .section-subtitle {
    margin-bottom: 40px;
}

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

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

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

.amenity-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.amenity-item p {
    font-size: 0.825rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* ===================================
   Location Section
   =================================== */
.location {
    padding: 100px 0;
    background: var(--color-bg);
}

.location-header {
    text-align: center;
    margin-bottom: 64px;
}

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

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

.location-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

.location-detail h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.location-detail p,
.location-detail a {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.location-detail a:hover {
    color: var(--color-plum);
    text-decoration: underline;
}

.location-distance h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.location-distance ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-distance li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding: 10px 16px;
    background: var(--color-bg-warm);
    border-radius: var(--radius-sm);
}

.location-distance li span:first-child {
    color: var(--color-text);
    font-weight: 500;
}

.location-distance li span:last-child {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 420px;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--color-plum);
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-gradient-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 74, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.cta-gradient-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 112, 145, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
}

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

.cta-content {
    color: var(--color-white);
}

.cta-content .section-eyebrow {
    color: var(--color-amber-light);
}

.cta-content .section-eyebrow::before {
    background: var(--color-amber-light);
}

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

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px;
}

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

.cta-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.cta-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 24px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-plum);
    box-shadow: 0 0 0 3px rgba(123, 74, 107, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    text-align: center;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.925rem;
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 280px;
}

.footer-address {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-amber-light);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-white);
}

.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.825rem;
    opacity: 0.6;
}

/* ===================================
   Animations
   =================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-subheadline {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-image-accent {
        left: -20px;
    }

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

    .amenities-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .amenities-visual {
        max-width: 400px;
    }

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

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-image-main {
        aspect-ratio: 4/3;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-badge {
        right: 16px;
    }

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

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

    .amenities-image-stack {
        height: 360px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta-card {
        padding: 28px;
    }

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

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

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

    .location-distance li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
