/* ============================================================
   Casa Coco Azul — Stylesheet
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        color: #222; background: #fff; line-height: 1.6; }
img   { display: block; width: 100%; height: 100%; object-fit: cover; }
a     { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul    { list-style: none; }

/* ── Tokens ── */
:root {
    --teal:      #C2A87D;
    --teal-dark: #A8895E;
    --black:     #222222;
    --text:      #484848;
    --muted:     #717171;
    --border:    #DDDDDD;
    --bg:        #F7F7F7;
    --white:     #FFFFFF;
    --shadow:    0 6px 20px rgba(0,0,0,.12);
    --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
    --radius:    12px;
    --max-w:     1100px;
}

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
.navbar {
    position: sticky; top: 0; z-index: 200;
    background: #fff; border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
    height: 68px; display: flex; align-items: center; gap: 32px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 18px; font-weight: 700; color: var(--teal);
    flex-shrink: 0;
}
.nav-logo svg { color: var(--teal); width: 28px; height: 28px; }
.nav-tabs { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-tab {
    padding: 8px 16px; border-radius: 8px;
    font-size: 15px; font-weight: 500; color: var(--muted);
    transition: color .15s, background .15s;
}
.nav-tab:hover  { color: var(--black); background: var(--bg); }
.nav-tab.active { color: var(--black); font-weight: 600; background: var(--bg); }
.btn-book {
    flex-shrink: 0; padding: 10px 20px; border-radius: 8px;
    background: var(--teal); color: white;
    font-size: 14px; font-weight: 600; transition: background .15s;
    display: inline-block;
}
.btn-book:hover { background: var(--teal-dark); }

/* Hamburger (mobile) */
.nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    padding: 6px; margin-left: auto;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; flex-direction: column; border-top: 1px solid var(--border); }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 14px 24px; font-size: 16px; font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--bg); }
.nav-mobile a.active, .nav-mobile a:hover { color: var(--black); background: var(--bg); }

/* ══════════════════════════════════════════════════
   HERO  (home page)
══════════════════════════════════════════════════ */
.hero { position: relative; height: 520px; overflow: hidden; }
.hero-single { height: 100%; overflow: hidden; }
.hero-single img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 8s ease; }
.hero:hover .hero-single img { transform: scale(1.04); }
.hero-grid { display: grid; grid-template-columns: 3fr 2fr; height: 100%; gap: 4px; }
.hero-img { overflow: hidden; }
.hero-img img { transition: transform 8s ease; }
.hero:hover .hero-img img { transform: scale(1.04); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.2) 100%);
    display: flex; align-items: flex-end;
    padding: 40px;
}
.hero-text h1 { font-size: 38px; font-weight: 700; color: white; line-height: 1.2; }
.hero-text p  { font-size: 17px; color: rgba(255,255,255,.85); margin-top: 8px; }
.hero-gallery-btn {
    position: absolute; bottom: 20px; right: 20px;
    background: white; border: 1px solid var(--black); border-radius: 8px;
    padding: 9px 16px; font-size: 13px; font-weight: 600;
    display: flex; align-items: center; gap: 8px; cursor: pointer;
    transition: background .15s; z-index: 5;
}
.hero-gallery-btn svg { width: 16px; height: 16px; }
.hero-gallery-btn:hover { background: var(--bg); }

/* ══════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════ */
.stats-bar {
    display: flex; align-items: center; justify-content: center;
    gap: 0; background: var(--black); color: white;
    padding: 20px 24px; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 32px; }
.stat-num   { font-size: 22px; font-weight: 700; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 2px; text-transform: uppercase; letter-spacing: .06em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════════════════ */
.home-section { padding: 56px 0; border-bottom: 1px solid var(--border); }
.home-section:last-child { border-bottom: none; }
.section-heading {
    font-size: 24px; font-weight: 700; color: var(--black); margin-bottom: 8px;
    display: flex; align-items: center; gap: 10px;
}
.section-heading svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }
.section-sub { font-size: 15px; color: var(--muted); margin-bottom: 28px; }

