*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #0a0a0a; --cream: #f5f0e8; --gold: #c9a84c; --gold-dark: #8a6f2e;
  --rust: #b84c2e; --mist: #e8edf2; --white: #ffffff; --text-muted: #6b7280;
  --serif: 'Playfair Display', Georgia, serif;
  --cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --sans: 'Barlow', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--ink); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 3rem; transition: background 0.4s; }
nav.scrolled { background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); }
nav.solid { background: rgba(10,10,10,0.95); }
.nav-logo { font-family: var(--cond); font-weight: 900; font-size: 1.1rem; letter-spacing: 0.18em; color: var(--white); text-decoration: none; text-transform: uppercase; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-family: var(--cond); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { font-family: var(--cond); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: 0.6rem 1.5rem; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: #e8c05a; }

/* HAMBURGER */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 200; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform 0.3s, opacity 0.3s; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; background: rgba(10,10,10,0.97); backdrop-filter: blur(16px); z-index: 150; padding: 5rem 2rem 2.5rem; flex-direction: column; transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--cond); font-weight: 700; font-size: 1.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); text-decoration: none; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta { margin-top: 1.5rem; color: var(--ink); background: var(--gold); text-align: center; padding: 1rem; border-bottom: none; font-size: 1rem; }

/* HERO (homepage) */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=90'); background-size: cover; background-position: center 30%; animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); background-position: center 30%; } to { transform: scale(1.12); background-position: center 40%; } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.15) 100%); }
.hero-content { position: relative; z-index: 2; padding: 7rem 3rem 3rem; max-width: 900px; width: 100%; }
.hero-eyebrow { font-family: var(--cond); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 2.2rem; display: flex; align-items: center; gap: 1rem; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--serif); font-weight: 900; font-size: clamp(4rem, 10vw, 8rem); line-height: 0.9; color: var(--white); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-family: var(--sans); font-weight: 300; font-size: 1.2rem; color: rgba(255,255,255,0.75); max-width: 480px; line-height: 1.7; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { font-family: var(--cond); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: 1rem 2.5rem; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: #e8c05a; transform: translateY(-2px); }
.btn-outline { font-family: var(--cond); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); padding: 1rem 2.5rem; text-decoration: none; display: inline-block; transition: border-color 0.2s, background 0.2s; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-scroll { position: absolute; right: 3rem; bottom: 3rem; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; font-family: var(--cond); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero-scroll::after { content: ''; display: block; width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity:0.5; height:40px; } 50% { opacity:1; height:60px; } }

/* MARQUEE */
.marquee-bar { background: var(--ink); padding: 0.9rem 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 30s linear infinite; }
.marquee-track span { font-family: var(--cond); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.5); padding: 0 2.5rem; }
.marquee-track span.dot { color: var(--gold); padding: 0; letter-spacing: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTION LABELS */
.section-label { font-family: var(--cond); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.section-label::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--gold); }
.section-title { font-family: var(--serif); font-weight: 900; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; color: var(--ink); margin-bottom: 0.5rem; }
.section-title em { font-style: italic; color: var(--rust); }

/* DESTINATIONS */
.destinations { padding: 6rem 3rem; }
.dest-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
.dest-intro { font-size: 1rem; color: var(--text-muted); max-width: 400px; line-height: 1.7; margin-top: 1rem; }
.dest-view-all { font-family: var(--cond); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); text-decoration: none; border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.dest-view-all:hover { color: var(--gold); border-color: var(--gold); }
.dest-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.dest-card { position: relative; overflow: hidden; cursor: pointer; display: block; text-decoration: none; }
.dest-card:nth-child(1) { grid-column: span 2; }
.dest-card .dest-img { width: 100%; display: block; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.dest-card:nth-child(1) .dest-img { height: 480px; }
.dest-card:nth-child(2) .dest-img { height: 480px; }
.dest-card:nth-child(3) .dest-img, .dest-card:nth-child(4) .dest-img, .dest-card:nth-child(5) .dest-img { height: 230px; }
.dest-card:hover .dest-img { transform: scale(1.06); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0) 60%); transition: background 0.4s; }
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.1) 60%); }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.dest-region { font-family: var(--cond); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.dest-name { font-family: var(--serif); font-weight: 700; font-size: 1.6rem; color: var(--white); line-height: 1.1; margin-bottom: 0.3rem; }
.dest-card:nth-child(1) .dest-name { font-size: 2.2rem; }
.dest-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 300; }
.dest-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: var(--ink); font-family: var(--cond); font-weight: 800; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 0.7rem; }

