
:root {
  --forest: #1C3D2E;
  --forest-mid: #2A5A42;
  --cream: #F5F0E8;
  --cream-dark: #EDE7D9;
  --warm-white: #FAF8F4;
  --gold: #C4A35A;
  --gold-light: #D4B878;
  --text-dark: #1A1A14;
  --text-mid: #5A5A4A;
  --text-light: #9A9A8A;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Inter',sans-serif; background:var(--warm-white); color:var(--text-dark); overflow-x:hidden; }

/* ─── NAV ─── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:500;
  height:64px; padding:0 20px;
  display:grid; grid-template-columns:1fr auto 1fr;
  align-items:center;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(28,61,46,0.08);
  box-shadow:0 1px 12px rgba(0,0,0,0.06);
  transition:all .3s;
}

/* Left */
.hamburger {
  display:flex; flex-direction:column; gap:5px; cursor:pointer;
  background:none; border:none; padding:4px;
  justify-self:start;
}
.hamburger span {
  display:block; width:22px; height:1.5px;
  background:var(--text-dark); border-radius:2px; transition:all .3s;
}

/* Center */
.nav-logo { cursor:pointer; display:flex; align-items:center; justify-content:center; }
.nav-logo img { height:44px; width:auto; }

/* Right */
.nav-right {
  display:flex; align-items:center; gap:24px;
  justify-self:end;
}
.nav-links { display:flex; align-items:center; gap:28px; list-style:none; }
.nav-links a {
  font-size:12px; font-weight:400; color:var(--text-mid);
  text-decoration:none; cursor:pointer; transition:color .2s;
  letter-spacing:0.04em; text-transform:uppercase;
}
.nav-links a:hover { color:var(--forest); }
.nav-subscribe {
  background:var(--forest) !important;
  color:var(--cream) !important;
  padding:7px 18px; border-radius:20px; font-weight:500 !important;
  transition:all .2s !important; text-transform:none !important;
  letter-spacing:0 !important;
}
.nav-subscribe:hover { background:var(--forest-mid) !important; }

.search-btn {
  background:none; border:none; cursor:pointer;
  color:var(--text-mid); padding:4px;
  display:flex; align-items:center; transition:color .2s;
}
.search-btn:hover { color:var(--forest); }

/* Search overlay */
.search-overlay {
  display:none; position:fixed; top:64px; left:0; right:0; z-index:400;
  background:white; padding:20px 24px;
  border-bottom:1px solid rgba(28,61,46,0.1);
  box-shadow:0 8px 32px rgba(0,0,0,0.1);
}
.search-overlay.open { display:block; }
.search-inner { display:flex; align-items:center; gap:12px; max-width:600px; margin:0 auto; }
.search-input {
  flex:1; padding:12px 16px; border:1px solid rgba(28,61,46,0.15);
  border-radius:8px; font-family:'Inter',sans-serif; font-size:15px;
  color:var(--text-dark); outline:none; transition:border-color .2s;
}
.search-input:focus { border-color:var(--forest); }
.search-close {
  background:none; border:none; cursor:pointer; font-size:18px;
  color:var(--text-light); padding:4px; transition:color .2s;
}
.search-close:hover { color:var(--text-dark); }

/* Mobile menu */
.mobile-menu {
  display:none; position:fixed; top:64px; left:0; right:0; bottom:0;
  background:var(--forest); z-index:400; flex-direction:column;
  align-items:center; justify-content:center; gap:32px;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  font-family:'Playfair Display',serif; font-size:28px; font-weight:400;
  color:var(--cream); text-decoration:none; cursor:pointer;
  transition:color .2s;
}
.mobile-menu a:hover { color:var(--gold); }
.mobile-menu .mob-subscribe {
  background:var(--cream); color:var(--forest);
  padding:14px 40px; border-radius:30px; font-family:'Inter',sans-serif;
  font-size:14px; font-weight:500; margin-top:16px;
}

/* ─── PAGES ─── */
/* legacy single-file page toggles removed — conflicted with WP body_class 'page' */

/* ══════════════════════
   HOME
══════════════════════ */

/* HERO — Full screen */
.hero {
  position:relative; width:100%; height:100vh; min-height:600px;
  overflow:hidden; display:flex; align-items:flex-end;
}

.hero-bg {
  position:absolute; inset:0;
  background-image:url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1600&q=90&fit=crop&auto=format');
  background-size:cover; background-position:center;
  transform:scale(1.05);
  animation:heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform:scale(1.05); }
  to { transform:scale(1.12); }
}

.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.05) 30%,
    rgba(0,0,0,0.45) 70%,
    rgba(0,0,0,0.78) 100%
  );
}

.hero-content {
  position:relative; z-index:2;
  padding:0 60px 80px;
  max-width:900px;
  animation:heroFade 1.4s ease forwards;
  opacity:0; transform:translateY(30px);
}

@keyframes heroFade {
  to { opacity:1; transform:translateY(0); }
}

.hero-eyebrow {
  font-size:11px; font-weight:500; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--gold-light);
  margin-bottom:20px; display:flex; align-items:center; gap:12px;
}
.hero-eyebrow::before {
  content:''; width:32px; height:1px; background:var(--gold-light);
}

.hero h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(48px, 7vw, 96px);
  font-weight:400; line-height:1.0;
  color:white; margin-bottom:24px;
  letter-spacing:-0.02em;
}
.hero h1 em { font-style:italic; color:var(--gold-light); }

.hero-sub {
  font-size:clamp(14px, 1.6vw, 17px);
  line-height:1.7; color:rgba(255,255,255,0.75);
  font-weight:300; max-width:520px; margin-bottom:40px;
}

.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }

.btn-white {
  background:white; color:var(--forest);
  padding:14px 32px; border-radius:30px;
  font-size:13px; font-weight:500; border:none; cursor:pointer;
  font-family:'Inter',sans-serif; transition:all .2s;
  letter-spacing:0.02em;
}
.btn-white:hover { background:var(--cream); transform:translateY(-2px); }

.btn-ghost-white {
  background:transparent; color:white;
  padding:13px 28px; border-radius:30px;
  font-size:13px; font-weight:400;
  border:1px solid rgba(255,255,255,0.4);
  cursor:pointer; font-family:'Inter',sans-serif; transition:all .2s;
}
.btn-ghost-white:hover { border-color:white; transform:translateY(-2px); }

/* Scroll indicator */
.scroll-indicator {
  position:absolute; bottom:32px; right:60px; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:8px;
}
.scroll-line {
  width:1px; height:48px; background:rgba(255,255,255,0.4);
  animation:scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform:scaleY(0); transform-origin:top; opacity:0; }
  50% { transform:scaleY(1); opacity:1; }
  100% { transform:scaleY(0); transform-origin:bottom; opacity:0; }
}
.scroll-indicator span {
  font-size:9px; letter-spacing:0.15em; text-transform:uppercase;
  color:rgba(255,255,255,0.5); writing-mode:vertical-rl;
}

/* ─── FEATURED STORIES ─── */
.stories-section {
  padding:100px 60px;
  background:var(--warm-white);
}

.sec-label {
  font-size:11px; font-weight:500; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--text-light); margin-bottom:12px;
}
.sec-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(32px, 4vw, 48px);
  font-weight:400; color:var(--text-dark); margin-bottom:0;
  line-height:1.1;
}
.sec-hdr {
  display:flex; align-items:flex-end; justify-content:space-between;
  margin-bottom:48px;
}
.view-all {
  font-size:13px; color:var(--text-mid); background:none;
  border:none; cursor:pointer; font-family:'Inter',sans-serif;
  transition:color .2s; padding:0; white-space:nowrap;
}
.view-all:hover { color:var(--forest); }

/* Story grid */
.story-grid {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:2px;
}

.story-card {
  position:relative; overflow:hidden; cursor:pointer;
  background:#111;
}
.story-card:hover .story-img { transform:scale(1.06); }
.story-card:hover .story-overlay { background:rgba(0,0,0,0.35); }

.story-main { grid-row:1/3; }
.story-main .story-img-wrap { height:600px; }
.story-img-wrap { overflow:hidden; height:300px; }
.story-img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .7s ease; display:block;
}

.story-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  transition:background .4s;
}

.story-body {
  position:absolute; bottom:0; left:0; right:0;
  padding:28px;
}
.story-cat {
  font-size:10px; font-weight:500; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--gold-light); margin-bottom:8px;
}
.story-title {
  font-family:'Playfair Display',serif;
  color:white; line-height:1.3; font-weight:400;
}
.story-main .story-title { font-size:28px; }
.story-title { font-size:18px; }

