/* ═══════════════════════════════════════════════════════════════
   HotelsMotels – site.css
   Brand palette: Orange #e8612c  |  Teal #2d9cac
   ═══════════════════════════════════════════════════════════════ */

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

:root {
    --inn: #1a7f4b;
    --inn-lt: #ecfdf5;
    --inn-mid: #a7f3d0;
    --orange: #e8612c;
    --orange-lt: #fff2ec;
    --orange-mid: #ffd3bc;
    --teal: #2d9cac;
    --teal-lt: #e8f7fa;
    --teal-mid: #b2e4ec;
    --bg: #f7f7f5;
    --white: #ffffff;
    --ink: #1a1a1a;
    --muted: #6b7280;
    --border: #e5e3df;
    --lux-bg: #1c0e00;
    --lux-acc: #ffb347;
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--bg);
    color: var(--ink);
    min-height: 100vh;
}

/* ── NAV ──────────────────────────────────────────────────────── */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    gap: 1.25rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.logo-link {
    text-decoration: none;
}

.logo .h {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.45rem;
    color: var(--orange);
    font-style: italic;
}

.logo .m {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.45rem;
    color: var(--teal);
    font-style: italic;
}

.nav-sep {
    width: 1px;
    height: 22px;
    background: var(--border);
}

.nav-loc {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
}

.nav-counts {
    margin-left: auto;
    display: flex;
    gap: 1.5rem;
}

.nav-count {
    font-size: 0.75rem;
    color: var(--muted);
}

    .nav-count b {
        color: var(--ink);
    }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--orange) 0%, #c94c18 100%);
    padding: 2rem 2rem 1.75rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

    .hero h1 {
        font-family: 'Libre Baskerville', serif;
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
        color: white;
        line-height: 1.1;
        margin-bottom: 0.35rem;
    }

    .hero p {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.75);
    }

.top-picks {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pick {
    background: white;
    border-radius: 10px;
    padding: 0.65rem 1rem;
    min-width: 155px;
    max-width: 100%;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .pick:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

a.pick-link {
    text-decoration: none;
    cursor: pointer;
}

    a.pick-link:hover .p-name {
        text-decoration: underline;
        text-decoration-color: rgba(0,0,0,0.3);
    }

.pick .p-rank {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.25rem;
}

.pick .p-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
}

.pick .p-phone {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

.pick .p-stat {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--orange);
    margin-top: 0.3rem;
    background: rgba(232,97,44,0.12);
    display: inline-block;
    padding: 0.1rem 0.45rem;
    border-radius: 8px;
}

.pick .p-rank-liked {
    color: #e8612c;
}

.pick .p-rank-rated {
    color: #d4a017;
}

/* ── FILTER BAR ──────────────────────────────────────────────── */
.filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.65rem 2rem;
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 60px;
    z-index: 90;
}

.chip {
    padding: 0.32rem 0.85rem;
    border-radius: 6px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: 0.73rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.15s;
}

    .chip:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

    .chip.active {
        background: var(--orange);
        border-color: var(--orange);
        color: white;
        font-weight: 600;
    }

    .chip.teal-chip:hover {
        border-color: var(--teal);
        color: var(--teal);
    }

    .chip.teal-chip.active {
        background: var(--teal);
        border-color: var(--teal);
        color: white;
    }

.search-wrap {
    margin-left: auto;
    position: relative;
}

    .search-wrap::before {
        content: '⌕';
        position: absolute;
        left: 0.65rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--muted);
        font-size: 1rem;
        pointer-events: none;
    }

    .search-wrap input {
        padding: 0.33rem 0.85rem 0.33rem 2rem;
        border-radius: 6px;
        border: 1.5px solid var(--border);
        font-family: 'Sora', sans-serif;
        font-size: 0.73rem;
        outline: none;
        width: 190px;
        background: var(--bg);
        transition: border-color 0.15s;
    }

        .search-wrap input:focus {
            border-color: var(--orange);
            background: white;
        }

/* ── LEGEND ──────────────────────────────────────────────────── */
.legend {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.6rem 2rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    flex-wrap: wrap;
}

.legend-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-right: 0.25rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--muted);
}

