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

:root {
    --orange: #FF6B35;
    --orange-light: #FF8C5A;
    --yellow: #FFD93D;
    --dark: #1A1A2E;
    --gray: #6B7280;
    --gray-light: #F3F4F6;
    --white: #FFFFFF;
    --bg: #FFFBF7;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
}

/* ── HEADER ── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid #F0EDE8;
    padding: 0 24px;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    color: var(--dark);
}
.logo-icon {
    width: 34px;
    height: 34px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
nav {
    display: flex;
    gap: 28px;
}
nav a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}
nav a:hover { color: var(--orange); }
.header-cta {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.header-cta:hover { background: var(--orange-light); }

/* ── HERO ── */
.hero {
    background:
        linear-gradient(to bottom, rgba(10,12,30,0.55) 0%, rgba(10,12,30,0.25) 40%, rgba(10,12,30,0.60) 100%),
        url('/images/hero.png') center 30% / cover no-repeat;
    padding: 80px 24px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero > * { position: relative; z-index: 1; }
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(255,107,53,0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(255,217,61,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,107,53,0.2);
    border: 1px solid rgba(255,107,53,0.4);
    color: #FF9066;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    max-width: 720px;
    margin: 0 auto 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
}
.hero h1 span {
    color: var(--yellow);
}
.hero p {
    color: rgba(255,255,255,0.9);
    font-size: clamp(16px, 2vw, 18px);
    max-width: 540px;
    margin: 0 auto 40px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s, background 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--orange-light); }
.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}
.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

/* ── CATEGORIES ── */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 24px;
}
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
}
.section-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
}
.section-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}
.section-link:hover { text-decoration: underline; }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
}
.category-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 16px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid #F0EDE8;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: var(--orange);
}
.category-emoji {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}
.category-name {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
}
.category-count {
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
}

/* ── COLLECTIONS ── */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.collection-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #F0EDE8;
    text-decoration: none;
    color: var(--dark);
    transition: transform 0.2s, box-shadow 0.2s;
}
.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.collection-cover {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background-size: cover;
    background-position: center;
}
.collection-cover.cover-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.collection-cover.cover-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.cover-badge {
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.cover-emoji-big {
    font-size: 64px;
    position: absolute;
    top: 20px;
    right: 24px;
    opacity: 0.9;
}
.collection-body {
    padding: 22px 24px 24px;
}
.collection-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}
.collection-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
}
.collection-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}
.collection-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--gray);
}
.collection-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── DESTINATIONS ── */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.destination-card {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}
.destination-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: transform 0.3s;
    background-size: cover;
    background-position: center;
}
.destination-card:hover .destination-bg { transform: scale(1.04); }
.destination-bg.dest-1 { background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%), linear-gradient(135deg, #43C6AC 0%, #191654 100%); }
.destination-bg.dest-2 { background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%), linear-gradient(135deg, #f7971e 0%, #ffd200 100%); }
.destination-bg.dest-3 { background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%), linear-gradient(135deg, #ee0979 0%, #ff6a00 100%); }
.destination-bg.dest-4 { background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%), linear-gradient(135deg, #1D976C 0%, #93F9B9 100%); }
.destination-info { color: white; }
.destination-name {
    font-size: 18px;
    font-weight: 800;
    display: block;
}
.destination-count {
    font-size: 13px;
    opacity: 0.8;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--orange) 0%, #FF4500 100%);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    margin: 0 24px 72px;
    max-width: 1152px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}
.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    margin-bottom: 32px;
}
.btn-white {
    background: white;
    color: var(--orange);
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.2s;
}
.btn-white:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 48px 24px 32px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}
.footer-brand .logo { color: white; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; max-width: 260px; }
.footer-links h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}