/* ─── FULL WIDTH FEATURE ─── */
.feature-strip {
  position:relative; height:70vh; min-height:500px; overflow:hidden;
  display:flex; align-items:center;
}
.feature-strip-bg {
  position:absolute; inset:0;
  background-image:url('https://images.unsplash.com/photo-1568430462989-44163eb1752f?w=1600&q=85&fit=crop&auto=format');
  background-size:cover; background-position:center;
  transition:transform .6s ease;
}
.feature-strip:hover .feature-strip-bg { transform:scale(1.03); }
.feature-strip-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.feature-strip-content {
  position:relative; z-index:2; padding:0 80px; max-width:680px;
}
.feature-strip-content .story-cat { margin-bottom:16px; }
.feature-strip-content h2 {
  font-family:'Playfair Display',serif;
  font-size:clamp(32px, 4vw, 52px);
  font-weight:400; color:white; line-height:1.15; margin-bottom:20px;
}
.feature-strip-content p {
  font-size:15px; line-height:1.7; color:rgba(255,255,255,0.7);
  font-weight:300; margin-bottom:32px; max-width:460px;
}

/* ─── EARTH LETTER SECTION ─── */
.earth-letter {
  background:var(--forest);
  padding:100px 60px;
  position:relative; overflow:hidden;
}
.earth-letter-bg {
  position:absolute; inset:0;
  background:radial-gradient(ellipse 80% 60% at 80% 50%, rgba(61,122,90,0.2) 0%, transparent 60%);
}
.earth-letter-inner {
  position:relative; z-index:1;
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.el-left .sec-label { color:var(--gold); }
.el-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(36px, 4vw, 56px);
  font-weight:400; color:var(--cream); line-height:1.1; margin-bottom:20px;
}
.el-title em { font-style:italic; color:var(--gold-light); }
.el-desc {
  font-size:15px; line-height:1.75; color:rgba(245,240,232,0.65);
  font-weight:300; margin-bottom:36px;
}
.el-perks { display:flex; flex-direction:column; gap:14px; }
.el-perk {
  display:flex; align-items:flex-start; gap:12px;
  font-size:14px; color:rgba(245,240,232,0.7); line-height:1.5;
}
.el-perk::before { content:'✦'; color:var(--gold); font-size:10px; margin-top:3px; flex-shrink:0; }

.el-card {
  background:rgba(245,240,232,0.06);
  border:1px solid rgba(245,240,232,0.12);
  border-radius:16px; padding:44px;
  backdrop-filter:blur(8px);
}
.el-issue {
  font-size:10px; letter-spacing:0.15em; text-transform:uppercase;
  color:var(--gold); margin-bottom:20px;
  display:flex; align-items:center; gap:10px;
}
.el-issue::before { content:''; width:24px; height:1px; background:var(--gold); }
.el-card h3 {
  font-family:'Playfair Display',serif; font-size:28px; font-weight:400;
  color:var(--cream); margin-bottom:12px; line-height:1.2;
}
.el-card > p {
  font-size:13px; color:rgba(245,240,232,0.55); margin-bottom:28px; line-height:1.6;
}
.el-form-field { margin-bottom:14px; }
.el-form-field label {
  display:block; font-size:10px; font-weight:500; letter-spacing:0.1em;
  text-transform:uppercase; color:rgba(245,240,232,0.45); margin-bottom:6px;
}
.el-form-field input {
  width:100%; padding:12px 16px; background:rgba(245,240,232,0.08);
  border:1px solid rgba(245,240,232,0.15); border-radius:10px;
  font-family:'Inter',sans-serif; font-size:14px; color:var(--cream);
  outline:none; transition:border-color .2s;
}
.el-form-field input:focus { border-color:rgba(245,240,232,0.4); }
.el-form-field input::placeholder { color:rgba(245,240,232,0.3); }
.btn-cream-full {
  width:100%; padding:14px; background:var(--cream); color:var(--forest);
  border:none; border-radius:10px; font-size:13px; font-weight:500;
  cursor:pointer; font-family:'Inter',sans-serif; transition:background .2s;
  margin-top:4px; letter-spacing:0.04em;
}
.btn-cream-full:hover { background:var(--cream-dark); }
.el-note { font-size:11px; color:rgba(245,240,232,0.3); text-align:center; margin-top:10px; }

/* ─── PHOTO GRID ─── */
.photo-grid-section { padding:0; background:#000; }
.photo-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-template-rows:300px 300px;
  gap:2px;
}
.pg-item { overflow:hidden; position:relative; cursor:pointer; }
.pg-item:nth-child(1) { grid-column:1/3; }
.pg-item:nth-child(4) { grid-column:3/5; }
.pg-item img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s ease; display:block;
}
.pg-item:hover img { transform:scale(1.08); }
.pg-overlay {
  position:absolute; inset:0;
  background:rgba(0,0,0,0); transition:background .4s;
}
.pg-item:hover .pg-overlay { background:rgba(28,61,46,0.3); }

/* ─── SHOP PREVIEW ─── */
.shop-section { padding:100px 60px; background:var(--cream); }
.shop-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:48px; }
.shop-card { cursor:pointer; }
.shop-card:hover .shop-img img { transform:scale(1.05); }
.shop-img {
  width:100%; aspect-ratio:1; border-radius:12px;
  overflow:hidden; background:var(--cream-dark); margin-bottom:16px;
}
.shop-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; display:block; }
.shop-row { display:flex; align-items:baseline; justify-content:space-between; }
.shop-name { font-family:'Playfair Display',serif; font-size:18px; font-weight:400; color:var(--text-dark); }
.shop-price { font-size:14px; color:var(--text-light); }

/* ─── FOOTER ─── */
footer {
  background:var(--forest); padding:56px 40px 32px;
}
.footer-top {
  display:grid; grid-template-columns:1fr 1fr 1fr;
  gap:40px; padding-bottom:40px;
  border-bottom:1px solid rgba(245,240,232,0.1); margin-bottom:28px;
}
.footer-logo img { display:none; }
.footer-brand-tagline {
  font-family:'Playfair Display',serif; font-size:14px; font-style:italic;
  color:var(--gold-light); margin-bottom:12px; display:block;
}
.footer-desc { font-size:13px; line-height:1.7; color:rgba(245,240,232,0.5); font-weight:300; }
.footer-col-title { font-size:10px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; color:rgba(245,240,232,0.35); margin-bottom:14px; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:10px; }
.footer-col a { font-size:13px; color:rgba(245,240,232,0.55); text-decoration:none; cursor:pointer; transition:color .2s; font-weight:300; }
.footer-col a:hover { color:var(--cream); }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:12px;
}
.footer-copy { font-size:11px; color:rgba(245,240,232,0.25); }
.footer-tagline { font-family:'Playfair Display',serif; font-size:11px; font-style:italic; color:rgba(196,163,90,0.4); }

/* Social icons */
.social-row { display:flex; gap:10px; margin-top:16px; flex-wrap:wrap; }
.social-btn {
  width:34px; height:34px; border-radius:50%;
  border:1px solid rgba(245,240,232,0.15);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; cursor:pointer; transition:all .2s;
  color:rgba(245,240,232,0.45); text-decoration:none; background:none;
}
.social-btn:hover { border-color:var(--gold); color:var(--gold); }

/* ══════════════════════
   BLOG PAGE
══════════════════════ */
.page-hero-full {
  position:relative; height:60vh; min-height:400px; overflow:hidden;
  display:flex; align-items:flex-end;
}
.page-hero-full-bg {
  position:absolute; inset:0; background-size:cover; background-position:center;
}
.page-hero-full-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}
.page-hero-full-content {
  position:relative; z-index:2; padding:0 60px 60px;
}
.page-hero-full-content .sec-label { color:var(--gold-light); margin-bottom:12px; }
.page-hero-full-content h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(40px, 5vw, 64px); font-weight:400; color:white;
  line-height:1.05; margin-bottom:12px;
}
.page-hero-full-content h1 em { font-style:italic; color:var(--gold-light); }
.page-hero-full-content p { font-size:15px; color:rgba(255,255,255,0.65); font-weight:300; max-width:520px; }

.blog-filter {
  display:flex; gap:0; overflow-x:auto; padding:0 60px;
  border-bottom:1px solid rgba(28,61,46,0.1);
  background:var(--warm-white); position:sticky; top:64px; z-index:100;
  scrollbar-width:none;
}
.blog-filter::-webkit-scrollbar { display:none; }
.filter-btn {
  padding:16px 20px; font-size:12px; font-weight:500; letter-spacing:0.04em;
  color:var(--text-light); background:none; border:none; cursor:pointer;
  border-bottom:2px solid transparent; transition:all .2s; white-space:nowrap;
  font-family:'Inter',sans-serif;
}
.filter-btn:hover { color:var(--forest); }
.filter-btn.active { color:var(--forest); border-bottom-color:var(--forest); }

.blog-content { padding:60px; background:var(--warm-white); }

