﻿:root {
    --background: #f7f2eb;
    --surface: #ffffff;
    --surface-alt: #fbf1e7;

    --text: #473728;
    --text-secondary: #7d6558;
    --muted: #9b8779;

    --primary: #b35f34;
    --primary-dark: #7e3e24;

    --accent: #d29867;
    --accent-light: #f0c7a3;
    --accent-dark: #a0603d;
    --accent-soft: rgba(210, 152, 103, 0.16);

    --gold: #c58c57;

    --border: rgba(179, 106, 61, .12);

    --shadow-sm: 0 4px 14px rgba(125, 73, 45,.08);
    --shadow: 0 14px 44px rgba(125, 73, 45,.1);
    --shadow-lg: 0 26px 78px rgba(125, 73, 45,.14);

    --gradient-primary: #d29867;
    --gradient-dark: #a0603d;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: hidden;
}

.hero h1,
.section-header h2,
.contact-panel h2 {
    font-family: "Cormorant Garamond", serif;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 40px;

    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(0,0,0,.05);

    box-shadow:
        0 6px 30px rgba(0,0,0,.04);
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;

    letter-spacing: .25em;
    text-transform: uppercase;

    color: var(--primary);
}

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

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;

    position: relative;

    transition: .3s;
}

.nav-links a::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition: .3s;
}

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

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

.cta-nav {
    background: rgba(211, 152, 99, 0.14);
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 600;
    border: 1px solid rgba(211, 152, 99, 0.28);
    transition: .25s ease;
}

.cta-nav:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(179, 106, 61, .18);
}

