/* ================================================
   A CANTUNERA LITTLE HOUSE
   Light mode default · Dark mode toggle
   ================================================ */

/* --- VARIABLES: LIGHT MODE (default) --- */
:root {
    --bg:           #faf8f5;
    --bg-alt:       #f2ede6;
    --bg-card:      #ffffff;
    --bg-card-hover:#f7f3ee;
    --text:         #1c1712;
    --text-2:       #4a3f35;
    --text-muted:   #9a8e82;
    --accent:       #b8903a;
    --accent-hover: #9a7830;
    --accent-light: rgba(184,144,58,0.10);
    --border:       rgba(180,155,110,0.18);
    --shadow:       0 2px 24px rgba(0,0,0,0.06);
    --shadow-lg:    0 8px 40px rgba(0,0,0,0.10);
    --nav-bg:       rgba(250,248,245,0.94);
    --radius:       16px;
    --radius-sm:    10px;
    --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', -apple-system, sans-serif;
}

/* --- VARIABLES: DARK MODE --- */
[data-theme="dark"] {
    --bg:           #1a1a18;
    --bg-alt:       #222220;
    --bg-card:      #2a2a27;
    --bg-card-hover:#333330;
    --text:         #e8dcc8;
    --text-2:       #c4b69c;
    --text-muted:   #8a7e6a;
    --accent:       #c9a96e;
    --accent-hover: #dbb87a;
    --accent-light: rgba(201,169,110,0.10);
    --border:       rgba(201,169,110,0.12);
    --shadow:       0 2px 24px rgba(0,0,0,0.30);
    --shadow-lg:    0 8px 40px rgba(0,0,0,0.40);
    --nav-bg:       rgba(26,26,24,0.96);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background var(--transition), color var(--transition);
}

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

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

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

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
}
.btn--primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,144,58,0.30); }

.btn--outline {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
}
.btn--outline:hover { background: var(--accent); color: #fff; }

.btn--ghost {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-2);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--large { padding: 16px 36px; font-size: 0.95rem; }

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 0;
    box-shadow: 0 1px 0 var(--border);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.navbar:not(.scrolled) .nav-logo { color: #fff; }
.nav-logo:hover { color: var(--accent); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--text-2);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color var(--transition);
}
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a:hover, .navbar:not(.scrolled) .nav-links a:hover { color: var(--accent); }

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 500 !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }
/* nav-cta visibile nel menu mobile (dark e light) */
.nav-links .nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    display: inline-block;
    text-align: center;
    width: 100%;
}
[data-theme="dark"] .nav-links .nav-cta { color: #1a1a18 !important; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Language toggle */
.lang-toggle {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 0 12px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: all var(--transition);
    flex-shrink: 0;
}
.lang-toggle:hover { border-color: var(--accent); }
.navbar:not(.scrolled) .lang-toggle { border-color: rgba(255,255,255,0.35); }
.lang-sep { opacity: 0.4; font-size: 0.7rem; }
.lang-opt { transition: color var(--transition); }
.lang-opt.active { color: var(--accent); font-weight: 600; }
.navbar:not(.scrolled) .lang-opt { color: rgba(255,255,255,0.7); }
.navbar:not(.scrolled) .lang-opt.active { color: var(--accent); }

/* Dark mode toggle */
.theme-toggle {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-2);
    transition: all var(--transition);
    flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 16px; height: 16px; }