/* Featured big card */
.feature-big {
  display:grid; grid-template-columns:1.2fr 1fr; gap:0;
  border-radius:16px; overflow:hidden; cursor:pointer;
  box-shadow:0 8px 40px rgba(0,0,0,0.1);
  transition:transform .3s, box-shadow .3s; margin-bottom:60px;
}
.feature-big:hover { transform:translateY(-4px); box-shadow:0 20px 60px rgba(0,0,0,0.15); }
.feature-big-img { overflow:hidden; }
.feature-big-img img { width:100%; height:100%; min-height:440px; object-fit:cover; transition:transform .6s; display:block; }
.feature-big:hover .feature-big-img img { transform:scale(1.04); }
.feature-big-body {
  background:var(--cream); padding:52px 48px;
  display:flex; flex-direction:column; justify-content:center;
}
.card-cat { font-size:10px; font-weight:500; letter-spacing:0.13em; text-transform:uppercase; color:var(--text-light); margin-bottom:12px; }
.card-title { font-family:'Playfair Display',serif; font-size:26px; font-weight:400; line-height:1.3; color:var(--text-dark); margin-bottom:14px; }
.card-desc { font-size:14px; line-height:1.65; color:var(--text-mid); font-weight:300; margin-bottom:28px; }
.read-more {
  font-size:12px; font-weight:500; color:var(--forest); letter-spacing:0.06em;
  display:inline-flex; align-items:center; gap:6px; transition:gap .2s;
  cursor:pointer; background:none; border:none; font-family:'Inter',sans-serif; padding:0;
}
.read-more:hover { gap:10px; }

.cards-3 { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.article-card { cursor:pointer; }
.article-card:hover .card-img img { transform:scale(1.04); }
.card-img { width:100%; aspect-ratio:4/3; border-radius:10px; overflow:hidden; margin-bottom:16px; background:var(--cream-dark); }
.card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; display:block; }

/* ══════════════════════
   SHOP PAGE
══════════════════════ */
.shop-page { padding:80px 60px; background:var(--warm-white); }
.shop-cats { display:flex; gap:10px; margin-bottom:48px; flex-wrap:wrap; }
.cat-btn {
  padding:9px 20px; border-radius:22px; font-size:12px; font-weight:400;
  color:var(--text-mid); background:none; border:1px solid rgba(28,61,46,0.2);
  cursor:pointer; transition:all .2s; font-family:'Inter',sans-serif;
}
.cat-btn:hover,.cat-btn.active { background:var(--forest); color:var(--cream); border-color:var(--forest); }
.shop-full { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.shop-full-card { cursor:pointer; transition:transform .3s; }
.shop-full-card:hover { transform:translateY(-4px); }
.shop-full-card:hover .sfc-img img { transform:scale(1.05); }
.sfc-img { width:100%; aspect-ratio:1; border-radius:12px; overflow:hidden; background:var(--cream-dark); margin-bottom:16px; }
.sfc-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; display:block; }
.sfc-row { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:4px; }
.sfc-name { font-family:'Playfair Display',serif; font-size:18px; font-weight:400; color:var(--text-dark); }
.sfc-price { font-size:14px; color:var(--text-light); }
.sfc-desc { font-size:12px; color:var(--text-light); line-height:1.6; margin-bottom:14px; }
.add-btn {
  width:100%; padding:11px; background:var(--forest); color:var(--cream);
  border:none; border-radius:8px; font-size:12px; font-weight:500;
  cursor:pointer; font-family:'Inter',sans-serif; transition:background .2s; letter-spacing:0.04em;
}
.add-btn:hover { background:var(--forest-mid); }

/* ══════════════════════
   NEWSLETTER PAGE
══════════════════════ */
.nl-page-hero {
  position:relative; height:50vh; min-height:380px; overflow:hidden;
  display:flex; align-items:center; justify-content:center; text-align:center;
}
.nl-page-hero-bg {
  position:absolute; inset:0;
  background-image:url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=85&fit=crop&auto=format');
  background-size:cover; background-position:center;
}
.nl-page-hero-overlay {
  position:absolute; inset:0; background:rgba(28,61,46,0.75);
}
.nl-page-hero-content { position:relative; z-index:2; padding:0 40px; }
.nl-page-hero-content .sec-label { color:var(--gold); margin-bottom:16px; justify-content:center; display:flex; }
.nl-page-hero-content h1 {
  font-family:'Playfair Display',serif; font-size:clamp(40px,5vw,64px);
  font-weight:400; color:var(--cream); margin-bottom:14px; line-height:1.05;
}
.nl-page-hero-content h1 em { font-style:italic; color:var(--gold-light); }
.nl-page-hero-content p { font-size:15px; color:rgba(245,240,232,0.65); font-weight:300; max-width:500px; margin:0 auto 16px; }
.sub-tag { display:inline-block; font-size:12px; color:var(--gold-light); background:rgba(196,163,90,0.15); padding:5px 16px; border-radius:20px; }

.nl-form-section { padding:80px 60px; background:var(--warm-white); display:flex; justify-content:center; }
.nl-form-card { background:white; padding:56px; max-width:560px; width:100%; border-radius:20px; box-shadow:0 20px 60px rgba(28,61,46,0.08); }
.nl-form-card h2 { font-family:'Playfair Display',serif; font-size:32px; font-weight:400; color:var(--forest); margin-bottom:8px; }
.nl-form-card > p { font-size:14px; color:var(--text-light); margin-bottom:32px; line-height:1.6; }
.form-field { margin-bottom:14px; }
.form-field label { display:block; font-size:10px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-light); margin-bottom:6px; }
.form-field input {
  width:100%; padding:12px 16px; background:var(--warm-white);
  border:1px solid rgba(28,61,46,0.12); border-radius:10px;
  font-family:'Inter',sans-serif; font-size:14px; color:var(--text-dark);
  outline:none; transition:border-color .2s;
}
.form-field input:focus { border-color:var(--forest); }
.btn-forest-full {
  width:100%; padding:14px; background:var(--forest); color:var(--cream);
  border:none; border-radius:10px; font-size:13px; font-weight:500;
  cursor:pointer; font-family:'Inter',sans-serif; transition:background .2s; margin-top:4px;
}
.btn-forest-full:hover { background:var(--forest-mid); }
.form-note { font-size:11px; color:var(--text-light); text-align:center; margin-top:10px; }

.issues-section { padding:0 60px 80px; }
.issues-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.issue-card { border:1px solid rgba(28,61,46,0.1); padding:28px; border-radius:12px; cursor:pointer; transition:all .2s; }
.issue-card:hover { border-color:var(--forest); background:var(--cream); transform:translateY(-2px); }
.issue-num { font-size:10px; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.issue-title { font-family:'Playfair Display',serif; font-size:18px; font-weight:400; color:var(--text-dark); margin-bottom:8px; line-height:1.3; }
.issue-desc { font-size:12px; color:var(--text-mid); line-height:1.6; margin-bottom:12px; }
.issue-date { font-size:11px; color:var(--text-light); }

/* ══════════════════════
   ABOUT PAGE
══════════════════════ */
.about-page { background:var(--warm-white); }
.about-split {
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  min-height:80vh;
}
.about-img-side { overflow:hidden; }
.about-img-side img { width:100%; height:100%; object-fit:cover; display:block; }
.about-text-side {
  padding:80px 60px; display:flex; flex-direction:column; justify-content:center;
  background:var(--warm-white);
}
.about-text-side .sec-label { margin-bottom:16px; }
.about-h1 { font-family:'Playfair Display',serif; font-size:clamp(36px,4vw,52px); font-weight:400; color:var(--text-dark); line-height:1.1; margin-bottom:24px; }
.about-h1 em { font-style:italic; color:var(--forest); }
.about-p { font-size:15px; line-height:1.8; color:var(--text-mid); font-weight:300; margin-bottom:16px; }

.vals { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:36px; }
.val { background:var(--cream); padding:24px; border-radius:12px; }
.val-icon { font-size:22px; margin-bottom:10px; }
.val-title { font-family:'Playfair Display',serif; font-size:16px; font-weight:400; color:var(--forest); margin-bottom:6px; }
.val-desc { font-size:13px; line-height:1.6; color:var(--text-mid); }

.contact-section { background:var(--cream); padding:80px 60px; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; }
.contact-info h2 { font-family:'Playfair Display',serif; font-size:40px; font-weight:400; color:var(--text-dark); margin-bottom:16px; line-height:1.1; }
.contact-info h2 em { font-style:italic; color:var(--forest); }
.contact-info > p { font-size:14px; line-height:1.75; color:var(--text-mid); font-weight:300; margin-bottom:36px; }
.ci { display:flex; align-items:flex-start; gap:14px; margin-bottom:20px; }
.ci-icon { width:42px; height:42px; background:var(--forest); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.ci-label { font-size:10px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-light); margin-bottom:3px; }
.ci-val { font-size:14px; color:var(--text-dark); }
.contact-form { background:white; padding:44px; border-radius:16px; box-shadow:0 8px 40px rgba(28,61,46,0.07); }
.contact-form h3 { font-family:'Playfair Display',serif; font-size:26px; font-weight:400; color:var(--text-dark); margin-bottom:24px; }
.cf { margin-bottom:14px; }
.cf label { display:block; font-size:10px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-light); margin-bottom:6px; }
.cf input, .cf textarea {
  width:100%; padding:11px 14px; background:var(--warm-white);
  border:1px solid rgba(28,61,46,0.12); border-radius:8px;
  font-family:'Inter',sans-serif; font-size:13px; color:var(--text-dark);
  outline:none; transition:border-color .2s;
}
.cf input:focus, .cf textarea:focus { border-color:var(--forest); }
.cf textarea { resize:vertical; min-height:110px; }