.hero {
    min-height: 90vh;
    display: grid;
    place-items: center;
    text-align: left;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    background-color: #1f170f;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -2%;
    background:
        linear-gradient(120deg, rgba(10, 6, 3, 0.88) 0%, rgba(10, 6, 3, 0.52) 35%, rgba(10, 6, 3, 0.72) 100%),
        url("que-ver-caceres-scaled.webp") center/cover no-repeat;
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.03);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 5, 2, 0.18) 0%, rgba(8, 5, 2, 0.42) 100%);
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-background {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 1fr);
    gap: 40px;
    align-items: center;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.hero-copy {
    max-width: 680px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-summary {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 24px;
    max-width: 430px;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    background: linear-gradient(145deg, rgba(255, 247, 240, 0.52), rgba(248, 240, 231, 0.68));
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 24px rgba(18, 10, 5, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-summary-header {
    display: grid;
    gap: 10px;
}

.hero-summary .eyebrow {
    margin-bottom: 0;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #6f5138;
    text-shadow: none;
    backdrop-filter: blur(8px);
}

.hero-summary-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--primary-dark);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero-features {
    display: grid;
    gap: 10px;
    padding-left: 18px;
    margin: 0;
    list-style: disc;
    color: var(--text-secondary);
    max-width: 100%;
}

.hero-features li {
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    font-size: 0.98rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(3rem,5vw,4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    color: #fffaf5;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.78), 0 1px 2px rgba(0, 0, 0, 0.95);
    margin: 0 0 24px;
    max-width: 720px;
}

.hero .eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 12px 24px;
    background: rgba(255, 250, 245, 0.16);
    border: 1px solid rgba(255, 250, 245, 0.28);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fffaf5;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
}

.eyebrow {
    color: var(--accent);
    letter-spacing: 0.14em;
}

.hero p {
    max-width: 680px;
    font-size: 1.1rem;
    color: #fffaf5;
    text-shadow: 0 5px 14px rgba(0, 0, 0, 0.72);
}

.hero-intro {
    margin-top: 16px;
    color: #fffaf5;
    font-size: 1.08rem;
    line-height: 1.8;
    text-shadow: 0 5px 14px rgba(0, 0, 0, 0.72);
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-sm);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.primary {
    background: var(--accent);
    color: #fff;
}

.primary:hover {
    background: var(--accent-dark);
}

.secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    border: 1px solid rgba(179, 106, 61, 0.22);
}

.secondary:hover {
    background: #fff;
    border-color: rgba(179, 106, 61, 0.35);
}

.section {
    padding: 90px 48px;
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
}

.contact-callout {
    background: #f6ede4;
    padding-top: 50px;
    padding-bottom: 50px;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
    gap: 28px;
    align-items: start;
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(179, 106, 61, 0.15);
    box-shadow: 0 20px 40px rgba(125, 73, 45, 0.08);
    color: #3d2c20;
}

.contact-panel a {
    color: inherit;
}

.contact-panel .eyebrow {
    color: #a0603d;
}

.contact-panel h2,
.contact-panel p {
    color: #3d2c20;
    font-weight: 500;
}

.contact-panel h2 {
    font-weight: 700;
}

.contact-panel p a {
    color: #7e3e24;
    font-weight: 600;
    text-decoration: underline;
}

.contact-panel p a:hover {
    opacity: 0.88;
}

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

.contact-panel > div {
    min-width: 0;
}

.contact-panel a {
    white-space: nowrap;
}

.contact-panel h2 {
    margin: 14px 0 12px;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-panel p {
    margin: 0;
    color: #3d2c20;
    max-width: 760px;
}

.section-header {
    display: grid;
    gap: 18px;
    max-width: 920px;
    margin-bottom: 60px;
}

.section-header h2 {
    margin: 0;
    font-size: 2.2rem;
    color: var(--primary);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.section-header p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 800px;
    line-height: 1.6;
}

.intro-grid,
.location-grid,
.cards-grid,
.details-cards,
.review-grid,
.stats-grid,
.testimonials-grid,
.amenities-grid {
    display: grid;
    gap: 28px;
}

.intro-grid {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
    gap: 32px;
}

.card {
    background: white;

    border-radius: 28px;

    border: 1px solid rgba(0,0,0,.04);

    padding: 40px;

    box-shadow:
        0 12px 40px rgba(0,0,0,.05);

    transition: .35s;
}

.card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 24px 70px rgba(0,0,0,.09);
}

.hero-summary.card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-summary.card .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-summary.card,
.hero-summary.card .hero-summary-title,
.hero-summary.card .hero-features li {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.highlight-card {
    border: none;
    background: #f8ede4;
    box-shadow: 0 10px 36px rgba(179, 106, 61, 0.12);
}

.stats-card,
.room-card,
.detail-card,
.host-card,
.map-card,
.nearby-card {
    min-height: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-header h2 {
    color: var(--primary);
}

.section-header p {
    color: var(--muted);
}

.badge.light {
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent);
}

.feature-card h2,
.service-card h3,
.room-card h3,
.detail-card h3,
.host-card h3,
.testimonial-card strong,
.map-card h3,
.nearby-card h3 {
    margin-top: 0;
    color: var(--primary);
}

.section-header .eyebrow,
.contact-panel .eyebrow,
.badge {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.summary-list,
.stats-grid,
.review-grid,
.amenities-grid,
.location-grid ul,
.host-card ul,
.room-card ul,
.detail-card ul,
.nearby-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.summary-list li,
.location-grid ul li,
.host-card ul li,
.room-card ul li,
.detail-card ul li,
.nearby-card ul li {
    margin-bottom: 12px;
    color: var(--muted);
}

.stats-grid,
.review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid div,
.review-grid div {
    padding: 24px;
    border-radius: 12px;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.stats-grid div:hover,
.review-grid div:hover {
    background: var(--surface);
    border-color: var(--accent-soft);
}

.stats-grid strong,
.review-grid strong {
    display: block;
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.stats-grid span,
.review-grid span {
    color: var(--muted);
}

.price-block {
    margin-top: 28px;
    padding: 20px;
    border-radius: 12px;
    background: var(--accent-soft);
    border: 1px solid rgba(179, 106, 61, 0.2);
}

.amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.amenities-grid span {
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenities-grid span:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    grid-auto-rows: minmax(240px, 320px);
}

.gallery-item {
    border-radius: 26px;
    overflow: hidden;

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);

    transition: .4s;
}


.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    min-height: 100%;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.lightbox {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(10, 18, 38, 0.88);
    padding: 24px;
    z-index: 2000;
}

.lightbox.hidden {
    display: none;
}

.lightbox img {
    max-width: 92vw;
    max-height: 92vh;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

.footer-contact-card a {
    color: var(--primary);
    text-decoration: none;
}

.footer-contact-card a:hover {
    text-decoration: underline;
}

.details-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.room-card,
.detail-card {
    min-height: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.room-card ul,
.detail-card ul {
    margin: 16px 0 0;
    padding-left: 20px;
}

.room-card li,
.detail-card li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.service-card {
    min-height: 240px;
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fcf2ea;
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(179, 106, 61, 0.12);
    border-color: rgba(179, 106, 61, 0.22);
    background: #fff5ed;
}

.map-card {
    display: grid;
    gap: 18px;
    padding: 32px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(125, 73, 45, 0.08);
    transition: all 0.3s ease;
}

.map-card:hover {
    box-shadow: 0 16px 40px rgba(179, 106, 61, 0.14);
    border-color: rgba(179, 106, 61, 0.18);
}

.map-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(179, 106, 61, 0.15);
    min-height: 260px;
    max-height: 320px;
    overflow: hidden;
}

.map-frame .leaflet-container {
    border-radius: 20px;
}

.map-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.nearby-card ul {
    display: grid;
    gap: 10px;
}

.section.location {
    padding-top: 60px;
}

/* Estilos Leaflet personalizados */
.leaflet-control-zoom {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    background: #ffffff !important;
    border: none !important;
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 1.2rem;
}

.leaflet-control-zoom-in:hover,
.leaflet-control-zoom-out:hover {
    background: var(--accent-soft) !important;
    color: var(--accent) !important;
}

.leaflet-popup-content {
    font-family: 'Inter', sans-serif;
}

.leaflet-popup {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-tip-container {
    display: none;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--border);
}

.leaflet-marker-icon {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fff7f2;
    box-shadow: 0 2px 10px rgba(125, 73, 45, 0.08);
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(179, 106, 61, 0.14);
    transform: translateY(-4px);
    border-color: rgba(179, 106, 61, 0.2);
    background: #fff3e9;
}

.testimonial-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Oculta las reseñas por defecto; se mostrarán al activar la clase .visible */
#reviews {
    display: none;
    gap: 24px;
}

#reviews.visible {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Tarjeta para lugares cercanos */
.nearby-card {
    padding: 22px 24px;
    border-radius: 18px;
    background: #fff7f0;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(125,73,45,0.06);
}

.nearby-card h3 {
    margin-top: 0;
    color: var(--primary-dark);
}

.host-section {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}

.footer {
    background: #7b5a42;
    color: white;
    padding: 80px 50px 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 32px;
    max-width: 1320px;
    margin: 0 auto;
}

.footer-card {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    padding: 32px 34px;
}

.footer-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 16px;
    color: #d7e2f5;
    min-width: 0;
    align-items: center;
}

.footer-row a {
    overflow-wrap: anywhere;
    word-break: break-word;
    color: #f8f9ff;
}

.footer .footer-note {
    color: rgba(238,242,247,0.75);
}

.footer .eyebrow,
.footer h2,
.footer p,
.footer .footer-row strong,
.footer .footer-row a {
    color: #eef2f7;
}

.section-header p,
.contact-panel p,
.footer-note,
.summary-list li,
.detail-card ul li,
.nearby-card ul li,
.accordion-content {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-note {
    max-width: 1320px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.accordion {
    display: grid;
    gap: 16px;
}

.accordion-item {
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--accent-soft);
}

.accordion-header {
    width: 100%;
    padding: 22px 24px;
    background: #fff3ea;
    border: 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--accent-dark);
    transition: transform 0.25s ease;
}

.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 24px 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    color: var(--muted);
    background: var(--surface-alt);
}

@media (max-width: 1200px) {
    .hero-panel,
    .contact-panel,
    .intro-grid,
    .host-section,
    .location-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-summary {
        max-width: 760px;
    }

    .contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 1024px) {
    .sticky-nav {
        padding: 16px 20px;
        backdrop-filter: blur(20px);
        background: rgba(255,255,255,.94);
        border-bottom: 1px solid rgba(0,0,0,.06);
    }

    .nav-links {
        gap: 12px 18px;
        justify-content: flex-end;
    }

    .section {
        padding: 72px 24px;
    }

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

    .cards-grid,
    .details-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero::before {
        background-attachment: scroll;
    }

    .sticky-nav {
        align-items: flex-start;
        gap: 12px;
    }

    .logo {
        font-size: 1rem;
        letter-spacing: 0.18em;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }

    .hero {
        min-height: auto;
        padding: 56px 16px 40px;
    }

    .hero-panel {
        gap: 24px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.08;
    }

    .hero-summary,
    .contact-panel,
    .card,
    .service-card,
    .map-card,
    .footer-card {
        padding: 24px;
        border-radius: 20px;
    }

    .section {
        padding: 56px 16px;
    }

    .section-header {
        gap: 12px;
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-panel h2 {
        font-size: 1.6rem;
    }

    .gallery-grid,
    .cards-grid,
    .details-cards,
    .stats-grid,
    .review-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-auto-rows: minmax(220px, 260px);
    }

    .button,
    .cta-nav {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

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

    .footer {
        padding: 56px 16px 32px;
    }

    .footer-content {
        gap: 18px;
    }

    #reviews.visible {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .sticky-nav {
        padding: 12px 14px;
    }

    .hero {
        padding-top: 42px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero-intro,
    .hero p,
    .section-header p {
        font-size: 1rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .card,
    .service-card,
    .map-card,
    .footer-card,
    .contact-panel {
        padding: 18px;
    }

    .testimonial-card {
        padding: 22px;
    }
}
