/* Header — refined */
.site-header {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 100;
  padding-inline: clamp(1rem, 3vw, 2rem);
  pointer-events: none;
}

.site-header .nav,
.site-header .nav a,
.site-header .nav button {
  pointer-events: auto;
}

.nav {
  height: 64px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 38, 28, 0.1);
  box-shadow: 0 12px 40px rgba(20, 38, 28, 0.08);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  padding-inline: 0.25rem 0.5rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding-left: 0.15rem;
}

.nav-logo__img {
  height: 68px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}

.nav-logo__mark,
.nav-logo__text {
  display: none;
}

.site-footer .nav-logo__img {
  height: 88px;
  max-width: 200px;
  filter: none;
}

.nav-links { min-width: 0; }

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a,
.nav-menu-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.65rem;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cop-ink);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu-trigger:hover {
  color: var(--cop-green);
  background: var(--cop-green-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-toggle {
  flex-shrink: 0;
  min-width: 42px;
  height: 36px;
  padding: 0 0.6rem;
  border: 1px solid var(--cop-border);
  border-radius: 8px;
  background: #fff;
  color: var(--cop-green-deep);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-toggle:hover {
  border-color: var(--cop-green);
  color: var(--cop-green);
}

.nav-cta {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: var(--cop-green);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
}

.nav-cta:hover { background: var(--cop-green-deep); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
}

/* Cinematic hero */
.cop-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  margin-top: 0;
}

.cop-hero--cinematic .cop-hero__overlay {
  background:
    linear-gradient(180deg, rgba(8, 22, 14, 0.15) 0%, rgba(8, 22, 14, 0.35) 40%, rgba(8, 22, 14, 0.72) 78%, rgba(8, 22, 14, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 22, 14, 0.55) 0%, rgba(8, 22, 14, 0.15) 55%, transparent 100%);
}

.cop-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(28px + 64px + 3rem) 0 4rem;
}

.cop-hero--cinematic h1 {
  margin: 0 0 1.25rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.8rem, 7.5vw, 5.5rem);
  font-weight: 700;
  line-height: 0.98;
  max-width: 14ch;
  letter-spacing: -0.02em;
}

.cop-hero__tagline {
  margin: 0 0 2rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.92);
}

.cop-hero__eyebrow {
  margin-bottom: 1.25rem;
  padding: 0;
  background: none;
  border: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--cop-gold-light);
}

.cop-hero__eyebrow img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
}

.cop-hero__scroll {
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: 2rem;
  z-index: 3;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.cop-hero__scroll span {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--cop-gold-light), transparent);
  animation: copScrollPulse 2s ease-in-out infinite;
}

@keyframes copScrollPulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Countdown strip below hero */
.cop-countdown-strip {
  background: var(--cop-green-deep);
  color: #fff;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.cop-countdown-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 1.25rem 0;
}

.cop-countdown-strip__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cop-gold-light);
}

.cop-countdown-strip .cop-countdown__grid {
  display: flex;
  gap: 1.5rem;
}

.cop-countdown-strip .cop-countdown__unit {
  background: none;
  padding: 0;
  text-align: left;
}

.cop-countdown-strip .cop-countdown__unit strong {
  font-size: 1.5rem;
}

.cop-countdown-strip .cop-countdown__unit span {
  margin-top: 0.15rem;
  font-size: 0.62rem;
}

.cop-countdown-strip__meta {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

.cop-countdown-strip__meta strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

/* Ethiopia stories */
.cop-stories {
  padding: 5rem 0;
  background: #fff;
}

.cop-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cop-border);
  margin-bottom: 1.5rem;
}

.cop-story:nth-child(even) {
  grid-template-columns: 0.9fr 1.1fr;
}

.cop-story:nth-child(even) .cop-story__media { order: 2; }

.cop-story__media {
  position: relative;
  min-height: 280px;
}

.cop-story__media img,
.cop-story__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cop-story__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.cop-story__region {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cop-green);
}

.cop-story__body h3 {
  margin: 0 0 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
}

.cop-story__body p {
  margin: 0;
  color: var(--cop-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.cop-story--video .cop-story__media video {
  position: absolute;
  inset: 0;
}

.cop-story--video .cop-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.25));
}

@media (max-width: 1100px) {
  .nav-menu a,
  .nav-menu-trigger { padding: 0 0.5rem; font-size: 0.8rem; }
}

@media (max-width: 960px) {
  .cop-story,
  .cop-story:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .cop-story:nth-child(even) .cop-story__media { order: 0; }
}

@media (max-width: 768px) {
  .site-header { top: 0; padding-inline: 0; }
  .nav { border-radius: 0; height: var(--header-h); }
  .nav-shell { grid-template-columns: auto 1fr auto; padding-inline: 1rem; }
  .nav-logo__img { height: 58px; max-width: 180px; }
  .nav-logo__text span { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .nav-links {
    top: var(--header-h);
  }

  .cop-hero--cinematic h1 { max-width: none; }
  .cop-countdown-strip__inner { flex-direction: column; align-items: flex-start; }
}
