:root {
  --gold: #f2b827;
  --gold-light: #f3c242;
  --black: #000000;
  --dark: #131313;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.8);
  --light: #f2f5f7;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fjalla One', 'Arial Narrow', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-header .logo img { height: 44px; width: auto; }
.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  margin-left: 28px;
  letter-spacing: 0.5px;
}
.site-nav a:hover, .site-nav a.active { color: var(--gold); }

/* Hero */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.88)), url('../images/world-excellence.png') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 130px 20px 140px;
}
.hero .kicker {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  margin-bottom: 20px;
}
.hero p {
  color: var(--white-soft);
  font-size: 19px;
  max-width: 640px;
  margin: 0 auto 34px;
}
.hero.hero-inner { padding: 90px 20px; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 15px;
  text-decoration: none;
  padding: 16px 38px;
  transition: background 0.2s;
}
.btn:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* Sections */
.section { padding: 90px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-black { background: var(--black); color: var(--white); }
.section-light { background: var(--light); }
.section .kicker {
  color: var(--gold);
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.section h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.section-dark p, .section-black p { color: var(--white-soft); }
.section-intro { max-width: 760px; margin: 0 auto; text-align: center; }

/* Two-column feature rows */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}
.feature-row + .feature-row { margin-top: 80px; }
.feature-row.reverse .feature-text { order: -1; }
.feature-text h3, .feature-text h4 { font-size: 26px; margin-bottom: 16px; }
.feature-text p { margin-bottom: 14px; }
.feature-row img { width: 100%; }
.feature-list { list-style: none; margin-top: 8px; }
.feature-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 12px;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--gold);
}

/* Category cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.card {
  background: var(--black);
  border: 1px solid rgba(242, 184, 39, 0.25);
  padding: 40px 24px;
  text-align: center;
}
.card img { width: 74px; margin: 0 auto 22px; }
.card h3 { color: var(--white); font-size: 19px; margin-bottom: 12px; }
.card p { color: var(--white-soft); font-size: 14.5px; }

/* Awardees */
.awardee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.awardee {
  border: 1px solid #e2e6e9;
  background: var(--white);
  padding: 34px 24px;
  text-align: center;
}
.awardee .date {
  font-family: 'Fjalla One', sans-serif;
  font-size: 30px;
  color: var(--gold);
  text-transform: uppercase;
}
.awardee .place {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  margin: 6px 0 14px;
}
.awardee h3 { font-size: 17px; }

/* Legal / article pages */
.article { max-width: 820px; margin: 0 auto; padding: 70px 20px 90px; }
.article h1 { font-size: 34px; margin-bottom: 30px; }
.article h2, .article h3 { font-size: 22px; margin: 34px 0 14px; }
.article p, .article li { margin-bottom: 14px; }
.article ul, .article ol { padding-left: 24px; }
.article a { color: #b8860b; }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}
.contact-form label {
  display: block;
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d3d8dc;
  background: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  margin-bottom: 20px;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}
.contact-form button { border: 0; cursor: pointer; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { max-width: 640px; margin: 0 auto 30px; }

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white-soft);
  padding: 70px 0 0;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.site-footer h5 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: var(--white-soft); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 13.5px;
}

@media (max-width: 900px) {
  .card-grid, .awardee-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row, .contact-wrap { grid-template-columns: 1fr; gap: 34px; }
  .feature-row.reverse .feature-text { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding: 90px 20px; }
}
@media (max-width: 560px) {
  .card-grid, .awardee-grid { grid-template-columns: 1fr; }
  .site-header .container { flex-direction: column; gap: 10px; }
  .site-nav a { margin: 0 12px; }
}