.legend-swatch {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.sw-lux {
    background: var(--lux-bg);
}

.sw-mid {
    background: var(--teal);
}

.sw-bud {
    background: var(--border);
    border: 1.5px solid #ccc;
}

.sw-new {
    background: var(--orange);
}

/* ── BODY LAYOUT ─────────────────────────────────────────────── */
.body {
    display: grid;
    grid-template-columns: 1fr 280px; /* Hotels: flexible | Motels: fixed narrow */
}

@media (max-width: 1100px) {
    .body {
        grid-template-columns: 1fr 260px;
    }
}

@media (max-width: 900px) {
    .body {
        grid-template-columns: 1fr;
        overflow-x: hidden;
    }
}

.col {
    padding: 1.5rem;
    border-right: 1px solid var(--border);
}

    .col:last-child {
        border-right: none;
    }

.col-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 2.5px solid var(--orange);
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    color: var(--ink);
}

    .col-title.teal-col {
        border-bottom-color: var(--teal);
    }

    .col-title .ct-ct {
        font-family: 'Sora', sans-serif;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
    }

/* ── TILE GRID ───────────────────────────────────────────────── */
.tile-grid {
    display: grid;
    gap: 0.55rem;
}

/* Hotels column: 3 tiles across on desktop */
.col-hotels .tile-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Motels column: always one per row at ALL sizes */
.col-motels .tile-grid {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
}

@media (max-width: 1100px) {
    .col-hotels .tile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .col-hotels .tile-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .col-motels .tile-grid {
        grid-template-columns: 1fr;
    }
}

/* ── TILES ───────────────────────────────────────────────────── */
.tile {
    border-radius: 10px;
    padding: 0.85rem 0.8rem 0.8rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pop 0.3s ease both;
    border: 1.5px solid transparent;
}

@keyframes pop {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Luxury – dark warm */
.tile-lux {
    background: var(--lux-bg);
}

    .tile-lux .t-badge {
        background: rgba(255,179,71,0.18);
        color: var(--lux-acc);
    }

    .tile-lux .t-name {
        color: var(--lux-acc);
    }

    .tile-lux .t-addr {
        color: rgba(255,179,71,0.5);
    }

    .tile-lux .t-phone {
        color: rgba(255,179,71,0.75);
    }

/* Mid – brand teal */
.tile-mid {
    background: var(--teal);
}

    .tile-mid .t-badge {
        background: rgba(255,255,255,0.15);
        color: white;
    }

    .tile-mid .t-name {
        color: white;
    }

    .tile-mid .t-addr {
        color: rgba(255,255,255,0.6);
    }

    .tile-mid .t-phone {
        color: rgba(255,255,255,0.8);
    }

/* Budget – white */
.tile-bud {
    background: var(--white);
    border-color: var(--border);
}

    .tile-bud .t-badge {
        background: var(--bg);
        color: var(--muted);
    }

    .tile-bud .t-name {
        color: var(--ink);
    }

    .tile-bud .t-addr {
        color: var(--muted);
    }

    .tile-bud .t-phone {
        color: var(--orange);
    }

/* New / Featured – brand orange */
.tile-new {
    background: var(--orange);
}

    .tile-new .t-badge {
        background: rgba(255,255,255,0.2);
        color: white;
    }

    .tile-new .t-name {
        color: white;
    }

    .tile-new .t-addr {
        color: rgba(255,255,255,0.65);
    }

    .tile-new .t-phone {
        color: rgba(255,255,255,0.85);
    }

/* Teal-tint for mid-range light */
.tile-teal-lt {
    background: var(--teal-lt);
    border-color: var(--teal-mid);
}

    .tile-teal-lt .t-badge {
        background: var(--teal-mid);
        color: var(--teal);
    }

    .tile-teal-lt .t-name {
        color: var(--ink);
    }

    .tile-teal-lt .t-addr {
        color: var(--muted);
    }

    .tile-teal-lt .t-phone {
        color: var(--teal);
        font-weight: 700;
    }

/* Orange-tint for best motel */
.tile-orange-lt {
    background: var(--orange-lt);
    border-color: var(--orange-mid);
}

    .tile-orange-lt .t-badge {
        background: var(--orange-mid);
        color: var(--orange);
    }

    .tile-orange-lt .t-name {
        color: var(--ink);
    }

    .tile-orange-lt .t-addr {
        color: var(--muted);
    }

    .tile-orange-lt .t-phone {
        color: var(--orange);
        font-weight: 700;
    }

/* tile-wide: no longer spans full row — same size as regular tiles */

/* ── TILE INNER ELEMENTS ─────────────────────────────────────── */
.t-badge {
    display: inline-block;
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.17rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.42rem;
}

.t-name {
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 0.28rem;
}

.t-addr {
    font-size: 0.67rem;
    line-height: 1.4;
    margin-bottom: 0.32rem;
}

.t-phone {
    font-size: 0.68rem;
    font-weight: 600;
}

/* ── ADD LISTING ──────────────────────────────────────────────── */
.add-listing {
    grid-column: span 2;
    border: 1.5px dashed var(--border);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

    .add-listing:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ── HOME HERO ───────────────────────────────────────────────── */
.home-hero {
    background: linear-gradient(135deg, var(--orange) 0%, #c94c18 60%, #a33b10 100%);
    padding: 3.5rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .home-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
        pointer-events: none;
    }

.home-hero-inner {
    position: relative;
    z-index: 1;
}

.home-hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: white;
    line-height: 1;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

    .home-hero h1 span {
        color: rgba(255,255,255,0.6);
    }

    .home-hero h1 .h1-sub {
        font-size: 0.55em;
        color: rgba(255,255,255,0.5);
        vertical-align: baseline;
    }

.home-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.home-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 0.75rem 2rem;
}

.hhs {
    text-align: center;
}

.hhs-num {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    color: white;
    line-height: 1;
}

.hhs-lbl {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 0.15rem;
}

.hhs-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.25);
}