/* ── INTERNAL PAGE HERO ── */
.page-hero {
    background: linear-gradient(180deg, #FFF3EA 0%, var(--bg) 100%);
    border-bottom: 1px solid #F0EDE8;
    padding: 40px 24px 44px;
}
.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.page-hero h1 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin: 6px 0 10px;
}
.page-hero p {
    color: var(--gray);
    font-size: 16px;
    max-width: 640px;
}
.page-hero-emoji { font-size: 44px; }
.page-hero--tight { padding-bottom: 28px; }
.page-hero--center { text-align: center; padding: 72px 24px; }
.page-hero--center .hero-actions { margin-top: 28px; }
.page-hero--author { padding-bottom: 32px; }
.error-code {
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}
.btn-secondary--dark {
    background: var(--gray-light);
    color: var(--dark);
    border-color: #E5E1DA;
}
.btn-secondary--dark:hover { background: #E9E5DE; }

/* ── BREADCRUMBS ── */
.breadcrumbs {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 6px;
}
.breadcrumbs a { color: var(--gray); text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .crumb-sep { opacity: 0.5; margin: 0 2px; }

/* ── EMPTY STATE ── */
.empty-state {
    text-align: center;
    padding: 56px 24px;
    background: var(--white);
    border: 1px dashed #E5E1DA;
    border-radius: 20px;
}
.empty-state--soft {
    background: transparent;
    border-style: solid;
    border-color: #F0EDE8;
}
.empty-state-emoji { font-size: 48px; margin-bottom: 12px; }
.empty-state h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.empty-state p { color: var(--gray); max-width: 460px; margin: 0 auto 18px; }
.empty-state .btn-primary { display: inline-block; }

/* ── PLACES ── */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.place-card {
    background: var(--white);
    border: 1px solid #F0EDE8;
    border-radius: 16px;
    text-decoration: none;
    color: var(--dark);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.place-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: var(--orange);
}
.place-card-body { padding: 20px; }
.place-card-cat {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
}
.place-card-name { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.place-card-addr { font-size: 13px; color: var(--gray); margin-bottom: 6px; }
.place-card-rating { font-size: 13px; color: var(--dark); font-weight: 600; }

/* ── ARTICLES ── */
.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.article-card {
    background: var(--white);
    border: 1px solid #F0EDE8;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--dark);
    transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 10px 34px rgba(0,0,0,0.09); }
.article-card-media { height: 160px; background-size: cover; background-position: center; }
.article-card-body { padding: 18px 20px 20px; }
.article-card-title { font-size: 17px; font-weight: 800; line-height: 1.3; margin-bottom: 6px; }
.article-card-sub { font-size: 14px; color: var(--gray); line-height: 1.5; }

.article {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 24px 64px;
}
.article-head h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; line-height: 1.2; margin: 6px 0 12px; }
.article-lead { font-size: 18px; color: var(--gray); margin-bottom: 18px; }
.article-byline { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray); }
.article-byline a { color: var(--dark); font-weight: 600; text-decoration: none; }
.article-byline a:hover { color: var(--orange); }
.byline-city { color: var(--gray); font-weight: 400; }
.byline-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--white); display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 15px;
}
.article-cover { margin: 24px 0; }
.article-cover-img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
}
.article-excursions { margin-top: 32px; }

