/* ============================================================
   TERARA — design system
   Palette: espresso ink / parchment / honey amber / madder red /
   church-forest green. Type: Fraunces display, Inter UI,
   Noto Serif+Sans Ethiopic for Amharic.
   ============================================================ */
:root {
  --ink: #201409;
  --ink-2: #4a3b24;
  --ink-soft: #6d5c40;
  --paper: #f7f0e2;
  --paper-2: #efe4cd;
  --paper-3: #e6d8bb;
  --night: #171008;
  --night-2: #241a0e;
  --amber: #d99a2b;
  --honey: #e8b54d;
  --copper: #b4642a;
  --madder: #a93226;
  --forest: #1f6f4e;
  --cream: #fbf7ee;
  --tb1: var(--amber);
  --tb2: var(--madder);
  --tb3: var(--forest);
  --serif: "Fraunces", "Noto Serif Ethiopic", Georgia, serif;
  --sans: "Inter", "Noto Sans Ethiopic", system-ui, sans-serif;
  --ethioserif: "Noto Serif Ethiopic", "Fraunces", serif;
  --wrap: 1200px;
  --rad: 18px;
  --shadow-lg: 0 30px 60px -20px rgba(32, 20, 9, 0.35);
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
.lang-am body, html.lang-am body { font-family: var(--sans); }
html.lang-am h1, html.lang-am h2, html.lang-am h3, html.lang-am .hero-title, html.lang-am .section-title { font-family: var(--ethioserif); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--copper); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--madder); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 620; line-height: 1.12; margin: 0 0 0.5em; letter-spacing: -0.01em; text-wrap: balance; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 4vw, 44px); }
.wrap-narrow { max-width: 780px; }

::selection { background: var(--amber); color: var(--night); }

/* ---------- texture: paper grain over everything ---------- */
body::before {
  content: "";
  position: absolute; inset: 0; min-height: 100vh;
  pointer-events: none; z-index: 4;
  opacity: 0.5;
  background-image: url("/assets/img/noise.png");
  background-size: 128px 128px;
}
body { position: relative; }

/* ---------- skip link / progress ---------- */
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--night); color: var(--cream); padding: 10px 16px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 8px; }
.progress-bar { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60; pointer-events: none; }
.progress-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--amber), var(--madder)); transition: width 80ms linear; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.45s var(--ease-out), box-shadow 0.45s, transform 0.45s var(--ease-out);
  color: var(--cream);
}
.site-header.scrolled { background: rgba(23, 16, 8, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(232, 181, 77, 0.16); }
.no-hero .site-header { background: rgba(23, 16, 8, 0.94); }
.site-header.hidden { transform: translateY(-110%); }
.header-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.logo { display: inline-flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; }
.logo svg { width: 38px; height: 38px; }
.logo-word { font-family: var(--serif); font-weight: 640; font-size: 1.36rem; letter-spacing: 0.14em; display: inline-flex; flex-direction: column; line-height: 1; }
.logo-sub { font-style: normal; font-family: var(--serif); font-weight: 600; font-size: 0.64rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--honey); margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.main-nav a { color: inherit; text-decoration: none; font-weight: 560; font-size: 0.94rem; letter-spacing: 0.02em; position: relative; padding: 6px 0; }
.main-nav a:not(.lang-switch)::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--honey); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease-out); }
.main-nav a:hover::after, .main-nav a[aria-current]::after { transform: scaleX(1); transform-origin: left; }
.lang-switch { border: 1.4px solid rgba(232, 181, 77, 0.55); border-radius: 999px; padding: 7px 16px !important; font-family: var(--ethioserif); transition: background 0.3s, color 0.3s; }
.lang-switch:hover { background: var(--honey); color: var(--night) !important; }
.nav-toggle { display: none; }