/* ── DIRECTORY ───────────────────────────────────────────────── */
.directory-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.directory-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--orange);
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

    .directory-header h2 {
        font-family: 'Libre Baskerville', serif;
        font-size: 1.3rem;
        color: var(--ink);
    }

    .directory-header p {
        font-size: 0.8rem;
        color: var(--muted);
    }

.directory-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 2rem;
    align-items: start;
}

@media (max-width: 1000px) {
    .directory-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .directory-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .directory-columns {
        grid-template-columns: 1fr;
    }
}

/* ── STATE GROUP ─────────────────────────────────────────────── */
.state-group {
    margin-bottom: 1.5rem;
}

.state-name {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 0.4rem;
    padding-bottom: 0.3rem;
    border-bottom: 1.5px solid var(--orange);
    display: inline-block;
}

.city-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .city-list li {
        margin-bottom: 0.2rem;
    }

    .city-list a {
        font-size: 0.82rem;
        color: var(--teal);
        text-decoration: none;
        display: inline-block;
        transition: color 0.15s, transform 0.15s;
    }

        .city-list a:hover {
            color: var(--orange);
            transform: translateX(3px);
        }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb-link {
    color: var(--teal);
    text-decoration: none;
    font-size: 0.75rem;
}

    .breadcrumb-link:hover {
        color: var(--orange);
    }

.breadcrumb-sep {
    margin: 0 0.3rem;
    color: var(--muted);
    font-size: 0.75rem;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    font-size: 0.78rem;
    line-height: 1.8;
}

.footer-logo {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 0.4rem;
}

    .footer-logo .h {
        color: var(--orange);
    }

    .footer-logo .m {
        color: var(--teal);
    }

.footer-domain {
    color: rgba(255,255,255,0.3);
    font-size: 0.8em;
}

