/* ================================================================
   Panciu.ro — Platform Stylesheet
   Local platform · Modern · Functional
   ================================================================ */

:root {
    --accent:       #6B2D3E;
    --accent-dark:  #4A1E2B;
    --accent-light: #8B3F54;
    --green:        #2D8B5A;
    --blue:         #2D5F8B;
    --orange:       #D4864A;
    --bg:           #FFFFFF;
    --bg-alt:       #F7F7F5;
    --bg-hero:      #1A1A2E;
    --text:         #1A1A1A;
    --text-mid:     #4A4A4A;
    --text-light:   #777777;
    --text-muted:   #999999;
    --border:       #E5E5E0;
    --border-light: #F0F0EC;
    --gold:         #B8944A;
    --shadow-sm:    0 1px 3px rgba(0,0,0,0.04);
    --shadow-md:    0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg:    0 12px 40px rgba(0,0,0,0.08);
    --radius:       8px;
    --radius-lg:    12px;
    --radius-xl:    16px;
    --max-width:    1120px;
    --header-h:     60px;
    --font:         'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Source Sans 3', sans-serif;
    --transition:   0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin-bottom: 0.6rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.4rem; font-weight: 600; }
p { margin-bottom: 0.85rem; }

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    height: var(--header-h);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}
.logo:hover { color: var(--accent); }
.logo-icon { font-size: 1.2rem; }
.logo-dot { color: var(--accent); }

.main-nav ul { display: flex; list-style: none; gap: 0; }
.main-nav a {
    display: block;
    padding: 0.35rem 0.7rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: 6px;
    transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--accent);
    background: rgba(107,45,62,0.04);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    display: block; width: 20px; height: 1.5px;
    background: var(--text); border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ─── Breadcrumbs ────────────────────────────────────────── */
.breadcrumbs {
    padding: 0.5rem 0;
    font-size: 0.78rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
}
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumb-sep { margin: 0 0.35rem; color: #ccc; }
.breadcrumb-current { color: var(--accent); font-weight: 500; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
    background: var(--bg-hero);
    color: #fff;
    padding: clamp(3rem, 8vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 100%, rgba(107,45,62,0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 0%, rgba(45,95,139,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; text-align: center; }
.hero h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    max-width: 600px;
    margin: 0 auto 0.75rem;
    letter-spacing: -0.03em;
}
.hero-subtitle {
    font-size: 1rem;
    max-width: 440px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    line-height: 1.6;
}
.hero-accent {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 1.25rem;
}
.hero-meta {
    margin-top: 1.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* ─── Search Bar ─────────────────────────────────────────── */
.search-bar { margin: 0 auto; max-width: 540px; }
.search-bar-inner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(8px);
}
.search-icon { font-size: 0.85rem; opacity: 0.4; flex-shrink: 0; }
.search-links { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.search-links a {
    padding: 0.2rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    transition: all var(--transition);
    text-decoration: none;
}
.search-links a:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.65rem 1.5rem;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-wine { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-wine:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--accent); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); background: rgba(107,45,62,0.03); }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: #247A4E; border-color: #247A4E; color: #fff; }

/* ─── Sections ───────────────────────────────────────────── */
.page-section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.page-section.alt-bg { background: var(--bg-alt); }
.page-section-lg { padding: clamp(3rem, 8vw, 5rem) 0; }
.section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
    display: block;
}
.section-header { margin-bottom: 2rem; }
.section-header p { max-width: 500px; color: var(--text-light); font-size: 0.95rem; }
.section-divider { width: 32px; height: 2px; background: var(--gold); border: none; margin: 0.5rem 0 1rem; }

/* ─── Cards ──────────────────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
.card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 1.25rem;
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
}
.card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border);
    transform: translateY(-2px);
}
.card-icon { font-size: 1.3rem; margin-bottom: 0.5rem; }
.card h3 { font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--text); }
.card p { color: var(--text-light); font-size: 0.82rem; line-height: 1.5; flex: 1; margin-bottom: 0; }
.card-link {
    display: inline-flex; align-items: center; gap: 0.2rem;
    margin-top: 0.6rem; font-weight: 600; font-size: 0.78rem;
    color: var(--accent); transition: gap var(--transition);
}
.card:hover .card-link { gap: 0.4rem; }

/* ─── Listing Card ───────────────────────────────────────── */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.listing-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.listing-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.listing-img {
    height: 160px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-muted);
}
.listing-body { padding: 1rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.listing-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: rgba(107,45,62,0.06);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.4rem;
    align-self: flex-start;
}
.listing-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; line-height: 1.3; }
.listing-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.listing-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin-top: auto;
    padding-top: 0.5rem;
}

