/* ============================================================
   RLUX — Rate Luxury  |  style.css
   ============================================================ */

/* ── 1. Variables & Reset ─────────────────────────────────── */
:root {
    --cream:       #FAF8F5;
    --cream-dark:  #F0EBE3;
    --white:       #FFFFFF;
    --navy:        #1a1a2e;
    --navy-light:  #2d2d4a;
    --gold:        #C9A96E;
    --gold-dark:   #A07840;
    --gold-light:  #E8D5B0;
    --text:        #2c2c2c;
    --text-muted:  #8a7f72;
    --border:      #E8E0D5;
    --border-dark: #D4C9B8;
    --danger:      #c0392b;
    --radius:      4px;
    --radius-lg:   8px;
    --shadow-sm:   0 1px 4px rgba(0,0,0,.06);
    --shadow:      0 4px 20px rgba(0,0,0,.08);
    --shadow-lg:   0 8px 40px rgba(0,0,0,.12);
    --transition:  .2s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── 2. Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.25;
    color: var(--navy);
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

.lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.text-gold   { color: var(--gold-dark); }
.text-muted  { color: var(--text-muted); }
.text-navy   { color: var(--navy); }
.text-center { text-align: center; }

/* ── 3. Layout Utilities ──────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 72px 0;
}

.section-sm {
    padding: 48px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
}

/* ── 4. Header & Navigation ───────────────────────────────── */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    gap: 1px;
}

.logo-wordmark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.08em;
    line-height: 1;
}

.logo-wordmark span {
    color: var(--gold-dark);
}

.logo-sub {
    font-family: 'Lato', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
    line-height: 1;
}

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--navy);
    background: var(--cream);
}

.main-nav a.active {
    color: var(--gold-dark);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 0;
}

.mobile-nav a {
    display: block;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold-dark); }
.mobile-nav.open { display: block; }

/* ── 5. Hero ──────────────────────────────────────────────── */
.hero {
    background: var(--navy);
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero .lead {
    color: rgba(255,255,255,.65);
    max-width: 560px;
    margin: 0 auto 36px;
}

.hero-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 28px;
}

/* ── 6. Independence Notice ───────────────────────────────── */
.independence-notice {
    background: var(--white);
    border: 1px solid var(--gold-light);
    border-left: 4px solid var(--gold-dark);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin: 40px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.independence-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.independence-notice h4 {
    color: var(--gold-dark);
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.independence-notice p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── 7. Section Headings ──────────────────────────────────── */
.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading .eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.section-heading h2 {
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* ── 8. Category Cards ────────────────────────────────────── */
.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--gold-light);
}

.category-icon {
    width: 72px;
    height: 72px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid var(--border);
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition);
}

.category-card:hover .category-icon {
    background: var(--gold-light);
    border-color: var(--gold);
}

.category-card h3 {
    font-size: 1.25rem;
    margin: 0;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.category-card .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-top: 4px;
    transition: gap var(--transition);
}

.category-card:hover .card-cta { gap: 10px; }

/* ── 9. Breadcrumb ────────────────────────────────────────── */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--gold-dark); }

.breadcrumb .sep { color: var(--border-dark); }
.breadcrumb .current { color: var(--navy); font-weight: 600; }

/* ── 10. Page Header ──────────────────────────────────────── */
.page-header {
    background: var(--navy);
    padding: 56px 0 48px;
}

.page-header .eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-header .lead {
    color: rgba(255,255,255,.55);
    max-width: 520px;
}

/* ── 11. Country Filter ───────────────────────────────────── */
.filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 72px;
    z-index: 90;
}

.filter-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 40px;
    border: 1px solid var(--border-dark);
    background: var(--cream);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.filter-pill:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: var(--white);
}

.filter-pill.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.filter-pill.coming-soon {
    opacity: .5;
    cursor: default;
    pointer-events: none;
}

.coming-soon-badge {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--border);
    color: var(--text-muted);
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: 700;
}

/* ── 12. Listings Area ────────────────────────────────────── */
.listings-section {
    padding: 48px 0 72px;
}

.listings-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
}

.listings-header h2 {
    font-size: 1.4rem;
}

.listings-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Hotel listing card */
.hotel-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
    text-decoration: none;
    color: inherit;
}

.hotel-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.hotel-card-thumb {
    height: 200px;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hotel-card-thumb .thumb-icon {
    font-size: 3rem;
    opacity: .35;
}

.hotel-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.hotel-card:hover .hotel-card-image {
    transform: scale(1.04);
}

.hotel-card-thumb .rating-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255,255,255,.95);
    border-radius: 40px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    box-shadow: var(--shadow);
}

.hotel-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hotel-card-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--cream-dark);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.badge-gold {
    background: var(--gold-light);
    color: var(--gold-dark);
    border-color: var(--gold-light);
}