/* mobile nav */
@media (max-width: 920px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5.5px; background: none; border: 0; cursor: pointer; padding: 10px; z-index: 70; }
  .nav-toggle span { width: 26px; height: 2.4px; background: currentColor; border-radius: 2px; transition: transform 0.35s var(--ease-out), opacity 0.3s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.9px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.9px) rotate(-45deg); }
}
.nav-overlay {
  position: fixed; inset: 0; z-index: 49; background: var(--night);
  display: grid; place-items: center;
  clip-path: circle(0 at calc(100% - 52px) 38px);
  transition: clip-path 0.65s var(--ease-out);
  visibility: hidden;
}
.nav-overlay.open { clip-path: circle(150% at calc(100% - 52px) 38px); visibility: visible; }
.nav-overlay nav { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.nav-overlay a { color: var(--cream); text-decoration: none; font-family: var(--serif); font-size: clamp(1.7rem, 6vw, 2.6rem); padding: 8px 20px; opacity: 0; transform: translateY(18px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.nav-overlay.open a { opacity: 1; transform: none; }
.nav-overlay.open a:nth-child(1) { transition-delay: 0.12s; } .nav-overlay.open a:nth-child(2) { transition-delay: 0.18s; }
.nav-overlay.open a:nth-child(3) { transition-delay: 0.24s; } .nav-overlay.open a:nth-child(4) { transition-delay: 0.3s; }
.nav-overlay.open a:nth-child(5) { transition-delay: 0.36s; } .nav-overlay.open a:nth-child(6) { transition-delay: 0.42s; }
.nav-overlay.open a:nth-child(7) { transition-delay: 0.48s; } .nav-overlay.open a:nth-child(8) { transition-delay: 0.54s; }
.nav-overlay a:hover { color: var(--honey); }
.tibeb-overlay { position: absolute; bottom: 0; left: 0; right: 0; }

/* ---------- tibeb band ---------- */
.tibeb { height: 16px; overflow: hidden; opacity: 0.9; }
.tibeb svg { width: 100%; height: 100%; display: block; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 620; font-size: 0.98rem; text-decoration: none; border-radius: 999px; padding: 15px 30px; transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background 0.3s, color 0.3s; letter-spacing: 0.01em; }
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-amber { background: linear-gradient(135deg, var(--honey), var(--amber)); color: var(--night); box-shadow: 0 10px 26px -10px rgba(217, 154, 43, 0.65); }
.btn-amber:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 34px -10px rgba(217, 154, 43, 0.8); color: var(--night); }
.btn-ghost { border: 1.5px solid rgba(251, 247, 238, 0.5); color: var(--cream); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--honey); color: var(--honey); transform: translateY(-2px); }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--cream); overflow: clip; isolation: isolate; }
.hero-media, .hub-hero-media, .article-hero-media { position: absolute; inset: -12% 0; z-index: -2; will-change: transform; }
.hero-img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s var(--ease-out) both; }
@keyframes kenburns { from { transform: scale(1.14); } to { transform: scale(1); } }
.hero-scrim { position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(23,16,8,0.5) 0%, rgba(23,16,8,0.08) 34%, rgba(23,16,8,0.24) 60%, rgba(23,16,8,0.9) 100%),
    radial-gradient(120% 70% at 20% 88%, rgba(23,16,8,0.55), transparent 60%);
}
.hero-geez {
  position: absolute; right: -1.5vw; top: 9vh; z-index: -1;
  font-family: var(--ethioserif); font-weight: 800;
  font-size: clamp(6rem, 17vw, 15rem); line-height: 0.9;
  color: transparent; -webkit-text-stroke: 1.5px rgba(232, 181, 77, 0.34);
  writing-mode: vertical-rl; letter-spacing: 0.1em; user-select: none;
  animation: geezDrift 14s ease-in-out infinite alternate;
}
@keyframes geezDrift { from { transform: translateY(-8px); } to { transform: translateY(14px); } }
@media (max-width: 760px) { .hero-geez { opacity: 0.55; font-size: 5.2rem; top: 12vh; } }
.hero-inner { padding-block: 0 clamp(80px, 12vh, 130px); position: relative; width: 100%; }
.hero-kicker, .section-kicker { display: inline-flex; align-items: center; gap: 12px; font-size: 0.82rem; font-weight: 640; letter-spacing: 0.22em; text-transform: uppercase; color: var(--honey); margin: 0 0 18px; }
.hero-kicker::before, .section-kicker::before { content: ""; width: 34px; height: 1.6px; background: currentColor; }
.hero-title { font-size: clamp(2.6rem, 7.2vw, 5.6rem); font-weight: 560; margin: 0 0 22px; max-width: 15ch; }
.hero-title em { font-style: italic; font-weight: 480; color: var(--honey); }
.hero-sub { max-width: 56ch; font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: rgba(251, 247, 238, 0.88); margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.scroll-cue { position: absolute; bottom: 26px; right: clamp(20px, 4vw, 44px); display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(251,247,238,0.75); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; }
.scroll-cue i { width: 1.5px; height: 52px; background: linear-gradient(180deg, var(--honey), transparent); display: block; animation: cue 2s var(--ease-out) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* split-text reveal (hidden states apply only when JS is running: html.js) */
[data-split] .w { display: inline-block; overflow: clip; vertical-align: bottom; }
[data-split] .w > span { display: inline-block; transform: translateY(115%) rotate(4deg); transform-origin: left bottom; }
.split-ready [data-split] .w > span { animation: riseUp 0.9s var(--ease-out) forwards; animation-delay: calc(var(--wi) * 65ms + 150ms); }
@keyframes riseUp { to { transform: none; } }
html.js .reveal-line { opacity: 0; transform: translateY(26px); }
.split-ready .reveal-line { animation: fadeRise 0.9s var(--ease-out) forwards; animation-delay: var(--d, 350ms); }
@keyframes fadeRise { to { opacity: 1; transform: none; } }

/* ---------- marquee ---------- */
.marquee { background: var(--night); color: var(--paper-2); overflow: hidden; padding: 17px 0; border-block: 1px solid rgba(232,181,77,0.25); font-family: var(--serif); font-size: 1.06rem; letter-spacing: 0.06em; }
.marquee-track { display: inline-block; white-space: nowrap; animation: marquee 46s linear infinite; will-change: transform; }
.mq-x { color: var(--amber); margin: 0 1.4em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding-block: clamp(72px, 10vw, 128px); position: relative; }
.section-first { padding-top: clamp(130px, 16vw, 180px); }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px 40px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-title { font-size: clamp(1.9rem, 4.6vw, 3.4rem); font-weight: 560; margin: 0; flex: 1 1 auto; }
.section-head .section-kicker { width: 100%; margin-bottom: 4px; color: var(--copper); }
.section-more { font-weight: 620; text-decoration: none; color: var(--copper); white-space: nowrap; margin-left: auto; }
.section-dark { background: var(--night); color: var(--paper); }
.section-dark .section-title { color: var(--cream); }
.section-dark .section-kicker { color: var(--honey); }
.tibeb-top, .tibeb-top2, .tibeb-top3 { position: absolute; top: 0; left: 0; right: 0; }

/* tours & day trips strip */
.tours-band { overflow: clip; }
.tours-chips { display: flex; flex-wrap: wrap; gap: 14px; }
.tour-chip { display: inline-flex; align-items: center; gap: 11px; background: var(--night-2); border: 1.4px solid rgba(232,181,77,0.28); border-radius: 999px; padding: 13px 22px 13px 15px; color: var(--paper); text-decoration: none; font-family: var(--serif); font-size: 1.05rem; transition: transform 0.4s var(--ease-out), border-color 0.3s, background 0.3s; }
.tour-chip-pin { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--honey), var(--amber)); color: var(--night); }
.tour-chip-pin svg { width: 17px; height: 17px; }
.tour-chip:hover { transform: translateY(-4px); border-color: var(--honey); background: #2c2011; color: var(--honey); }

/* reveal on scroll (hidden only under html.js so no-JS users see everything) */
html.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); transition-delay: var(--d, 0ms); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal-clip { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease-out); }
html.js .reveal-clip.in { clip-path: inset(0 0 0% 0); }