/* Success */
.success-msg { display:none; font-size:13px; color:var(--forest); background:rgba(28,61,46,0.07); padding:12px 16px; border-radius:8px; margin-top:12px; text-align:center; }

/* ══════════════════════
   MOBILE RESPONSIVE
══════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  nav { padding:0 16px; height:56px; }
  .nav-links { display:none; }
  .nav-logo img { height:36px; }
  .search-btn { display:flex; }

  /* Hero */
  .hero { height:100svh; }
  .hero-content { padding:0 24px 60px; }
  .hero h1 { font-size:clamp(42px, 11vw, 64px); }
  .hero-sub { font-size:15px; }
  .scroll-indicator { right:24px; bottom:24px; }

  /* Stories */
  .stories-section { padding:60px 24px; }
  .story-grid { grid-template-columns:1fr; grid-template-rows:auto; }
  .story-main { grid-row:auto; }
  .story-main .story-img-wrap { height:320px; }
  .story-img-wrap { height:240px; }
  .sec-hdr { flex-direction:column; align-items:flex-start; gap:8px; }

  /* Feature strip */
  .feature-strip { height:50vh; }
  .feature-strip-content { padding:0 24px; }
  .feature-strip-content h2 { font-size:clamp(28px, 7vw, 40px); }

  /* Earth letter */
  .earth-letter { padding:60px 24px; }
  .earth-letter-inner { grid-template-columns:1fr; gap:40px; }

  /* Photo grid */
  .photo-grid { grid-template-columns:1fr 1fr; grid-template-rows:200px 200px; }
  .pg-item:nth-child(1) { grid-column:auto; }
  .pg-item:nth-child(4) { grid-column:auto; }

  /* Shop */
  .shop-section { padding:60px 24px; }
  .shop-grid { grid-template-columns:1fr 1fr; gap:16px; }

  /* Footer */
  footer { padding:48px 24px 32px; }
  .footer-top { grid-template-columns:1fr; gap:28px; }

  /* Blog */
  .page-hero-full-content { padding:0 24px 40px; }
  .blog-filter { padding:0 24px; }
  .blog-content { padding:40px 24px; }
  .feature-big { grid-template-columns:1fr; }
  .feature-big-img img { min-height:260px; }
  .feature-big-body { padding:28px 24px; }
  .cards-3 { grid-template-columns:1fr; gap:24px; }

  /* Shop page */
  .shop-page { padding:60px 24px; }
  .shop-full { grid-template-columns:1fr 1fr; gap:20px; }

  /* Newsletter */
  .nl-form-section { padding:48px 24px; }
  .nl-form-card { padding:32px 24px; }
  .issues-section { padding:0 24px 60px; }
  .issues-grid { grid-template-columns:1fr; gap:14px; }

  /* About */
  .about-split { grid-template-columns:1fr; }
  .about-img-side { height:300px; }
  .about-text-side { padding:48px 24px; }
  .vals { grid-template-columns:1fr 1fr; }
  .contact-section { padding:48px 24px; }
  .contact-grid { grid-template-columns:1fr; gap:40px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size:clamp(36px, 10vw, 52px); }
  .shop-grid { grid-template-columns:1fr; }
  .shop-full { grid-template-columns:1fr; }
  .vals { grid-template-columns:1fr; }
  .hero-btns { flex-direction:column; }
  .btn-white, .btn-ghost-white { width:100%; text-align:center; }
}

/* ══════════════════════
   TRAVEL PAGE
══════════════════════ */
.map-section {
  padding:60px 60px 40px; background:var(--warm-white);
}
.map-intro { margin-bottom:28px; }
.map-desc { font-size:14px; color:var(--text-mid); font-weight:300; margin-top:8px; }

#travel-map {
  width:100%; height:460px; border-radius:14px;
  overflow:hidden; box-shadow:0 8px 40px rgba(28,61,46,0.12);
  border:1px solid rgba(28,61,46,0.08);
}

.map-legend {
  display:flex; align-items:center; gap:8px; margin-top:14px;
}
.legend-dot {
  width:10px; height:10px; background:var(--forest);
  border-radius:50%; border:2px solid white;
  box-shadow:0 0 0 2px var(--forest);
}
.legend-text { font-size:12px; color:var(--text-light); }

.destinations-section { padding:60px; background:var(--warm-white); }
.dest-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; margin-top:0; }

.dest-card {
  border-radius:14px; overflow:hidden; cursor:pointer;
  box-shadow:0 4px 24px rgba(28,61,46,0.08);
  transition:transform .3s, box-shadow .3s;
  background:white;
}
.dest-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(28,61,46,0.14); }
.dest-card:hover .dest-img img { transform:scale(1.06); }

.dest-img {
  position:relative; height:240px; overflow:hidden;
}
.dest-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s; display:block; }
.dest-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.dest-flag {
  position:absolute; top:14px; left:14px; font-size:24px;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.dest-tag {
  position:absolute; top:14px; right:14px;
  background:rgba(28,61,46,0.85); color:var(--cream);
  font-size:10px; font-weight:500; letter-spacing:0.1em;
  text-transform:uppercase; padding:4px 10px; border-radius:20px;
  backdrop-filter:blur(4px);
}
.dest-body { padding:24px; }
.dest-region { font-size:11px; color:var(--text-light); letter-spacing:0.08em; text-transform:uppercase; margin-bottom:6px; }
.dest-name { font-family:'Playfair Display',serif; font-size:26px; font-weight:400; color:var(--text-dark); margin-bottom:10px; }
.dest-teaser { font-size:13px; line-height:1.65; color:var(--text-mid); font-weight:300; margin-bottom:16px; }
.dest-meta { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px; }
.dest-meta span { font-size:11px; color:var(--text-light); background:var(--cream); padding:4px 10px; border-radius:20px; }
.dest-btn {
  background:var(--forest); color:var(--cream);
  border:none; padding:10px 24px; border-radius:24px;
  font-size:12px; font-weight:500; cursor:pointer;
  font-family:'Inter',sans-serif; transition:background .2s;
  letter-spacing:0.04em;
}
.dest-btn:hover { background:var(--forest-mid); }

/* Destination Modal */
.dest-modal {
  display:none; position:fixed; inset:0; z-index:600;
  background:rgba(0,0,0,0.7); backdrop-filter:blur(4px);
  overflow-y:auto; padding:20px;
}
.dest-modal.open { display:flex; align-items:flex-start; justify-content:center; }
.modal-inner {
  background:white; border-radius:16px; overflow:hidden;
  max-width:720px; width:100%; margin:auto;
  box-shadow:0 32px 80px rgba(0,0,0,0.3);
  position:relative;
}
.modal-close {
  position:absolute; top:16px; right:16px; z-index:10;
  width:36px; height:36px; border-radius:50%; background:rgba(0,0,0,0.4);
  color:white; border:none; cursor:pointer; font-size:16px;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s; backdrop-filter:blur(4px);
}
.modal-close:hover { background:rgba(0,0,0,0.7); }
.modal-hero { position:relative; height:280px; overflow:hidden; }
.modal-hero img { width:100%; height:100%; object-fit:cover; display:block; }
.modal-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%); }
.modal-hero-content { position:absolute; bottom:0; left:0; right:0; padding:28px 32px; }
.modal-hero-content h2 { font-family:'Playfair Display',serif; font-size:32px; font-weight:400; color:white; margin-bottom:4px; }
.modal-hero-content p { font-size:13px; color:rgba(255,255,255,0.7); }
.modal-body { padding:32px; }
.modal-intro p { font-size:15px; line-height:1.8; color:var(--text-mid); font-weight:300; margin-bottom:28px; border-bottom:1px solid var(--cream-dark); padding-bottom:28px; }
.modal-sections { display:flex; flex-direction:column; gap:24px; }
.modal-section h4 { font-size:14px; font-weight:500; color:var(--forest); margin-bottom:10px; }
.modal-section p { font-size:13px; line-height:1.75; color:var(--text-mid); font-weight:300; }
.affiliate-links { display:flex; flex-direction:column; gap:10px; margin-bottom:12px; }
.affiliate-btn {
  display:block; padding:12px 20px; background:var(--cream);
  color:var(--forest); text-decoration:none; border-radius:8px;
  font-size:13px; font-weight:500; transition:background .2s;
  border:1px solid rgba(28,61,46,0.1);
}
.affiliate-btn:hover { background:var(--cream-dark); }
.affiliate-note { font-size:11px; color:var(--text-light); font-style:italic; }