/* ── PROSE ── */
.prose { font-size: 17px; line-height: 1.75; color: #2A2A3C; }
.prose h2, .prose h3, .prose h4 {
    font-weight: 800;
    line-height: 1.28;
    color: var(--dark);
}
.prose h2 { font-size: 24px; margin: 34px 0 12px; }
.prose h3 { font-size: 20px; margin: 28px 0 10px; }
.prose h4 { font-size: 17px; margin: 22px 0 8px; }
.prose p { margin-bottom: 16px; }
.prose a { color: var(--orange); }
.prose a.article-partner-link {
    font-weight: 700;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.prose strong, .prose b { font-weight: 800; color: var(--dark); }
.prose ul, .prose ol {
    margin: 0 0 18px 24px;
    padding-left: 16px;
}
.prose li { margin-bottom: 8px; }
.prose blockquote {
    margin: 28px 0;
    padding: 20px 22px;
    background: #FFF7F1;
    border-left: 4px solid var(--orange);
    border-radius: 0 14px 14px 0;
    color: #2A2A3C;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose blockquote cite {
    display: block;
    margin-top: 12px;
    color: var(--gray);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}
.prose blockquote cite a {
    color: var(--dark);
    text-decoration: none;
}
.prose blockquote cite a:hover { color: var(--orange); }
.prose .article-expert-quote {
    border-left-color: var(--yellow);
    background: #FFFBF0;
}
.prose figure { margin: 26px 0; }
.prose img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}
.prose figcaption {
    margin-top: 8px;
    color: var(--gray);
    font-size: 13px;
    line-height: 1.5;
}
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.5;
    background: var(--white);
    border: 1px solid #F0EDE8;
    border-radius: 12px;
    overflow: hidden;
}
.prose th, .prose td {
    padding: 12px 14px;
    border-bottom: 1px solid #F0EDE8;
    vertical-align: top;
    text-align: left;
}
.prose th {
    background: #FFF7F1;
    font-weight: 800;
    color: var(--dark);
}
.prose tr:last-child th, .prose tr:last-child td { border-bottom: none; }
.prose--wide { max-width: 760px; margin: 0 auto; }

/* ── EXCURSION FACTS TABLE ── */
.excursion-facts {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 15px;
    line-height: 1.55;
    background: var(--white);
    border: 1px solid #F0EDE8;
    border-radius: 12px;
    overflow: hidden;
}
.excursion-facts caption {
    display: none;
}
.excursion-facts thead tr {
    background: var(--orange);
}
.excursion-facts thead th {
    padding: 11px 16px;
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-bottom: none;
    background: transparent;
}
.excursion-facts tbody tr {
    border-bottom: 1px solid #F0EDE8;
}
.excursion-facts tbody tr:last-child {
    border-bottom: none;
}
.excursion-facts tbody tr:nth-child(even) {
    background: #FFFBF7;
}
.excursion-facts td {
    padding: 12px 16px;
    vertical-align: top;
    text-align: left;
    color: var(--dark);
}
.excursion-facts td:first-child {
    width: 32%;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    border-right: 1px solid #F0EDE8;
}
.excursion-facts td:last-child {
    color: #374151;
}
@media (max-width: 540px) {
    .excursion-facts td:first-child {
        width: auto;
        white-space: normal;
    }
    .excursion-facts thead th:last-child {
        display: none;
    }
    .excursion-facts td, .excursion-facts thead th {
        padding: 10px 12px;
        font-size: 14px;
    }
}

.muted { color: var(--gray); }
.disclaimer { font-size: 13px; color: var(--gray); margin-top: 14px; }
.sources-note {
    font-size: 13px;
    color: var(--gray);
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid #F0EDE8;
}

