/* ═══════════════════════════════════════════════════════════════
   Visit Quelimane — main.css
   Afro Media Company, Lda — v1.0.0
═══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────── */
:root {
  --green-deep:   #0d3d1a;
  --green-main:   #1b5e2e;
  --green-mid:    #2d7a44;
  --green-light:  #4a9e62;
  --gold:         #c8860a;
  --gold-light:   #e8a82a;
  --gold-pale:    #fdf3dc;
  --ocean:        #0a3d5c;
  --ocean-mid:    #1a6b8a;
  --ocean-light:  #4ca3c4;
  --cream:        #f9f5ee;
  --warm-white:   #fffdf8;
  --charcoal:     #1c1a17;
  --text-mid:     #4a4540;
  --text-light:   #7a736a;
  --header-h:     72px;
  --container:    1140px;
  --radius:       3px;
  --transition:   0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; }

/* ── ACCESSIBILITY ─────────────────────────────── */
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--green-deep); color: #fff; padding: .5rem 1rem; border-radius: var(--radius); }
.skip-link:focus { top: 1rem; z-index: 9999; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── CONTAINER ─────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
@media (max-width: 600px) { .container { padding: 0 1.2rem; } }

/* ── TYPOGRAPHY ────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300; color: var(--green-deep); line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--ocean); }
.section-sub {
  margin-top: 0.8rem; color: var(--text-mid);
  font-size: 1rem; line-height: 1.7; max-width: 520px; margin-inline: auto;
}
.section-header { text-align: center; margin-bottom: 3rem; }

/* ── BUTTONS ───────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 0.9rem 2.2rem; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; border-radius: var(--radius); text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: #fff; }

.btn-outline {
  display: inline-block; background: transparent; color: #fff;
  padding: 0.9rem 2.2rem; font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.45); border-radius: var(--radius);
  text-decoration: none; transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

.btn-outline-green {
  display: inline-block; background: transparent; color: var(--green-main);
  padding: 0.8rem 2rem; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid var(--green-main); border-radius: var(--radius);
  text-decoration: none; transition: all var(--transition);
}
.btn-outline-green:hover { background: var(--green-main); color: #fff; }

/* ── HEADER ────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(13,61,26,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.header-inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.site-logo { text-decoration: none; flex-shrink: 0; }
.logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: #fff; }
.logo-text strong { font-weight: 600; color: var(--gold-light); }
.site-logo img { max-height: 44px; width: auto; }

.primary-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; gap: 2rem; }
.nav-menu li { position: relative; }
.nav-menu a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 0.3rem 0;
  transition: color 0.2s; white-space: nowrap;
}
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--gold-light); }
.nav-menu .current-menu-item > a::after {
  content: ''; display: block; height: 1px; background: var(--gold-light); margin-top: 2px;
}

/* Sub-menu */
.nav-menu .sub-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: rgba(13,61,26,0.98); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius);
  min-width: 180px; padding: 0.5rem 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-4px);
}
.nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-menu .sub-menu a { display: block; padding: 0.5rem 1.2rem; font-size: 0.8rem; text-transform: none; letter-spacing: 0; }

