:root {
  --navy: #06182f;
  --navy-2: #092746;
  --blue: #0b55c6;
  --red: #d60909;
  --green: #12823a;
  --gold: #f2bd22;
  --ink: #07182d;
  --muted: #607084;
  --line: #dce5ef;
  --paper: #f5f8fb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: min(320px, 44vw);
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #2d4058;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 0;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 900;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(18, 130, 58, 0.24);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 22px;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 78px);
  align-items: center;
  padding: clamp(52px, 9vw, 110px) clamp(18px, 5vw, 70px);
  color: var(--white);
  overflow: hidden;
  background-image: url("assets/poster.png");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 47, 0.96), rgba(6, 24, 47, 0.78) 52%, rgba(6, 24, 47, 0.36)),
    linear-gradient(0deg, rgba(6, 24, 47, 0.26), rgba(6, 24, 47, 0.26));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.hero-line {
  max-width: 700px;
  margin-bottom: 26px;
  color: #dce9f7;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.hero-actions,
.hero-points,
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  margin-top: 28px;
}

.hero-points span,
.category-list span {
  padding: 10px 12px;
  color: #e7f1fb;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  font-weight: 800;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  padding: 22px clamp(18px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.intro-band strong,
.intro-band a {
  display: block;
}

.intro-band strong {
  margin-bottom: 5px;
  color: var(--navy);
}

.intro-band a {
  color: var(--muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-copy {
  max-width: 760px;
}

.section-copy p,
.about-card p,
.service-grid p,
.timeline p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.62;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  background: var(--white);
}

.about-card {
  padding: 28px;
  color: var(--white);
  background: var(--navy);
  border-top: 6px solid var(--green);
  border-radius: 8px;
}

.about-card p {
  color: #d8e6f4;
}

.services {
  color: var(--white);
  background: var(--navy);
}

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

.service-grid article {
  min-height: 225px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.service-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.service-grid p {
  color: #d5e4f3;
}

.process {
  background: var(--paper);
}

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

.timeline article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 8px;
}

.timeline article:nth-child(2) {
  border-top-color: var(--blue);
}

.timeline article:nth-child(3) {
  border-top-color: var(--green);
}

.timeline strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
}

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.7fr;
  gap: 16px;
  align-items: stretch;
}

figure {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

figure img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.poster-tile img {
  object-position: top center;
}

figcaption {
  padding: 13px 15px;
  color: var(--navy);
  font-weight: 900;
}

.category-list {
  margin-top: 18px;
}

.category-list span {
  color: var(--navy);
  background: #eef3f8;
  border-color: var(--line);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(214, 9, 9, 0.16), transparent 35%),
    linear-gradient(225deg, rgba(18, 130, 58, 0.18), transparent 32%),
    var(--navy);
}

.contact-copy p {
  color: #d8e6f4;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.contact-panel a:not(.button) {
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 70px);
  color: #c8d6e6;
  background: #030b15;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--gold);
  font-weight: 900;
}

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

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .topbar.menu-open .site-nav,
  .topbar.menu-open .nav-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .topbar.menu-open .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .topbar.menu-open .nav-cta {
    width: 100%;
  }

  .intro-band,
  .about,
  .service-grid,
  .timeline,
  .gallery-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 720px;
  }

  figure img {
    height: 300px;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: min(255px, 72vw);
  }

  h1 {
    font-size: 43px;
  }

  .hero {
    min-height: 680px;
    background-position: 62% center;
  }

  .hero-actions .button,
  .contact-panel .button {
    width: 100%;
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer {
    flex-direction: column;
  }
}