.navbar:not(.scrolled) .theme-toggle { border-color: rgba(255,255,255,0.35); color: #fff; }

/* Show/hide sun-moon icons */
.icon-sun  { display: block; }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    transition: var(--transition);
}
.navbar:not(.scrolled) .nav-toggle span { background: #fff; }

/* --- HERO --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(15,12,8,0.25) 0%,
        rgba(15,12,8,0.55) 50%,
        rgba(15,12,8,0.80) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 20px;
}
.hero-title span {
    display: block;
    font-weight: 400;
    font-style: italic;
    color: var(--accent);
    font-size: 0.62em;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.80);
    max-width: 440px;
    margin: 0 auto 32px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}
.hero-btn--outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.6);
    color: #fff;
}
.hero-btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; }
.hero-btn--fill {
    background: var(--accent);
    border: 1.5px solid var(--accent);
    color: #fff;
}
.hero-btn--fill:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); }

.hero-score {
    position: absolute;
    bottom: 36px;
    right: 40px;
    z-index: 2;
}
.score-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    padding: 14px 20px;
    color: #fff;
}
.score-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
}
.score-badge > div strong { display: block; font-size: 0.88rem; font-weight: 500; }
.score-badge > div small { font-size: 0.75rem; opacity: 0.75; }

/* --- STATS BAR --- */
.stats-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 20px;
    flex: 1;
    min-width: 140px;
    border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.stat strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.stat span { font-size: 0.75rem; color: var(--text-muted); }

/* --- SECTIONS --- */
.section { padding: 100px 0; }
.section.amenities, .section.info, .section.reviews { background: var(--bg-alt); }

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

.section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text);
}
.section-sub {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* --- ABOUT --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-text .section-label { margin-bottom: 10px; }
.about-text .section-title { margin-bottom: 24px; }

.about-text p {
    color: var(--text-2);
    margin-bottom: 18px;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
}
.about-text p strong { color: var(--text); font-weight: 500; }

.about-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img:hover img { transform: scale(1.05); }
.about-img-1 { grid-column: 1 / -1; height: 280px; }
.about-img-2 { grid-column: 1 / -1; height: 220px; }

/* --- AMENITIES --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.amenity-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.amenity-icon { width: 42px; height: 42px; color: var(--accent); margin-bottom: 16px; }
.amenity-icon svg { width: 100%; height: 100%; }

.amenity-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 8px;
}
.amenity-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }

/* --- GALLERY BENTO --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 175px);
    gap: 12px;
}

.bento-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bento-item:hover img { transform: scale(1.07); }

.bento-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 22px 16px 14px;
    background: linear-gradient(to top, rgba(15,12,8,0.80), transparent);
    font-family: var(--font-display);
    font-size: 1rem;
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
    transition: all var(--transition);
}
.bento-item:hover .bento-caption { opacity: 1; transform: translateY(0); }

.b1  { grid-column: 1 / 3; grid-row: 1 / 3; }
.b2  { grid-column: 3 / 4; grid-row: 1 / 3; }
.b3  { grid-column: 4 / 5; grid-row: 1 / 2; }
.b4  { grid-column: 4 / 5; grid-row: 2 / 3; }
.b5  { grid-column: 1 / 3; grid-row: 3 / 4; }
.b6  { grid-column: 3 / 5; grid-row: 3 / 4; }
.b7  { grid-column: 1 / 2; grid-row: 4 / 5; }
.b8  { grid-column: 2 / 3; grid-row: 4 / 5; }
.b9  { grid-column: 3 / 4; grid-row: 4 / 5; }
.b10 { grid-column: 4 / 5; grid-row: 4 / 5; }

/* --- ROOMS --- */
.room-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
    padding: 36px;
    background: var(--bg-card);
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.room-card--reverse { direction: rtl; }
.room-card--reverse > * { direction: ltr; }

.room-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    height: 340px;
    margin-bottom: 12px;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.room-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-img-main:hover img { transform: scale(1.04); }

.room-img-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.room-img-grid img {
    border-radius: var(--radius-sm);
    width: 100%; height: 110px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease, opacity 0.3s ease;
}
.room-img-grid img:hover { transform: scale(1.04); opacity: 0.9; }

.room-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 14px;
}
.room-info h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.15;
}
.room-info > p {
    color: var(--text-2);
    font-weight: 300;
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.room-amenities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}
.room-amenities li {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
}
.room-amenities li::before {
    content: '';
    position: absolute;
    left: 0; top: 6px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.7;
}

/* Common areas */
.common-areas { margin-top: 20px; }
.common-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--text);
    margin-bottom: 28px;
    text-align: center;
}
.common-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.common-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.common-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.common-img { height: 200px; overflow: hidden; cursor: pointer; }
.common-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.common-card:hover .common-img img { transform: scale(1.06); }
.common-info { padding: 20px; }
.common-info h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 8px;
}
.common-info p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* --- REVIEWS --- */
.score-overview {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 48px;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 36px 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.score-big {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.score-big-num {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.score-big > div strong { display: block; font-size: 1.2rem; color: var(--text); }
.score-big > div span { font-size: 0.83rem; color: var(--text-muted); }

.score-bars { flex: 1; min-width: 0; width: 100%; display: flex; flex-direction: column; gap: 10px; }
.score-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.83rem;
    color: var(--text-2);
}
.score-bar-item > span:first-child { min-width: 130px; flex-shrink: 0; }
.score-track {
    flex: 1;
    height: 6px;
    background: var(--bg-alt);
    border-radius: 10px;
    overflow: hidden;
}
.score-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 10px;
    transition: width 1s ease;
}
.score-val { min-width: 30px; text-align: right; font-weight: 500; color: var(--text); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}
.review-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.reviewer-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}
.review-header > div strong { display: block; font-size: 0.88rem; color: var(--text); }
.review-header > div span { font-size: 0.75rem; color: var(--text-muted); }
.review-stars { margin-left: auto; color: var(--accent); font-size: 0.75rem; letter-spacing: 1px; }
.review-card > p { font-size: 0.86rem; color: var(--text-2); line-height: 1.7; font-style: italic; }

.reviews-cta { text-align: center; }

/* --- LOCATION --- */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 40px;
}
.location-image {
    border-radius: var(--radius);
    overflow: hidden;
    height: 480px;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}
.location-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.location-image:hover img { transform: scale(1.04); }
.location-img-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 20px 16px;
    background: linear-gradient(to top, rgba(15,12,8,0.75), transparent);
    color: #fff;
    font-size: 0.85rem;
    font-family: var(--font-display);
    font-style: italic;
}