.footer-links {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

    .footer-links a {
        color: rgba(255,255,255,0.45);
        text-decoration: none;
    }

        .footer-links a:hover {
            color: var(--orange);
        }

    .footer-links span {
        color: rgba(255,255,255,0.2);
    }

/* ═══════════════════════════════════════════════════════════════
   CONDO-TEL STYLES
   ═══════════════════════════════════════════════════════════════ */

:root {
    --inn: #1a7f4b;
    --inn-lt: #ecfdf5;
    --inn-mid: #a7f3d0;
    --condo: #7c3aed; /* purple accent for condo-tels */
    --condo-lt: #f5f3ff;
    --condo-mid: #ddd6fe;
}

/* Body layout when condo-tels present: hotels get 2fr, motels 1fr, condos 1fr */
.body-with-condos {
    grid-template-columns: 2fr 1fr 1fr;
}

@media (max-width: 1100px) {
    .body-with-condos {
        grid-template-columns: 1fr 1fr;
    }

        .body-with-condos .col-condotels {
            grid-column: span 2;
        }
}

@media (max-width: 900px) {
    .body-with-condos {
        grid-template-columns: 1fr;
    }

        .body-with-condos .col-condotels {
            grid-column: span 1;
        }
}

/* Condo-tel column header */
.col-title.condo-col {
    border-bottom-color: var(--condo);
}

/* Condo-tel filter chip */
.chip.condo-chip:hover {
    border-color: var(--condo);
    color: var(--condo);
}

.chip.condo-chip.active {
    background: var(--condo);
    border-color: var(--condo);
    color: white;
}

/* Condo-tel tile */
.tile-condo {
    background: var(--condo-lt);
    border-color: var(--condo-mid);
}

    .tile-condo .t-badge {
        background: var(--condo-mid);
        color: var(--condo);
    }

    .tile-condo .t-name {
        color: var(--ink);
    }

    .tile-condo .t-addr {
        color: var(--muted);
    }

    .tile-condo .t-phone {
        color: var(--condo);
        font-weight: 700;
    }

/* Legend swatch */
.sw-condo {
    background: var(--condo);
}

/* Info box above condo tiles */
.condo-info-box {
    background: var(--condo-lt);
    border: 1.5px solid var(--condo-mid);
    border-radius: 8px;
    padding: 0.75rem 0.85rem;
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

    .condo-info-box strong {
        display: block;
        color: var(--condo);
        font-size: 0.68rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 0.25rem;
    }

/* ── Mobile nav: logo + counts on row 1, breadcrumb on row 2 ── */
@media (max-width: 600px) {
    nav {
        height: auto !important;
        flex-wrap: wrap;
        padding: 0.6rem 1rem;
        gap: 0;
        align-items: center;
    }

    /* Logo stays left on row 1 */
    .logo, .logo-link {
        flex-shrink: 0;
    }

    /* Hide the vertical separator */
    .nav-sep {
        display: none;
    }

    /* Counts stay on row 1, pushed right */
    .nav-counts {
        margin-left: auto;
        gap: 0.75rem;
        order: 2;
    }

    .nav-count {
        font-size: 0.7rem;
    }

    /* Breadcrumb drops to row 2, full width, truncates if too long */
    .nav-loc {
        order: 3;
        width: 100%;
        font-size: 0.7rem;
        padding-top: 0.35rem;
        margin-top: 0.35rem;
        border-top: 1px solid var(--border);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PROPERTY DETAIL PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────── */
.prop-hero {
    background: linear-gradient(135deg, var(--orange) 0%, #c94c18 100%);
    padding: 2.5rem 2rem 2rem;
}

.prop-hero-lux {
    background: linear-gradient(135deg, #1c0e00 0%, #3a1a00 100%);
}

.prop-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.prop-hero-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.prop-type-badge, .prop-tier-badge, .prop-new-badge, .prop-top-badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.prop-type-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

.prop-tier-badge {
    background: rgba(255,255,255,0.15);
    color: white;
}

.prop-tier-luxury {
    background: var(--lux-acc);
    color: #1c0e00;
}

.prop-new-badge {
    background: var(--orange);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.prop-top-badge {
    background: white;
    color: var(--orange);
}

.prop-hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: white;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.prop-hero-meta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.phi-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.15s;
}

    .phi-item:hover {
        background: rgba(255,255,255,0.3);
    }

.phi-phone {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

    .phi-phone:hover {
        text-decoration: underline;
    }

/* ── Layout ──────────────────────────────────────────────────── */
.prop-wrap {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 800px) {
    .prop-wrap {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .prop-main {
        order: 1;
    }

    .prop-sidebar {
        order: 2;
    }
}

/* ── Cards ───────────────────────────────────────────────────── */
.prop-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.prop-card-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--orange);
}

/* ── Info grid ───────────────────────────────────────────────── */
.prop-info-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pig-row {
    display: flex;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    align-items: baseline;
}

    .pig-row:last-child {
        border-bottom: none;
    }

.pig-label {
    color: var(--muted);
    min-width: 80px;
    flex-shrink: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.pig-val {
    color: var(--ink);
}

.prop-phone-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
}

    .prop-phone-link:hover {
        text-decoration: underline;
    }

.prop-city-link {
    color: var(--teal);
    text-decoration: none;
}

    .prop-city-link:hover {
        text-decoration: underline;
    }

/* ── Placeholder ─────────────────────────────────────────────── */
.prop-placeholder-text {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.prop-coming-soon {
    background: var(--bg);
    border: 1.5px dashed var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    color: var(--muted);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

    .prop-coming-soon a {
        color: var(--orange);
        text-decoration: none;
        margin-left: auto;
    }

        .prop-coming-soon a:hover {
            text-decoration: underline;
        }

/* ── Condo info ──────────────────────────────────────────────── */
.prop-condo-info {
    border-left: 3px solid var(--condo, #7c3aed);
}

    .prop-condo-info p {
        font-size: 0.82rem;
        color: var(--muted);
        line-height: 1.6;
    }

/* ── CTA card ────────────────────────────────────────────────── */
.prop-cta-card {
    background: var(--orange);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.prop-cta-name {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: white;
    font-weight: 700;
    line-height: 1.3;
}

.prop-cta-phone {
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
    text-decoration: none;
}

    .prop-cta-phone:hover {
        text-decoration: underline;
    }

.prop-cta-addr {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

.prop-cta-btn {
    background: white;
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s;
}

    .prop-cta-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

.prop-cta-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: background 0.15s;
}

    .prop-cta-map:hover {
        background: rgba(255,255,255,0.28);
        color: white;
    }

/* ── Nearby ──────────────────────────────────────────────────── */
.prop-nearby-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    overflow: hidden;
}

.nearby-item {
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background 0.15s;
}

    .nearby-item:last-of-type {
        border-bottom: none;
    }

    .nearby-item:hover .nearby-name {
        color: var(--orange);
    }

.nearby-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}

.nearby-meta {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.1rem;
}

.nearby-all {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

    .nearby-all:hover {
        text-decoration: underline;
    }

/* ── Tile links ──────────────────────────────────────────────── */
a.tile-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

    a.tile-link .t-name {
        text-decoration: underline;
        text-decoration-color: rgba(0,0,0,0.2);
        text-underline-offset: 2px;
    }

    a.tile-link:hover .t-name {
        text-decoration-color: var(--orange);
        color: var(--orange);
    }
    /* Keep white names white on hover for dark tiles */
    a.tile-link.tile-new:hover .t-name,
    a.tile-link.tile-lux:hover .t-name,
    a.tile-link.tile-mid:hover .t-name {
        color: inherit;
        text-decoration-color: rgba(255,255,255,0.6);
    }

    a.tile-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    }

/* ── INN STYLES ─────────────────────────────────────────────── */
.tile-inn {
    background: var(--inn-lt);
    border-color: var(--inn-mid);
}

    .tile-inn .t-badge {
        background: var(--inn-mid);
        color: var(--inn);
    }

    .tile-inn .t-name {
        color: var(--ink);
    }

    .tile-inn .t-addr {
        color: var(--muted);
    }

    .tile-inn .t-phone {
        color: var(--inn);
        font-weight: 700;
    }

.col-title.inn-col {
    border-bottom-color: var(--inn);
}

.chip.inn-chip {
    border-color: var(--inn);
    color: var(--inn);
}

    .chip.inn-chip.chip-active {
        background: var(--inn);
        color: white;
    }

.legend .sw-inn {
    background: var(--inn);
}

/* Body layout when inns present */
.body-with-inns {
    grid-template-columns: 2fr 1fr 1fr;
}

@media (max-width: 1100px) {
    .body-with-inns {
        grid-template-columns: 1fr 1fr;
    }

        .body-with-inns .col-inns {
            grid-column: span 2;
        }
}

@media (max-width: 900px) {
    .body-with-inns {
        grid-template-columns: 1fr;
    }

        .body-with-inns .col-inns {
            grid-column: span 1;
        }
}

/* When both condos AND inns are present */
.body-with-condos.body-with-inns {
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

@media (max-width: 1100px) {
    .body-with-condos.body-with-inns {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .body-with-condos.body-with-inns {
        grid-template-columns: 1fr;
    }

    .body-with-condos.body-with-inns .col-condotels,
    .body-with-condos.body-with-inns .col-inns {
        grid-column: span 1;
    }
}

/* Inn tile-grid: single column when narrow, 2-across when spanning full width */
.col-inns .tile-grid {
    grid-template-columns: 1fr;
}

@media (max-width: 1100px) {
    .body-with-inns .col-inns .tile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════════════════════════
   AMENITIES & RESTAURANT
   ═══════════════════════════════════════════════════════════════ */

/* ── Tile: restaurant line ───────────────────────────────────── */
.t-restaurant {
    font-size: 0.68rem;
    color: var(--muted);
    margin-top: 0.3rem;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.t-restaurant-label {
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

.t-restaurant-link {
    color: var(--orange);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(232,97,44,0.3);
}

    .t-restaurant-link:hover {
        text-decoration-color: var(--orange);
    }

/* ── Tile: amenity icon row ──────────────────────────────────── */
.t-amenities {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.35rem;
    flex-wrap: wrap;
}

.t-amenity {
    font-size: 0.85rem;
    line-height: 1;
    cursor: default;
    opacity: 0.85;
    transition: transform 0.15s;
}

    .t-amenity:hover {
        opacity: 1;
        transform: scale(1.2);
    }

/* ── Property page: amenity grid ─────────────────────────────── */
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.65rem 0.75rem;
}

.amenity-icon {
    font-size: 1.35rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.amenity-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.amenity-desc {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.15rem;
    line-height: 1.4;
}

/* ── Property page: restaurant card ──────────────────────────── */
.prop-restaurant {
    border-left: 3px solid var(--orange);
}

.restaurant-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.restaurant-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
}

.restaurant-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
}

    .restaurant-link:hover {
        text-decoration: underline;
    }

.restaurant-note {
    font-size: 0.75rem;
    color: var(--muted);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   LIKES & RATINGS
   ═══════════════════════════════════════════════════════════════ */

/* ── Tile: social row (like + rating) ───────────────────────── */
.t-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.45rem;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    flex-wrap: wrap;
}

.t-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #fff0eb;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    white-space: nowrap;
}

    .t-like-btn:hover {
        background: var(--orange);
        color: white;
        transform: scale(1.04);
    }

.t-like-count {
    background: var(--orange);
    color: white;
    font-size: 0.62rem;
    padding: 0.05rem 0.35rem;
    border-radius: 10px;
    font-weight: 700;
}

.t-like-btn:hover .t-like-count {
    background: white;
    color: var(--orange);
}

.t-rating {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
    white-space: nowrap;
}

/* ── Property sidebar: like button ──────────────────────────── */
.prop-cta-divider {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 0.85rem 0;
}

.prop-like-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: white;
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: background 0.15s, transform 0.1s;
    text-align: center;
}

    .prop-like-btn:hover {
        background: #fff3ee;
        transform: translateY(-1px);
    }

.prop-like-count {
    background: white;
    color: var(--orange);
    font-size: 0.68rem;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    font-weight: 700;
}

/* ── Property sidebar: star rating ──────────────────────────── */
.prop-rate-wrap {
    margin-top: 0.85rem;
    text-align: center;
}

.prop-rate-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.star-picker {
    display: flex;
    justify-content: center;
    gap: 0.15rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
}

.star-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.55);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.1s, transform 0.1s;
}

    .star-btn:hover,
    .star-btn.star-on {
        color: #ffcc02;
        transform: scale(1.15);
    }

    .star-btn:disabled {
        cursor: default;
    }

.star-feedback {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.75);
    margin-top: 0.4rem;
    min-height: 1.1rem;
    font-weight: 600;
}

/* ── Tile inline star picker ─────────────────────────────────── */
.t-star-picker {
    display: inline-flex;
    gap: 0.05rem;
    align-items: center;
    margin-left: 0.1rem;
}

.t-star {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.15);
    cursor: pointer;
    line-height: 1;
    transition: color 0.1s, transform 0.08s;
    user-select: none;
}

    .t-star:hover,
    .t-star.on {
        color: #ffb300;
        transform: scale(1.2);
    }

/* On dark tiles, dim stars differently */
.tile-new .t-star,
.tile-lux .t-star,
.tile-mid .t-star {
    color: rgba(255,255,255,0.25);
}

    .tile-new .t-star.on,
    .tile-lux .t-star.on,
    .tile-mid .t-star.on,
    .tile-new .t-star:hover,
    .tile-lux .t-star:hover,
    .tile-mid .t-star:hover {
        color: #ffcc02;
    }

/* ── Thumbs up like image ────────────────────────────────────── */
.t-like-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    vertical-align: middle;
    transition: transform 0.15s;
}

.t-like-btn:hover .t-like-img {
    transform: scale(1.25) rotate(-10deg);
}

.prop-like-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    vertical-align: middle;
    transition: transform 0.15s;
}

.prop-like-btn:hover .prop-like-img {
    transform: scale(1.25) rotate(-10deg);
}

/* ── Rating pill badges (MenuGuide style) ────────────────────── */
.t-rating-badge {
    display: inline-block;
    background: #2e7d32;
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.18rem 0.55rem;
    border-radius: 12px;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

/* On dark/orange tiles, shift green slightly so it pops */
.tile-new .t-rating-badge {
    background: #1b5e20;
}

.prop-rating-badge {
    display: inline-block;
    background: #2e7d32;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 14px;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   SUBMIT LISTING MODAL
   ═══════════════════════════════════════════════════════════════ */
.submit-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 900;
    backdrop-filter: blur(2px);
}

    .submit-backdrop.open {
        display: block;
    }

.submit-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    width: min(480px, 94vw);
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    z-index: 901;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.18s, transform 0.18s;
}

    .submit-modal.open {
        display: block;
        opacity: 1;
        transform: translate(-50%, -50%);
    }

.submit-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--orange);
    color: white;
    padding: 1rem 1.25rem;
}

.submit-modal-title {
    font-weight: 700;
    font-size: 1rem;
}

.submit-modal-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

    .submit-modal-close:hover {
        background: rgba(255,255,255,0.35);
    }

.submit-modal-body {
    padding: 1.25rem 1.5rem;
}

.submit-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.9rem;
}

    .submit-field label {
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--muted);
    }

    .submit-field input,
    .submit-field select {
        border: 1.5px solid var(--border);
        border-radius: 8px;
        padding: 0.55rem 0.75rem;
        font-size: 0.88rem;
        font-family: inherit;
        outline: none;
        transition: border-color 0.15s;
        width: 100%;
    }

        .submit-field input:focus,
        .submit-field select:focus {
            border-color: var(--orange);
        }

