/* =========================================================
   Traveling Wanderluster — Brand Stylesheet (Cream Edition)
   Light, warm, editorial. Cream backgrounds, charcoal text,
   terracotta accents.
   ========================================================= */

:root {
  --warm-white: #faf7f2;
  --cream: #f0ebe3;
  --sand: #e8dcc4;
  --charcoal: #2d2a26;
  --deep-brown: #3b2419;
  --terracotta: #C4622D;
  --rust: #8b3e1a;
  --sage: #7a8471;
  --muted: #8b7e72;
  --border: rgba(59, 36, 25, 0.12);
  --border-strong: rgba(59, 36, 25, 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
a { color: inherit; }

::selection { background: var(--terracotta); color: var(--warm-white); }

/* =========================================================
   NAV
   ========================================================= */
nav.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-brown);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--terracotta); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '⌄';
  margin-left: 0.4rem;
  font-size: 0.65rem;
  opacity: 0.6;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  min-width: 180px;
  list-style: none;
  margin-top: 0.6rem;
  box-shadow: 0 12px 24px rgba(59, 36, 25, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.4rem;
  letter-spacing: 0.12em;
}

.nav-cta {
  background: var(--terracotta);
  color: var(--warm-white) !important;
  padding: 0.55rem 1.5rem;
  font-size: 0.74rem !important;
  font-weight: 500;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--rust); color: var(--warm-white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--deep-brown);
  font-size: 1.4rem;
  cursor: pointer;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
  background: var(--warm-white);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(1.03);
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--warm-white) 0%, transparent 40%);
  z-index: 3;
  pointer-events: none;
}

/* Slideshow */
.hero-right .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  z-index: 0;
  object-position: center;
}
.hero-right .hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Per-slide focal points (home page only — tuned to slide-1.jpg etc.) */
body.home .hero-right .hero-slide:nth-child(1) {
  object-position: center top;
  transform: scale(1.25);
  transform-origin: center top;
}
body.home .hero-right .hero-slide:nth-child(2) { object-position: center 80%; }
body.home .hero-right .hero-slide:nth-child(5) { object-position: center; }

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--deep-brown);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s ease 0.25s both;
}

.hero-headline em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-subhead {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 44ch;
  margin-bottom: 2.8rem;
  animation: fadeUp 0.7s ease 0.4s both;
}

.hero-subhead strong { color: var(--deep-brown); font-weight: 500; }

.hero.hero-compact { min-height: 70vh; }
.hero.hero-compact .hero-left { padding: 7rem 4rem 5rem; }

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.55s both;
}

.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--warm-white);
  padding: 0.9rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--rust); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border-strong);
  color: var(--deep-brown);
  padding: 0.9rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--terracotta); background: rgba(196, 98, 45, 0.05); }

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 7rem 4rem;
  border-bottom: 1px solid var(--border);
}

.section:nth-of-type(even) { background: var(--cream); }

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.4rem;
}

.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--deep-brown);
  margin-bottom: 1.5rem;
}
.section-headline em { font-style: italic; color: var(--terracotta); }

.section-body {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 58ch;
}
.section-body strong { color: var(--deep-brown); font-weight: 500; }

.section-header {
  max-width: 720px;
  margin-bottom: 4rem;
}

/* =========================================================
   COUNTRY TILES
   ========================================================= */
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 2rem;
  background: var(--warm-white);
}

.country-tile {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  aspect-ratio: 1/1;
  border-right: 1px solid var(--border);
  background: var(--cream);
}
.country-tile:last-child { border-right: none; }

.country-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(1.03);
  transition: transform 0.7s ease, opacity 0.4s ease;
}

/* Per-tile focal points */
.country-tile:nth-child(2) img { object-position: center 68%; }
.country-tile:nth-child(3) img { object-position: 40% center; }

.country-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 28, 25, 0.92) 0%, rgba(30, 28, 25, 0.78) 35%, rgba(30, 28, 25, 0.4) 70%, rgba(30, 28, 25, 0.1) 100%);
}

.country-tile:hover img { transform: scale(1.04); }

.country-tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  color: var(--warm-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.country-tile-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #e89968;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.country-tile-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.country-tile-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.country-tile-link {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e89968;
  border-bottom: 1px solid rgba(232, 153, 104, 0.7);
  padding-bottom: 2px;
  font-weight: 500;
}

/* =========================================================
   POST CARDS
   ========================================================= */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.posts-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  background: var(--warm-white);
}