/* FEATURED POST */
.featured-post { padding: 6rem 3rem; background: var(--ink); }
.featured-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1300px; margin: 0 auto; }
.featured-img-wrap { position: relative; }
.featured-img { width: 100%; height: 560px; object-fit: cover; display: block; }
.featured-img-accent { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 120px; height: 120px; background: var(--gold); z-index: -1; }
.featured-content { color: var(--white); }
.featured-content .section-label { color: var(--gold); }
.featured-content .section-label::after { background: var(--gold); }
.featured-content .section-title { color: var(--white); }
.featured-content .section-title em { color: var(--gold); }
.featured-meta { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; flex-wrap: wrap; }
.meta-tag { font-family: var(--cond); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: 0.25rem 0.6rem; }
.meta-date { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.featured-excerpt { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 2rem; }
.featured-author { display: flex; align-items: center; gap: 1rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2rem; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.author-name { font-family: var(--cond); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.author-role { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* BLOG GRID */
.blog { padding: 6rem 3rem; }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); }
.blog-card-img-wrap { position: relative; overflow: hidden; margin-bottom: 1.2rem; }
.blog-card-img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-cat { position: absolute; top: 1rem; left: 1rem; font-family: var(--cond); font-weight: 800; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); background: var(--rust); padding: 0.3rem 0.7rem; }
.blog-card-meta { font-family: var(--cond); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.6rem; display: flex; gap: 1rem; }
.blog-card-title { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; line-height: 1.25; color: var(--ink); margin-bottom: 0.7rem; transition: color 0.2s; }
.blog-card:hover .blog-card-title { color: var(--rust); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.blog-card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.08); }
.blog-card-author-mini { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); }
.author-mini-img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.blog-read-more { font-family: var(--cond); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rust); }

/* NEWSLETTER */
.newsletter { background: var(--cream); padding: 5rem 3rem; text-align: center; border-top: 3px solid var(--gold); }
.newsletter .section-title { font-size: clamp(2rem,4vw,3rem); }
.newsletter-sub { font-size: 1rem; color: var(--text-muted); max-width: 480px; margin: 1rem auto 2rem; line-height: 1.7; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; }
.newsletter-input { flex: 1; padding: 1rem 1.2rem; font-family: var(--sans); font-size: 0.95rem; border: 1.5px solid rgba(0,0,0,0.2); border-right: none; background: var(--white); outline: none; color: var(--ink); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-btn { font-family: var(--cond); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); background: var(--gold); border: none; padding: 1rem 2rem; cursor: pointer; transition: background 0.2s; }
.newsletter-btn:hover { background: #e8c05a; }
.newsletter-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.8rem; }