/* ══════════════════════════════════════════════════
   ABOUT GRID
══════════════════════════════════════════════════ */
.about-grid {
    display: grid; grid-template-columns: 1fr 340px; gap: 56px; margin-top: 20px;
}
.about-text p { font-size: 16px; color: var(--text); line-height: 1.75; }
.about-text p + p { margin-top: 16px; }
.about-feature-imgs { display: grid; grid-template-rows: 1fr 1fr; gap: 8px; height: 380px; }
.about-feature-imgs img { border-radius: 10px; }

/* ══════════════════════════════════════════════════
   AMENITIES
══════════════════════════════════════════════════ */
.amenities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.amenity-item {
    display: flex; align-items: center; gap: 14px;
    font-size: 15px; color: var(--text); padding: 12px 16px;
    border: 1px solid var(--border); border-radius: 10px; background: var(--bg);
}
.amenity-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--teal); }
.amenity-icon svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════════════════
   AVAILABILITY WIDGET
══════════════════════════════════════════════════ */
.avail-widget { background: var(--bg); border-radius: var(--radius); padding: 40px; margin: 0 0 0 0; border: none; }
.avail-form   { margin: 20px 0; }
.avail-fields { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
.avail-field  { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 160px; }
.avail-field label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--black); }
.avail-field input[type="date"] {
    padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px;
    font-size: 15px; font-family: inherit; background: white; color: var(--black);
    outline: none; transition: border-color .15s;
}
.avail-field input:focus { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(194,168,125,.25); }
.btn-check {
    padding: 11px 28px; background: var(--teal); color: white; border-radius: 8px;
    font-size: 15px; font-weight: 600; font-family: inherit; transition: background .15s;
    white-space: nowrap; flex-shrink: 0;
}
.btn-check:hover { background: var(--teal-dark); }