/* ---------- cards ---------- */
.feature-grid { display: grid; gap: 26px; grid-template-columns: repeat(12, 1fr); }
.dest-card--big { grid-column: span 12; }
.feature-grid .dest-card:not(.dest-card--big) { grid-column: span 6; }
.dest-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); }
@media (max-width: 860px) { .feature-grid .dest-card { grid-column: span 12 !important; } }

.dest-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--cream); border-radius: var(--rad); overflow: clip;
  text-decoration: none; color: var(--ink);
  box-shadow: 0 2px 0 rgba(32,20,9,0.06), 0 14px 34px -22px rgba(32,20,9,0.35);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  transform-style: preserve-3d;
}
.dest-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.section-dark .dest-card { background: var(--night-2); color: var(--paper); }
.dest-num {
  position: absolute; top: 14px; left: 18px; z-index: 3;
  font-family: var(--serif); font-style: italic; font-size: 1.05rem; font-weight: 560;
  color: var(--cream); background: rgba(23,16,8,0.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(232,181,77,0.4); border-radius: 999px; padding: 4px 13px;
}
.dest-media { position: relative; aspect-ratio: 16/9.4; overflow: clip; }
.dest-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.dest-card:hover .dest-media img { transform: scale(1.07); }
.dest-sheen { position: absolute; inset: 0; background: linear-gradient(112deg, transparent 42%, rgba(255,244,214,0.26) 50%, transparent 58%); transform: translateX(-130%); transition: transform 1s var(--ease-out); }
.dest-card:hover .dest-sheen { transform: translateX(130%); }
.dest-card--big .dest-media { aspect-ratio: 21/9.5; }
.dest-body { padding: 26px 28px 28px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.dest-hub { font-size: 0.74rem; font-weight: 680; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); }
.section-dark .dest-hub { color: var(--honey); }
.dest-body h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin: 0; }
.dest-card--big .dest-body h3 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
.dest-body p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.section-dark .dest-body p { color: rgba(247,240,226,0.72); }
.dest-cta { margin-top: auto; padding-top: 12px; display: inline-flex; align-items: center; gap: 8px; font-weight: 640; font-size: 0.92rem; color: var(--copper); }
.section-dark .dest-cta { color: var(--honey); }
.dest-cta svg { width: 17px; height: 17px; transition: transform 0.35s var(--ease-out); }
.dest-card:hover .dest-cta svg { transform: translateX(5px); }

