:root {
  --white: #ffffff;
  --blue: #25255e;
  --steel: #4682b4;
  --yellow: #f9c400;
  --black: #000000;
  --ink: #071327;
  --muted: #7e7e86;
  --line: rgba(37, 37, 94, 0.18);
  --soft: #f3f4f7;
  --shadow: 0 18px 45px rgba(7, 19, 39, 0.12);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  width: 100%;
  margin: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  color: var(--blue);
  border-bottom: 1px solid rgba(37,37,94,.08);
}

.brand img {
  width: 188px;
  height: auto;
  object-fit: contain;
  filter: none;
}

.menu-toggle,
.menu-close {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.menu-toggle i,
.menu-close i {
  color: var(--yellow);
  font-size: 22px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--steel);
  color: var(--white);
  padding: 34px clamp(24px, 5vw, 72px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-overlay.open { opacity: 1; pointer-events: auto; }

.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-top img {
  width: 220px;
  height: auto;
  object-fit: contain;
  filter: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 24px 70px;
  align-items: end;
  max-width: 1180px;
}

.big-link {
  display: block;
  font-size: clamp(38px, 5.2vw, 76px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.02;
  margin: 12px 0;
}

.menu-group { display: grid; gap: 8px; }

.menu-group a:not(.big-link) {
  font-size: 20px;
  color: rgba(255,255,255,.82);
  line-height: 1.25;
}

main,
footer {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  color: var(--white);
}

.hero-media { position: absolute; inset: 0; }

.hero-media img,
.hero-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-media iframe { transform: scale(1.18); }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.78), rgba(0,0,0,.28) 55%, rgba(0,0,0,.56)),
    linear-gradient(to top, rgba(0,0,0,.52), transparent 48%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(24px, 6vw, 96px) 70px;
  max-width: 980px;
}

.hero-copy p:first-child {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-copy h1 {
  font-size: clamp(58px, 8vw, 132px);
  line-height: .86;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.hero-copy h1 span {
  color: var(--yellow);
  font-family: Georgia, serif;
  font-style: italic;
  letter-spacing: -0.04em;
}

.scroll-cue {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 600;
}

.scroll-cue i {
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  padding: 6px;
  color: var(--yellow);
}

.stats {
  background: var(--blue);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats div {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 28px clamp(22px, 3vw, 46px);
  border-right: 1px solid rgba(255,255,255,.22);
}

.stats i {
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  padding: 12px;
  font-size: 24px;
}

.stats strong {
  color: var(--yellow);
  font-size: 34px;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.stats span {
  font-size: 13px;
  line-height: 1.15;
  font-weight: 600;
}

.intro,
.showcase,
.calendar {
  background: var(--white);
  padding: clamp(72px, 8vw, 120px) clamp(24px, 6vw, 96px);
}

.kicker {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 18px;
}

.kicker.muted { color: var(--muted); }
.light-text { color: var(--white) !important; }

.intro h2,
.section-head h2 {
  font-size: clamp(44px, 6.4vw, 112px);
  line-height: .88;
  letter-spacing: -0.075em;
  max-width: 1240px;
  color: var(--blue);
}

.wide-copy {
  font-size: clamp(20px, 2.8vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 30px 0 20px;
  width: 100%;
  max-width: none;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid currentColor;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 500;
}

.btn.blue { background: var(--blue); color: var(--white); }
.btn.outline { background: transparent; color: var(--blue); }
.btn.yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn i { font-size: 18px; }

.service-cards {
  background: var(--white);
  padding: 0 clamp(24px, 6vw, 96px) clamp(72px, 8vw, 120px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tile,
.show-card {
  position: relative;
  min-height: 330px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow);
  background: var(--blue);
}

.tile::after,
.show-card::after,
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.78));
  z-index: 1;
}

.tile div,
.show-card div {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 2;
}

.tile h3,
.show-card h3 {
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: .95;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-transform: uppercase;
}

.tile p,
.show-card p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.25;
  max-width: 320px;
}

.tile i,
.show-card i {
  color: var(--yellow);
  font-size: 30px;
  margin-top: 18px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head > a {
  color: var(--blue);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

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

.show-card { min-height: 300px; }

.banner {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  margin: 0;
}

.banner .slides,
.banner .slide,
.banner > img { position: absolute; inset: 0; }

.banner .slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.banner .slide.active { opacity: 1; }

.banner-copy {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 7vw, 96px);
  max-width: 820px;
}

.banner h2 {
  font-size: clamp(42px, 7vw, 104px);
  line-height: .86;
  letter-spacing: -0.075em;
  font-weight: 900;
  text-transform: uppercase;
}

.banner p {
  margin: 22px 0;
  font-size: 18px;
  line-height: 1.25;
  max-width: 420px;
}

.feature-row {
  background: var(--white);
  color: var(--ink);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 430px;
  border-top: 28px solid var(--white);
  padding: 0 clamp(24px, 6vw, 96px);
  gap: 0;
}

.feature-text {
  background: var(--white);
  border: 1px solid var(--blue);
  color: var(--muted);
  padding: clamp(34px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.feature-text.black-panel {
  background: var(--black);
  border-color: var(--black);
}

.feature-text.blue-panel {
  background: var(--blue);
  border-color: var(--blue);
}

.gex-visuals-row,
.gex-visuals-panel {
  background: var(--white);
}

.gex-visuals-panel {
  color: var(--blue);
  border-color: var(--blue);
}

.gex-visuals-panel p {
  color: var(--blue) !important;
}

.gex-visuals-panel .btn.outline {
  color: var(--blue);
  border-color: var(--blue);
}

.feature-logo {
  width: min(360px, 80%);
  height: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
}

.shift-logo { width: min(330px, 80%); }

.feature-text p:not(.kicker) {
  color: var(--muted);
  font-size: clamp(19px, 2.1vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  max-width: 640px;
  margin-bottom: 22px;
}

.feature-img { min-height: 430px; }

.calendar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}

.calendar-item {
  display: grid;
  grid-template-columns: 132px 1fr 34px;
  gap: 22px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.calendar-item img {
  height: 76px;
  width: 132px;
  object-fit: contain;
  object-position: left center;
}

.calendar-item strong {
  display: block;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 900;
}

.calendar-item span {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  margin: 6px 0 3px;
}

.calendar-item p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.calendar-item i {
  color: var(--yellow);
  font-size: 28px;
}

.cta {
  margin: 0;
  background: var(--yellow);
  color: var(--ink);
  padding: clamp(34px, 6vw, 72px) clamp(24px, 6vw, 96px);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.cta .kicker { color: var(--ink); }

.cta h2 {
  font-size: clamp(30px, 4.6vw, 74px);
  line-height: .9;
  letter-spacing: -0.065em;
  max-width: 1050px;
}

footer {
  background: #f1f3f6;
  color: var(--ink);
  padding: 56px clamp(24px, 6vw, 96px) 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 44px;
}

.footer-gex {
  width: 210px;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.mie-logo {
  width: 190px;
  height: auto;
  object-fit: contain;
  margin: 14px 0;
}

.footer-col h4 {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 18px;
}

.footer-col p,
.footer-col a {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 8px;
}

.footer-col i {
  color: var(--blue);
  margin-right: 8px;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(0,0,0,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom i {
  color: var(--blue);
  font-size: 20px;
}

@media (max-width: 1050px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .service-cards,
  .show-grid,
  .calendar-grid { grid-template-columns: 1fr 1fr; }

  .feature-row {
    grid-template-columns: 1fr;
    border-top-width: 28px;
  }

  footer { grid-template-columns: 1fr 1fr; }
  .hero-media iframe { display: none; }
}

@media (max-width: 680px) {
  .site-nav { padding: 18px 22px; }
  .brand img { width: 156px; }

  .menu-overlay { padding: 24px; }
  .menu-top img { width: 170px; }
  .menu-grid { grid-template-columns: 1fr; gap: 18px; }

  .big-link {
    font-size: clamp(40px, 13vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.06em;
  }

  .menu-group a:not(.big-link) { font-size: 18px; }

  .hero { min-height: 720px; }

  .hero-copy {
    padding: 130px 22px 44px;
    justify-content: center;
  }

  .hero-copy h1 { font-size: clamp(58px, 16vw, 86px); }

  .stats,
  .service-cards,
  .show-grid,
  .calendar-grid,
  footer { grid-template-columns: 1fr; }

  .stats div {
    border-right: 0;
    grid-template-columns: auto auto 1fr;
  }

  .intro,
  .showcase,
  .calendar { padding: 72px 22px; }

  .intro h2,
  .section-head h2 { font-size: clamp(42px, 12vw, 72px); }

  .service-cards { padding: 0 22px 72px; }

  .tile,
  .show-card { min-height: 380px; }

  .section-head { display: block; }
  .section-head > a { margin-top: 18px; }

  .banner,
  .banner-copy { min-height: 620px; }

  .banner-copy { padding: 34px 22px; }

  .banner h2 { font-size: clamp(46px, 14vw, 78px); }

  .feature-row {
    border-top: 28px solid var(--white);
    padding: 0 22px;
  }

  .feature-text {
    padding: 38px 22px;
    min-height: auto;
  }

  .feature-img { min-height: 330px; }

  .feature-logo { width: min(300px, 90%); }

  .calendar-item {
    grid-template-columns: 105px 1fr 24px;
    gap: 14px;
  }

  .calendar-item img {
    width: 105px;
    height: 64px;
  }

  .cta { display: block; }
  .cta .btn { margin-top: 24px; }

  footer { padding-top: 44px; }

  .footer-bottom { display: block; }
  .footer-bottom div { margin-top: 16px; }
}


/* =========================================================
   Mobile overflow protection patch
   Keeps the homepage locked to 100% viewport width
   without changing the visual design.
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main,
footer,
section,
header,
nav,
aside {
  max-width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
iframe,
video {
  max-width: 100%;
}

h1,
h2,
h3,
p,
a,
span,
strong {
  overflow-wrap: break-word;
}

.hero,
.hero-media,
.banner,
.banner-slider,
.slides,
.feature-row,
.service-cards,
.showcase,
.calendar,
.cta,
footer {
  overflow-x: hidden;
}

.stats div,
.tile,
.show-card,
.calendar-item,
.feature-text,
.feature-img,
.footer-col,
.footer-bottom,
.menu-grid,
.menu-group {
  min-width: 0;
}

.hero-copy {
  width: 100%;
  max-width: 980px;
}

.hero-copy h1 {
  max-width: 100%;
}

.hero-media iframe {
  transform-origin: center;
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-copy,
  .intro,
  .showcase,
  .calendar,
  .cta,
  .feature-row,
  .service-cards {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .service-cards {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .tile,
  .show-card,
  .feature-text,
  .feature-img,
  .calendar-item,
  .banner-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-media iframe {
    transform: scale(1.08);
  }

  .button-row,
  .footer-bottom,
  .footer-bottom div {
    max-width: 100%;
  }
}