.submit-field-row {
    display: flex;
    gap: 0.75rem;
}

    .submit-field-row .submit-field {
        flex: 1;
    }

.submit-field-sm {
    max-width: 80px !important;
}

.req {
    color: var(--orange);
}

.opt {
    color: var(--muted);
    font-weight: 400;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
}

.submit-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 7px;
    margin-top: 0.25rem;
}

.submit-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #16a34a;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 0.75rem;
    border-radius: 7px;
    text-align: center;
}

.submit-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    background: #fafafa;
}

.submit-cancel {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--muted);
    font-family: inherit;
    transition: border-color 0.15s;
}

    .submit-cancel:hover {
        border-color: #9ca3af;
        color: var(--ink);
    }

.submit-btn {
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: filter 0.15s;
}

    .submit-btn:hover {
        filter: brightness(0.9);
    }

    .submit-btn:disabled {
        opacity: 0.6;
        cursor: default;
    }

/* ── Mobile overflow fixes ───────────────────────────────────── */
@media (max-width: 600px) {
    /* Prevent any horizontal overflow at the root */
    body {
        overflow-x: hidden;
    }

    /* Hero: stack title and picks vertically, picks scroll if many */
    .hero {
        flex-direction: column;
        align-items: stretch;
    }

    .top-picks {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.25rem;
    }

    .pick {
        flex-shrink: 0;
        min-width: 140px;
    }

    /* Nav counts: allow wrapping to second line */
    .nav-counts {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.4rem 0.75rem;
    }

    /* Filter bar: let chips wrap naturally */
    .filter-bar {
        flex-wrap: wrap;
        position: static; /* unstick on mobile to avoid stacking issues */
        top: unset;
    }

    .search-wrap {
        margin-left: 0;
        width: 100%;
    }

    .search-wrap input {
        width: 100%;
    }

    /* Hotels tile grid: single column on very small screens */
    .col-hotels .tile-grid {
        grid-template-columns: 1fr;
    }
}