/* ---------- stats ---------- */
.stats-band { overflow: clip; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 34px; position: relative; z-index: 1; }
.stat { text-align: center; padding: 10px; }
.stat-n { font-family: var(--serif); font-size: clamp(2.6rem, 5.4vw, 4.2rem); font-weight: 560; color: var(--honey); display: block; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-l { display: block; margin-top: 12px; color: rgba(247,240,226,0.75); font-size: 0.93rem; }
.geez-watermark { position: absolute; inset: auto -2vw -6vh auto; font-family: var(--ethioserif); font-weight: 800; font-size: clamp(9rem, 24vw, 20rem); color: rgba(232,181,77,0.05); line-height: 1; pointer-events: none; user-select: none; }

/* ---------- split band ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split-media { border-radius: var(--rad); overflow: clip; box-shadow: var(--shadow-lg); transform-style: preserve-3d; }
.split-media img { width: 100%; height: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.split-body p { color: rgba(247,240,226,0.82); max-width: 54ch; }
.exp-links { margin-top: 28px; display: flex; flex-direction: column; }
.exp-link { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 4px; color: var(--cream); text-decoration: none; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.45rem); border-top: 1px solid rgba(232,181,77,0.28); transition: padding-left 0.4s var(--ease-out), color 0.3s; }
.exp-link:last-child { border-bottom: 1px solid rgba(232,181,77,0.28); }
.exp-link svg { width: 22px; height: 22px; flex: none; color: var(--honey); transition: transform 0.4s var(--ease-out); }
.exp-link:hover { color: var(--honey); padding-left: 14px; }
.exp-link:hover svg { transform: translateX(6px); }

/* ---------- plan cards ---------- */
.plan-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.plan-card { position: relative; background: var(--cream); border: 1.4px solid var(--paper-3); border-radius: var(--rad); padding: 30px 26px 24px; text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: 10px; transition: transform 0.45s var(--ease-out), border-color 0.3s, box-shadow 0.45s; overflow: clip; }
.plan-card::after { content: ""; position: absolute; inset: auto 0 0 0; height: 4px; background: linear-gradient(90deg, var(--amber), var(--madder), var(--forest)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out); }
.plan-card:hover { transform: translateY(-6px); border-color: var(--amber); box-shadow: var(--shadow-lg); }
.plan-card:hover::after { transform: scaleX(1); }
.plan-num { font-family: var(--ethioserif); color: var(--amber); font-size: 1.5rem; line-height: 1; }
.plan-card::before { content: ""; position: absolute; top: -34px; right: -30px; width: 110px; height: 110px; border-radius: 50%; background: radial-gradient(circle, rgba(217,154,43,0.13), transparent 68%); transition: transform 0.5s var(--ease-out); }
.plan-card:hover::before { transform: scale(1.6); }
.plan-card h3 { font-size: 1.3rem; margin: 0; }
.plan-card p { margin: 0; font-size: 0.94rem; color: var(--ink-soft); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- partners ---------- */
.partners-band { background: var(--paper-2); }
.partners-title { text-align: center; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 34px; }
.partners-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.partner-chip { background: var(--cream); border: 1.4px solid var(--paper-3); border-radius: 14px; padding: 16px 20px; text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 14px; min-width: 230px; transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s; }
.partner-mono { flex: none; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 640; font-size: 1.2rem; color: var(--night); background: linear-gradient(135deg, var(--honey), var(--amber)); }
.partner-txt { display: flex; flex-direction: column; gap: 2px; }
.partner-chip strong { font-family: var(--serif); font-size: 1.06rem; }
.partner-chip .partner-txt span { font-size: 0.83rem; color: var(--ink-soft); }
.partner-chip:hover { transform: translateY(-4px); border-color: var(--amber); box-shadow: 0 14px 30px -18px rgba(32,20,9,0.4); }

/* ---------- hub & article hero ---------- */
.hub-hero, .article-hero { position: relative; min-height: 62svh; display: flex; align-items: flex-end; color: var(--cream); overflow: clip; isolation: isolate; }
.article-hero { min-height: 68svh; }
.hub-hero-inner, .article-hero-inner { padding-block: 0 clamp(44px, 6vw, 70px); width: 100%; }
.hub-hero h1, .article-hero h1 { font-size: clamp(2.1rem, 5.4vw, 4rem); font-weight: 560; max-width: 22ch; margin: 14px 0 10px; }
.hub-hero p { max-width: 62ch; color: rgba(251,247,238,0.87); margin: 0; }
.crumbs { display: flex; gap: 10px; font-size: 0.85rem; color: rgba(251,247,238,0.75); }
.crumbs a { color: var(--honey); text-decoration: none; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; color: rgba(251,247,238,0.8); font-size: 0.9rem; }

/* ---------- article layout ---------- */
.article-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(30px, 5vw, 70px); padding-top: clamp(44px, 6vw, 80px); }
@media (max-width: 980px) { .article-layout { grid-template-columns: minmax(0, 1fr); } .article-toc { position: static !important; } }
.article-toc { position: sticky; top: 100px; align-self: start; font-size: 0.92rem; }
.article-toc h2 { font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); font-family: var(--sans); font-weight: 680; }
.article-toc ol { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--paper-3); }
.article-toc li a { display: block; padding: 8px 0 8px 16px; color: var(--ink-soft); text-decoration: none; border-left: 2px solid transparent; margin-left: -2px; transition: color 0.25s, border-color 0.25s; line-height: 1.4; }
.article-toc li a:hover { color: var(--ink); }
.article-toc li a.active { color: var(--madder); border-color: var(--madder); font-weight: 600; }

