:root {
  --bg: #f7f3ef;
  --surface: #fffaf7;
  --surface-strong: #f2ece7;
  --ink: #212121;
  --muted: #6f655f;
  --brand: #bb2332;
  --brand-deep: #941522;
  --shadow: 0 18px 45px rgba(77, 41, 22, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 820px;
  --card-width: 710px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(187, 35, 50, 0.08), transparent 30%),
    linear-gradient(180deg, #fcfbf9 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Noto Sans", "Noto Sans Ethiopic", sans-serif;
}

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

.hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 35%),
    linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff6ef;
  padding: 36px 24px 48px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(6px);
}

.hero__inner,
.page {
  max-width: var(--container);
  margin: 0 auto;
}

.hero__inner {
  max-width: 1120px;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
}

.brand__logo {
  display: block;
  width: clamp(120px, 18vw, 170px);
  height: auto;
}

.hero__amharic {
  margin: 0 0 10px;
  font-family: "Noto Sans Ethiopic", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  text-align: center;
}

.hero__title {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.14;
  text-align: center;
  font-weight: 800;
  white-space: nowrap;
}

.page {
  padding: 0 24px 72px;
  margin-top: 0;
}

.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 22px;
  padding-top: 28px;
}

.flag {
  width: 82px;
  height: 56px;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.page__title {
  margin: 0;
  font-family: "Noto Sans Ethiopic", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.22;
  white-space: nowrap;
}

.card {
  max-width: var(--card-width);
  background: rgba(255, 250, 247, 0.9);
  border: 1px solid rgba(105, 78, 61, 0.07);
  border-radius: var(--radius-lg);
  padding: 28px 28px 30px;
  margin: 0 auto 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.card__label {
  margin: 0 0 18px;
  font-weight: 700;
  color: #42352f;
}

.card__content,
.card__links {
  color: #2c2522;
}

.amharic {
  font-family: "Noto Sans Ethiopic", "Noto Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.95;
}

.card__content p {
  margin: 0 0 18px;
}

.card__content p:last-child {
  margin-bottom: 0;
}

.link-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(94, 73, 62, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.link-row + .link-row {
  margin-top: 14px;
}

.link-row:hover {
  transform: translateY(-2px);
  border-color: rgba(187, 35, 50, 0.22);
  box-shadow: 0 12px 30px rgba(77, 41, 22, 0.1);
}

.link-row__icon {
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.youtube-icon {
  width: 30px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.youtube-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.youtube-icon__shape {
  fill: #ff0033;
}

.youtube-icon__play {
  fill: #ffffff;
}

.link-row--muted {
  background: var(--surface-strong);
}

.contact {
  text-align: center;
  padding: 22px 12px 8px;
  color: var(--muted);
}

.contact h3 {
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: 0.08em;
}

.contact p {
  margin: 6px 0;
}

.contact__note {
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .hero {
    padding: 32px 20px 44px;
  }

  .page {
    padding: 0 16px 52px;
  }

  .card {
    padding: 22px 18px 24px;
    border-radius: 22px;
  }

  .page__title {
    font-size: 2rem;
    white-space: normal;
  }

  .hero__title {
    font-size: clamp(1.7rem, 9vw, 2.7rem);
    white-space: normal;
  }

  .link-row {
    align-items: flex-start;
  }
}