.post-card:nth-child(3n) { border-right: none; }
.posts-grid-2 .post-card:nth-child(3n) { border-right: 1px solid var(--border); }
.posts-grid-2 .post-card:nth-child(2n) { border-right: none; }
.post-card:hover { background: rgba(196, 98, 45, 0.04); }

.post-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream);
}
.post-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(1.03);
  transition: transform 0.6s ease;
}
.post-card:hover .post-card-image img { transform: scale(1.04); }

.post-card-body { padding: 2rem 1.8rem; }

.post-card-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
}

.post-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.9rem;
  color: var(--deep-brown);
}

.post-card-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--muted);
}

/* =========================================================
   FEATURED STORY (split block)
   ========================================================= */
.featured-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  margin-top: 3rem;
  background: var(--warm-white);
}

.featured-image {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: var(--cream);
}
.featured-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.featured-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter {
  padding: 6rem 4rem;
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.newsletter .section-headline { max-width: 28ch; margin: 0 auto 1.5rem; }
.newsletter .section-body { max-width: 52ch; margin: 0 auto 2.5rem; text-align: center; }

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--border-strong);
  background: var(--warm-white);
}

.newsletter-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.9rem 1.2rem;
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
}
.newsletter-form input[type="email"]::placeholder { color: var(--muted); }

.newsletter-form button {
  background: var(--terracotta);
  color: var(--warm-white);
  border: none;
  padding: 0.9rem 2rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--rust); }

.newsletter-fine {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer.site-footer {
  padding: 3rem 4rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  background: var(--deep-brown);
  color: var(--cream);
  border-top: 1px solid var(--border);
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(240, 235, 227, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--warm-white); }

.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--warm-white);
  margin-bottom: 1rem;
  display: block;
  text-decoration: none;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(240, 235, 227, 0.7);
  line-height: 1.7;
  max-width: 36ch;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(240, 235, 227, 0.12);
  margin-top: 2rem;
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.72rem; color: rgba(240, 235, 227, 0.55); }

.footer-social {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}
.footer-social a {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.7);
}

/* =========================================================
   PAGE: ABOUT
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--cream);
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(1.03);
}

.about-prose p {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 1.4rem;
  max-width: 60ch;
}

.about-prose p strong { color: var(--terracotta); font-weight: 600; }

.about-prose em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--terracotta);
  font-size: 1.05em;
  font-weight: 500;
}

/* =========================================================
   PAGE: CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 3rem;
  background: var(--warm-white);
}
.contact-info { padding: 4rem; border-right: 1px solid var(--border); }
.contact-form { padding: 4rem; background: var(--cream); }

.form-row { margin-bottom: 1.4rem; }
.form-row label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  background: var(--warm-white);
  border: 1px solid var(--border-strong);
  color: var(--charcoal);
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.form-row textarea { min-height: 140px; resize: vertical; }

/* =========================================================
   BLOG POST PAGE
   ========================================================= */
.post-page { padding-top: 72px; }

.post-hero {
  padding: 6rem 4rem 4rem;
  max-width: 920px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.post-hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.6rem;
}

.post-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--deep-brown);
  margin-bottom: 1.4rem;
}
.post-hero-title em { font-style: italic; color: var(--terracotta); }

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-meta .dot {
  width: 4px; height: 4px;
  background: var(--terracotta);
  border-radius: 50%;
}

.post-hero-image {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  justify-content: center;
}
.post-hero-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 600px;
  background: var(--cream);
  filter: saturate(0.85) brightness(1.03);
}

/* Article body */
.post-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 4rem 6rem;
  color: var(--charcoal);
}

.post-article > p,
.post-article > ul,
.post-article > ol,
.post-article > blockquote {
  margin-bottom: 1.6rem;
}

.post-article p {
  font-size: 1.04rem;
  line-height: 1.9;
  color: var(--charcoal);
}

.post-article p strong { color: var(--deep-brown); font-weight: 500; }
.post-article p em { font-style: italic; color: var(--rust); }

.post-article a {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 98, 45, 0.4);
  transition: border-color 0.2s, color 0.2s;
}
.post-article a:hover { color: var(--rust); border-bottom-color: var(--rust); }

.post-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--deep-brown);
  margin: 3.5rem 0 1.4rem;
  padding-top: 1rem;
}

.post-article h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--deep-brown);
  margin: 2.6rem 0 1rem;
}

.post-article ul, .post-article ol {
  padding-left: 1.5rem;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--charcoal);
}
.post-article li {
  margin-bottom: 0.6rem;
}
.post-article li strong { color: var(--deep-brown); font-weight: 500; }

.post-article blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 1rem 0 1rem 1.6rem;
  margin: 2.4rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--deep-brown);
}
.post-article blockquote p { font-size: inherit; line-height: inherit; color: inherit; }
.post-article blockquote strong { font-style: normal; }

