/* ============================================
   Gasthof Kurath — Design System
   Modern × Traditionelles Kärntner Gasthaus
   ============================================ */

/* --- Custom Properties --- */
:root {
    --primary: #2c4a34;
    --primary-dark: #1e3324;
    --accent: #c5a065;
    --accent-light: #d4b87a;
    --text: #333333;
    --text-light: #666666;
    --bg: #f9f9f7;
    --white: #ffffff;
    --overlay: rgba(20, 35, 22, 0.55);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --transition: 0.3s ease;
    --max-width: 1200px;
    --nav-height: 70px;
}

/* --- Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1.3;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 1.5rem;
}

.accent-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* --- Layout --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary);
}

.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: var(--primary);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.25rem;
    margin-left: 1.5rem;
    align-items: center;
}

.lang-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all var(--transition);
    text-decoration: none;
}

.lang-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.lang-link.active {
    color: var(--primary);
    background: var(--accent);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.hero .subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero slide indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.75rem;
}

.hero-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.hero-indicators button.active {
    background: var(--accent);
    border-color: var(--accent);
}

/* ============================================
   ABOUT / WILLKOMMEN
   ============================================ */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-text p:first-of-type {
    font-size: 1.1rem;
    color: var(--text);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-image video {
    width: 100%;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--accent);
    border-radius: var(--radius);
    z-index: -1;
}

/* ============================================
   ROOMS SECTION
   ============================================ */
.rooms {
    background: var(--bg);
}

/* --- Feature Highlights Row --- */
.room-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.room-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.room-highlight:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.highlight-icon {
    font-size: 1.2rem;
}

/* --- Masonry Gallery (Fotos unbeschnitten in Originalproportion) --- */
.gallery {
    columns: 3;
    column-gap: 0.75rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    break-inside: avoid;
    margin-bottom: 0.75rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* --- Amenities (Küche & Bad) --- */
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.amenity-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.amenity-image {
    overflow: hidden;
}

.amenity-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-image img {
    transform: scale(1.03);
}

.amenity-body {
    padding: 1.5rem;
}

.amenity-body h3 {
    margin-bottom: 0.5rem;
}

.amenity-body p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- CTA area --- */
.rooms-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.rooms-cta .price-note {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.price-note {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ============================================
   RESTAURANT
   ============================================ */
.restaurant {
    background: var(--white);
}

.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.restaurant-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.restaurant-images img {
    border-radius: var(--radius);
    width: 100%;
    height: 200px;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.restaurant-images img:hover {
    transform: scale(1.03);
}

.restaurant-images img:first-child {
    grid-column: 1 / -1;
    height: 280px;
}

.hours-table {
    width: 100%;
    margin: 1.5rem 0;
}

.hours-table tr {
    border-bottom: 1px solid #eee;
}

.hours-table td {
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--primary);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-light);
}

.hours-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

/* ============================================
   LOCATION
   ============================================ */
.location {
    background: var(--bg);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info h3 {
    margin-top: 1.5rem;
}

.location-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.location-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.location-images img {
    border-radius: var(--radius);
    width: 100%;
    height: 180px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--primary);
    color: var(--white);
}

.contact h2 {
    color: var(--white);
}

.contact .accent-line {
    background: var(--accent);
}

.contact .form-group label {
    color: var(--white);
}

.contact .form-group label .required {
    color: var(--accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.contact-item h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--accent-light);
    font-size: 1.05rem;
    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--white);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: flex-end;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2001;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrapper {
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
}

.form-group label .required {
    color: var(--accent);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(183, 142, 80, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input[type="date"] {
    cursor: pointer;
}

.hnpt {
    display: none !important;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.5rem;
}

.form-submit .btn {
    min-width: 220px;
}

/* Expandable inline form in rooms-cta */
.inline-form-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
    opacity: 0;
    margin-top: 0;
    width: 100%;
}

.inline-form-expand.open {
    max-height: 800px;
    opacity: 1;
    margin-top: 2rem;
}

.inline-form-expand .contact-form-wrapper {
    margin-top: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.inline-form-expand .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
}

.inline-form-expand .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
}

.inline-form-expand .form-group.full-width {
    grid-column: 1 / -1;
}

.inline-form-expand .form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.5rem;
}

.btn-toggle-form {
    cursor: pointer;
}

.btn-toggle-form.active {
    background: var(--primary);
    color: var(--white);
}

.form-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: center;
}

.form-alert.success {
    background: #e6f9e6;
    color: #1a7a1a;
    border: 1px solid #b3e6b3;
}

.form-alert.error {
    background: #fde8e8;
    color: #9a1a1a;
    border: 1px solid #f5b3b3;
}

/* ============================================
   LP-SPECIFIC: ROOM HIGHLIGHTS (Feature Pills)
   ============================================ */
.room-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.room-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition);
}

.room-highlight:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ============================================
   LP-SPECIFIC: OPENING HOURS TABLE
   ============================================ */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.hours-table td {
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.hours-table td:first-child {
    font-weight: 500;
    width: 55%;
    color: var(--primary);
}

.hours-table td:last-child {
    color: var(--text-light);
}

.hours-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

/* ============================================
   LP-SPECIFIC: ROOMS CTA BLOCK
   ============================================ */
.rooms-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.price-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   LP-SPECIFIC: LOCATION IMAGES
   ============================================ */
.location-images {
    margin-top: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.location-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {

    .about-grid,
    .restaurant-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image::after {
        display: none;
    }

    .gallery {
        columns: 2;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* LP: Room highlights — 2 columns on tablet */
    .room-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 0.75rem;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }

    h2 {
        font-size: 1.8rem;
    }

    .gallery {
        columns: 1;
    }

    .restaurant-images {
        grid-template-columns: 1fr;
    }

    .restaurant-images img:first-child {
        height: 200px;
    }

    .location-images {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    /* Contact form — single column on mobile */
    .contact-form,
    .inline-form-expand .contact-form {
        grid-template-columns: 1fr;
    }

    .inline-form-expand.open {
        max-height: 1200px;
    }

    /* LP: Room highlights — 1 column on mobile */
    .room-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .room-highlight {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* LP: Hours table stacks on small screens */
    .hours-table td:first-child {
        width: auto;
    }

    /* LP: Rooms CTA full width */
    .rooms-cta .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    /* LP: Room highlights — single column on very small screens */
    .room-highlights {
        grid-template-columns: 1fr;
    }

    /* LP: Hours table fully stacked */
    .hours-table,
    .hours-table tbody,
    .hours-table tr,
    .hours-table td {
        display: block;
        width: 100%;
    }

    .hours-table td:first-child {
        border-bottom: none;
        padding-bottom: 0;
        color: var(--primary);
    }

    .hours-table td:last-child {
        padding-top: 0.2rem;
        margin-bottom: 0.5rem;
    }
}