/* =========================================================
   The GCC–Asian Century Partnership Excellence Awards
   Standalone build
   ========================================================= */

@font-face {
  font-family: "Ainslie";
  src: url("../fonts/insigne - Ainslie-NorBoo.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Ainslie";
  src: url("../fonts/insigne - Ainslie-NorBol.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --gold: #a87b22;
  --gold-dark: #8a651c;
  --gold-light: #b07c2c;
  --black: #000000;
  --cream: #f7f3ea;
  --ink: #000000;
  --body: #000000;
  --page-gutter: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0;
  line-height: 1.6;
  color: var(--body);
}

.shell {
  width: min(1600px, calc(100vw - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.eyebrow {
  display: block;
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-size: clamp(1.1rem, 1.3vw, 1.35rem);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: #1a1305;
}

.btn--black {
  background: var(--black);
  color: #ffffff;
  border-color: var(--black);
}

.btn--black:hover {
  background: #1a1a1a;
}

.btn--outline {
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
}

.btn--outline:hover {
  background: #f0f0f0;
}

.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Top Contact Strip ---------- */
.top-strip {
  background: #f0f0f0;
  color: #111111;
  border-bottom: 1px solid #e0e0e0;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding-left: var(--page-gutter);
}

.top-strip__contact {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-strip__contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #111111;
  text-decoration: none;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 400;
}

.top-strip__contact i {
  font-size: 1.25rem;
}

.top-strip__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  background: var(--gold-dark);
  color: #ffffff;
  text-decoration: none;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- Masthead ---------- */
.masthead {
  padding: 0;
  border-bottom: 1px solid #eee;
}

.masthead__banner {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Nav ---------- */
.main-nav {
  background: #000000;
  padding: 4px 0;
}

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

.nav-list li {
  display: flex;
  align-items: center;
}

.nav-list li:not(:last-child)::after {
  content: "|";
  margin: 0 8px;
  color: #ffffff;
  font-weight: 300;
}

.nav-list a {
  text-decoration: none;
  display: inline-block;
  padding: 10px 2px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-list a:hover {
  color: var(--gold);
}

.nav-list a.is-current {
  color: var(--gold);
  font-weight: 700;
}

.nav-toggle {
  display: none;
}

.nav-toggle-btn {
  display: none;
}

@media (max-width: 860px) {
  .main-nav .shell {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    min-height: 48px;
  }

  .nav-toggle-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: auto;
    padding: 14px 0;
    cursor: pointer;
    margin-left: auto;
  }

  .nav-toggle-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    margin: 0;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 12px;
    text-align: center;
  }

  .nav-toggle:checked ~ .nav-list {
    display: flex;
  }

  .nav-list li {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-list li:not(:last-child)::after {
    content: none;
  }

  .nav-list a {
    width: 100%;
    padding: 12px 4px;
    font-size: 16.5px;
    white-space: normal;
    text-align: center;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

@media (min-width: 992px) {
  .hero {
    aspect-ratio: 1685 / 720;
  }

  .hero__bg {
    object-fit: cover;
    object-position: center center;
  }

  .hero__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 0 0;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 64px 0 96px;
  max-width: 900px;
}

.hero__title {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  line-height: 1.3;
  text-transform: uppercase;
}

.hero__desc {
  margin-top: 20px;
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  max-width: 100%;
}

@media (min-width: 992px) {
  .hero__desc {
    white-space: nowrap;
  }
}

.hero__date {
  margin-top: 18px;
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.5rem;
}

.hero__actions {
  margin-top: 28px;
}

/* ---------- Ticker + stats ---------- */
.ticker {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 14px 0;
  font-size: 1.05rem;
}

.ticker strong {
  color: #ffffff;
}

.stats {
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.stat {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid #e5e0d4;
}

.stat:last-child {
  border-right: none;
}

.stat i {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 10px;
  display: block;
}

.stat__num {
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--gold-dark);
}

.stat__label {
  font-size: 0.95rem;
  color: var(--body);
}

/* ---------- Generic section paddings ---------- */
.section {
  padding: 72px 0;
}

.section--cream {
  background: var(--cream);
}

.section--black {
  background: #0a0a0a;
  color: #ffffff;
}

.section--black p {
  color: rgba(255, 255, 255, 0.75);
}

.section--black h2,
.section--black h3 {
  color: #ffffff;
}

.section--black .eyebrow {
  color: #ffffff;
}

.head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 44px;
}

.head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.head p {
  font-size: 1.25rem;
}

.head__intro--left {
  text-align: left;
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: center;
}

.about__media {
  margin: 0;
}

.about__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  display: block;
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 100%;
}

.about__content p {
  margin: 4px 0;
  max-width: 95% !important;
}

.about__quote {
  margin-top: 22px;
  padding-left: 18px;
  border-left: 4px solid var(--gold-dark);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

.about__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pill-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(166, 120, 32, 0.25);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.pill-link i {
  color: var(--gold-dark);
}

/* ---------- Categories ---------- */
.categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

.category {
  background: #ffffff;
}

.category__img {
  width: 100%;
  aspect-ratio: 491 / 320;
  object-fit: cover;
  display: block;
}

.category__body {
  margin-top: 14px;
  padding: 18px 4px 0 16px;
  border-left: 3px solid var(--gold);
}

.category__num {
  display: block;
  color: var(--gold-dark);
  font-weight: 700;
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  margin-bottom: 6px;
}

.category__title {
  font-size: 1.15rem;
  line-height: 1.3;
}

/* ---------- Procedure ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.step {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.step__label {
  display: block;
  color: var(--gold-dark);
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.step h4 i {
  color: var(--gold-dark);
  font-size: 0.85em;
}

.step p {
  font-size: 1.05rem;
  max-width: 85%;
}

/* ---------- Ceremony ---------- */
.ceremony {
  position: relative;
  background: #241a08 url("../assets/award_banner-04.png") center / cover
    no-repeat;
}

.ceremony .shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.ceremony h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
}

.ceremony p {
  color: rgba(255, 255, 255, 0.82);
}

.agenda {
  display: grid;
  gap: 18px;
}

.agenda__item {
  padding-bottom: 16px;
  border-bottom: 1px solid #c1a97e;
}

.agenda__item:last-child {
  border-bottom: none;
}

.agenda__time {
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  color: #ffffff;
}

.agenda__desc {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 2px;
}

/* ---------- Distinguished / legacy dark section ---------- */
.legacy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
}

.legacy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.legacy__trophy {
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  justify-self: center;
}

.legacy__trophy img {
  width: 100%;
  display: block;
}

/* ---------- Host city ---------- */
.city {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: stretch;
}

.city figure {
  height: 100%;
  margin: 0;
}

.city__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.city__cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.city__card {
  background: #ffffff;
  border-radius: 24px;
  padding: 38px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.city__card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.city__card h4 i {
  color: var(--gold-dark);
  font-size: 0.85em;
}

.city__card p {
  font-size: 1.05rem;
  max-width: 85%;
}

/* ---------- Awards legacy gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.gallery__main {
  grid-row: span 2;
}

/* ---------- Institutional ecosystem partners ---------- */
.partners {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.partner {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 10px;
}

.partner img {
  width: 100%;
  height: auto;
  padding: 18px;
}

/* ---------- Nominate CTA ---------- */
.cta {
  position: relative;
  color: #ffffff;
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  border-top: 9px solid var(--gold);
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.38) 0%,
    rgba(0, 0, 0, 0.12) 65%,
    rgba(0, 0, 0, 0.02) 100%
  );
}

.cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: 32px;
  align-items: center;
  padding: 72px 0;
}

.cta__date {
  color: var(--gold);
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 14px;
  display: block;
  white-space: nowrap;
}

.cta h2 {
  font-size: clamp(1.3rem, 2.4vw, 2.3rem);
  line-height: 1.25;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.cta p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  white-space: nowrap;
}

.cta__badge {
  text-align: center;
}

.cta__badge img {
  width: 180px;
  margin: 0 auto 16px;
}

.cta__badge p {
  color: #ffffff;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  line-height: 1.35;
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 40px;
  margin-bottom: 40px;
}

.footer-col {
  border-left: 1px solid #8d8e90;
  padding-left: 40px;
}

.footer-col:first-child {
  border-left: none;
  padding-left: 0;
}

.footer-col strong {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
}

.footer-col a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 5px 0;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-col a i {
  margin-right: 6px;
  color: var(--gold-light);
}

.footer-subscribe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  flex-wrap: wrap;
  padding: 24px 0;
}

.subscribe-form {
  /* flex: 1; */
  min-width: 100px;
  width: 38%;
}

.subscribe-form strong {
  display: block;
  color: #ffffff;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 1rem;
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 900px;
}

.input-wrapper i {
  color: #ffffff;
  flex: none;
}

.input-wrapper input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border-radius: 4px;
  border: none;
  background: #c7c7c7;
  padding: 0 14px;
}

.input-wrapper button {
  height: 46px;
  padding: 0 26px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 4px;
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #171313;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gold-light);
}

.footer-about {
  text-align: center;
  padding: 18px 20px;
  border-top: 1px solid #8d8e90;
}

.footer-about strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.footer-about p {
  max-width: 100%;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
}

.footer-copy {
  text-align: center;
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

/* ---------- Professional 70% View Typography ---------- */
body {
  font-size: 18px;
}

.shell {
  width: min(1520px, calc(100vw - 64px));
}

.top-strip__contact a,
.top-strip__button {
  font-size: 1.2rem;
}

.nav-list a {
  font-size: 18px;
  padding: 13px 4px;
}

.eyebrow {
  font-size: clamp(1.25rem, 1.15vw, 1.45rem);
}

.btn {
  min-height: 52px;
  padding: 15px 36px;
  font-size: 1.12rem;
}

.hero__inner {
  max-width: 1060px;
}

.hero__title {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 1.18;
}

.hero__desc {
  font-size: clamp(1.35rem, 1.75vw, 1.85rem);
  line-height: 1.45;
  max-width: 1040px;
}

.hero__date {
  font-size: 1.75rem;
}

.ticker {
  font-size: 1.18rem;
}

.stat i {
  font-size: 1.9rem;
}

.stat__num {
  font-size: clamp(1.8rem, 2.3vw, 2.5rem);
}

.stat__label {
  font-size: 1.08rem;
}

.section {
  padding: 84px 0;
}

.head h2,
.about__content h2,
.ceremony h2,
.legacy h2,
.cta h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.14;
}

.about__content h2 {
  text-transform: uppercase;
}

.head p,
.about__content p:first-of-type,
.ceremony p,
.legacy p,
.city__card p,
.cta p,
.footer-about p {
  font-size: 1.32rem;
  line-height: 1.62;
}

.about__content p:first-of-type,
.step p,
.city__card p {
  max-width: 92%;
}

.about__quote {
  font-size: 1.35rem;
  line-height: 1.5;
}

.pill-link {
  font-size: 1.3rem;
  padding: 20px 24px;
}

.category__num,
.step__label {
  font-size: 1rem;
}

.category__title {
  font-size: 1.38rem;
  line-height: 1.25;
}

.step h4,
.city__card h4 {
  font-size: 1.35rem;
}

.step p {
  font-size: 1.18rem;
  line-height: 1.6;
}

.agenda__time {
  font-size: 1.15rem;
}

.agenda__desc {
  font-size: 1.2rem;
}

.cta__date {
  font-size: 1.55rem;
}

.cta__badge p {
  font-size: clamp(1.25rem, 1.55vw, 1.75rem);
}

.footer-col strong,
.subscribe-form strong {
  font-size: 1.1rem;
}

.footer-col a,
.footer-copy {
  font-size: 1.05rem;
}

.footer-about strong {
  font-size: 1.15rem;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ---------- Section Alignment Standard ---------- */
.section,
.cta__inner {
  padding: 55px 0;
  border-bottom: 4px solid var(--gold);
  /* padding-bottom: 0px; */
}

.head,
.about,
.ceremony .shell,
.legacy,
.city,
.cta__inner {
  gap: 48px;
}

.head,
.ceremony .shell,
.legacy,
.city,
.cta__inner {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.head {
  align-items: center;
  margin-bottom: 48px;
}

.categories,
.steps,
.gallery,
.partners {
  margin-top: 0;
}

.ceremony p,
.legacy p,
.cta p {
  max-width: 92%;
}

.cta p {
  white-space: normal;
}

.cta h2 {
  white-space: normal;
}

.head--award-categories,
.head--nomination-procedure,
.head--host-city {
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr);
  align-items: center;
}

.head--award-categories h2,
.head--nomination-procedure h2,
.head--host-city h2 {
  line-height: 1.08;
}

.head--award-categories p {
  max-width: 780px;
  width: 100%;
  justify-self: end !important;
}

.head--nomination-procedure p,
.head--host-city p {
  max-width: 780px;
  justify-self: start;
}

@media (min-width: 992px) {
  .head--award-categories h2,
  .head--nomination-procedure h2,
  .head--host-city h2 {
    white-space: nowrap;
  }
}

@media (max-width: 991px) {
  .head--award-categories,
  .head--nomination-procedure,
  .head--host-city {
    grid-template-columns: 1fr;
  }

  .head--award-categories h2,
  .head--nomination-procedure h2,
  .head--host-city h2 {
    line-height: 1.14;
  }

  .head--award-categories h2,
  .head--award-categories p,
  .head--nomination-procedure h2,
  .head--nomination-procedure p,
  .head--host-city h2,
  .head--host-city p {
    max-width: 100%;
  }
}

.cta__copy {
  max-width: 1060px;
}

.cta__copy h2 {
  line-height: 1.1;
}

.cta__copy p {
  max-width: 980px;
  line-height: 1.55;
}

@media (min-width: 992px) {
  .cta__copy h2 {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .cta__copy h2 {
    white-space: normal;
  }
}

/* ---------- CTA Alignment Fix ---------- */
.cta__inner {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
  align-items: center;
}

.cta__copy {
  max-width: 980px;
  justify-self: start;
  padding: 25px;
}

.cta__copy h2 {
  max-width: 980px;
  white-space: normal;
}

.cta__copy p {
  max-width: 900px;
  font-weight: 600;
}

.cta__badge {
  justify-self: center;
  width: 300px;
}

.cta__badge img {
  width: 100%;
}

@media (min-width: 992px) {
  .cta__copy h2 {
    white-space: normal;
  }
}

@media (max-width: 991px) {
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta__copy,
  .cta__copy h2,
  .cta__copy p,
  .cta__badge {
    max-width: 100%;
    width: auto;
  }
}
/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991px) {
  :root {
    --page-gutter: 24px;
  }

  .head,
  .about,
  .ceremony .shell,
  .legacy,
  .city,
  .cta__inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 24px;
  }

  .stat:nth-child(3) {
    border-right: none;
  }

  .hero__inner {
    max-width: 100%;
  }

  .hero__bg {
    object-position: 70% center;
    opacity: 0.35;
  }

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

  .gallery__main {
    grid-column: span 2;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }

  .footer-col:nth-child(2n + 1) {
    border-left: none;
    padding-left: 0;
  }

  .footer-subscribe {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .input-wrapper {
    flex-wrap: wrap;
  }

  .input-wrapper input {
    flex: 1 1 100%;
    order: 1;
  }

  .input-wrapper i {
    order: 0;
  }

  .input-wrapper button {
    order: 2;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .section,
  .cta__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .categories,
  .steps,
  .partners,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col {
    border-left: none;
    padding-left: 0;
    padding-top: 24px;
    border-top: 1px solid #8d8e90;
  }

  .footer-col:first-child {
    padding-top: 0;
    border-top: none;
  }

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

  .stat:nth-child(odd) {
    border-right: 1px solid #e5e0d4;
  }

  .stat:nth-child(even) {
    border-right: none;
  }

  .hero__inner {
    padding: 44px 0 64px;
  }

  .hero__actions .actions,
  .ceremony .actions {
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
  }

  .cta__inner {
    text-align: center;
  }

  .cta__badge {
    justify-self: center;
  }

  .cta__date,
  .cta h2,
  .cta p,
  .cta__badge p {
    white-space: normal;
  }
}

/* ---------- Global Section Alignment Fix ---------- */
@media (min-width: 992px) {
  .head {
    grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
    gap: 56px;
    align-items: center;
  }

  .head h2 {
    max-width: 980px;
    line-height: 1.08;
  }

  .head p {
    max-width: 780px;
    justify-self: start;
  }

  .about,
  .ceremony .shell,
  .legacy,
  .city {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
  }

  .about__content,
  .ceremony .shell > div:first-child,
  .legacy > div:first-child {
    max-width: 980px;
  }

  .about__content h2,
  .ceremony h2,
  .legacy h2 {
    line-height: 1.08;
  }

  .about__content p:first-of-type,
  .ceremony p,
  .legacy p {
    max-width: 860px;
  }

  .cta__inner {
    grid-template-columns: minmax(0, 0.95fr) 320px;
    gap: 80px;
  }

  .cta__copy {
    max-width: 1000px;
  }

  .cta__copy h2 {
    max-width: 940px;
    line-height: 1.08;
  }
}

/* ---------- Section Header Content Alignment ---------- */
@media (min-width: 992px) {
  .head {
    align-items: start;
  }

  .head p {
    padding-top: 2.65rem;
  }

  .head--award-categories p,
  .head--nomination-procedure p,
  .head--host-city p {
    padding-top: 2.65rem;
  }
}

@media (max-width: 991px) {
  .head p {
    padding-top: 0;
  }
}

/* ---------- Full Page Alignment Cleanup ---------- */
.about__media,
.city figure,
.legacy__trophy {
  margin: 0;
}

@media (min-width: 992px) {
  .head {
    grid-template-columns: minmax(0, 1.35fr) minmax(550px, 0.65fr);
    align-items: start;
  }

  .head > div {
    min-width: 0;
  }

  .head p {
    align-self: start;
    padding-top: 2.65rem;
    margin: 0;
    max-width: 760px;
  }

  .city {
    align-items: start;
  }

  .about {
    align-items: stretch;
  }

  .ceremony .shell,
  .legacy {
    align-items: center;
  }

  .about__content,
  .legacy > div:first-child {
    padding-top: 0;
    justify-self: start;
  }

  .ceremony .shell > div:first-child {
    justify-self: start;
  }

  .city__cards {
    align-self: start;
  }

  .city__cards {
    justify-content: flex-start;
  }

  .category__body,
  .step,
  .city__card,
  .footer-col {
    text-align: left;
  }

  .step p,
  .city__card p {
    max-width: 100%;
  }

  .cta__inner {
    align-items: center;
  }
}

@media (max-width: 991px) {
  .about__media,
  .city figure,
  .legacy__trophy {
    margin: 0;
  }

  .head p {
    padding-top: 0;
  }
}

/* ---------- Mobile polish ---------- */
@media (max-width: 767px) {
  :root {
    --page-gutter: 16px;
  }

  body {
    font-size: 16px;
  }

  .masthead__banner {
    min-height: 96px;
    object-fit: cover;
    object-position: center;
  }

  .main-nav {
    padding: 0;
  }

  .main-nav .shell {
    min-height: 52px;
  }

  .hero {
    min-height: auto;
  }

  .hero__bg {
    object-fit: cover;
    object-position: 72% center;
    opacity: 0.2;
  }

  .hero__inner {
    padding: 38px 0 48px;
  }

  .hero__title {
    font-size: 2.15rem;
    line-height: 1.15;
  }

  .hero__desc,
  .hero__date {
    font-size: 1.12rem;
  }

  .hero__desc br,
  .cta p br,
  .footer-about p br {
    display: none;
  }

  .actions {
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 18px;
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
  }

  .ticker {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .stats {
    padding: 28px 0;
    gap: 22px 0;
  }

  .stat {
    padding: 0 10px;
  }

  .stat__label {
    font-size: 0.85rem;
  }

  .section {
    padding: 42px 0;
  }

  .head {
    gap: 14px;
    margin-bottom: 28px;
  }

  .head h2,
  .about__content h2,
  .ceremony h2,
  .legacy h2,
  .cta h2 {
    font-size: 1.68rem;
    line-height: 1.2;
  }

  .head p,
  .about__content p:first-of-type,
  .step p,
  .city__card p {
    max-width: 100%;
    font-size: 1.08rem;
  }

  .about,
  .ceremony .shell,
  .legacy,
  .city,
  .cta__inner {
    gap: 24px;
  }

  .about__media img,
  .city__img,
  .gallery img {
    border-radius: 14px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pill-link {
    padding: 12px 14px;
  }

  .categories,
  .steps,
  .partners,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category__body {
    padding: 14px 0 0 14px;
  }

  .category__title {
    font-size: 1.15rem;
  }

  .step,
  .city__card {
    border-radius: 16px;
    padding: 22px 18px;
  }

  .ceremony {
    background-position: center;
  }

  .agenda {
    gap: 12px;
  }

  .legacy__trophy {
    max-width: 260px;
  }

  .city__cards {
    gap: 14px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery__main {
    grid-column: auto;
  }

  .partner {
    aspect-ratio: auto;
    min-height: 120px;
  }

  .cta__inner {
    grid-template-columns: 1fr;
    padding-top: 42px;
    padding-bottom: 42px;
    text-align: center;
  }

  .cta__overlay {
    background: rgba(0, 0, 0, 0.45);
  }

  .cta__date,
  .cta h2,
  .cta p,
  .cta__badge p {
    white-space: normal;
  }

  .cta__badge img {
    width: 130px;
  }

  .site-footer {
    padding-top: 36px;
  }

  .footer-grid {
    gap: 0;
    margin-bottom: 20px;
  }

  .footer-col,
  .footer-col:first-child {
    border-left: none;
    border-top: 1px solid #555;
    padding: 20px 0 0;
    margin-top: 20px;
  }

  .footer-grid:first-child .footer-col:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }

  .footer-subscribe {
    display: block;
    padding: 20px 0;
  }

  .subscribe-form {
    min-width: 0;
  }

  .input-wrapper {
    align-items: stretch;
  }

  .input-wrapper input,
  .input-wrapper button {
    width: 100%;
  }

  .input-wrapper button {
    margin-left: 0;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .footer-about {
    padding: 24px 0;
  }

  .footer-about strong {
    font-size: 1.15rem;
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 1.85rem;
  }

  .head h2,
  .about__content h2,
  .ceremony h2,
  .legacy h2,
  .cta h2 {
    font-size: 1.45rem;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(odd),
  .stat:nth-child(even) {
    border-right: none;
    border-bottom: 1px solid #e5e0d4;
    padding-bottom: 16px;
  }

  .stat:last-child {
    border-bottom: none;
  }
}

@media (max-width: 700px) {
  .top-strip__inner,
  .top-strip__contact {
    align-items: center;
  }

  .top-strip__inner {
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.65rem var(--page-gutter) 0.85rem;
    text-align: center;
  }

  .top-strip__contact {
    justify-content: center;
    gap: 0.5rem 1.25rem;
  }

  .top-strip__contact a,
  .top-strip__button {
    font-size: 1rem;
  }

  .top-strip__button {
    width: 100%;
    min-height: 40px;
  }
}

/* =========================================================
   ABOUT SECTION - FINAL OVERRIDE
   ========================================================= */
@media (min-width: 992px) {
  #about-awards .about {
    display: grid;
    grid-template-columns: 48fr 52fr;
    gap: 4rem;
    align-items: stretch;
    min-height: 760px;
  }

  #about-awards .about__media {
    margin: 0;
    height: 100%;
  }

  #about-awards .about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
  }

  #about-awards .about__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  #about-awards .eyebrow {
    margin-bottom: 10px;
  }

  #about-awards .about__content h2 {
    font-size: clamp(1.4rem, 2.3vw, 2.5rem);
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  #about-awards .about__content p:first-of-type {
    margin-top: 0;
    max-width: 100%;
  }

  #about-awards .about__quote {
    margin: 34px 0;
    padding-left: 22px;
    border-left: 5px solid var(--gold-dark);
  }

  #about-awards .about__grid {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  #about-awards .pill-link {
    min-height: 80px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 16px;
    font-size: 1.25rem;
    border: 1px solid #e4ddd1;
    box-shadow: none;
  }
}

/* Match AI Government and Cities Awards typography system */
@font-face {
  font-family: "BruumFY-Regular";
  src: url("../../The 30th Middle East Ai Government and Cities Award/fonts/BruumFY-Regular.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "BruumFY-Bold";
  src: url("../../The 30th Middle East Ai Government and Cities Award/fonts/BruumFY-Bold.otf")
    format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "BruumFY-Light";
  src: url("../../The 30th Middle East Ai Government and Cities Award/fonts/BruumFY-Light.otf")
    format("opentype");
  font-weight: 300;
  font-style: normal;
}

body,
p,
a,
li,
.ticker,
.stat span,
.about-copy p,
.step p,
.city-cards p,
.agenda p,
.footer-grid a,
.footer-bottom p {
  font-family: "BruumFY-Regular", "BruumFY", Arial, sans-serif !important;
}

body {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-copy h1,
.hero-badge-text,
.section-head h2,
.card h3,
.category-card h3,
.caption-line,
.stat strong,
.eyebrow,
.btn,
.step h3,
.city-cards h3,
.agenda strong,
.footer-grid strong,
.subscribe-row strong,
.subscribe-form button {
  font-family: "BruumFY-Bold", "BruumFY", Arial, sans-serif !important;
}

.main-nav .nav-list a {
  font-family: "BruumFY", "BruumFY-Regular", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

@media (max-width: 720px) {
  .main-nav .nav-list a {
    font-size: 15px !important;
  }
}

/* Balanced final CTA heading */
.cta-title {
  max-width: 1060px;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.12;
}

.cta-title span {
  display: block;
}

@media (min-width: 992px) {
  .cta-title span {
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .cta-title {
    font-size: 1.55rem;
    line-height: 1.18;
  }

  .cta-title span {
    display: inline;
    white-space: normal;
  }
}

/* Approved typography from woibex/2026/judging.htm */
body,
main,
section,
p,
li,
td,
label,
input,
select,
textarea,
button,
a,
.stat span,
.stat__label,
.about-copy p,
.hero__desc,
.step p,
.city-cards p,
.agenda p,
.footer-grid a,
.footer-bottom p,
.copy-right p {
  font-family: "BruumFY-Light", "BruumFY", Arial, sans-serif !important;
}

p,
main li,
.profile p,
.profile ul li,
.about-copy p,
.section-head p,
.hero__desc,
.step p,
.city-cards p,
.agenda p {
  font-size: 1.1rem !important;
  line-height: 33px !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-info h1,
.hero__title,
.about-title,
.section-head h2,
.category-card h3,
.card h3,
.step h3,
.city-cards h3,
.agenda strong,
.eyebrow,
.btn,
.stat strong,
.stat__num,
.caption-line,
.footer-grid strong,
.subscribe-row strong,
.subscribe-form button {
  font-family: "BruumFY-Bold", "BruumFY", Arial, sans-serif !important;
}

strong,
b,
.main-nav .nav-list a,
.nav-list a,
.footer-bottom strong,
.ticker,
.ticker strong,
.cta-date,
.hero__date {
  font-family: "BruumFY-Regular", "BruumFY", Arial, sans-serif !important;
}

.main-nav .nav-list a,
.nav-list a {
  font-size: 17px !important;
  font-weight: 400 !important;
}

@media (max-width: 720px) {
  p,
  main li,
  .profile p,
  .profile ul li,
  .about-copy p,
  .section-head p,
  .hero__desc,
  .step p,
  .city-cards p,
  .agenda p {
    font-size: 18px !important;
    line-height: 29px !important;
  }

  .main-nav .nav-list a,
  .nav-list a {
    font-size: 15px !important;
  }
}
.agenda-title {
  color: #fff !important;
  font-size: clamp(1.35rem, 1.65vw, 1.9rem) !important;
  line-height: 1.2 !important;
  margin: 0 0 4px !important;
}

.agenda div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
}

.agenda div strong {
  color: #fff !important;
  display: inline-block !important;
  white-space: nowrap;
}

.agenda div p {
  margin-top: 0 !important;
  white-space: nowrap;
}
.agenda div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}
.agenda div:last-child {
  border-bottom: 0;
}
.agenda strong {
  display: block;
  color: #fff;
  font-family: Ainslie, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
}
.agenda p {
  margin-top: 4px;
  font-size: 1rem;
}
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 22px 0 26px;
}
.footer-bottom strong {
  display: block;
  margin-bottom: 8px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  max-width: 980px;
  margin: 0 auto;
}
.copyright {
  font-weight: 700;
  margin-top: 10px !important;
}
/* ---------- Flagship award index (plain grouped list) ---------- */
.award-index__title {
  font-size: clamp(1.7rem, 2.9vw, 2.7rem);
  line-height: 1.2;
  margin: 8px 0 34px;
}

.award-group {
  margin-bottom: 34px;
}

.award-group__title {
  font-size: clamp(1.4rem, 1.55vw, 1.5rem);
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.award-group__title::before {
  content: "> ";
}

.award-group__list {
  margin: 0;
  padding-left: 3.4em;
  list-style: disc;
}

.award-group__list li {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 1.4vw, 1.25rem) !important;
  line-height: 1.5 !important;
}

@media (max-width: 767px) {
  .award-group__list {
    padding-left: 1.5em;
  }

  .award-group__list li {
    font-size: 17px !important;
    line-height: 27px !important;
  }
}

/* ---------- Award detail (single page, ?category= driven) ---------- */
[hidden] {
  display: none !important;
}

.award-group__list li a {
  color: inherit;
  text-decoration: none;
}

.award-group__list li a:hover,
.award-group__list li a:focus-visible {
  color: var(--gold-dark);
  text-decoration: underline;
}

.award-detail {
  padding: 8px 0 48px;
}

.award-detail__back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-family: "BruumFY-Bold", "BruumFY", Arial, sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.award-detail__back:hover {
  text-decoration: underline;
}

.award-detail__category {
  margin-bottom: 10px !important;
  color: var(--gold-dark) !important;
  font-family: "BruumFY-Bold", "BruumFY", Arial, sans-serif !important;
  text-transform: uppercase;
  text-align: center;
}

.award-detail__title {
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.award-detail__section {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  line-height: 1.25;
  color: var(--gold-dark) !important;
  margin: 50px 0;
}

/* ---------- Welcome letter (matches ai-gov-cities/welcome.htm metrics) ---------- */
.welcome-letter {
  padding: 40px 0;
}

/* Bootstrap .container breakpoints, so the measure matches the source page */
.welcome-letter__inner {
  width: calc(100vw - (var(--page-gutter) * 2));
  margin: 0 auto;
}

@media (min-width: 576px) {
  .welcome-letter__inner {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .welcome-letter__inner {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .welcome-letter__inner {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .welcome-letter__inner {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .welcome-letter__inner {
    max-width: 1320px;
  }
}

.welcome-letter h2 {
  font-family: "BruumFY-Bold", "BruumFY", Arial, sans-serif !important;
  font-size: 28px !important;
  line-height: 39px !important;
  font-weight: 700;
  color: #000000;
  margin: 0 0 24px;
}

.welcome-letter p {
  font-family: "BruumFY-Light", "BruumFY", Arial, sans-serif !important;
  font-size: 20px !important;
  line-height: 33px !important;
  text-align: justify;
  color: #000000;
  margin: 0 0 16px !important;
  max-width: none;
}

.welcome-letter .signature-block {
  font-family: "BruumFY-Regular", "BruumFY", Arial, sans-serif !important;
  font-size: 19px !important;
  line-height: 28.5px !important;
  font-weight: 700;
  color: #000000;
}

/* ---------- Inner content pages (procedure, judging, ceremony, contact) ---------- */
.profile h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  margin-bottom: 18px;
}

.profile h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  margin-bottom: 14px;
}

.profile h4 {
  color: var(--gold-dark);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  margin: 30px 0 10px;
}

.profile > p,
.profile ul {
  max-width: 1100px;
}

.profile p {
  margin-bottom: 14px;
}

.profile ul {
  margin: 0 0 20px;
  padding-left: 1.3em;
}

.profile ul li {
  margin-bottom: 8px;
}

.profile ul li::marker {
  color: var(--gold-dark);
}

.profile a {
  color: var(--gold-dark);
}

.profile__meta strong {
  color: var(--ink);
}

.profile__rule {
  border: 0;
  border-top: 1px solid #e2dcd0;
  margin: 22px 0;
  max-width: 1100px;
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-note {
  font-family: "BruumFY-Bold", "BruumFY", Arial, sans-serif !important;
  font-weight: 700;
  color: var(--ink);
}

.contact-form {
  max-width: 720px;
  margin-top: 8px;
}

.field {
  margin-bottom: 20px;
}

.field__label {
  display: block;
  margin-bottom: 8px;
  font-family: "BruumFY-Bold", "BruumFY", Arial, sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.field__label i {
  color: var(--ink);
  margin-right: 8px;
}

.field__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d6d0c4;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
}

.field__input:focus {
  outline: none;
  border-color: var(--gold-dark);
}

.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 12px;
}

.contact-aside {
  background: var(--cream);
  padding: 26px 24px;
  border-radius: 10px;
}

.contact-aside a {
  color: var(--ink);
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- Footer institute lockup ---------- */
.footer-institute {
  position: relative;
  padding: 4px 0 2px;
}

.footer-institute__lockup {
  display: block;
  width: min(720px, 66vw);
  height: auto;
  margin: 0 auto;
}

.footer-institute__years {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: clamp(58px, 7.8vw, 124px);
  width: auto;
}

.footer-institute__intro {
  max-width: 1360px !important;
  margin: 14px auto 0 !important;
  font-size: clamp(1.2rem, 1.2vw, 1.2rem) !important;
  line-height: 1.7 !important;
  color: #ffffff !important;
}

.footer-bottom .copyright {
  color: var(--gold) !important;
  font-size: clamp(0.85rem, 0.95vw, 1.05rem) !important;
  margin-top: 12px !important;
}

@media (max-width: 767px) {
  .footer-institute__lockup {
    width: min(520px, 86vw);
  }

  .footer-institute__years {
    position: static;
    transform: none;
    height: 88px;
    margin: 16px auto 0;
  }
}

.social-icons li {
  list-style: none;
}

.social-icons li a {
  display: inline-flex;
  text-decoration: none;
}

.social-icons li a i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff !important;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.social-icons li a i:hover {
  transform: scale(1.1);
}

.social-icons-facebook i {
  background-color: #3b5998 !important;
}

.social-icons-instagram i {
  background-color: #e4405f !important;
}

.social-icons-twitter i {
  background-color: #000 !important;
}

.social-icons-linkedin i {
  background-color: #0077b5 !important;
}

.social-icons-youtube i {
  background-color: #cd201f !important;
}
/* Social icons copied from the main homepage footer */
.subscribe-row .social-icons {
  font-size: 16px;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-right: 80px;
}

.subscribe-row .social-icons span {
  padding-right: 15px;
  font-weight: bold;
  color: #fff;
}

/* ---------- Flagship award categories ---------- */
.flagship {
  --flagship-red: #cc2229;
  --flagship-inset: 4vw;
  --flagship-copy: 50vw;
  padding: 72px 0 0;
  background: #ffffff;
}

.flagship__head {
  text-align: center;
  max-width: 1305px;
  margin: 0 auto;
  padding-bottom: 10px;
}

.flagship__title {
  color: var(--flagship-red);
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.flagship__eyebrow {
  display: block;
  margin: 0 auto;
  margin-top: 8px;
  color: var(--gold-dark);
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--flagship-red);
  padding-bottom: 5px;
  margin-bottom: 22px;
  max-width: 900px;
  text-align: center;
}

.flagship__lede {
  margin-top: 8px;
  text-align: left;
  font-weight: 100;
  font-size: 20px !important;
  text-align: justify;
}

.flagship-panel {
  position: relative;
  background: #ffffff;
}

.flagship-panel + .flagship-panel {
  border-top: 5px solid var(--gold-light);
}

.flagship-panel__img {
  width: 100%;
  height: auto;
}

.flagship-panel .shell {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--flagship-inset);
}

.flagship-panel__copy {
  max-width: var(--flagship-copy);
}

.flagship-panel--copy-right .shell {
  justify-content: flex-end;
  text-align: end;
}
.flagship-panel--copy-right .shell .flagship-panel__title {
  margin-left: auto;
}
.flagship-panel__title {
  font-size: clamp(1.25rem, 1.8vw, 3rem);
  line-height: 1.2;
  color: var(--gold-dark);
  max-width: 45vw;
}

.flagship-panel__subtitle {
  margin-top: 0.4em;
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(0.95rem, 1.8vw, 2.25rem) !important;
  line-height: 1.25 !important;
}

.flagship-panel__desc {
  margin-top: 0.75em;
  font-weight: 100;
  font-size: clamp(1.4rem, 1.2vw, 1.2rem) !important;
  line-height: 1.55 !important;
}

.flagship-panel__cta {
  display: inline-block;
  margin-top: 1.15em;
  padding: 0.9em 1.4em;
  background: var(--flagship-red);
  color: #ffffff;
  font-family: "Ainslie", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.2vw, 1.25rem);
  line-height: 1.2;
  text-decoration: none;
  border-radius: 4px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.flagship-panel__cta:hover {
  background: #a81b21;
  transform: translateY(-1px);
}

/* Catalogue variant: legacy heading + list of award titles per panel */
.flagship--catalogue .flagship-panel__title {
  font-size: clamp(1.05rem, 1.8vw, 2.3rem);
  line-height: 1.2;
}

.flagship-panel__list {
  margin: 0.85em 0 0;
  padding-left: 1.15em;
  list-style: disc;
  color: var(--body);
}

.flagship-panel__list li {
  margin-top: 0.42em;
  font-size: clamp(1rem, 1.3vw, 1.4rem) !important;
  line-height: 1.45 !important;
}

.flagship-panel__list li::marker {
  color: var(--gold-dark);
}

/* Right-aligned panels: keep the bullet attached to the text instead of
   stranding it at the left padding edge */
.flagship-panel--copy-right .flagship-panel__list {
  padding-left: 0;
  list-style-position: inside;
}

.flagship__note {
  padding: 54px 0 72px;
}

.flagship__note p {
  /* max-width: 1440px; */
  margin: 0 auto;
  text-align: center;
  color: var(--black);
  font-weight: 700;
  font-size: 1.4rem !important;
}

/* Stack the panels once the overlay type would become unreadable */
@media (max-width: 767px) {
  .flagship {
    padding-top: 48px;
  }

  .flagship__head {
    padding-bottom: 32px;
  }

  .flagship-panel .shell {
    position: static;
    display: block;
    width: min(1600px, calc(100vw - (var(--page-gutter) * 2)));
    margin: 0 auto;
    padding: 22px 0 30px;
  }

  .flagship-panel__copy {
    max-width: none;
  }

  .flagship-panel__title {
    font-size: 1.55rem;
  }

  .flagship-panel__subtitle {
    font-size: 1.2rem !important;
  }

  .flagship-panel__desc {
    font-size: 18px !important;
    line-height: 29px !important;
  }

  .flagship-panel__cta {
    font-size: 1rem;
  }

  .flagship--catalogue .flagship-panel__title {
    font-size: 1.35rem;
  }

  .flagship-panel__list li {
    font-size: 17px !important;
    line-height: 27px !important;
  }

  .flagship__note {
    padding: 34px 0 48px;
  }
}
.cta__copy p {
  line-height: 28px !important;
}
.cta__copy br {
  padding-top: 10px !important;
}
.cta__copy p {
  margin-top: 11px !important;
  font-weight: 100 !important;
  font-size: 1.3rem !important;
}