/* Mobile travel */
@media (max-width:768px) {
  .map-section { padding:40px 24px 32px; }
  #travel-map { height:300px; }
  .destinations-section { padding:40px 24px; }
  .dest-grid { grid-template-columns:1fr; gap:20px; }
  .modal-inner { margin:10px; }
  .modal-hero { height:220px; }
  .modal-body { padding:24px 20px; }
  .modal-hero-content { padding:20px 24px; }
  .modal-hero-content h2 { font-size:24px; }
}


/* GLOBE */
.globe-section{background:#000510;padding:80px 0 0;position:relative;overflow:hidden;}
.globe-section-bg{
  position:absolute;inset:0;
  background-image:url('https://unpkg.com/three-globe/example/img/night-sky.png');
  background-size:cover;background-position:center;
  background-color:#000510;
}
.globe-section-overlay{
  position:absolute;inset:0;
  background:radial-gradient(ellipse 50% 60% at 50% 50%,rgba(0,10,30,0.15) 0%,rgba(0,0,0,0) 70%);
}
.globe-header{text-align:center;position:relative;z-index:2;padding:0 24px;margin-bottom:40px;}
.globe-header .sec-label{color:var(--gold);justify-content:center;display:flex;margin-bottom:12px;}
.globe-header h2{font-family:'Playfair Display',serif;font-size:clamp(28px,4vw,44px);font-weight:400;color:var(--cream);margin-bottom:12px;line-height:1.15;}
.globe-header h2 em{font-style:italic;color:var(--gold-light);}
.globe-header p{font-size:14px;color:rgba(245,240,232,0.55);font-weight:300;max-width:440px;margin:0 auto;}
.globe-wrap{position:relative;width:100%;display:flex;justify-content:center;align-items:center;padding:20px 0 0;} #globe-container canvas{border-radius:50%;}
.globe-below{width:100%;display:flex;flex-direction:column;align-items:center;padding:20px 24px 52px;gap:14px;position:relative;z-index:2;}
.globe-hint{position:relative;bottom:auto;left:auto;transform:none;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:rgba(245,240,232,0.3);white-space:nowrap;display:flex;align-items:center;gap:8px;}
.globe-hint::before,.globe-hint::after{content:'';width:20px;height:1px;background:rgba(245,240,232,0.15);}
/* globe hint now in .globe-below */
.globe-popup{display:none;position:absolute;z-index:10;background:white;border-radius:14px;padding:20px;width:220px;box-shadow:0 16px 48px rgba(0,0,0,0.3);animation:popFade .2s ease;}
@keyframes popFade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
.globe-popup.visible{display:block;}
.globe-popup-flag{font-size:22px;margin-bottom:6px;}
.globe-popup-region{font-size:10px;letter-spacing:0.1em;text-transform:uppercase;color:var(--text-light);margin-bottom:4px;}
.globe-popup-name{font-family:'Playfair Display',serif;font-size:20px;font-weight:400;color:var(--text-dark);margin-bottom:8px;}
.globe-popup-desc{font-size:12px;line-height:1.55;color:var(--text-mid);margin-bottom:14px;}
.globe-popup-btn{width:100%;padding:9px;background:var(--forest);color:var(--cream);border:none;border-radius:8px;font-size:12px;font-weight:500;cursor:pointer;font-family:'Inter',sans-serif;}
.globe-popup-btn:hover{background:var(--forest-mid);}
.globe-popup-close{position:absolute;top:10px;right:12px;background:none;border:none;cursor:pointer;font-size:14px;color:var(--text-light);}
@media(max-width:768px){.globe-section{padding:60px 0 40px;}.globe-popup{width:180px;padding:16px;}}

/* ══════════════════════
   SOCIAL FOLLOW BAR
══════════════════════ */
.social-bar {
  background:var(--cream-dark);
  padding:40px 60px;
  text-align:center;
  border-top:1px solid rgba(28,61,46,0.08);
  border-bottom:1px solid rgba(28,61,46,0.08);
}
.social-bar-label {
  font-size:11px; font-weight:500; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--text-light);
  margin-bottom:24px;
}
.social-bar-icons {
  display:flex; align-items:center; justify-content:center;
  gap:16px; flex-wrap:wrap;
}
.social-bar-btn {
  display:flex; flex-direction:column; align-items:center;
  gap:6px; text-decoration:none; cursor:pointer;
  transition:transform .2s;
}
.social-bar-btn:hover { transform:translateY(-4px); }
.social-bar-icon {
  width:48px; height:48px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; transition:box-shadow .2s;
  box-shadow:0 2px 12px rgba(0,0,0,0.08);
}
.social-bar-btn:hover .social-bar-icon {
  box-shadow:0 8px 24px rgba(0,0,0,0.15);
}
.social-bar-name {
  font-size:10px; font-weight:500; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--text-light);
}