.location-highlights { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.highlight {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.highlight:first-child { padding-top: 0; }
.highlight-distance {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 80px;
}
.highlight-label { font-size: 0.88rem; color: var(--text-2); font-weight: 300; }

.nearby h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 14px;
}
.nearby ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.nearby li { font-size: 0.83rem; color: var(--text-2); }
.nearby-type {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 10px;
    padding: 2px 8px;
    margin-right: 6px;
}

.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    line-height: 0; /* rimuove spazio extra sotto iframe */
}
.location-map iframe { display: block; }

/* --- INFO --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.info-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
}
.info-checkinout {
    display: flex;
    gap: 28px;
    margin: 10px 0 14px;
}
.info-sub {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.info-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.info-icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 16px; }
.info-icon svg { width: 100%; height: 100%; }
.info-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--text); margin-bottom: 6px; }
.info-time { font-size: 1.3rem; font-weight: 600; color: var(--accent); margin-bottom: 10px; font-family: var(--font-display); }
.info-card > p:last-child { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* --- CONTACT --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 72px;
    align-items: center;
}
.contact-left .section-title { margin-bottom: 16px; }
.contact-desc {
    color: var(--text-2);
    font-size: 0.92rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 32px;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-icon { width: 40px; height: 40px; margin: 0 auto 16px; color: var(--accent); }
.contact-icon svg { width: 100%; height: 100%; }
.contact-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--text); margin-bottom: 8px; }
.contact-card a, .contact-card p { font-size: 0.86rem; color: var(--text-2); font-weight: 300; }
.contact-card a:hover { color: var(--accent); }
.contact-note { margin-top: 6px; font-size: 0.75rem !important; color: var(--text-muted) !important; }

/* --- FOOTER --- */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 60px 0 28px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 10px;
}
.footer-logo span { font-weight: 400; font-style: italic; color: var(--accent); font-size: 0.65em; display: block; }
.footer-brand p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-booking {
    font-size: 0.78rem;
    color: var(--accent);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 16px;
}
.footer-booking:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* --- LIGHTBOX --- */
.lightbox {
    display: none;
    position: fixed; inset: 0;
    z-index: 9999;
    background: rgba(8,6,4,0.96);
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox-close {
    position: absolute;
    top: 20px; right: 28px;
    background: none; border: none;
    color: rgba(255,255,255,0.75);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}
.lightbox-close:hover { color: var(--accent); }
.lightbox-img {
    max-width: 90%; max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    cursor: default;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* --- FADE-IN ANIMATIONS --- */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .amenities-grid { grid-template-columns: repeat(4, 1fr); }

    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: none;
        grid-auto-rows: 175px;
    }
    .bento-grid > * { grid-column: auto !important; grid-row: auto !important; }
    .b1 { grid-column: 1 / 3 !important; }

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

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .room-card, .room-card--reverse { grid-template-columns: 1fr; direction: ltr; }
    .common-grid { grid-template-columns: 1fr; }
    .score-overview { flex-direction: column; gap: 28px; }
    .location-grid { grid-template-columns: 1fr; gap: 36px; }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--bg);
        flex-direction: column;
        padding: 80px 36px;
        gap: 22px;
        transition: right var(--transition);
        border-left: 1px solid var(--border);
        box-shadow: -8px 0 40px rgba(0,0,0,0.12);
        z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1rem; color: var(--text-2) !important; }

    .hero-score { bottom: 20px; right: 16px; }
    .score-badge { padding: 10px 14px; }
    .score-num { font-size: 1.6rem; }

    .stats-grid { flex-wrap: wrap; }
    .stat { min-width: calc(50% - 1px); border-bottom: 1px solid var(--border); }
    .stat:nth-child(2n) { border-right: none; }

    /* --- Gallery slider --- */
    .bento-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        touch-action: pan-x;
        gap: 12px;
        padding-bottom: 14px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .bento-grid::-webkit-scrollbar { display: none; }
    .bento-grid > .bento-item {
        flex: 0 0 72vw;
        height: 220px;
        grid-column: auto !important;
        grid-row: auto !important;
        scroll-snap-align: start;
    }

    /* --- Reviews slider --- */
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        touch-action: pan-x;
        gap: 16px;
        padding-bottom: 14px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .reviews-grid .review-card {
        flex: 0 0 82vw;
        scroll-snap-align: start;
    }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .contact-cards { grid-template-columns: 1fr 1fr; }
    .footer-content { flex-direction: column; }
    .footer-links { flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .section { padding: 72px 0; }
    .room-card { padding: 20px; }
    .room-img-main { height: 240px; }
}

@media (max-width: 520px) {
    .hero-title { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .score-overview { padding: 24px 20px; }
    .score-bars { width: 100%; }
    .score-bar-item > span:first-child { min-width: 100px; }
    .score-big-num { font-size: 3.5rem; }
    .stat { min-width: 100%; border-right: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