.avail-result {
    padding: 18px 20px; border-radius: 10px; font-size: 15px; margin-bottom: 24px;
    display: flex; align-items: flex-start; gap: 12px;
}
.avail-result svg { flex-shrink: 0; margin-top: 2px; }
.loading    { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }
.avail-ok   { background: #E8F5E9; border: 1px solid #A5D6A7; color: #1B5E20; flex-direction: column; gap: 16px; }
.avail-unavail { background: #FFF3E0; border: 1px solid #FFCC80; color: #E65100; }
.avail-error   { background: #FFEBEE; border: 1px solid #EF9A9A; color: #B71C1C; }
.avail-ok-header { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.price-rows { display: flex; flex-direction: column; gap: 0; border: 1px solid #A5D6A7; border-radius: 8px; overflow: hidden; background: white; }
.price-row  { display: flex; justify-content: space-between; padding: 10px 16px; font-size: 14px; color: var(--text); border-bottom: 1px solid #E8F5E9; }
.price-row:last-child { border-bottom: none; }
.price-total { font-weight: 700; color: var(--black); font-size: 15px; }
.btn-reserve-now {
    display: inline-block; padding: 12px 24px; background: var(--teal); color: white;
    border-radius: 8px; font-size: 15px; font-weight: 600; transition: background .15s;
    align-self: flex-start;
}
.btn-reserve-now:hover { background: var(--teal-dark); }

/* Calendar inside avail widget */
.cal-section { margin-top: 32px; }
.cal-section h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; color: var(--black); }
.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cal-month-header {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
.cal-month-title { font-size: 15px; font-weight: 600; color: var(--black); }
.cal-nav-btn {
    width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border) !important;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; background: white; transition: background .15s;
}
.cal-nav-btn svg { width: 14px; height: 14px; }
.cal-nav-btn:hover { background: var(--bg); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-dow  { text-align: center; font-size: 11px; font-weight: 600; color: var(--muted); padding: 6px 0; text-transform: uppercase; }
.cal-day  { text-align: center; padding: 7px 4px; font-size: 13px; border-radius: 50%; cursor: pointer; transition: background .15s; position: relative; }
.cal-day:hover:not(.blocked):not(.past):not(.empty):not(.cal-checkin):not(.cal-checkout) { background: var(--teal); color: white; }
.cal-day.empty    { cursor: default; }
.cal-day.past     { color: var(--border); cursor: default; }
.cal-day.blocked  { color: var(--border); cursor: not-allowed; text-decoration: line-through; }
.cal-day.cal-checkin  { background: #FF385C; color: #fff; border-radius: 50%; }
.cal-day.cal-checkout { background: #FF385C; color: #fff; border-radius: 50%; }
.cal-day.cal-in-range { background: #ffe4e9; color: #222; border-radius: 0; }
.cal-day.cal-checkin.cal-in-range  { border-radius: 50% 0 0 50%; }
.cal-day.cal-checkout.cal-in-range { border-radius: 0 50% 50% 0; }
.cal-day.cal-hover-end { background: #FF385C; color: #fff; border-radius: 50%; }

/* ══════════════════════════════════════════════════
   LOCATION / MAP
══════════════════════════════════════════════════ */
.location-desc { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; max-width: 720px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ══════════════════════════════════════════════════
   CANCELLATION POLICY
══════════════════════════════════════════════════ */
.policy-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 20px; }
.policy-card {
    padding: 20px; border-radius: var(--radius); display: flex; gap: 14px; align-items: flex-start;
}
.policy-green  { background: #E8F5E9; border: 1px solid #A5D6A7; }
.policy-yellow { background: #FFFDE7; border: 1px solid #FFF176; }
.policy-red    { background: #FFEBEE; border: 1px solid #EF9A9A; }
.policy-icon   { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.policy-icon svg { width: 100%; height: 100%; }
.policy-green  .policy-icon { color: #2E7D32; }
.policy-yellow .policy-icon { color: #F57F17; }
.policy-red    .policy-icon { color: #C62828; }
.policy-card strong { font-size: 15px; font-weight: 600; display: block; margin-bottom: 4px; }
.policy-card p { font-size: 14px; color: var(--text); }
.policy-note { margin-top: 16px; font-size: 13px; color: var(--muted); }

/* ══════════════════════════════════════════════════
   HOUSE RULES
══════════════════════════════════════════════════ */
.rules-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 20px; }
.rules-col h3 { font-size: 15px; font-weight: 600; margin-bottom: 12px; color: var(--black); }
.rules-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); padding: 5px 0; }
.rules-list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--teal); }

/* ══════════════════════════════════════════════════
   SAFETY
══════════════════════════════════════════════════ */
.why-book-section { padding-top: 32px; padding-bottom: 32px; }
.why-book-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 20px; }
.why-book-card {
    background: #faf9f7; border: 1px solid var(--border); border-radius: 10px;
    padding: 18px 16px; text-align: center; transition: box-shadow .15s;
}
.why-book-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.why-book-icon { font-size: 24px; margin-bottom: 8px; }
.why-book-card h3 { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.why-book-card p  { font-size: 12px; color: var(--muted); line-height: 1.6; }

.safety-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 20px; }
.safety-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: var(--text);
    padding: 14px; border: 1px solid var(--border); border-radius: 10px;
}
.safety-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--teal); }

/* ══════════════════════════════════════════════════
   PAGE HEADER (gallery / contact)
══════════════════════════════════════════════════ */
.page-header { padding: 40px 0 24px; }
.page-title  { font-size: 32px; font-weight: 700; color: var(--black); }
.page-sub    { font-size: 16px; color: var(--muted); margin-top: 6px; }

/* ══════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════ */
.filter-bar {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.filter-btn {
    padding: 8px 18px; border-radius: 24px; border: 1px solid var(--border);
    font-size: 14px; font-weight: 500; color: var(--muted); background: white;
    cursor: pointer; transition: all .15s; font-family: inherit;
}
.filter-btn:hover  { border-color: var(--black); color: var(--black); }
.filter-btn.active { background: var(--black); color: white; border-color: var(--black); }

.gallery-category { margin-bottom: 48px; }
.gallery-cat-title { font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 16px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.gallery-item {
    position: relative; overflow: hidden; border-radius: 8px;
    aspect-ratio: 1; cursor: pointer; background: var(--bg);
}
.gallery-item img { transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.gallery-item-overlay svg { width: 28px; height: 28px; color: white; opacity: 0; transition: opacity .2s; }
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,.3); }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

/* ══════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════ */
.gallery-overlay {
    position: fixed; inset: 0; background: #111;
    z-index: 1000; display: none; flex-direction: column;
}
.gallery-overlay.open { display: flex; }
.gal-header {
    padding: 16px 24px; display: flex;
    justify-content: space-between; align-items: center; flex-shrink: 0;
}
.gal-close {
    color: white; font-size: 13px; font-weight: 600; display: flex;
    align-items: center; gap: 8px; padding: 8px 14px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,.3); transition: background .15s;
}
.gal-close svg { width: 16px; height: 16px; }
.gal-close:hover { background: rgba(255,255,255,.1); }
.gal-counter { color: rgba(255,255,255,.6); font-size: 14px; }
.gal-stage {
    flex: 1; display: flex; align-items: center; justify-content: center;
    position: relative; padding: 0 80px; overflow: hidden;
}
.gal-stage img {
    max-width: 100%; max-height: calc(100vh - 160px);
    width: auto; height: auto; object-fit: contain; border-radius: 4px;
}
.gal-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%; background: white;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: var(--shadow); transition: transform .15s;
}
.gal-nav:hover { transform: translateY(-50%) scale(1.08); }
.gal-nav svg { width: 18px; height: 18px; }
.gal-prev { left: 16px; }
.gal-next { right: 16px; }
.gal-thumbs {
    padding: 10px 24px; display: flex; gap: 6px;
    justify-content: center; overflow-x: auto; flex-shrink: 0;
}
.gal-thumb {
    width: 72px; height: 54px; border-radius: 4px; overflow: hidden;
    cursor: pointer; opacity: .5; transition: opacity .15s; flex-shrink: 0;
    border: 2px solid transparent;
}
.gal-thumb.active { opacity: 1; border-color: white; }
.gal-thumb:hover  { opacity: 1; }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 56px; padding-bottom: 64px; }
.contact-card {
    background: var(--bg); border-radius: var(--radius);
    padding: 36px; border: 1px solid var(--border);
}
.contact-card h2 { font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.contact-hint   { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group  { margin-bottom: 16px; }
.form-label  { display: block; font-size: 13px; font-weight: 500; color: var(--black); margin-bottom: 6px; }
.form-label .req { color: var(--teal); }
.form-control {
    width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px;
    font-size: 15px; font-family: inherit; color: var(--black);
    transition: border-color .15s; background: white; outline: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(194,168,125,.25); }
textarea.form-control { resize: vertical; min-height: 120px; }
.btn-submit {
    padding: 13px 32px; background: var(--teal); color: white;
    border: none; border-radius: 8px; font-size: 16px; font-weight: 600;
    cursor: pointer; font-family: inherit; transition: background .15s;
}
.btn-submit:hover { background: var(--teal-dark); }

/* Alert */
.alert { padding: 14px 18px; border-radius: 8px; font-size: 15px; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 12px; }
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: #E8F5E9; border: 1px solid #A5D6A7; color: #1B5E20; }
.alert-error   { background: #FFEBEE; border: 1px solid #EF9A9A; color: #B71C1C; }

/* Host card */
.host-col { display: flex; flex-direction: column; gap: 20px; }
.host-card {
    display: flex; align-items: center; gap: 16px;
    padding: 20px; border: 1px solid var(--border); border-radius: var(--radius);
    background: white;
}
.host-avatar-lg {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--teal); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 700; flex-shrink: 0;
}
.host-info h3     { font-size: 20px; font-weight: 700; color: var(--black); }
.host-title       { font-size: 14px; color: var(--muted); margin-top: 2px; }
.superhost-tag    { display: inline-block; margin-top: 6px; font-size: 12px; font-weight: 600; color: var(--teal); background: #E0F2F1; padding: 3px 10px; border-radius: 20px; }
.host-bio         { font-size: 15px; color: var(--text); line-height: 1.7; }
.host-details     { display: flex; flex-direction: column; gap: 14px; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; background: white; }
.host-detail-row  { display: flex; align-items: flex-start; gap: 12px; }
.host-detail-row svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.host-detail-row strong { font-size: 13px; font-weight: 600; color: var(--black); display: block; }
.host-detail-row span   { font-size: 13px; color: var(--muted); }
.contact-direct   { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; background: white; }
.contact-direct h3 { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 12px; }
.contact-direct-link {
    display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--teal); font-weight: 500;
}
.contact-direct-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact-direct-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer { background: var(--black); color: white; padding: 48px 0; margin-top: 0; }
.footer-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
    display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
}
.footer-logo    { font-size: 18px; font-weight: 700; color: white; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }
.footer-nav     { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; }
.footer-nav a   { font-size: 14px; color: rgba(255,255,255,.65); transition: color .15s; white-space: nowrap; }
.footer-nav a:hover { color: white; }
.footer-copy    { font-size: 13px; color: rgba(255,255,255,.4); text-align: center; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .about-grid     { grid-template-columns: 1fr; }
    .about-feature-imgs { grid-template-columns: 1fr 1fr; grid-template-rows: 220px; height: auto; }
    .contact-layout { grid-template-columns: 1fr; }
    .host-col       { flex-direction: row; flex-wrap: wrap; }
    .host-col > *   { flex: 1 1 280px; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .policy-cards   { grid-template-columns: 1fr; }
    .rules-cols     { grid-template-columns: 1fr 1fr; }
    .why-book-grid  { grid-template-columns: repeat(2,1fr); }
    .safety-grid    { grid-template-columns: repeat(2,1fr); }
    .cal-months     { grid-template-columns: 1fr; }
    .footer-inner   { flex-direction: column; align-items: center; gap: 16px; }
    .footer-copy    { text-align: center; }
}
@media (max-width: 680px) {
    .hero            { height: 380px; }
    .hero-text h1    { font-size: 26px; }
    .hero-grid       { grid-template-columns: 1fr; }
    .hero-img-secondary { display: none; }
    .stats-bar      { gap: 0; padding: 16px; }
    .stat-item      { padding: 0 16px; }
    .stat-num       { font-size: 18px; }
    .gallery-grid   { grid-template-columns: repeat(2,1fr); }
    .amenities-grid { grid-template-columns: 1fr; }
    .rules-cols     { grid-template-columns: 1fr; }
    .why-book-grid  { grid-template-columns: 1fr; }
    .safety-grid    { grid-template-columns: repeat(2,1fr); }
    .form-row       { grid-template-columns: 1fr; }
    .avail-fields   { flex-direction: column; }
    .btn-check      { width: 100%; }
    .nav-tabs       { display: none; }
    .btn-book       { display: none; }
    .nav-hamburger  { display: flex; }
    .page-title     { font-size: 26px; }
    .filter-bar     { gap: 6px; }
    .footer-nav     { flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 400px) {
    .stat-divider   { display: none; }
    .stats-bar      { gap: 12px; justify-content: flex-start; }
}

/* ══════════════════════════════════════════════════
   REVIEWS PAGE
══════════════════════════════════════════════════ */
.reviews-header {
    padding: 48px 0 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}
.reviews-main-title {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    color: var(--text);
}
.reviews-main-title svg { color: #FFD700; width: 125px; height: 125px; }

.reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
}
.reviews-overall {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.reviews-big-score {
    font-size: 64px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}
.reviews-stars {
    display: flex;
    gap: 2px;
    color: var(--primary);
}
.reviews-count {
    font-size: 14px;
    color: var(--muted);
}
.superhost-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0,137,123,.1);
    border-radius: 20px;
    padding: 4px 10px;
    margin-top: 4px;
}
.superhost-badge svg { width: 12px; height: 12px; }

.reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rating-bar-row {
    display: grid;
    grid-template-columns: 130px 1fr 36px;
    align-items: center;
    gap: 12px;
}
.rating-bar-label {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}
.rating-bar-track {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
}
.rating-bar-score {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-align: right;
}

.reviews-grid-section { margin-bottom: 56px; }

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}
.review-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.review-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.review-name { font-size: 15px; color: var(--text); }
.review-date { font-size: 13px; color: var(--muted); }
.review-stars {
    display: flex;
    gap: 2px;
    color: var(--primary);
    align-self: center;
}
.review-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}
.star-filled { color: var(--primary); }

.reviews-cta {
    text-align: center;
    padding: 48px 0;
    border-top: 1px solid var(--border);
}
.reviews-cta p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 16px;
}
.btn-book-inline {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s;
}
.btn-book-inline:hover { background: var(--primary-dark); }

@media (max-width: 860px) {
    .reviews-summary { grid-template-columns: 1fr; gap: 32px; }
    .reviews-overall { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: flex-start; text-align: left; gap: 12px; }
    .reviews-big-score { font-size: 48px; }
    .rating-bar-row { grid-template-columns: 110px 1fr 36px; }
}
@media (max-width: 640px) {
    .reviews-grid { grid-template-columns: 1fr; }
}
