/* Australia Bright Development — corporate site */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --blue: #0a2463;
  --blue-light: #12357a;
  --gold: #d4af37;
  --gold-hover: #b8962f;
  --text: #333333;
  --text-muted: #666666;
  --bg-alt: #f5f7fa;
  --white: #ffffff;
  --header-h: 80px;
  --topbar-h: 40px;
  --page-min: 1280px;
  --content-max: 1240px;
  --font-en: "Inter", system-ui, sans-serif;
  --radius: 4px;
  --shadow: 0 8px 32px rgba(10, 36, 99, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-width: var(--page-min);
}

body {
  margin: 0;
  min-width: var(--page-min);
  font-family: var(--font-en);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Top bar + slogan */
.topbar {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar__inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.topbar__slogan {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.topbar__slogan .sep {
  opacity: 0.45;
}

.topbar__meta {
  display: flex;
  gap: 1.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e8ecf2;
  transition: box-shadow 0.25s;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.site-header__main {
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header__inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.site-header__logo img {
  height: 46px;
  width: auto;
}

.site-header__brand strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--blue);
}

.site-header__brand small {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.main-nav > a,
.nav-item__link {
  padding: 0.5rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}

.main-nav > a:hover,
.main-nav > a.is-active,
.nav-item__link:hover,
.nav-item.is-active .nav-item__link,
.nav-item__link.is-active {
  color: var(--blue);
}

/* Dropdown navigation */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item__caret {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.4rem;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}

.nav-item:hover .nav-item__caret,
.nav-item.is-open .nav-item__caret {
  color: var(--blue);
}

.nav-item.is-open .nav-item__caret svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid #e8ecf2;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(10, 36, 99, 0.12);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 200;
}

.nav-dropdown--wide {
  min-width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
  padding: 1.25rem 1.5rem;
}

.nav-item.is-open .nav-dropdown,
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__list {
  margin: 0;
  padding: 0;
}

.nav-dropdown__list a,
.nav-dropdown__col a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
  white-space: normal;
  line-height: 1.4;
}

.nav-dropdown__list a:hover,
.nav-dropdown__col a:hover {
  background: var(--bg-alt);
  color: var(--blue);
}

.nav-dropdown__col ul {
  margin: 0;
  padding: 0;
}

.nav-dropdown__title {
  margin: 0 0 0.5rem;
  padding: 0 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid #e8ecf2;
}

.nav-dropdown__col a {
  padding: 0.45rem 0;
}

.nav-item:last-child .nav-dropdown {
  left: auto;
  right: 0;
}

[id] {
  scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 20px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.btn-gold:hover {
  background: var(--gold-hover);
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-blue {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.btn-blue:hover {
  background: var(--blue-light);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  max-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 36, 99, 0.88) 0%,
    rgba(10, 36, 99, 0.55) 50%,
    rgba(10, 36, 99, 0.35) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero__title {
  color: #fff;
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  max-width: 720px;
}

.hero__sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.hero__slogan {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
}

/* Page hero (inner) */
.page-hero {
  background: var(--blue);
  color: #fff;
  padding: 3.5rem 0;
}

.page-hero--image {
  position: relative;
  padding: 0;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background-color: var(--blue);
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 36, 99, 0.88) 0%,
    rgba(10, 36, 99, 0.55) 55%,
    rgba(10, 36, 99, 0.4) 100%
  );
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 2rem;
  width: 100%;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2.25rem;
  font-weight: 700;
}

.page-hero p {
  margin: 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.page-body-placeholder {
  min-height: 200px;
  background: var(--white);
}

/* Inner page content */
.page-content {
  padding: 3.5rem 0 5rem;
}

.page-content--alt {
  background: var(--bg-alt);
}

.content-lead {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text);
  max-width: 920px;
  margin: 0 0 2.5rem;
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
}

.content-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-main h2 {
  color: var(--blue);
  font-size: 1.45rem;
  margin: 2.75rem 0 1rem;
  font-weight: 700;
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main h3 {
  color: var(--blue-light);
  font-size: 1.1rem;
  margin: 2rem 0 0.75rem;
  font-weight: 600;
}

.content-main p {
  margin: 0 0 1.15rem;
  color: var(--text);
}

.content-main ul,
.content-main ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
  color: var(--text);
}

.content-main ul {
  list-style: disc;
}

.content-main ol {
  list-style: decimal;
}

.content-main li {
  margin-bottom: 0.45rem;
}

.content-main a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-main a:hover {
  color: var(--gold-hover);
}

.content-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.content-grid--sidebar {
  grid-template-columns: 1fr 300px;
}

.content-grid--2 {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.content-figure {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-figure img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.content-figure figcaption {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  background: var(--bg-alt);
}

.content-highlight {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  margin: 2.5rem 0;
}

.content-highlight h3 {
  margin-top: 0;
  color: var(--blue);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.stat-box {
  background: var(--blue);
  color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.stat-box span {
  font-size: 0.78rem;
  opacity: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content-sidebar {
  background: var(--bg-alt);
  padding: 1.75rem;
  border-radius: var(--radius);
  position: sticky;
  top: calc(var(--header-h) + var(--topbar-h) + 1rem);
}

.content-sidebar h4 {
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.content-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-sidebar li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.content-sidebar a {
  color: var(--blue);
  font-weight: 500;
}

.content-sidebar a:hover {
  color: var(--gold-hover);
}

.content-cta {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.content-cta p {
  margin: 0;
  opacity: 0.9;
  max-width: 640px;
}

.content-cta h3 {
  color: var(--gold);
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

/* Project case studies */
.project-case {
  margin-bottom: 4.5rem;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid #e8ecf2;
}

.project-case:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.project-case__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.project-case__header h2 {
  color: var(--blue);
  font-size: 1.65rem;
  margin: 0;
}

.project-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  background: var(--gold);
  color: var(--blue);
}

.project-badge--progress {
  background: var(--blue);
  color: var(--gold);
}

.project-badge--upcoming {
  background: #e8ecf2;
  color: var(--blue);
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.project-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-case__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.project-case__grid div {
  background: var(--bg-alt);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
}

.project-case__grid h4 {
  color: var(--gold-hover);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.project-case__grid p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.project-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin: 2.5rem 0;
}

.project-index article {
  border: 1px solid #e8ecf2;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.project-index article:hover {
  box-shadow: var(--shadow);
}

.project-index img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-index__body {
  padding: 1.25rem 1.5rem;
}

.project-index h3 {
  color: var(--blue);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.project-index p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.project-index a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-article__hero-img {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.news-article__hero-img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.contact-form-wrap {
  max-width: 560px;
}

.breadcrumb {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a {
  color: var(--gold);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.section__title {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.section__text {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0;
  font-size: 1rem;
}

.section__head {
  margin-bottom: 3rem;
}

.section__head--center {
  text-align: center;
}

.section__head--center .section__text {
  margin-left: auto;
  margin-right: auto;
}

/* Intro split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split__img {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Business pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  background: var(--white);
  border: 1px solid #e8ecf2;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.section--alt .pillar {
  background: var(--white);
}

.pillar:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.pillar__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--blue);
}

.pillar__icon svg {
  width: 100%;
  height: 100%;
}

.pillar h3 {
  color: var(--blue);
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.pillar p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pillar__link {
  display: block;
  color: inherit;
}

.pillar__link:hover h3 {
  color: var(--gold);
}

.project-card > a {
  display: block;
  color: inherit;
}

/* Project cards */
.projects-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e8ecf2;
  transition: box-shadow 0.25s;
}

.project-card:hover {
  box-shadow: var(--shadow);
}

.project-card__img {
  position: relative;
  padding-top: 62%;
  overflow: hidden;
}

.project-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__status {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
}

.project-card__body {
  padding: 1.35rem 1.5rem;
}

.project-card__body h3 {
  color: var(--blue);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.project-card__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Contact strip home */
.contact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  background: var(--blue);
  color: #fff;
  padding: 3rem;
  border-radius: var(--radius);
}

.contact-strip h3 {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.contact-strip__title {
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  font-weight: 600;
}

.contact-strip address {
  font-style: normal;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.contact-strip p {
  margin: 0.25rem 0;
  opacity: 0.9;
}

/* Service blocks */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-block:nth-child(even) {
  direction: rtl;
}

.service-block:nth-child(even) > * {
  direction: ltr;
}

.service-block__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-block h2 {
  color: var(--blue);
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.service-block p {
  color: var(--text-muted);
  margin: 0;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.team-placeholder {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-placeholder img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* News */
.news-list {
  display: grid;
  gap: 2rem;
  max-width: 800px;
}

.news-item {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8ecf2;
}

.news-item__thumb {
  display: block;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.news-item__thumb img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.news-item h2 {
  color: var(--blue);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

.news-item time {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

.news-item p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 5rem;
}

.contact-info h2 {
  color: var(--blue);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.contact-info address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.map-wrap {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e8ecf2;
  height: 360px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d0d8e4;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  border-radius: var(--radius);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 0;
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-notice {
  color: var(--blue);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Upcoming banner */
.upcoming-banner {
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.upcoming-banner h2 {
  color: var(--blue);
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

/* Footer */
.site-footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 0;
  font-size: 0.88rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.site-footer__logo img {
  height: 42px;
  margin-bottom: 1rem;
}

.site-footer h5 {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.site-footer__legal {
  display: flex;
  gap: 1.5rem;
}

/* Legal */
.legal-content {
  padding: 3rem 0 5rem;
  max-width: 780px;
}

.legal-content h2 {
  color: var(--blue);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}

.legal-content a {
  color: var(--blue);
  font-weight: 600;
}

.text-center {
  text-align: center;
  margin-top: 2rem;
}