/* ─── Experience Blocks ──────────────────────────────────── */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.exp-block {
    text-decoration: none; color: var(--text);
    padding: 1.5rem 0; border-top: 2px solid var(--border-light);
    transition: border-color var(--transition); display: block;
}
.exp-block:hover { border-top-color: var(--accent); }
.exp-number { font-size: 0.8rem; font-weight: 700; color: var(--accent); margin-bottom: 0.5rem; }
.exp-block h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.exp-block p { font-size: 0.88rem; line-height: 1.6; color: var(--text-light); margin: 0; }

/* ─── Place Blocks ───────────────────────────────────────── */
.places-stack { display: flex; flex-direction: column; }
.place-block {
    display: block; text-decoration: none; color: var(--text);
    padding: 1.75rem 0; border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}
.place-block:first-child { border-top: 1px solid var(--border-light); }
.place-block:hover { padding-left: 1rem; }
.place-meta { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 0.3rem; }
.place-block h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: 0.35rem; }
.place-block p { font-size: 0.92rem; line-height: 1.65; color: var(--text-light); max-width: 600px; margin-bottom: 0; }
.place-link { display: inline-block; margin-top: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--accent); }

/* ─── Spotlight ──────────────────────────────────────────── */
.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.spotlight-text h2 { margin-top: 0; border-top: none; padding-top: 0; }
.spotlight-visual {
    background: var(--bg-alt); border-radius: var(--radius-xl);
    padding: 2rem; text-align: center; border: 1px solid var(--border-light);
}
.stat-row { display: flex; gap: 2.5rem; padding: 1rem 0; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-value { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1.1; }
.stat-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; font-weight: 600; }

/* ─── Callout ────────────────────────────────────────────── */
.callout { background: var(--bg-alt); border-left: 3px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.25rem; margin: 1.5rem 0; }
.callout-title { font-weight: 700; color: var(--accent); font-size: 0.95rem; margin-bottom: 0.25rem; }
.callout p:last-child { margin-bottom: 0; }

/* ─── Secondary Links ────────────────────────────────────── */
.secondary-links { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
.secondary-link {
    display: inline-flex; align-items: center; gap: 0.25rem;
    padding: 0.35rem 0.85rem; font-size: 0.78rem; font-weight: 500;
    color: var(--text-mid); background: #fff; border: 1px solid var(--border);
    border-radius: 6px; transition: all var(--transition); text-decoration: none;
}
.secondary-link:hover { color: var(--accent); border-color: var(--accent); }

/* ─── Quick Facts ────────────────────────────────────────── */
.quick-facts {
    background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
    padding: 1rem 1.25rem; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.75rem;
    margin: 1rem 0; box-shadow: var(--shadow-sm);
}
.quick-fact { display: flex; flex-direction: column; gap: 0.05rem; }
.quick-fact-label { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.quick-fact-value { font-size: 0.85rem; font-weight: 600; color: var(--text); line-height: 1.2; }

/* ─── Article Content ────────────────────────────────────── */
.article-content { max-width: 700px; margin: 0 auto; }
.article-content h2 { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
.article-content h2:first-of-type { margin-top: 1rem; border-top: none; padding-top: 0; }
.article-content h3 { margin-top: 1.25rem; }
.article-content p { font-size: 1rem; color: var(--text-mid); line-height: 1.75; }
.article-content ul, .article-content ol { margin: 0.5rem 0 1.25rem 1.25rem; color: var(--text-mid); }
.article-content li { margin-bottom: 0.3rem; }
.article-content a { text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--border); }
.article-content a:hover { text-decoration-color: var(--accent); }
.container-narrow { max-width: 660px; margin: 0 auto; padding: 0 1.5rem; }
.lead-text { font-size: clamp(1.05rem, 2vw, 1.15rem); line-height: 1.75; color: var(--text-mid); font-weight: 300; }
.page-disclaimer { font-size: 0.78rem; color: var(--text-muted); border-left: 2px solid var(--border); padding-left: 0.75rem; margin-bottom: 1.5rem; }
.page-disclaimer a { text-decoration: underline; text-underline-offset: 2px; }

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
    background: var(--bg-hero); color: #fff;
    padding: clamp(2rem, 5vw, 3.5rem) 0; position: relative;
}
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 40px; background: linear-gradient(to top, var(--bg), transparent); pointer-events: none; }
.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero-intro { font-size: 0.95rem; color: rgba(255,255,255,0.6); max-width: 520px; font-weight: 400; line-height: 1.65; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); padding: 1rem 0; }
.faq-question {
    display: flex; justify-content: space-between; align-items: center; cursor: pointer;
    font-size: 0.95rem; font-weight: 600; color: var(--text); background: none;
    border: none; width: 100%; text-align: left; padding: 0; line-height: 1.35;
}
.faq-question::after { content: '+'; font-size: 1.1rem; font-weight: 300; color: var(--accent); transition: transform var(--transition); flex-shrink: 0; margin-left: 0.75rem; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 500px; padding-top: 0.6rem; }