.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.btn-nav-cta {
  background: var(--gold); color: #fff; padding: 0.5rem 1.2rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius); text-decoration: none;
  transition: background var(--transition);
}
.btn-nav-cta:hover { background: var(--gold-light); color: #fff; }

/* Language Switcher */
.lang-switcher { display: flex; gap: 0.4rem; }
.lang-link {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  text-decoration: none; padding: 0.25rem 0.4rem;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 2px;
  transition: all 0.2s;
}
.lang-link.active, .lang-link:hover { color: #fff; border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.1); }

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
}
.hamburger-bar { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 490;
  background: rgba(13,61,26,0.98); backdrop-filter: blur(12px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s;
}
.mobile-nav-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-menu { text-align: center; }
.mobile-menu li { margin: 1rem 0; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: #fff; text-decoration: none; }
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-lang { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; }

/* ── HERO ──────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--green-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroBgZoom 12s ease-out forwards;
}
@keyframes heroBgZoom { to { transform: scale(1); } }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,61,26,0.75) 0%, rgba(10,61,92,0.5) 50%, rgba(13,61,26,0.8) 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: repeating-linear-gradient(-45deg, transparent 0px, transparent 18px, rgba(255,255,255,0.5) 18px, rgba(255,255,255,0.5) 19px);
}
.hero-stripe {
  position: absolute; top: 0; left: 0; bottom: 0; width: 5px;
  background: linear-gradient(to bottom, var(--green-light), var(--gold), #b22020, #fff, #000);
  opacity: 0.6;
}
.hero-diagonal { position: absolute; bottom: -1px; left: 0; right: 0; height: 100px; background: var(--warm-white); clip-path: polygon(0 100%, 100% 100%, 100% 0); }
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 820px; padding: 0 2rem;
  animation: heroFadeUp 1.2s cubic-bezier(0.22,1,0.36,1) both 0.2s;
}
@keyframes heroFadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
.hero-eyebrow {
  display: inline-block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.4rem;
  padding: 0.4rem 1.2rem; border: 1px solid rgba(232,168,42,0.35); border-radius: 1px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 300; line-height: 1.1; color: #fff; letter-spacing: -0.01em; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); font-weight: 300; line-height: 1.7; max-width: 540px; margin: 0 auto 2.8rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.45); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: heroScrollBounce 2.5s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,0.3); }
@keyframes heroScrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── QUICK CATS ────────────────────────────────── */
.quick-cats { background: var(--green-main); position: relative; z-index: 2; }
.cats-row { display: grid; grid-template-columns: repeat(6,1fr); max-width: var(--container); margin: 0 auto; }
.cat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.6rem 1rem; text-decoration: none;
  color: rgba(255,255,255,0.78);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), color var(--transition);
}
.cat-item:last-child { border-right: none; }
.cat-item:hover { background: rgba(255,255,255,0.07); color: var(--gold-light); }
.cat-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.cat-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

/* ── SECTIONS ──────────────────────────────────── */
.section-destinations { background: var(--cream); padding: 6rem 0; }
.section-experiences  { background: var(--warm-white); padding: 6rem 0; }
.section-guide        { background: var(--cream); padding: 5rem 0; }
.section-news         { background: var(--warm-white); padding: 6rem 0; }

/* ── DESTINATIONS GRID ─────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 320px 240px;
  gap: 0.8rem;
}
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; text-decoration: none; }
.dest-card--large { grid-row: 1 / 3; }
.dest-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s var(--transition);
}
.dest-card:hover .dest-card-bg { transform: scale(1.05); }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,61,26,0.85) 0%, rgba(13,61,26,0.1) 55%, transparent 100%); }
.dest-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.6rem 1.4rem; }
.dest-tag { display: block; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.3rem; }
.dest-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: #fff; display: block; line-height: 1.2; }
.dest-card--large .dest-name { font-size: 2rem; }
.dest-desc { color: rgba(255,255,255,0.7); font-size: 0.82rem; line-height: 1.5; margin-top: 0.4rem; }

/* Background gradients for cards */
.bg-zalala  { background: linear-gradient(135deg, #0a3d5c 0%, #1b8a6a 40%, #4ca3c4 100%); }
.bg-mangais { background: linear-gradient(160deg, #0d3d1a 0%, #2d7a44 60%, #4a9e62 100%); }
.bg-idugo   { background: linear-gradient(140deg, #0a3d5c 0%, #1a6b8a 50%, #0d3d1a 100%); }
.bg-rio     { background: linear-gradient(120deg, #1a6b8a 0%, #4ca3c4 50%, #0a3d5c 100%); }
.bg-cultura { background: linear-gradient(145deg, #3d1a0d 0%, #8a4a1a 50%, #c8860a 100%); }
.bg-n1      { background: linear-gradient(135deg, #1b5e2e, #4a9e62); }
.bg-n2      { background: linear-gradient(135deg, #0a3d5c, #1a6b8a); }
.bg-n3      { background: linear-gradient(135deg, #3d1a0d, #8a4a1a); }
.bg-barco    { background: linear-gradient(140deg, #0a3d5c, #4ca3c4); }
.bg-cultura2 { background: linear-gradient(140deg, #3d1a0d, #c8860a); }
.bg-festa    { background: linear-gradient(140deg, #3d0d1a, #b22020); }
.bg-natureza { background: linear-gradient(140deg, #0d3d1a, #4a9e62); }

/* ── EXPERIENCE CARDS ──────────────────────────── */
.exp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.exp-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.exp-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,61,26,0.1); }
.exp-img { height: 200px; position: relative; overflow: hidden; }
.exp-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s; }
.exp-card:hover .exp-img-bg { transform: scale(1.08); }
.exp-body { padding: 1.4rem 1.2rem; }
.exp-icon { width: 36px; height: 36px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 0.8rem; }
.exp-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--green-deep); margin-bottom: 0.4rem; }
.exp-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }
.exp-title a { text-decoration: none; color: inherit; }
.exp-title a:hover { color: var(--ocean-mid); }

/* ── GASTRONOMY STRIP ──────────────────────────── */
.section-gastro {
  background: var(--green-deep); padding: 5rem 0;
  position: relative; overflow: hidden;
}
.section-gastro::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,134,10,0.12) 0%, transparent 70%);
}
.gastro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.gastro-text .section-eyebrow { color: var(--gold-light); }
.gastro-text .section-title { color: #fff; text-align: left; }
.gastro-text .section-title em { color: var(--gold-light); }
.gastro-text p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-top: 1rem; font-size: 0.95rem; }
.gastro-dishes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.dish-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.2rem;
  transition: background var(--transition); cursor: pointer;
}
.dish-card:hover { background: rgba(255,255,255,0.1); }
.dish-emoji { font-size: 1.8rem; margin-bottom: 0.5rem; display: block; }
.dish-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: #fff; }
.dish-origin { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }

/* ── GUIDE GRID ────────────────────────────────── */
.guide-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.guide-item { text-align: center; padding: 1.5rem; }
.guide-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--green-main); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.4rem; }
.guide-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--green-deep); margin-bottom: 0.5rem; }
.guide-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ── NEWS GRID ─────────────────────────────────── */
.news-grid, .archive-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.news-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius);
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.news-img { height: 180px; position: relative; overflow: hidden; }
.news-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s; }
.news-card:hover .news-img-bg { transform: scale(1.06); }
.news-cat-badge {
  position: absolute; top: 0.8rem; left: 0.8rem;
  background: var(--green-main); color: #fff;
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: 1px;
}
.news-body { padding: 1.3rem; }
.news-date { font-size: 0.72rem; color: var(--text-light); margin-bottom: 0.4rem; }
.news-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--green-deep); line-height: 1.35; margin-bottom: 0.5rem; }
.news-title a { text-decoration: none; color: inherit; }
.news-title a:hover { color: var(--ocean-mid); }
.news-excerpt { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }
.news-link { display: inline-block; margin-top: 0.8rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-main); text-decoration: none; border-bottom: 1px solid var(--green-light); padding-bottom: 1px; }

/* ── PAGE HERO MINI ────────────────────────────── */
.page-hero-mini {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--ocean) 100%);
  padding: calc(var(--header-h) + 3rem) 2rem 3.5rem;
}
.page-hero-mini-inner { max-width: var(--container); margin: 0 auto; }
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; color: #fff; line-height: 1.15; margin-top: 0.5rem;
}

/* ── NEWSLETTER ────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--green-deep) 100%);
  padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0px, transparent 24px, rgba(255,255,255,0.02) 24px, rgba(255,255,255,0.02) 25px);
}
.newsletter-inner {
  position: relative; max-width: 640px; margin: 0 auto;
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: center;
}
.newsletter-text { flex: 1 1 220px; }
.newsletter-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: #fff; margin-bottom: 0.4rem; }
.newsletter-text p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.newsletter-form-wrap { flex: 1 1 240px; }
.newsletter-form { display: flex; gap: 0.5rem; }
.nl-input {
  flex: 1; padding: 0.85rem 1rem; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius);
  color: #fff; font-family: inherit; font-size: 0.9rem; outline: none;
}
.nl-input::placeholder { color: rgba(255,255,255,0.4); }
.nl-input:focus { border-color: var(--gold-light); }

/* ── FLAG STRIPE ───────────────────────────────── */
.flag-stripe {
  height: 5px;
  background: linear-gradient(to right,
    #1b5e2e 0%,   #1b5e2e 20%,
    #000    20%,  #000    25%,
    #d4a017 25%,  #d4a017 35%,
    #fff    35%,  #fff    45%,
    #b22020 45%,  #b22020 55%,
    #fff    55%,  #fff    65%,
    #d4a017 65%,  #d4a017 75%,
    #000    75%,  #000    80%,
    #1b5e2e 80%,  #1b5e2e 100%);
}

/* ── FOOTER ────────────────────────────────────── */
.site-footer { background: var(--charcoal); padding: 4rem 2rem 0; color: rgba(255,255,255,0.45); }
.footer-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: #fff; text-decoration: none; display: block; margin-bottom: 0.8rem; }
.footer-logo strong { font-weight: 600; color: var(--gold-light); }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.4); }
.footer-brand small { display: block; margin-top: 1.2rem; font-size: 0.7rem; color: rgba(255,255,255,0.25); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-social a:hover { color: var(--gold-light); }
.footer-col-title { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.65); font-weight: 500; margin-bottom: 1.2rem; }
.footer-nav { padding: 0; }
.footer-nav li { margin-bottom: 0.55rem; }
.footer-nav a { color: rgba(255,255,255,0.38); text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-amco { color: var(--gold); text-decoration: none; }
.footer-amco:hover { color: var(--gold-light); }
.footer-bottom { max-width: var(--container); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0 2rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.73rem; color: rgba(255,255,255,0.22); flex-wrap: wrap; gap: 0.5rem; }

/* ── SINGLE POST / CPT ─────────────────────────── */
.single-hero { height: 70vh; min-height: 500px; position: relative; background-size: cover; background-position: center; }
.single-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,61,26,0.9) 0%, rgba(13,61,26,0.2) 60%, transparent 100%); }
.single-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 3rem 2rem; }
.single-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; color: #fff; margin-top: 0.5rem; }
.single-meta { display: flex; gap: 1.5rem; margin-top: 0.8rem; color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.single-body { padding: 4rem 0; display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }
.single-content { max-width: 720px; line-height: 1.8; color: var(--text-mid); }
.single-content h2,h3 { font-family: 'Cormorant Garamond', serif; color: var(--green-deep); margin: 2rem 0 0.8rem; }
.single-content p { margin-bottom: 1.2rem; }
.single-map h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--green-deep); margin-bottom: 1rem; }
.map-embed-wrap { border-radius: var(--radius); overflow: hidden; }