.post-article hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem auto;
  max-width: 80px;
}

.post-article figure {
  margin: 2.4rem 0;
}
.post-article figure img {
  width: 100%;
  border: 1px solid var(--border);
}
.post-article figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
  margin-top: 0.8rem;
  font-style: italic;
}

/* Back to country link */
.post-footer-nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 4rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.post-back-link {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 98, 45, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.post-back-link:hover { color: var(--rust); }

.post-share {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   VIDEO CARD (in-post YouTube link)
   ========================================================= */
.video-card {
  display: block;
  margin: 2.8rem 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.post-article a.video-card { border-bottom: 1px solid var(--border); }
.post-article a.video-card:hover { border-color: var(--terracotta); color: inherit; }
.video-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(59, 36, 25, 0.10); }

.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--charcoal);
}
.video-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(1.03);
  transition: transform 0.5s, filter 0.4s;
  display: block;
}
.video-card:hover .video-card-thumb img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}
.video-card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  background: rgba(196, 98, 45, 0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.2s;
}
.video-card:hover .video-card-play {
  background: var(--rust);
  transform: translate(-50%, -50%) scale(1.06);
}
.video-card-play svg { width: 22px; height: 22px; fill: white; margin-left: 3px; }

.video-card-body {
  padding: 1.1rem 1.4rem 1.3rem;
}
.video-card-eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
  font-family: 'DM Sans', sans-serif;
}
.video-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--deep-brown);
  line-height: 1.3;
  margin: 0;
}

/* Homepage Watch grid — uses .post-card pattern with play overlay */
.post-card-video .post-card-image { position: relative; }
.post-card-video .post-card-image::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(196, 98, 45, 0.92) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M8 5v14l11-7z'/></svg>") center/22px no-repeat;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: background-color 0.2s, transform 0.2s;
  pointer-events: none;
}
.post-card-video:hover .post-card-image::after {
  background-color: var(--rust);
  transform: translate(-50%, -50%) scale(1.06);
}

@media (max-width: 960px) {
  .post-hero { padding: 4rem 1.5rem 3rem; }
  .post-hero-image { padding: 0 1.5rem; }
  .post-article { padding: 3rem 1.5rem 4rem; }
  .post-footer-nav { padding: 2rem 1.5rem 4rem; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .video-card-play { width: 56px; height: 56px; }
  .video-card-play svg { width: 18px; height: 18px; }
  .video-card-body { padding: 1rem 1.2rem 1.2rem; }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   LEGAL PAGE (privacy policy, terms)
   ========================================================= */
.legal-page { padding-top: 72px; }
.legal-hero {
  padding: 5rem 4rem 3rem;
  max-width: 820px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--deep-brown);
  margin-bottom: 0.8rem;
}
.legal-hero p.updated {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 4rem 5rem;
  color: var(--charcoal);
}
.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--deep-brown);
  margin: 2.5rem 0 1rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.legal-content li { margin-bottom: 0.5rem; line-height: 1.75; }
.legal-content a {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 98, 45, 0.4);
}

@media (max-width: 960px) {
  .legal-hero { padding: 3rem 1.5rem 2rem; }
  .legal-content { padding: 2rem 1.5rem 3rem; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  nav.main-nav { padding: 1rem 1.5rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--warm-white);
    padding: 1.5rem;
    gap: 1.4rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; padding: 0; min-width: auto; border: none; margin: 0.5rem 0 0 1rem; }

  .hero { grid-template-columns: 1fr; padding-top: 72px; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 1.5rem 4rem; }

  .section { padding: 4rem 1.5rem; }

  .country-grid { grid-template-columns: 1fr; }
  .country-tile { border-right: none; border-bottom: 1px solid var(--border); aspect-ratio: 1/1; }
  .country-tile:last-child { border-bottom: none; }
  .country-tile-content { padding: 1.5rem; }
  .country-tile-title { font-size: 1.8rem; margin-bottom: 0.6rem; }
  .country-tile-desc { font-size: 0.85rem; margin-bottom: 1rem; }

  .posts-grid { grid-template-columns: 1fr; }
  .post-card { border-right: none; }

  .featured-split { grid-template-columns: 1fr; }
  .featured-image { min-height: 280px; }
  .featured-content { padding: 2.5rem 1.5rem; }

  .newsletter { padding: 4rem 1.5rem; }
  .newsletter-form { flex-direction: column; }

  footer.site-footer {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 2rem;
  }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 2.5rem 1.5rem; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); }
}
