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

body {
  background: #f4f6f9;
  color: #111827;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */

header {
  background: #021226;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #d6b46a;
}

/* HERO */

.media-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(2, 18, 38, 0.97) 0%, rgba(5, 24, 48, 0.86) 48%, rgba(9, 32, 61, 0.62) 100%),
    url("gala26.JPG");
  background-size: cover;
  background-position: center center;
}

.media-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.22;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 70px 0;
}

.kicker,
.eyebrow {
  color: #d6b46a;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.media-hero h1 {
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.media-hero p {
  max-width: 690px;
  color: #e5e7eb;
  font-size: 20px;
  margin-bottom: 26px;
}

/* BUTTONS */

.hero-actions,
.cta-actions,
.downloads-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-glass,
.btn-outline-dark,
.btn-glass-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: 0.3s ease;
}

.btn-primary {
  background: #d6b46a;
  color: #07111f;
  border: 1px solid #d6b46a;
}

.btn-primary:hover {
  background: #e3c57f;
  border-color: #e3c57f;
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: #07111f;
  border: 1px solid #07111f;
}

.btn-outline-dark:hover {
  background: #07111f;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-glass-dark {
  background: rgba(7, 17, 31, 0.06);
  color: #07111f;
  border: 1px solid rgba(7, 17, 31, 0.18);
}

.btn-glass-dark:hover {
  background: #07111f;
  color: #ffffff;
  transform: translateY(-2px);
}

/* QUOTE FEATURE */

.quote-feature {
  padding: 60px 0 35px;
}

.quote-card {
  position: relative;
  background: linear-gradient(135deg, #07111f, #10243d);
  color: #ffffff;
  border-radius: 28px;
  padding: 55px 50px;
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.18);
  border-top: 5px solid #d6b46a;
  overflow: hidden;
}

.quote-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  background: rgba(214, 180, 106, 0.08);
  border-radius: 50%;
}

.quote-icon {
  color: #d6b46a;
  font-size: 70px;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.quote-card blockquote {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 900;
  max-width: 900px;
  margin-bottom: 18px;
}

.quote-card p {
  color: #d6b46a;
  font-weight: 800;
}

/* SECTIONS */

.section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: 38px;
  color: #07111f;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.15;
}

.section-heading.light h2 {
  color: #ffffff;
}

.section-subtitle {
  max-width: 760px;
  margin: 16px auto 0;
  color: #6b7280;
  font-size: 17px;
}

.section-heading.light .section-subtitle {
  color: #d1d5db;
}

/* MEDIA CARDS */

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 24px;
}

.media-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(7, 17, 31, 0.1);
  transition: 0.3s ease;
}

.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(7, 17, 31, 0.16);
}

.media-card.featured {
  border-top: 5px solid #d6b46a;
}

.media-image {
  height: 230px;
  overflow: hidden;
}

.media-card.featured .media-image {
  height: 280px;
}

.media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-body {
  padding: 28px;
}

.media-tag {
  display: inline-block;
  background: rgba(214, 180, 106, 0.16);
  color: #8a681f;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.media-body h3 {
  color: #07111f;
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.media-body p {
  color: #4b5563;
  margin-bottom: 18px;
}

.text-link {
  color: #07111f;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid #d6b46a;
}

.text-link:hover {
  color: #d6b46a;
}

/* STATEMENTS */

.statements-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 180, 106, 0.1), transparent 28%),
    linear-gradient(135deg, #07111f, #10243d);
  color: #ffffff;
  padding: 85px 0;
}

.statements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.statement-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(214, 180, 106, 0.2);
  border-radius: 22px;
  padding: 32px;
  min-height: 190px;
  display: flex;
  align-items: center;
}

.statement-card p {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

/* PRESS GRID */

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.press-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 26px;
  box-shadow: 0 15px 40px rgba(7, 17, 31, 0.1);
  border-top: 5px solid #d6b46a;
}

.press-number {
  display: block;
  color: #d6b46a;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.press-card h3 {
  color: #07111f;
  font-size: 22px;
  margin-bottom: 10px;
}

.press-card p {
  color: #4b5563;
}

/* GALLERY */

.gallery-preview {
  background: #07111f;
  color: #ffffff;
  padding: 85px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, 230px);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.22);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.center-action {
  text-align: center;
  margin-top: 36px;
}

/* DOWNLOADS */

.downloads-section {
  padding: 80px 0;
  background: #f4f6f9;
}

.downloads-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  background: #ffffff;
  border-radius: 28px;
  padding: 45px;
  box-shadow: 0 15px 45px rgba(7, 17, 31, 0.1);
  border-left: 6px solid #d6b46a;
}

.downloads-card h2 {
  color: #07111f;
  font-size: 34px;
  margin-bottom: 12px;
}

.downloads-card p {
  color: #4b5563;
  max-width: 760px;
}

/* FINAL CTA */

.final-cta {
  padding: 85px 0;
  background: linear-gradient(135deg, #07111f, #10243d);
  color: #ffffff;
  text-align: center;
}

.final-cta h2 {
  font-size: 40px;
  margin-bottom: 18px;
}

.final-cta p {
  max-width: 780px;
  margin: 0 auto 30px;
  color: #e5e7eb;
  font-size: 18px;
}

.final-cta .cta-actions {
  justify-content: center;
}

.final-cta .btn-glass-dark {
  color: #ffffff;
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
}

/* FOOTER */

footer {
  background: #050b13;
  color: #cbd5e1;
  text-align: center;
  padding: 22px 0;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .media-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item.large {
    height: 300px;
    grid-row: auto;
  }

  .downloads-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  nav ul {
    gap: 14px;
  }

  nav a {
    font-size: 14px;
  }

  .media-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(2, 18, 38, 0.97) 0%, rgba(5, 24, 48, 0.9) 55%, rgba(9, 32, 61, 0.84) 100%),
      url("gala26.JPG");
    background-size: cover;
    background-position: center center;
  }

  .hero-content {
    text-align: center;
    padding: 60px 0;
  }

  .media-hero h1 {
    font-size: clamp(42px, 14vw, 58px);
    letter-spacing: -1px;
  }

  .media-hero p {
    font-size: 17px;
  }

  .hero-actions,
  .cta-actions,
  .downloads-actions {
    justify-content: center;
  }

  .btn-primary,
  .btn-glass,
  .btn-outline-dark,
  .btn-glass-dark {
    width: 100%;
  }

  .quote-card {
    padding: 36px 26px;
  }

  .section,
  .statements-section,
  .gallery-preview,
  .downloads-section,
  .final-cta {
    padding: 65px 0;
  }

  .section-heading h2,
  .downloads-card h2,
  .final-cta h2 {
    font-size: 30px;
  }

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

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

  .gallery-item,
  .gallery-item.large {
    height: 280px;
  }

  .statement-card p {
    font-size: 21px;
  }

  .downloads-card {
    padding: 32px 24px;
  }
}