/* ARTICLE PAGE */
.article-hero { position: relative; height: 70vh; min-height: 480px; display: flex; align-items: flex-end; overflow: hidden; }
.article-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.3) 60%, rgba(10,10,10,0.1) 100%); }
.article-hero-content { position: relative; z-index: 2; padding: 0 3rem 3.5rem; max-width: 860px; }
.article-hero-cat { font-family: var(--cond); font-weight: 800; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white); background: var(--rust); padding: 0.3rem 0.7rem; display: inline-block; margin-bottom: 1rem; }
.article-hero-title { font-family: var(--serif); font-weight: 900; font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.05; color: var(--white); margin-bottom: 1rem; }
.article-hero-meta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.article-hero-author { display: flex; align-items: center; gap: 0.6rem; }
.article-hero-author img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.article-hero-author-name { font-family: var(--cond); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.article-hero-date { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

.article-body-wrap { max-width: 780px; margin: 0 auto; padding: 4rem 2rem 5rem; }
.post-body { font-size: 1.05rem; line-height: 1.85; color: #2a2a2a; }
.post-body h2 { font-family: var(--serif); font-weight: 700; font-size: 1.7rem; color: var(--ink); margin: 2.5rem 0 1rem; }
.post-body h3 { font-family: var(--cond); font-weight: 800; font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rust); margin: 1.8rem 0 0.6rem; }
.post-body p { margin-bottom: 1.4rem; }
.post-body ul { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body strong { font-weight: 600; color: var(--ink); }
.post-img-full { width: 100%; height: 420px; object-fit: cover; display: block; margin: 2rem 0; }
.post-img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 2rem 0; }
.post-img-pair img { width: 100%; height: 280px; object-fit: cover; display: block; }
.post-img-trio { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.8rem; margin: 2rem 0; }
.post-img-trio img { width: 100%; height: 200px; object-fit: cover; display: block; }
.post-img-caption { font-family: var(--cond); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--text-muted); text-align: center; margin-top: -1.4rem; margin-bottom: 2rem; }
.post-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.post-info-card { border: 1.5px solid rgba(0,0,0,0.1); padding: 1.2rem 1.4rem; }
.post-info-card-label { font-family: var(--cond); font-weight: 800; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.4rem; }
.post-info-card-title { font-family: var(--serif); font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 0.3rem; }
.post-info-card-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.post-pullquote { border-left: 4px solid var(--gold); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--cream); }
.post-pullquote p { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--ink); line-height: 1.5; margin: 0; }
.post-tip-box { background: #f0f7f0; border-left: 4px solid #4a9e6b; padding: 1rem 1.4rem; margin: 1.5rem 0; }
.post-tip-box-label { font-family: var(--cond); font-weight: 800; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: #4a9e6b; margin-bottom: 0.4rem; }
.post-tip-box p { font-size: 0.9rem; color: #2a2a2a; line-height: 1.6; margin: 0; }
.post-flight-box { background: var(--ink); color: var(--white); padding: 1.5rem; margin: 2rem 0; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.post-flight-box-icon { font-size: 2rem; flex-shrink: 0; }
.post-flight-box-content { flex: 1; }
.post-flight-box-label { font-family: var(--cond); font-weight: 800; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.post-flight-box-text { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0; }

.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--cond); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; margin: 2rem 2rem 0; transition: color 0.2s; padding-top: 5rem; display: block; }
.back-link:hover { color: var(--ink); }

/* FOOTER */
footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 4rem 3rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name { font-family: var(--cond); font-weight: 900; font-size: 1.1rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 0.8rem; }
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.8rem; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.75rem; transition: border-color 0.2s, color 0.2s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-family: var(--cond); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1279px) {
  nav { padding: 1.1rem 2rem; }
  .nav-links { gap: 1.8rem; }
  .hero-content { padding: 7rem 2rem 3rem; }
  .destinations, .blog, .featured-post { padding: 5rem 2rem; }
  .newsletter { padding: 4.5rem 2rem; }
  footer { padding: 3.5rem 2rem 2rem; }
  .footer-grid { gap: 2rem; }
  .article-hero-content { padding: 0 2rem 3rem; }
  .article-body-wrap { padding: 3rem 2rem 4rem; }
}
@media (max-width: 1023px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero { min-height: 600px; }
  .hero-content { padding: 7rem 2rem 3rem; }
  .hero-title { font-size: clamp(3rem, 7vw, 5.5rem); }
  .hero-scroll { display: none; }
  .destinations, .blog, .featured-post { padding: 4rem 2rem; }
  .newsletter { padding: 4rem 2rem; }
  footer { padding: 3rem 2rem 2rem; }
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .dest-card:nth-child(1) { grid-column: span 2; }
  .dest-card:nth-child(1) .dest-img { height: 360px; }
  .dest-card:nth-child(2) .dest-img { height: 280px; }
  .dest-card:nth-child(3) .dest-img, .dest-card:nth-child(4) .dest-img, .dest-card:nth-child(5) .dest-img { height: 200px; }
  .featured-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .featured-img { height: 380px; }
  .featured-img-accent { display: none; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .article-hero { height: 55vh; min-height: 400px; }
  .article-hero-content { padding: 0 1.5rem 2.5rem; }
}
@media (max-width: 767px) {
  nav { padding: 0.9rem 1.2rem; }
  .hero { min-height: 100svh; }
  .hero-content { padding: 6rem 1.2rem 2rem; }
  .hero-title { font-size: clamp(2.8rem, 11vw, 4.5rem); line-height: 0.92; }
  .hero-sub { font-size: 1rem; }
  .hero-btns { flex-direction: column; gap: 0.8rem; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 0.9rem 1.5rem; }
  .destinations, .blog, .featured-post { padding: 3rem 1.2rem; }
  .newsletter { padding: 3rem 1.2rem; }
  footer { padding: 2.5rem 1.2rem 1.5rem; }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  .dest-header, .blog-header { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .dest-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .dest-card:nth-child(1) { grid-column: span 1; }
  .dest-card:nth-child(1) .dest-img { height: 300px; }
  .dest-card:nth-child(2) .dest-img, .dest-card:nth-child(3) .dest-img, .dest-card:nth-child(4) .dest-img, .dest-card:nth-child(5) .dest-img { height: 200px; }
  .featured-img { height: 260px; }
  .blog-grid { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1.5px solid rgba(0,0,0,0.2); border-bottom: none; }
  .newsletter-btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .post-img-pair { grid-template-columns: 1fr; }
  .post-img-pair img { height: 220px; }
  .post-img-trio { grid-template-columns: 1fr 1fr; }
  .post-info-grid { grid-template-columns: 1fr; }
  .post-img-full { height: 260px; }
  .article-hero { height: 60vh; }
  .article-hero-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .article-body-wrap { padding: 2rem 1.2rem 3rem; }
  .back-link { margin: 0 1.2rem; padding-top: 4.5rem; }
}
@media (max-width: 479px) {
  nav { padding: 0.8rem 1rem; }
  .nav-logo { font-size: 0.85rem; letter-spacing: 0.1em; }
  .hero-title { font-size: clamp(2.4rem, 13vw, 3.5rem); }
  .section-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .dest-card:nth-child(1) .dest-img { height: 240px; }
  .post-img-trio { grid-template-columns: 1fr; }
  .post-img-trio img { height: 200px; }
  .marquee-track span { padding: 0 1.5rem; font-size: 0.72rem; }
}