.article-body { max-width: 720px; font-size: 1.09rem; }
.article-body .lead { font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.42rem); line-height: 1.55; color: var(--ink-2); font-weight: 460; }
.article-body .lead::first-letter { font-size: 3.4em; float: left; line-height: 0.82; padding: 4px 10px 0 0; color: var(--madder); font-weight: 620; }
html.lang-am .article-body .lead::first-letter { font-size: 2.2em; }
.article-body h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); margin: 2em 0 0.7em; scroll-margin-top: 110px; position: relative; padding-top: 18px; }
.article-body h2::before { content: ""; position: absolute; top: 0; left: 0; width: 52px; height: 3px; background: linear-gradient(90deg, var(--amber), var(--madder)); border-radius: 2px; }
.article-body h3 { font-size: 1.25rem; margin: 1.7em 0 0.5em; }
.article-body ul, .article-body ol { padding-left: 1.3em; }
.article-body li { margin-bottom: 0.45em; }
.article-body blockquote { margin: 2em 0; padding: 6px 0 6px 26px; border-left: 3px solid var(--amber); font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--ink-2); }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: 0.95rem; background: var(--cream); border-radius: 12px; overflow: hidden; box-shadow: 0 1px 0 rgba(32,20,9,0.08); }
.article-body th { background: var(--night); color: var(--paper); text-align: left; padding: 12px 14px; font-family: var(--sans); font-weight: 640; font-size: 0.86rem; letter-spacing: 0.04em; }
.article-body td { padding: 11px 14px; border-top: 1px solid var(--paper-2); vertical-align: top; }
.article-body tr:nth-child(even) td { background: rgba(239,228,205,0.4); }
.table-scroll { overflow-x: auto; margin: 1.6em 0; }
.table-scroll table { margin: 0; min-width: 560px; }
.article-fig { margin: 2.2em 0; border-radius: var(--rad); overflow: clip; box-shadow: var(--shadow-lg); }
.article-fig img { width: 100%; }
.article-fig figcaption { font-size: 0.84rem; color: var(--ink-soft); padding: 12px 18px; background: var(--cream); }