/* ── PLACE DETAIL ── */
.place-cat-tag {
    display: inline-block;
    font-size: 12px; font-weight: 700; color: var(--orange);
    text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 6px;
}
.place-facts { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; }
.place-fact { font-size: 14px; color: var(--dark); font-weight: 600; }
.place-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.place-reviews { margin-top: 28px; }
.place-reviews h2 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.place-map { border-radius: 16px; overflow: hidden; border: 1px solid #F0EDE8; }
.place-map iframe { display: block; }
.place-map-link {
    display: inline-block; background: var(--gray-light); color: var(--dark);
    padding: 12px 18px; border-radius: 12px; text-decoration: none; font-weight: 600;
}
.place-author {
    display: flex; align-items: center; gap: 12px;
    margin-top: 20px; padding: 16px; background: var(--white);
    border: 1px solid #F0EDE8; border-radius: 14px;
}
.place-author-label { font-size: 12px; color: var(--gray); }
.place-author a { color: var(--dark); font-weight: 700; text-decoration: none; }
.place-author a:hover { color: var(--orange); }

/* ── AUTHORS ── */
.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.author-card {
    background: var(--white); border: 1px solid #F0EDE8; border-radius: 18px;
    padding: 24px; text-decoration: none; color: var(--dark);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.author-card:hover { transform: translateY(-4px); box-shadow: 0 10px 34px rgba(0,0,0,0.09); border-color: var(--orange); }
.author-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--white); display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 24px; margin-bottom: 14px;
}
.author-avatar--lg { width: 76px; height: 76px; font-size: 32px; margin-bottom: 0; }
.author-card-name { font-size: 18px; font-weight: 800; }
.author-card-city { font-size: 13px; color: var(--gray); margin-top: 2px; }
.author-card-bio { font-size: 14px; color: var(--gray); line-height: 1.5; margin-top: 10px; }
.author-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.author-tag {
    font-size: 12px; font-weight: 600; color: var(--orange);
    background: rgba(255,107,53,0.1); padding: 4px 10px; border-radius: 20px;
}
.author-hero { display: flex; align-items: center; gap: 20px; margin-top: 8px; }
.author-hero h1 { font-size: clamp(24px, 3.5vw, 36px); }
.author-hero-meta { display: flex; gap: 14px; color: var(--gray); font-size: 14px; margin: 4px 0 8px; }
.author-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.author-main h2 { font-size: 22px; font-weight: 800; margin: 28px 0 16px; }
.author-trips {
    background: var(--white); border: 1px solid #F0EDE8; border-radius: 16px; padding: 20px;
}
.author-trips h3 { font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.author-trips ul { list-style: none; }
.author-trips li { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; border-bottom: 1px solid #F5F2EC; font-size: 14px; }
.author-trips li:last-child { border-bottom: none; }
.trip-dest { font-weight: 600; }
.trip-year { color: var(--gray); }
.about-cta-line { font-weight: 600; }

/* ── EXCURSIONS WIDGET ── */
.excursions-widget {
    background: #FFF7F1;
    border: 1px solid #F5E3D6;
    border-radius: 20px;
    padding: 24px;
}
.excursions-hint {
    display: flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 18px;
}
.excursions-hint-icon { font-size: 18px; }
.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.excursion-card {
    display: flex; flex-direction: column; justify-content: space-between;
    background: var(--white); border: 1px solid #F0EDE8; border-radius: 16px;
    padding: 18px 20px;
}
.excursion-title { font-size: 16px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
.excursion-lead { font-size: 14px; color: var(--gray); line-height: 1.55; margin-bottom: 12px; }
.excursion-meta { font-size: 13px; color: var(--gray); }
.excursion-dot { opacity: 0.5; }
.excursion-approx { font-size: 12px; opacity: 0.8; }
.excursion-link {
    align-self: flex-start;
    margin-top: 14px;
    color: var(--orange); font-weight: 700; font-size: 14px; text-decoration: none;
}
.excursion-link:hover { text-decoration: underline; }
.excursions-inline { list-style: none; }
.excursion-inline-item {
    display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px;
    padding: 12px 0; border-bottom: 1px solid #F5E3D6;
}
.excursion-inline-item:last-child { border-bottom: none; }
.excursion-inline-title { font-weight: 600; }
.excursion-inline-title a { color: var(--dark); text-decoration: none; }
.excursion-inline-title a:hover { color: var(--orange); }
.excursion-inline-meta { font-size: 13px; color: var(--gray); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav { display: none; }
    .hero-stats { gap: 24px; }
    .collections-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 40px 24px; }
    .footer-top { flex-direction: column; }
    .place-layout { grid-template-columns: 1fr; gap: 24px; }
    .author-layout { grid-template-columns: 1fr; gap: 24px; }
    .author-hero { flex-direction: column; text-align: center; }
    .author-hero-meta { justify-content: center; }
}