/* ─── Related Pages ──────────────────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.75rem; }
.related-card {
    display: block; padding: 1rem; background: #fff; border: 1px solid var(--border-light);
    border-radius: var(--radius); text-decoration: none; transition: all var(--transition);
}
.related-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.related-card h4 { color: var(--accent); font-size: 0.85rem; margin-bottom: 0.15rem; }
.related-card p { font-size: 0.75rem; color: var(--text-muted); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ─── Map ────────────────────────────────────────────────── */
.map-container { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-light); }
.map-container iframe { display: block; width: 100%; height: 320px; border: none; }

/* ─── Article Images ─────────────────────────────────────── */
.article-img { margin: 1.5rem 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); }
.article-img img { width: 100%; height: auto; }
.article-img figcaption { padding: 0.4rem 0.75rem; font-size: 0.72rem; color: var(--text-muted); background: var(--bg-alt); text-align: center; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: #1A1A1A; color: rgba(255,255,255,0.5);
    padding: 3rem 0 0; font-size: 0.85rem; margin-top: 1rem;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-logo {
    display: inline-flex; align-items: center; gap: 0.35rem; text-decoration: none;
    font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem;
}
.footer-logo .logo-dot { color: var(--accent); }
.footer-about p { line-height: 1.6; color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.site-footer h4 { color: rgba(255,255,255,0.8); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 0.6rem; }
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 0.25rem; }
.footer-links-col a { color: rgba(255,255,255,0.38); font-size: 0.82rem; transition: color var(--transition); }
.footer-links-col a:hover { color: var(--gold); }
.footer-contact p { color: rgba(255,255,255,0.3); font-size: 0.8rem; line-height: 1.6; }
.footer-bottom { margin-top: 2.5rem; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ─── External Link ──────────────────────────────────────── */
.ext-link::after { content: ' ↗'; font-size: 0.65em; opacity: 0.3; }

/* ─── Utilities ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-wine { color: var(--accent); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ─── Responsive: Tablet ─────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .spotlight { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    body { font-size: 15px; }
    .container { padding: 0 1rem; }
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; top: var(--header-h); left: 0; right: 0;
        background: #fff; border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg); transform: translateY(-120%);
        transition: transform 0.25s ease; z-index: 999;
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav ul { flex-direction: column; padding: 0.5rem 1rem; gap: 0; }
    .main-nav a { padding: 0.6rem 0; font-size: 0.9rem; border-bottom: 1px solid var(--border-light); border-radius: 0; }
    .main-nav li:last-child a { border-bottom: none; }
    .hero { padding: 2.5rem 0 2rem; }
    .hero h1 { font-size: 1.6rem; }
    .cards-grid { grid-template-columns: 1fr; gap: 0.5rem; }
    .listing-grid { grid-template-columns: 1fr; }
    .exp-grid { grid-template-columns: 1fr; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .map-container iframe { height: 220px; }
    .quick-facts { grid-template-columns: 1fr 1fr; padding: 0.85rem; gap: 0.6rem; }
    .search-bar-inner { flex-wrap: wrap; border-radius: 12px; padding: 0.4rem 0.75rem; }
    .search-links a { font-size: 0.8rem; padding: 0.3rem 0.7rem; }
    .container-narrow { padding: 0 1rem; }
    .place-block:hover { padding-left: 0; }
    .secondary-links { gap: 0.4rem; }
    .secondary-link { font-size: 0.82rem; padding: 0.4rem 0.85rem; }

    /* ── Compact Horizontal Cards (mobile) ───────────── */
    .card {
        flex-direction: row;
        align-items: center;
        gap: 0.7rem;
        padding: 0.75rem 1rem;
        border-radius: 10px;
    }
    .card-icon {
        font-size: 1.2rem;
        margin-bottom: 0;
        flex-shrink: 0;
        width: auto;
        height: auto;
        line-height: 1;
        background: none;
    }
    .card h3 { font-size: 0.92rem; line-height: 1.25; margin-bottom: 0.05rem; }
    .card p {
        font-size: 0.78rem; line-height: 1.35; color: var(--text-mid); margin-bottom: 0;
        display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
    }
    .card-link { display: none; }

    /* ── Mobile Place Blocks ─────────────────────────────── */
    .place-meta { font-size: 0.73rem; }
    .place-block h3 { font-size: 1.15rem; }
    .place-block p { font-size: 0.95rem; line-height: 1.7; color: var(--text-mid); }
    .place-link { font-size: 0.88rem; }

    /* ── Mobile Exp Blocks ───────────────────────────────── */
    .exp-number { font-size: 0.85rem; }
    .exp-block h3 { font-size: 1.08rem; }
    .exp-block p { font-size: 0.92rem; line-height: 1.65; color: var(--text-mid); }

    /* ── Mobile Listing Components ────────────────────────── */
    .listing-title { font-size: 1.02rem; }
    .listing-meta { font-size: 0.85rem; }
    .listing-tag { font-size: 0.7rem; padding: 0.2rem 0.55rem; }
    .listing-price { font-size: 1.05rem; }

    /* ── Mobile Related Cards ────────────────────────────── */
    .related-card { padding: 1.1rem; }
    .related-card h4 { font-size: 0.92rem; }
    .related-card p { font-size: 0.8rem; }

    /* ── Mobile Labels & Meta ────────────────────────────── */
    .section-label { font-size: 0.72rem; }
    .hero-subtitle { font-size: 0.95rem; color: rgba(255,255,255,0.65); }
    .hero-meta { font-size: 0.75rem; }
    .quick-fact-label { font-size: 0.65rem; }
    .quick-fact-value { font-size: 0.88rem; }

    /* ── Mobile Callout ──────────────────────────────────── */
    .callout { padding: 1rem 1.15rem; }
    .callout-title { font-size: 0.95rem; }

    /* ── Mobile Stat Row ─────────────────────────────────── */
    .stat-value { font-size: 1.75rem; }
    .stat-label { font-size: 0.7rem; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.4rem; }
    .cards-grid { grid-template-columns: 1fr; gap: 0.4rem; }
    .btn { padding: 0.6rem 1.3rem; font-size: 0.85rem; }

    /* ── Extra small: compact cards ──────────────────── */
    .card { padding: 0.7rem 0.85rem; gap: 0.6rem; }
    .card-icon { font-size: 1.1rem; }
    .card h3 { font-size: 0.9rem; }
    .card p { font-size: 0.76rem; }
    .search-links a { font-size: 0.78rem; padding: 0.28rem 0.65rem; }
    .secondary-link { font-size: 0.8rem; padding: 0.38rem 0.8rem; }
    .hero-subtitle { font-size: 0.92rem; }
    .related-card h4 { font-size: 0.9rem; }
    .related-card p { font-size: 0.8rem; }
}