/* facts box */
.facts-box { margin: 2.4em 0; background: var(--night); color: var(--paper); border-radius: var(--rad); padding: 30px 32px; position: relative; overflow: clip; }
.facts-box::before { content: "✣"; position: absolute; right: 18px; top: 8px; font-size: 4.6rem; color: rgba(232,181,77,0.14); }
.facts-title { font-size: 0.82rem !important; letter-spacing: 0.24em; text-transform: uppercase; color: var(--honey); font-family: var(--sans) !important; font-weight: 680; margin: 0 0 18px !important; padding: 0 !important; }
.facts-title::before { display: none !important; }
.facts-box dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px 26px; margin: 0; }
.facts-box dt { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,240,226,0.6); }
.facts-box dd { margin: 3px 0 0; font-family: var(--serif); font-size: 1.06rem; color: var(--cream); }

/* CTA cards */
.cta-card { margin: 2.4em 0; display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; background: linear-gradient(120deg, var(--night), var(--night-2) 70%); color: var(--paper); border-radius: var(--rad); padding: 28px 30px; border: 1px solid rgba(232,181,77,0.35); position: relative; overflow: clip; }
.cta-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 100% 0%, rgba(217,154,43,0.16), transparent 60%); pointer-events: none; }
.cta-kicker { font-size: 0.76rem; font-weight: 680; letter-spacing: 0.22em; text-transform: uppercase; color: var(--honey); }
.cta-title { font-family: var(--serif); font-size: 1.3rem; margin: 8px 0 0; color: var(--cream); }
.cta-note { margin: 6px 0 0; font-size: 0.9rem; color: rgba(247,240,226,0.72); }
.cta-card .btn { flex: none; }

.cta-trio { margin: 2.4em 0; }
.cta-trio-title { font-size: 1.02rem; letter-spacing: 0.06em; margin-bottom: 16px; }
.cta-trio-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cta-mini { background: var(--cream); border: 1.4px solid var(--paper-3); border-radius: 14px; padding: 20px; text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: 6px; transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s; }
.cta-mini:hover { transform: translateY(-4px); border-color: var(--amber); box-shadow: 0 16px 30px -18px rgba(32,20,9,0.4); }
.cta-mini strong { font-family: var(--serif); font-size: 1.08rem; }
.cta-mini span { font-size: 0.88rem; color: var(--ink-soft); }
.cta-mini em { font-style: normal; font-weight: 640; font-size: 0.88rem; color: var(--copper); margin-top: 4px; }

