:root {
  --ink: #161817;
  --panel: #20221f;
  --panel-soft: #1b1d1b;
  --cream: #f6efe0;
  --muted: rgba(246, 239, 224, .74);
  --gold: #f0c640;
  --gold-soft: #ead98c;
  --green: #128b4a;
  --red: #cc4a2b;
  --line: rgba(240, 198, 64, .36);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: Raleway, Avenir, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 auto 0 0;
  width: clamp(16px, 2.8vw, 34px);
  background: linear-gradient(90deg, var(--green) 0 46%, var(--gold) 46% 66%, var(--red) 66% 100%);
  z-index: 10;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

.shell {
  padding-left: clamp(16px, 2.8vw, 34px);
  min-height: 100vh;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(22, 24, 23, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  font-weight: 700;
  white-space: nowrap;
}

.links {
  display: flex;
  gap: clamp(14px, 2.2vw, 30px);
  align-items: center;
  overflow-x: auto;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.links a {
  color: var(--muted);
  white-space: nowrap;
}

.links a[aria-current="page"],
.links a:hover {
  color: var(--gold-soft);
}

.page-hero {
  position: relative;
  min-height: 220px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 24, 23, .96) 0%, rgba(22, 24, 23, .74) 48%, rgba(22, 24, 23, .28) 100%),
    linear-gradient(0deg, rgba(22, 24, 23, .96) 0%, rgba(22, 24, 23, .18) 62%),
    url("current-header.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.page-hero.home {
  min-height: min(780px, 88vh);
  background:
    linear-gradient(90deg, rgba(22, 24, 23, .96) 0%, rgba(22, 24, 23, .75) 45%, rgba(22, 24, 23, .26) 100%),
    linear-gradient(0deg, rgba(22, 24, 23, .96) 0%, rgba(22, 24, 23, .16) 62%),
    url("hero-226006-19_WEB.jpg") center / cover;
}

.flag-tab {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 34vw);
  height: 12px;
  background: linear-gradient(90deg, var(--red) 0 36%, var(--green) 36% 68%, var(--gold) 68% 100%);
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100vw - 44px));
  margin: 0 auto;
}

.hero-inner {
  padding: clamp(42px, 7vh, 70px) 0 clamp(34px, 6vh, 58px);
}

.page-hero.home .hero-inner {
  padding: clamp(90px, 14vh, 150px) 0 clamp(64px, 10vh, 96px);
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-weight: 900;
}

.kicker {
  color: #8fca44;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.8vw, 4.6rem);
}

.page-hero.home h1 {
  font-size: clamp(3rem, 6.7vw, 6.7rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.4vw, 4.6rem);
}

h3 {
  color: var(--gold-soft);
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.amharic {
  display: block;
  margin-top: .1em;
  font-size: .72em;
  line-height: 1.03;
}

.subtitle,
.copy,
.prose p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
}

.subtitle {
  margin: 26px 0 0;
  color: var(--gold-soft);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
}

.rule {
  width: min(270px, 45vw);
  height: 4px;
  margin-top: 58px;
  background: var(--gold);
}

section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.panel {
  background: var(--panel-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.bio-layout {
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  align-items: start;
}

.portrait,
.poster,
.art-card {
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .18);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .36);
}

.portrait img,
.poster img,
.art-card img {
  width: 100%;
  height: auto;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #181915;
  background: var(--gold);
  border: 1px solid var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button.secondary {
  color: var(--gold-soft);
  background: transparent;
}

.cards,
.gallery-grid,
.video-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.event-card,
.video,
.gallery-item {
  border: 1px solid var(--line);
  background: #101110;
}

.card,
.event-card {
  padding: 24px;
}

.calendar {
  margin-top: 32px;
  border: 1px solid var(--line);
  background: #101110;
}

.calendar-head,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-head div {
  padding: 14px 10px;
  color: var(--gold-soft);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.day {
  min-height: 118px;
  padding: 10px;
  border-right: 1px solid rgba(240, 198, 64, .2);
  border-bottom: 1px solid rgba(240, 198, 64, .2);
}

.day:nth-child(7n) {
  border-right: 0;
}

.day.muted {
  color: rgba(246, 239, 224, .28);
}

.day-number {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.calendar-event {
  display: block;
  padding: 8px;
  color: #181915;
  background: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.25;
}

.card p,
.event-card p {
  color: var(--muted);
}

.event-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.date-box {
  padding: 18px 12px;
  text-align: center;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
}

.date-box strong {
  display: block;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.video p {
  min-height: 70px;
  margin: 0;
  padding: 15px 16px 18px;
  color: var(--gold-soft);
  font-weight: 700;
  line-height: 1.35;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-item p {
  margin: 0;
  padding: 14px 15px 16px;
  color: var(--gold-soft);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(300px, .62fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--gold-soft);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--cream);
  background: #101110;
  border: 1px solid var(--line);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

footer {
  padding: 30px 0 42px;
  color: rgba(246, 239, 224, .58);
  background: #121312;
}

.footer-inner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .links {
    width: 100%;
    padding-bottom: 4px;
  }

  .page-hero.home {
    min-height: 660px;
  }

  .split,
  .cards,
  .video-grid,
  .gallery-grid,
  .contact-grid,
  .event-card,
  .calendar-head,
  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .calendar-head {
    display: none;
  }

  .day {
    min-height: auto;
    border-right: 0;
  }

  .portrait,
  .poster,
  .art-card {
    max-width: 380px;
  }

  .bio-layout .portrait {
    max-width: 620px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .amharic {
    font-size: .62em;
  }

  .page-hero.home {
    min-height: 600px;
  }
}