/* Platform colors */
.si-instagram { background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.si-tiktok { background:#010101; color:white; }
.si-youtube { background:#FF0000; }
.si-facebook { background:#1877F2; }
.si-pinterest { background:#E60023; }
.si-twitter { background:#000000; }
.si-threads { background:#000000; }
.si-snapchat { background:#FFFC00; }
.si-xiaohongshu { background:#FF2442; }
.si-bilibili { background:#00A1D6; }
.si-adobe { background:#FF0000; }
.si-shutterstock { background:#EE2724; }
.si-pond5 { background:#1A1A1A; }

@media(max-width:768px) {
  .social-bar { padding:32px 20px; }
  .social-bar-icons { gap:12px; }
  .social-bar-icon { width:44px; height:44px; font-size:20px; border-radius:12px; }
  .social-bar-name { font-size:9px; }
}


.footer-social-grid {
  display:grid; grid-template-columns:repeat(5,1fr); gap:8px;
}
.fsb {
  width:32px; height:32px; border-radius:8px;
  background:rgba(245,240,232,0.08);
  border:1px solid rgba(245,240,232,0.1);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; color:rgba(245,240,232,0.6);
  text-decoration:none; transition:all .2s;
}
.fsb:hover {
  background:rgba(245,240,232,0.15);
  color:var(--cream);
  border-color:rgba(245,240,232,0.25);
  transform:translateY(-2px);
}


/* ══════════════════════
   FEATURE SLIDESHOW
══════════════════════ */
.feature-slideshow {
  position:relative; height:70vh; min-height:480px;
  overflow:hidden; background:#000;
}
.fslide {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transition:opacity .8s ease;
}
.fslide.active { opacity:1; }
.fslide-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.fslide-content {
  position:absolute; bottom:0; left:0; right:0;
  padding:0 80px 72px; max-width:680px;
}
.fslide-cat {
  font-size:10px; font-weight:500; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--gold-light);
  margin-bottom:14px;
}
.fslide-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,3.5vw,44px); font-weight:400;
  color:white; line-height:1.15; margin-bottom:14px;
}
.fslide-desc {
  font-size:14px; line-height:1.7; color:rgba(255,255,255,0.7);
  font-weight:300; margin-bottom:28px; max-width:480px;
}
.fslide-btn {
  background:white; color:var(--forest);
  padding:12px 28px; border-radius:24px;
  font-size:12px; font-weight:500; border:none;
  cursor:pointer; font-family:'Inter',sans-serif;
  transition:all .2s;
}
.fslide-btn:hover { background:var(--cream); transform:translateY(-2px); }

/* Controls */
.fslide-controls {
  position:absolute; bottom:28px; right:60px;
  display:flex; align-items:center; gap:16px; z-index:10;
}
.fslide-prev, .fslide-next {
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,0.15); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.2);
  color:white; font-size:16px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:all .2s;
}
.fslide-prev:hover, .fslide-next:hover {
  background:rgba(255,255,255,0.3);
}
.fslide-dots { display:flex; gap:6px; align-items:center; }
.fslide-dot {
  width:6px; height:6px; border-radius:50%;
  background:rgba(255,255,255,0.4); cursor:pointer;
  transition:all .3s; border:none; padding:0;
}
.fslide-dot.active {
  background:white; width:20px; border-radius:3px;
}

/* Progress bar */
.fslide-progress {
  position:absolute; bottom:0; left:0; right:0;
  height:2px; background:rgba(255,255,255,0.15);
}
.fslide-progress-bar {
  height:100%; background:var(--gold);
  width:0%; transition:width .1s linear;
}

@media(max-width:768px) {
  .feature-slideshow { height:60vh; min-height:400px; }
  .fslide-content { padding:0 24px 80px; }
  .fslide-controls { right:24px; bottom:24px; }
  .fslide-overlay {
    background:linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%);
  }
}


.el-cover {
  position:relative; border-radius:10px; overflow:hidden;
  margin-bottom:20px; aspect-ratio:1;
  box-shadow:0 8px 32px rgba(0,0,0,0.3);
}
.el-cover img {
  width:100%; height:100%; object-fit:cover; display:block;
}
.el-cover-label {
  position:absolute; bottom:10px; left:12px;
  font-size:10px; font-weight:500; letter-spacing:0.12em;
  text-transform:uppercase; color:rgba(245,240,232,0.8);
  background:rgba(0,0,0,0.4); backdrop-filter:blur(4px);
  padding:4px 10px; border-radius:20px;
}


/* ══════════════════════
   COMBINED BOTTOM SECTION
══════════════════════ */
.combined-section { overflow:hidden; }

/* Stats bar */
.stats-bar {
  background:#1C3D2E;
  padding:44px 40px;
}
/* Stats inside footer */
.stats-bar-footer {
  width:100%; max-width:600px; margin:0 auto;
}
.stats-bar-label {
  font-size:10px; font-weight:500; letter-spacing:.18em;
  text-transform:uppercase; color:#C4A35A;
  text-align:center; margin:0 0 28px;
  font-family:'Inter',sans-serif;
}
.stats-grid {
  display:grid; grid-template-columns:repeat(6,1fr);
  gap:0; max-width:800px; margin:0 auto;
}
.stat-item {
  text-align:center; padding:0 16px;
  border-right:1px solid rgba(245,240,232,0.1);
}
.stat-item:last-child { border-right:none; }
.stat-num {
  font-family:'Playfair Display',serif;
  font-size:clamp(24px,4vw,36px); font-weight:400;
  color:#F5F0E8; margin:0 0 6px; line-height:1;
}
.stat-num.gold { color:#C4A35A; }
.stat-label {
  font-size:10px; font-family:'Inter',sans-serif;
  letter-spacing:.08em; text-transform:uppercase;
  color:rgba(245,240,232,0.4); margin:0; line-height:1.4;
}

/* Daily fact */
.daily-fact {
  background:#F5F0E8;
  padding:64px 40px;
  text-align:center;
  border-bottom:1px solid #EDE7D9;
  position:relative;
}
.daily-fact::before {
  content:'"';
  font-family:'Playfair Display',serif;
  font-size:120px; line-height:1;
  color:#1C3D2E; opacity:0.06;
  position:absolute; top:20px; left:40px;
}
.daily-fact-label {
  font-size:10px; font-weight:500; letter-spacing:.18em;
  text-transform:uppercase; color:#C4A35A;
  margin:0 0 24px; font-family:'Inter',sans-serif;
  display:flex; align-items:center; justify-content:center; gap:12px;
}
.daily-fact-label::before,.daily-fact-label::after {
  content:''; width:32px; height:1px; background:#C4A35A; opacity:.4;
}
.daily-fact-text {
  font-family:'Playfair Display',serif;
  font-size:clamp(20px,2.8vw,30px);
  font-weight:400; color:#1C3D2E;
  line-height:1.5; font-style:italic;
  margin:0 auto 20px; max-width:760px;
}
.daily-fact-sub {
  font-size:11px; color:#9A9A8A;
  font-family:'Inter',sans-serif;
  letter-spacing:.08em; margin:0;
  text-transform:uppercase;
}

/* Affiliate partners */
.affiliate-strip {
  background:#FAF8F4;
  padding:36px 40px;
}
.affiliate-label {
  font-size:10px; font-weight:500; letter-spacing:.18em;
  text-transform:uppercase; color:#9A9A8A;
  text-align:center; margin:0 0 20px;
  font-family:'Inter',sans-serif;
}
.affiliate-pills {
  display:flex; flex-wrap:wrap; gap:10px;
  justify-content:center; margin-bottom:14px;
}
.affiliate-pill {
  background:white; border:0.5px solid #EDE7D9;
  border-radius:8px; padding:9px 18px;
  font-family:'Inter',sans-serif; font-size:12px;
  font-weight:500; color:#1C3D2E;
  text-decoration:none; transition:all .2s;
  cursor:pointer; display:inline-block;
}
.affiliate-pill:hover {
  background:#F5F0E8; border-color:#1C3D2E;
  transform:translateY(-2px);
}
.affiliate-note {
  font-size:11px; color:#9A9A8A;
  font-family:'Inter',sans-serif;
  text-align:center; margin:0;
  font-style:italic;
}

/* Footer with social */
.social-footer {
  background:#1C3D2E;
  padding:28px 40px 24px;
  text-align:center;
}
.social-footer-label {
  font-size:10px; font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:rgba(245,240,232,0.35);
  margin:0 0 14px; font-family:'Inter',sans-serif;
}
.social-footer-grid {
  display:flex; flex-wrap:wrap; gap:8px;
  justify-content:center; margin-bottom:16px;
}
.sfb {
  width:34px; height:34px; border-radius:8px;
  background:rgba(245,240,232,0.08);
  border:1px solid rgba(245,240,232,0.1);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; color:rgba(245,240,232,0.55);
  text-decoration:none; transition:all .2s;
}
.sfb:hover {
  background:rgba(245,240,232,0.15);
  color:#F5F0E8; border-color:rgba(245,240,232,0.25);
  transform:translateY(-2px);
}
.sfb-sm { font-size:9px; font-weight:600; font-family:'Inter',sans-serif; }
.footer-copy-line {
  font-size:11px; color:rgba(245,240,232,0.2);
  font-family:'Inter',sans-serif; margin:0;
}
.footer-copy-line span {
  font-family:'Playfair Display',serif;
  font-style:italic; color:rgba(196,163,90,0.4);
}

/* Mobile */
@media(max-width:768px) {
  .stats-bar { padding:36px 20px; }
  .stats-grid { grid-template-columns:repeat(3,1fr); gap:16px; }
  .stat-item { border-right:none; padding:0; }
  .stat-item:nth-child(1),.stat-item:nth-child(2),.stat-item:nth-child(3) { border-bottom:1px solid rgba(245,240,232,0.1); padding-bottom:16px; }
  .daily-fact { padding:48px 24px; }
  .daily-fact::before { font-size:80px; top:10px; left:16px; }
  .affiliate-strip { padding:32px 20px; }
  .social-footer { padding:24px 20px 20px; }
  .sfb { width:38px; height:38px; }
}
@media(max-width:380px) {
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .affiliate-pill { padding:8px 14px; font-size:11px; }
}


.globe-legend {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px 24px;
  width:100%; max-width:360px;
}
.gl-item { justify-content:center; }
.gl-item {
  display:flex; align-items:center; gap:6px;
  font-size:11px; color:rgba(245,240,232,0.55);
  font-family:'Inter',sans-serif; letter-spacing:0.04em;
}
.gl-dot {
  width:8px; height:8px; border-radius:50%; flex-shrink:0;
  box-shadow:0 0 6px currentColor;
}
@media(max-width:768px) {
  .globe-legend { gap:8px 14px; }
  .gl-item { font-size:10px; }
}


/* Globe pin tooltip card */
.globe-locked-card {
  display:none;
  position:absolute;
  z-index:20;
  background:white;
  border-radius:12px;
  padding:14px 16px;
  width:210px;
  box-shadow:0 4px 24px rgba(0,0,0,0.28);
  animation:tcIn .18s ease;
  pointer-events:all;
}
.globe-locked-card.visible { display:block; }
@keyframes tcIn {
  from { opacity:0; transform:translateY(-6px) scale(0.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
.globe-locked-card::after {
  content:'';
  position:absolute;
  bottom:-7px; left:24px;
  width:14px; height:14px;
  background:white;
  transform:rotate(45deg);
  border-radius:2px;
  box-shadow:3px 3px 6px rgba(0,0,0,0.08);
}
.glc-inner { position:relative; }
.glc-header { margin-bottom:0; }
.glc-close {
  position:absolute; top:-2px; right:0;
  background:none; border:none;
  cursor:pointer; font-size:13px;
  color:#9A9A8A; line-height:1;
  padding:2px;
}
.glc-close:hover { color:#1A1A1A; }
.glc-top { display:flex; align-items:center; gap:8px; margin-bottom:6px; padding-right:20px; }
.glc-flag { font-size:20px; line-height:1; }
.glc-cat {
  font-size:9px; font-weight:600; letter-spacing:.1em;
  text-transform:uppercase; padding:2px 8px;
  border-radius:20px; border:1px solid;
}
.glc-region {
  font-size:10px; text-transform:uppercase;
  letter-spacing:.08em; color:#9A9A8A;
  margin-bottom:3px; font-family:'Inter',sans-serif;
}
.glc-name {
  font-family:'Playfair Display',serif;
  font-size:17px; font-weight:400;
  color:#1C3D2E; line-height:1.2;
  margin-bottom:7px;
}
.glc-body { padding:0; }
.glc-desc {
  font-size:12px; line-height:1.55;
  color:#5A5A4A; margin-bottom:11px;
  font-family:'Inter',sans-serif;
}
.glc-btn {
  width:100%; padding:8px;
  background:#1C3D2E; color:#fff;
  border:none; border-radius:7px;
  font-size:11px; font-weight:500;
  cursor:pointer; font-family:'Inter',sans-serif;
  transition:background .2s;
}
.glc-btn:hover { opacity:0.85; }

@media(max-width:768px) {
  .globe-locked-card {
    position:fixed !important;
    bottom:24px !important;
    left:50% !important;
    top:auto !important;
    transform:translateX(-50%) !important;
    width:calc(100vw - 48px);
    max-width:340px;
    border-radius:14px;
    animation:tcInMob .25s ease;
  }
  .globe-locked-card::after { display:none; }
  @keyframes tcInMob {
    from { opacity:0; transform:translateX(-50%) translateY(16px); }
    to   { opacity:1; transform:translateX(-50%) translateY(0); }
  }
}


/* Fact share buttons */
.fact-share-row {
  display:flex; flex-wrap:wrap; gap:10px;
  justify-content:center; margin-top:24px;
}
.fact-share-btn {
  display:flex; align-items:center; gap:7px;
  padding:10px 18px; border-radius:24px;
  font-size:12px; font-weight:500;
  font-family:'Inter',sans-serif;
  cursor:pointer; transition:all .2s;
  border:1px solid; letter-spacing:.02em;
}
.fact-share-x {
  background:#000; color:white; border-color:#000;
}
.fact-share-x:hover { background:#222; }
.fact-share-ig {
  background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color:white; border-color:transparent;
}
.fact-share-ig:hover { opacity:.88; }
.fact-share-copy {
  background:white; color:#1C3D2E;
  border-color:rgba(28,61,46,0.25);
}
.fact-share-copy:hover { background:var(--cream-dark,#EDE7D9); }

.fact-share-toast {
  display:none; margin-top:12px;
  font-size:12px; color:#1C3D2E;
  font-family:'Inter',sans-serif;
  background:rgba(28,61,46,0.08);
  padding:6px 20px; border-radius:20px;
  display:inline-block; opacity:0;
  transition:opacity .3s;
}
.fact-share-toast.show { opacity:1; }

@media(max-width:768px) {
  .fact-share-row { gap:8px; }
  .fact-share-btn { padding:10px 16px; font-size:12px; }
}
@media(max-width:380px) {
  .fact-share-row { flex-direction:column; align-items:center; }
  .fact-share-btn { width:100%; max-width:240px; justify-content:center; }
}


.el-perk-icon {
  display:flex; align-items:flex-start; gap:10px;
  font-size:14px; color:rgba(245,240,232,0.7); line-height:1.5;
}
.el-perk-icon::before { display:none; }
.el-perk-icon span strong { color:var(--gold-light); font-weight:500; }
.el-issue-name {
  font-family:'Playfair Display',serif;
  font-size:14px; font-style:italic;
  color:var(--gold-light); margin-bottom:16px;
  letter-spacing:0.02em;
}


.daily-fact-author {
  font-family:'Inter',sans-serif;
  font-size:13px; font-weight:500;
  color:var(--forest,#1C3D2E);
  letter-spacing:0.06em;
  margin:0 0 16px;
  opacity:0.6;
}


/* ══════════════════════
   SINGLE POST
══════════════════════ */
.post-hero {
  position:relative; height:60vh; min-height:400px;
  overflow:hidden; display:flex; align-items:flex-end;
}
.post-hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.post-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}
.post-hero-content {
  position:relative; z-index:2; padding:0 60px 48px;
}
.post-category {
  font-size:11px; font-weight:500; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--gold-light);
  margin-bottom:12px;
}
.post-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(32px,5vw,56px); font-weight:400;
  color:white; line-height:1.1; margin-bottom:12px;
}
.post-meta {
  font-size:13px; color:rgba(255,255,255,0.6);
  display:flex; gap:8px; font-family:'Inter',sans-serif;
}
.post-content-wrap {
  max-width:760px; margin:0 auto; padding:60px 40px;
}
.post-content {
  font-family:'Inter',sans-serif; font-size:16px;
  line-height:1.8; color:var(--text-mid);
}
.post-content h2 { font-family:'Playfair Display',serif; font-size:28px; color:var(--text-dark); margin:40px 0 16px; }
.post-content h3 { font-family:'Playfair Display',serif; font-size:22px; color:var(--text-dark); margin:32px 0 12px; }
.post-content p { margin-bottom:20px; }
.post-content img { width:100%; border-radius:8px; margin:24px 0; }
.post-content blockquote {
  border-left:3px solid var(--gold); padding-left:24px;
  font-style:italic; color:var(--forest); margin:32px 0;
  font-family:'Playfair Display',serif; font-size:20px;
}
.post-footer { margin-top:48px; padding-top:24px; border-top:1px solid var(--cream-dark); }
.back-to-blog {
  font-size:13px; color:var(--forest); text-decoration:none;
  font-weight:500; transition:opacity .2s;
}
.back-to-blog:hover { opacity:.7; }

/* Single destination */
.destination-single { padding:60px 40px; max-width:900px; margin:0 auto; }

@media(max-width:768px) {
  .post-hero-content { padding:0 24px 32px; }
  .post-content-wrap { padding:40px 24px; }
}

/* Travel cards as links + live additions */
a.dest-card { display:block; text-decoration:none; color:inherit; }
.dest-tag { color:#fff !important; }
.dest-btn { display:inline-block; }
.dest-empty {
  grid-column:1/-1; text-align:center; padding:60px 20px;
  font-family:'Inter',sans-serif; font-size:15px; color:#9A9A8A;
}

/* ══════════════════════
   DESTINATION PAGE — CINEMATIC DARK (mobile-first)
══════════════════════ */
.dd { background:#10201A; }

.dd-hero { position:relative; height:58vh; min-height:380px; display:flex; align-items:flex-end; }
.dd-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.dd-hero-shade { position:absolute; inset:0; background:linear-gradient(to top, #10201A 0%, rgba(16,32,26,0.45) 45%, rgba(16,32,26,0.15) 100%); }
.dd-hero-content { position:relative; z-index:2; width:100%; padding:0 22px 26px; }
.dd-cat-row { display:flex; align-items:center; gap:9px; flex-wrap:wrap; margin-bottom:10px; }
.dd-dot { width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.dd-cat { font-family:'Inter',sans-serif; font-size:11px; font-weight:500; letter-spacing:0.18em; }
.dd-region { font-family:'Inter',sans-serif; font-size:10px; letter-spacing:0.14em; color:rgba(245,240,232,0.55); }
.dd-title { font-family:'Playfair Display',serif; font-weight:400; font-size:clamp(40px,11vw,68px); line-height:1.02; color:#F5F0E8; margin:0; }

.dd-body { max-width:720px; margin:0 auto; padding:22px 22px 8px; }

.dd-excerpt {
  font-family:'Playfair Display',serif; font-style:italic;
  font-size:17px; line-height:1.6; color:#C4A35A;
  padding-bottom:18px; border-bottom:1px solid rgba(245,240,232,0.1); margin-bottom:18px;
}

.dd-facts { display:flex; flex-wrap:wrap; gap:16px 26px; margin-bottom:30px; }
.dd-fact-label { font-family:'Inter',sans-serif; font-size:9px; letter-spacing:0.16em; text-transform:uppercase; color:rgba(245,240,232,0.4); margin-bottom:4px; }
.dd-fact-val { font-family:'Inter',sans-serif; font-size:13px; color:#F5F0E8; }
.dd-globe-link { color:#C4A35A; text-decoration:none; transition:opacity .2s; }
.dd-globe-link:hover { opacity:.75; }

.dd-content { font-family:'Inter',sans-serif; font-size:15px; line-height:1.85; color:rgba(245,240,232,0.78); }
.dd-content > p:first-of-type { font-family:'Playfair Display',serif; font-size:18px; line-height:1.75; color:rgba(245,240,232,0.94); }
.dd-content p { margin:0 0 20px; }
.dd-content h2, .dd-content h3 {
  font-family:'Playfair Display',serif; font-weight:400; color:#F5F0E8;
  margin:34px 0 6px;
}
.dd-content h2 { font-size:24px; }
.dd-content h3 { font-size:20px; }
.dd-content h2::after, .dd-content h3::after {
  content:''; display:block; width:36px; height:2px; background:#C4A35A; margin-top:10px;
}
.dd-content h2 + p, .dd-content h3 + p { margin-top:14px; }
.dd-content a { color:#C4A35A; text-decoration:underline; text-decoration-color:rgba(196,163,90,0.4); }
.dd-content a:hover { text-decoration-color:#C4A35A; }
.dd-content img { width:100%; height:auto; border-radius:12px; margin:8px 0 20px; }
.dd-content ul, .dd-content ol { margin:0 0 20px; padding-left:22px; }
.dd-content li { margin-bottom:8px; }
.dd-content strong { color:#F5F0E8; font-weight:500; }
.dd-content blockquote {
  margin:26px 0; padding:14px 18px;
  border-left:2px solid #C4A35A; background:rgba(196,163,90,0.08);
  font-style:normal; border-radius:0 10px 10px 0;
}
.dd-content blockquote p { margin:0; font-size:14px; line-height:1.7; color:#F5F0E8; }

.dd-plan { background:#F5F0E8; border-radius:14px; padding:24px 22px; margin:34px 0 36px; }
.dd-plan-label { font-family:'Inter',sans-serif; font-size:9px; letter-spacing:0.18em; text-transform:uppercase; color:#8B6914; margin-bottom:7px; }
.dd-plan-title { font-family:'Playfair Display',serif; font-size:23px; color:#1C3D2E; line-height:1.2; margin-bottom:7px; }
.dd-plan-note { font-family:'Inter',sans-serif; font-size:12px; line-height:1.6; color:#5A5A4A; margin:0 0 16px; }
.dd-plan-btns { display:flex; flex-direction:column; gap:9px; }
.dd-plan-btns a {
  display:block; text-align:center; background:#1C3D2E; color:#F5F0E8;
  font-family:'Inter',sans-serif; font-size:13px; font-weight:500;
  padding:12px 18px; border-radius:22px; text-decoration:none;
  transition:background .2s, transform .15s;
}
.dd-plan-btns a:hover { background:#2A5A42; transform:translateY(-1px); }

.dd-explore { border-top:1px solid rgba(245,240,232,0.08); padding:26px 22px 40px; max-width:920px; margin:0 auto; }
.dd-explore-label { font-family:'Inter',sans-serif; font-size:10px; letter-spacing:0.18em; text-transform:uppercase; color:rgba(245,240,232,0.45); margin-bottom:14px; }
.dd-explore-grid { display:grid; grid-template-columns:1fr; gap:12px; }
.dd-card {
  display:block; text-decoration:none;
  background:rgba(245,240,232,0.05); border:1px solid rgba(245,240,232,0.1);
  border-radius:12px; overflow:hidden;
  transition:transform .25s, border-color .25s;
}
.dd-card:hover { transform:translateY(-3px); border-color:rgba(196,163,90,0.5); }
.dd-card-img { height:120px; background-size:cover; background-position:center; position:relative; }
.dd-card-dot { position:absolute; top:10px; right:10px; width:9px; height:9px; border-radius:50%; }
.dd-card-body { padding:10px 14px 12px; }
.dd-card-name { font-family:'Playfair Display',serif; font-size:17px; color:#F5F0E8; }
.dd-card-region { font-family:'Inter',sans-serif; font-size:10px; letter-spacing:0.08em; text-transform:uppercase; color:rgba(245,240,232,0.45); margin-top:2px; }
.dd-back-row { margin-top:22px; }
.dd-back { font-family:'Inter',sans-serif; font-size:13px; color:#C4A35A; text-decoration:none; }
.dd-back:hover { opacity:.75; }

@media(min-width:768px) {
  .dd-hero { height:68vh; min-height:480px; }
  .dd-hero-content { padding:0 48px 38px; }
  .dd-body { padding:30px 40px 8px; }
  .dd-excerpt { font-size:19px; }
  .dd-content { font-size:16px; }
  .dd-content > p:first-of-type { font-size:20px; }
  .dd-content h2 { font-size:28px; }
  .dd-plan { padding:30px 32px; }
  .dd-plan-btns { flex-direction:row; flex-wrap:wrap; }
  .dd-plan-btns a { flex:1; min-width:180px; }
  .dd-explore { padding:30px 40px 56px; }
  .dd-explore-grid { grid-template-columns:repeat(3, 1fr); }
  .dd-card-img { height:140px; }
}

/* ══════════════════════
   TRAVEL PAGE — OPTION E HYBRID (mobile-first)
══════════════════════ */

/* ── Dark band ── */
.tv-dark { background:#10201A; padding-top:96px; }
.tv-hero { text-align:center; padding:34px 22px 8px; }
.tv-hero-label { color:#C4A35A !important; margin-bottom:12px; }
.tv-title { font-family:'Playfair Display',serif; font-weight:400; font-size:clamp(38px,9vw,56px); line-height:1.05; color:#F5F0E8; margin:0; }
.tv-title em { font-style:italic; color:#C4A35A; }
.tv-sub { font-family:'Inter',sans-serif; font-size:14px; line-height:1.65; color:rgba(245,240,232,0.55); max-width:420px; margin:14px auto 0; }

.tv-pills { display:flex; justify-content:flex-start; gap:8px; padding:22px 22px 20px; overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
.tv-pills::-webkit-scrollbar { display:none; }
.tv-pill {
  flex-shrink:0; display:inline-flex; align-items:center; gap:7px;
  font-family:'Inter',sans-serif; font-size:12px; font-weight:400;
  padding:8px 16px; border-radius:18px; cursor:pointer;
  background:transparent; border:1px solid rgba(245,240,232,0.18);
  color:rgba(245,240,232,0.7); transition:all .2s;
}
.tv-pill:hover { border-color:rgba(196,163,90,0.6); color:#F5F0E8; }
.tv-pill.active { background:#C4A35A; border-color:#C4A35A; color:#10201A; font-weight:500; }
.tv-pill.active .tv-pill-dot { display:none; }
.tv-pill-dot { width:7px; height:7px; border-radius:50%; flex-shrink:0; }

.tv-map-wrap { padding:0 22px; }
#travel-map {
  height:340px; border-radius:14px; overflow:hidden;
  border:1px solid rgba(245,240,232,0.1); background:#0B1614;
}
.tv-map-cap { text-align:center; font-family:'Inter',sans-serif; font-size:11px; color:rgba(245,240,232,0.4); padding:12px 22px 30px; margin:0; }

/* Dark leaflet popups (scoped to travel map) */
.tv-dark .leaflet-popup-content-wrapper { background:#1C3D2E; color:#F5F0E8; border-radius:12px; box-shadow:0 8px 32px rgba(0,0,0,0.5); }
.tv-dark .leaflet-popup-tip { background:#1C3D2E; }
.tv-dark .leaflet-popup-close-button { color:rgba(245,240,232,0.6) !important; }
.tv-dark .leaflet-bar a { background:#1C3D2E; color:#F5F0E8; border-color:rgba(245,240,232,0.15); }
.tv-dark .leaflet-bar a:hover { background:#2A5A42; }

/* ── Light directory ── */
.tv-light { background:#FAF8F4; padding:34px 22px 48px; }
.tv-grid-label {
  font-family:'Inter',sans-serif; font-size:11px; letter-spacing:0.18em;
  text-transform:uppercase; color:#9A9A8A; margin-bottom:16px;
  max-width:1080px; margin-left:auto; margin-right:auto;
}
.tv-grid { display:grid; grid-template-columns:1fr; gap:16px; max-width:1080px; margin:0 auto; }

.tv-card {
  display:block; text-decoration:none; background:#FFFFFF;
  border:1px solid #EDE7D9; border-radius:14px; overflow:hidden;
  transition:transform .25s, box-shadow .25s;
}
.tv-card:hover { transform:translateY(-4px); box-shadow:0 14px 40px rgba(28,61,46,0.12); }
.tv-card-img { height:150px; background-size:cover; background-position:center; position:relative; }
.tv-card-pill {
  position:absolute; top:10px; right:10px;
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(16,32,26,0.78); padding:4px 11px; border-radius:12px;
  font-family:'Inter',sans-serif; font-size:9px; font-weight:500;
  letter-spacing:0.1em; color:#F5F0E8;
}
.tv-card-dot { width:7px; height:7px; border-radius:50%; flex-shrink:0; }
.tv-card-flag { position:absolute; top:8px; left:10px; font-size:18px; }
.tv-card-body { padding:13px 15px 15px; }
.tv-card-name { font-family:'Playfair Display',serif; font-weight:400; font-size:20px; color:#1C3D2E; margin:0; }
.tv-card-region { font-family:'Inter',sans-serif; font-size:10px; letter-spacing:0.08em; text-transform:uppercase; color:#9A9A8A; margin:3px 0 8px; }
.tv-card-teaser { font-family:'Inter',sans-serif; font-size:12.5px; line-height:1.6; color:#5A5A4A; margin:0; }
.tv-card-link { display:inline-block; font-family:'Inter',sans-serif; font-size:12px; font-weight:500; color:#8B6914; margin-top:10px; }

@media(min-width:640px) {
  .tv-grid { grid-template-columns:repeat(2, 1fr); }
  .tv-pills { justify-content:center; flex-wrap:wrap; overflow-x:visible; }
}
@media(min-width:980px) {
  .tv-dark { padding-top:104px; }
  .tv-hero { padding:42px 40px 10px; }
  .tv-map-wrap { padding:0 40px; max-width:1160px; margin:0 auto; }
  #travel-map { height:430px; }
  .tv-light { padding:42px 40px 60px; }
  .tv-grid { grid-template-columns:repeat(3, 1fr); gap:18px; }
  .tv-card-img { height:170px; }
}