/* FAQ */
.faq { margin-top: 3em; }
.faq-item { border: 1.4px solid var(--paper-3); border-radius: 14px; background: var(--cream); margin-bottom: 12px; overflow: clip; transition: border-color 0.3s; }
.faq-item[open] { border-color: var(--amber); }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-weight: 620; font-family: var(--serif); font-size: 1.08rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--amber); transition: transform 0.35s var(--ease-out); flex: none; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px 20px; color: var(--ink-2); }

/* ad slot */
.ad-slot { max-width: var(--wrap); margin: clamp(30px, 5vw, 54px) auto; padding-inline: clamp(20px, 4vw, 44px); text-align: center; }
.ad-slot .ad-label { display: block; font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.65; margin-bottom: 8px; }
.ad-slot:not(:has(ins)) { min-height: 0; }
.ad-slot ins { background: var(--paper-2); border-radius: 12px; min-height: 120px; }

/* GetYourGuide bookable widget */
.gyg-widget { margin: clamp(30px, 5vw, 54px) auto; }
.gyg-widget .ad-label { display: block; font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.65; margin-bottom: 8px; }
.gyg-widget > div { border-radius: 12px; overflow: hidden; }

/* related */
.related { background: var(--paper-2); margin-top: clamp(50px, 8vw, 90px); }

/* ---------- footer ---------- */
.site-footer { background: var(--night); color: var(--paper); margin-top: 0; }
.tibeb-footer { opacity: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr)); gap: clamp(26px, 3.5vw, 48px); padding-block: clamp(50px, 7vw, 80px) 34px; }
.footer-brand { grid-column: 1; }
@media (max-width: 1040px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-partners { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; padding-block: 22px; border-top: 1px solid rgba(232,181,77,0.14); }
.footer-partners-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,240,226,0.5); }
.footer-partners-links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-partners-links a { color: rgba(247,240,226,0.72); text-decoration: none; font-size: 0.88rem; }
.footer-partners-links a:hover { color: var(--honey); }
.footer-brand p { color: rgba(247,240,226,0.72); font-size: 0.92rem; max-width: 44ch; }
.footer-brand .disclosure { font-size: 0.8rem; color: rgba(247,240,226,0.5); }
.footer-col h3 { font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--honey); font-family: var(--sans); font-weight: 680; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(247,240,226,0.82); text-decoration: none; padding: 5px 0; font-size: 0.93rem; }
.footer-col a:hover { color: var(--honey); }
.footer-base { display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; padding-block: 22px 30px; border-top: 1px solid rgba(232,181,77,0.18); font-size: 0.84rem; color: rgba(247,240,226,0.6); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: inherit; text-decoration: none; }
.footer-links a:hover { color: var(--honey); }

/* ---------- simple pages ---------- */
.page-simple .section-first { min-height: 60vh; }

/* ---------- exp band ambience ---------- */
.exp-band { overflow: clip; }
.exp-band::after { content: "ቡና"; position: absolute; left: -2vw; bottom: -8vh; font-family: var(--ethioserif); font-weight: 800; font-size: clamp(8rem, 20vw, 17rem); color: rgba(232, 181, 77, 0.045); line-height: 1; pointer-events: none; user-select: none; }