/* ── ENTRY CONTENT (WP standard) ───────────────── */
.entry-content { padding: 3rem 2rem; max-width: 820px; margin: 0 auto; line-height: 1.8; color: var(--text-mid); }
.entry-content h1,.entry-content h2,.entry-content h3 { font-family: 'Cormorant Garamond', serif; color: var(--green-deep); margin: 2rem 0 0.8rem; }
.entry-content p  { margin-bottom: 1.2rem; }
.entry-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content li { margin-bottom: 0.4rem; }
.entry-content a  { color: var(--ocean-mid); text-decoration: underline; }
.entry-content img { border-radius: var(--radius); margin: 1.5rem 0; }

/* ── ANIMATIONS ────────────────────────────────── */
.vq-animate { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.vq-animate:nth-child(2) { transition-delay: 0.1s; }
.vq-animate:nth-child(3) { transition-delay: 0.2s; }
.vq-animate:nth-child(4) { transition-delay: 0.3s; }
.vq-visible { opacity: 1; transform: none; }

/* ── WORDPRESS ALIGNMENTS ──────────────────────── */
.alignleft  { float: left; margin: 0 2rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 2rem; }
.aligncenter{ text-align: center; margin: 1.5rem auto; }
.alignwide  { max-width: 1300px; margin-inline: auto; }
.alignfull  { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 0.4rem; }

/* ── PAGINATION ────────────────────────────────── */
.page-numbers { list-style: none; display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 2rem; }
.page-numbers li a, .page-numbers li span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius);
  font-size: 0.85rem; color: var(--text-mid); border: 1px solid rgba(0,0,0,0.1);
  text-decoration: none; transition: all var(--transition);
}
.page-numbers .current { background: var(--green-main); color: #fff; border-color: var(--green-main); }
.page-numbers li a:hover { background: var(--green-main); color: #fff; border-color: var(--green-main); }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card--large { grid-row: auto; grid-column: 1 / 3; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .gastro-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .btn-nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .cats-row { grid-template-columns: repeat(3,1fr); }
  .news-grid, .archive-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .single-body { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  :root { --header-h: 60px; }
  .hero h1 { font-size: 2.2rem; }
  .cats-row { grid-template-columns: repeat(2,1fr); }
  .dest-card--large { grid-column: auto; }
  .dest-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .exp-grid, .guide-grid, .news-grid, .archive-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gastro-dishes { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
