/* Palette and type per styleguide/. Do not restyle without consulting it. */
@font-face {
  font-family: 'Albert Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/albert-sans-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/marcellus-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Kufi Arabic';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/noto-kufi-arabic.woff2') format('woff2');
}

:root {
  --deep-sea: #0f3d3e;
  --gulf: #2e7570;
  --pearl: #f7f3eb;
  --gold: #c9a86a;
  --gold-ink: #b98e4f;
  --red: #b8272d;
  --hairline: #e3d9c6;
  --muted: #4a6362;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--pearl);
  color: var(--deep-sea);
  font-family: 'Albert Sans', sans-serif;
}

a { color: var(--gulf); text-decoration: none; }
a:hover { color: var(--deep-sea); text-decoration: underline; }

main {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px 48px;
}

.emblem { width: 200px; max-width: 60vw; height: auto; }

h1 {
  font-family: 'Marcellus', serif;
  font-size: clamp(34px, 7vw, 52px);
  letter-spacing: 0.14em;
  font-weight: 400;
  margin: 30px 0 6px;
}

.arabic {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 7vw, 52px);
  color: var(--gulf);
  margin-bottom: 20px;
}

.divider { display: flex; align-items: center; justify-content: center; gap: 14px; }
.divider .line { width: 64px; height: 1px; background: var(--gold); }
.divider .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

.tagline {
  letter-spacing: 0.32em;
  font-size: 13px;
  color: var(--gold-ink);
  font-weight: 600;
  margin: 18px 0 0;
}

.blurb {
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.socials {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 220px));
  gap: 20px;
  justify-content: center;
}

.social-link {
  display: flex;
  min-height: 68px;
  padding: 12px 16px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--hairline);
  color: var(--deep-sea);
}

.social-link:hover { border-color: var(--gold); color: var(--gulf); text-decoration: none; }

.social-link--primary { background: var(--deep-sea); border-color: var(--deep-sea); color: var(--pearl); }
.social-link--primary:hover { background: var(--gulf); border-color: var(--gulf); color: var(--pearl); }

.social-platform {
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 600;
}

.social-detail {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

.what {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 220px));
  gap: 20px;
  justify-content: center;
}

@media (max-width: 720px) {
  .socials { grid-template-columns: minmax(0, 320px); justify-content: center; }
  .what { grid-template-columns: minmax(0, 320px); }
}

.what > div {
  background: #fff;
  border: 1px solid var(--hairline);
  padding: 24px 20px;
}

.what h2 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
}

.what p { font-size: 13px; line-height: 1.65; color: var(--muted); margin: 0; }

footer {
  padding: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--hairline);
}