.hotel-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    line-height: 1.3;
}

.hotel-card .location {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-card .excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 4px;
}

.hotel-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-top: auto;
    padding-top: 12px;
    transition: gap var(--transition);
}

.hotel-card:hover .card-link { gap: 10px; }

/* ── 13. Star Rating ──────────────────────────────────────── */
.stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    line-height: 1;
}

.star {
    font-size: 1em;
    color: var(--border-dark);
}

.star.full  { color: var(--gold-dark); }
.star.half  { position: relative; color: var(--border-dark); }

.star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: var(--gold-dark);
}

.star-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-display .stars { font-size: 1.5rem; }
.star-score {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.star-score-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ── 14. Hotel Detail Page ────────────────────────────────── */
.hotel-detail-header {
    padding: 56px 0 48px;
    background: var(--navy);
}

.hotel-detail-header .meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hotel-detail-header h1 {
    color: var(--white);
    margin-bottom: 8px;
}

.hotel-detail-header .location {
    color: rgba(255,255,255,.6);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.hotel-detail-header .star-display .stars { font-size: 1.6rem; }
.hotel-detail-header .star-score { color: var(--white); font-size: 2rem; }
.hotel-detail-header .star-score-sub { color: rgba(255,255,255,.5); }

.hotel-detail-body {
    padding: 56px 0 72px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

/* Review content */
.review-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review-content p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--text);
}

/* Sidebar */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.sidebar-card h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* Highlights list */
.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.5;
}

/* Sub-ratings */
.sub-ratings {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sub-rating-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sub-rating-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.83rem;
    color: var(--text);
    font-weight: 600;
}

.sub-rating-label span:last-child {
    color: var(--gold-dark);
    font-weight: 700;
}

.sub-rating-bar {
    height: 4px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.sub-rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 4px;
    transition: width .6s ease;
}

/* Editorial disclaimer (inline) */
.editorial-note {
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-left: 3px solid var(--text-muted);
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 32px;
}

.editorial-note strong {
    color: var(--text);
    font-weight: 700;
}

/* Hotel feature photo (full-width, above detail grid) */
.hotel-feature-photo {
    margin-bottom: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    line-height: 0;
}
.hotel-feature-photo img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
.hotel-feature-photo figcaption {
    font-size: 0.78rem;
    color: var(--text-muted);
    background: var(--cream-dark);
    padding: 8px 14px;
    line-height: 1.5;
}

/* From the Editor callout (gold-accented, distinct from editorial-note) */
.editor-experience {
    background: #fdf9f2;
    border: 1px solid var(--gold-light);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.7;
    margin-top: 32px;
    margin-bottom: 8px;
}
.editor-experience .editor-experience-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
    transition: color var(--transition);
}

.back-link:hover { color: var(--gold-dark); }

/* ── 15. Transport Sub-Category Tabs ──────────────────────── */
.subcategory-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.subcategory-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color var(--transition), border-color var(--transition);
    text-decoration: none;
}

.subcategory-tab:hover {
    color: var(--navy);
}

.subcategory-tab.active {
    color: var(--gold-dark);
    border-bottom-color: var(--gold-dark);
}

/* ── 16. Coming Soon Placeholder ─────────────────────────── */
.coming-soon-panel {
    text-align: center;
    padding: 80px 32px;
    background: var(--white);
    border: 1px dashed var(--border-dark);
    border-radius: var(--radius-lg);
}

.coming-soon-panel .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: .4;
}

.coming-soon-panel h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.coming-soon-panel p {
    color: var(--text-muted);
    font-size: 0.92rem;
    max-width: 400px;
    margin: 0 auto;
}

/* ── 17. Footer ───────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    padding: 56px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo .logo-wordmark { color: var(--white); font-size: 1.5rem; }
.footer-logo .logo-sub { color: rgba(255,255,255,.4); }
.footer-logo .tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,.45);
    margin-top: 12px;
    line-height: 1.6;
    max-width: 220px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h5 {
    font-family: 'Lato', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,.55);
    transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,.35);
    margin: 0;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,.3);
    font-style: italic;
}

/* ── 18. Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo .tagline { max-width: 100%; }
}

@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }

    .hamburger { display: flex; }
    .main-nav  { display: none; }

    .section     { padding: 48px 0; }
    .section-sm  { padding: 32px 0; }

    .hero { padding: 72px 0 64px; }

    .filter-bar { position: static; }

    .detail-sidebar {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .subcategory-tabs { gap: 0; }
    .subcategory-tab  { padding: 12px 16px; font-size: 0.76rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .footer-cols { grid-template-columns: 1fr; }

    .star-display .stars { font-size: 1.2rem; }
    .star-score { font-size: 1.5rem; }

    .hotel-detail-header .star-display .stars { font-size: 1.3rem; }
    .hotel-detail-header .star-score { font-size: 1.6rem; }
}
