@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap");

:root {
  --primary: #121f49;
  --primary-soft: #26355f;
  --accent: #f9ca10;
  --accent-deep: #e8b600;
  --cream: #fffbea;
  --ink: #0c1531;
  --muted: #5d6475;
  --line: #eceef4;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(18, 31, 73, 0.13);
  --section-pad: clamp(4.5rem, 8vw, 7.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.container {
  width: min(100% - 4rem, 1200px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 80px;
  padding: 0.5rem 2rem;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(4, 12, 33, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 162px;
  height: 64px;
  object-fit: contain;
  padding: 0.45rem 0.7rem;
  background: var(--white);
  border-radius: 10px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2rem);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(249, 202, 16, 0.22);
}

.header-call svg,
.btn svg,
.contact-button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  padding: 9.5rem 1.5rem 5rem;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(18, 31, 73, 0.76), rgba(18, 31, 73, 0.65)),
    radial-gradient(circle at center, rgba(18, 31, 73, 0.1), rgba(18, 31, 73, 0.65));
}

.hero-content {
  position: relative;
  width: min(100%, 1000px);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 1rem;
  border: 1px solid rgba(249, 202, 16, 0.42);
  border-radius: 999px;
  background: rgba(249, 202, 16, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-eyebrow span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  margin-top: 1.3rem;
  font-size: clamp(3.1rem, 6vw, 4.5rem);
  font-weight: 900;
}

h1 mark {
  background: transparent;
  color: var(--accent);
}

h1 span {
  display: block;
}

.hero-copy {
  max-width: 700px;
  margin: 1.45rem auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 220px;
  min-height: 46px;
  padding: 0.65rem 1.4rem;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(249, 202, 16, 0.2);
}

.btn-primary:hover {
  background: #ffd72f;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(2.5rem, 8vw, 6.5rem);
  margin: 3rem 0 0;
}

.hero-stats div {
  min-width: 120px;
}

.hero-stats dt {
  color: var(--accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
}

.section {
  padding: var(--section-pad) 0;
}

.about-section,
.venues-section,
.clients-section,
.contact-section {
  background: var(--white);
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.92fr);
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}

.about-copy h2,
.section-heading h2,
.contact-content h2 {
  color: var(--primary);
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 900;
}

.about-copy h2 {
  font-size: clamp(2.35rem, 4vw, 3.35rem);
}

.about-copy p {
  margin: 1.35rem 0 0;
  color: #3f4657;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
}

.about-copy strong {
  color: var(--ink);
  font-weight: 900;
}

.reg-chip {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(18, 31, 73, 0.07);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.profile-panel {
  display: grid;
  gap: 3rem;
}

.profile-logo {
  width: min(100%, 350px);
  margin-inline: auto;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.profile-stats > div {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 1.2rem;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.profile-main-stat {
  grid-column: 1 / -1;
}

.profile-stats strong {
  color: var(--accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.profile-stats span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.section-heading {
  margin-bottom: clamp(2.4rem, 5vw, 3.75rem);
}

.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 1rem auto 0;
  color: #5d6475;
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  justify-items: center;
  gap: clamp(2.2rem, 6vw, 4rem);
  max-width: 760px;
  margin-inline: auto;
}

.service-bubble {
  display: grid;
  place-items: center;
  align-content: center;
  width: 146px;
  aspect-ratio: 1;
  padding: 1.1rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  text-align: center;
  box-shadow: 0 18px 35px rgba(232, 182, 0, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 42px rgba(232, 182, 0, 0.3);
}

.service-bubble svg {
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 0.8rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.service-bubble h3 {
  max-width: 96px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.venue-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--primary);
  box-shadow: 0 18px 36px rgba(18, 31, 73, 0.1);
}

.venue-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.venue-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 31, 73, 0.9), rgba(18, 31, 73, 0.18), transparent);
}

.venue-card:hover img {
  transform: scale(1.05);
}

.venue-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  max-width: calc(100% - 2rem);
  padding: 0.45rem 0.85rem;
  border-radius: 9px;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.25;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.capability-card {
  overflow: hidden;
  border: 1px solid rgba(18, 31, 73, 0.08);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(18, 31, 73, 0.09);
}

.capability-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.capability-card div {
  padding: 1.6rem 1.5rem 1.8rem;
}

.capability-card h3 {
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 900;
}

.capability-card p {
  margin: 0.9rem 0 0;
  color: #5d6475;
}

.client-sheets {
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(18, 31, 73, 0.06);
}

.client-sheets img {
  width: 100%;
  height: auto;
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.client-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(18, 31, 73, 0.08);
  border-radius: 999px;
  background: #fffdf2;
  color: var(--ink);
  font-size: 0.82rem;
  box-shadow: 0 4px 12px rgba(18, 31, 73, 0.04);
}

.client-tags .highlight {
  background: var(--accent);
  font-weight: 900;
}

.contact-section {
  padding: 1rem 0 7rem;
}

.contact-panel {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: var(--primary);
  text-align: center;
  color: var(--white);
}

.contact-panel > img,
.contact-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-panel > img {
  object-fit: cover;
  opacity: 0.28;
}

.contact-overlay {
  background: rgba(18, 31, 73, 0.76);
}

.contact-content {
  position: relative;
  width: min(100% - 2rem, 820px);
  padding: 4rem 0;
}

.contact-content h2 {
  color: var(--white);
}

.contact-content p {
  margin: 1.1rem auto 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.1rem;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 60px;
  padding: 0.8rem 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  color: var(--white);
  font-weight: 900;
}

.contact-button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 18px 35px rgba(249, 202, 16, 0.22);
}

.contact-note {
  font-size: 0.92rem;
}

.site-footer {
  background: var(--primary);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

.footer-logo {
  width: 142px;
  height: 64px;
  object-fit: contain;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  background: var(--white);
}

.site-footer h2 {
  margin-bottom: 1rem;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.site-footer p,
.site-footer small,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a {
  display: table;
  margin-top: 0.7rem;
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer .accent-link {
  color: var(--accent);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.copyright p {
  margin: 0;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    border-radius: 12px;
    background: #0d183c;
    box-shadow: 0 20px 40px rgba(4, 12, 33, 0.22);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 1rem;
  }

  .header-call {
    display: none;
  }

  .about-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 2rem, 1200px);
  }

  .site-header {
    min-height: 74px;
    padding: 0.45rem 1rem;
  }

  .brand img {
    width: 136px;
    height: 56px;
  }

  .hero {
    min-height: 690px;
    padding-top: 7.5rem;
  }

  .hero-actions,
  .hero-stats,
  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 1.3rem;
    margin-top: 2.3rem;
  }

  .hero-stats div {
    min-width: 0;
  }

  .btn,
  .contact-button {
    width: min(100%, 330px);
  }

  .about-grid {
    gap: 3rem;
  }

  .service-grid,
  .venue-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 1.5rem;
  }

  .venue-card,
  .venue-card img {
    min-height: 205px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.65rem;
  }

  .about-copy h2,
  .section-heading h2,
  .contact-content h2 {
    font-size: 2.2rem;
  }

  .hero-eyebrow {
    align-items: flex-start;
    text-align: left;
    line-height: 1.35;
  }

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

  .profile-main-stat {
    grid-column: auto;
  }
}