/* ---------- small screens ---------- */
@media (max-width: 700px) {
  body { font-size: 1rem; }
  .hero-inner { padding-bottom: 96px; }
  .hero-actions .btn { padding: 13px 22px; font-size: 0.92rem; }
  .scroll-cue { display: none; }
  .facts-box dl { grid-template-columns: 1fr 1fr; gap: 14px 18px; }
  .facts-box { padding: 24px 22px; }
  .cta-card { padding: 22px; }
  .article-body .lead::first-letter { font-size: 2.6em; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 26px 10px; }
  .footer-base { flex-direction: column; align-items: flex-start; }
  .dest-card--big .dest-media { aspect-ratio: 16/10; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-img { animation: none; }
  .marquee-track { animation: none; }
  .reveal, .reveal-line, .reveal-clip { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  [data-split] .w > span { transform: none !important; animation: none !important; }
  .scroll-cue i { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* --- Travel-advisory status box -------------------------------------
   Used on destination guides covering regions under a government
   advisory. Dated on purpose: readers must see how fresh it is. */
.status-box {
  margin: 2rem 0;
  padding: 1.15rem 1.35rem;
  background: var(--cream);
  border: 1px solid rgba(169, 50, 38, 0.28);
  border-left: 5px solid var(--madder);
  border-radius: var(--rad);
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.6;
}
.status-box h3 {
  margin: 0 0 0.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--madder);
}
.status-box p { margin: 0 0 0.6rem; }
.status-box p:last-child { margin-bottom: 0; }
.status-box .status-date {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* --- Screen-reader-only helper ------------------------------------ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- Newsletter / email capture ----------------------------------- */
.newsletter {
  background: linear-gradient(135deg, var(--night), var(--ink));
  color: var(--cream);
  padding: clamp(2.4rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(232, 181, 77, 0.22);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.4rem 2.6rem;
  align-items: center;
}
.newsletter-copy { grid-column: 1; }
.newsletter-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.1;
  margin: 0 0 0.5rem;
  color: var(--cream);
}
.newsletter-sub { margin: 0; color: rgba(251, 247, 238, 0.78); font-size: 1.02rem; line-height: 1.55; }
.newsletter-form {
  grid-column: 2;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.newsletter-input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 181, 77, 0.4);
  background: rgba(251, 247, 238, 0.06);
  color: var(--cream);
  font: inherit;
  font-size: 1rem;
}
.newsletter-input::placeholder { color: rgba(251, 247, 238, 0.5); }
.newsletter-input:focus-visible { outline: 2px solid var(--honey); outline-offset: 2px; }
.newsletter-input:disabled { opacity: 0.55; cursor: not-allowed; }
.newsletter-btn { flex: 0 0 auto; border-radius: 999px; padding-inline: 1.5rem; }
.newsletter-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.newsletter-note {
  grid-column: 2;
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: rgba(251, 247, 238, 0.55);
}
.newsletter-success {
  grid-column: 2;
  margin: 0.1rem 0 0;
  font-weight: 600;
  color: var(--honey);
}
.newsletter-success[hidden] { display: none; }
/* Panel variant, used inside lead-magnet pages */
.newsletter--panel { border-radius: var(--rad); border: 1px solid rgba(232, 181, 77, 0.28); margin: 2.4rem 0; }
@media (max-width: 760px) {
  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter-copy, .newsletter-form, .newsletter-note, .newsletter-success { grid-column: 1; }
}

/* --- Lead-magnet (downloadable guide) pages ----------------------- */
.leadmagnet { max-width: 820px; margin-inline: auto; }
.leadmagnet h2 { font-family: var(--serif); margin-top: 2.2rem; }
.leadmagnet .lm-meta { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1.4rem; }
.lm-checklist { list-style: none; padding: 0; margin: 0.6rem 0 1.4rem; }
.lm-checklist li {
  position: relative;
  padding: 0.35rem 0 0.35rem 2rem;
  border-bottom: 1px dashed rgba(109, 92, 64, 0.28);
  line-height: 1.5;
}
.lm-checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5rem;
  width: 1.15rem; height: 1.15rem;
  border: 2px solid var(--copper);
  border-radius: 5px;
}
.lm-print-hint { font-size: 0.85rem; color: var(--ink-soft); }
.lm-worksheet { width: 100%; border-collapse: collapse; margin: 1rem 0 1.6rem; }
.lm-worksheet th, .lm-worksheet td { border: 1px solid rgba(109, 92, 64, 0.35); padding: 0.55rem 0.7rem; text-align: left; vertical-align: top; }
.lm-worksheet th { background: var(--cream); font-family: var(--sans); font-size: 0.85rem; }
.lm-fill { display: inline-block; min-height: 1.4rem; }

@media print {
  .site-header, .site-footer, .newsletter, .cta-card, .cta-trio, .ad-slot, .gyg-widget, .tibeb, .breadcrumbs, [data-aurora] { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .leadmagnet { max-width: 100%; }
  .lm-checklist li::before { border-color: #555; }
  a { color: #000; text-decoration: none; }
  main { padding: 0 !important; }
}
