:root {
  --brand-blue: #165d96;
  --brand-blue-dark: #0f3f66;
  --ink: #242426;
  --muted: #6f7378;
  --line: #dfe3e6;
  --surface: #ffffff;
  --surface-alt: #f4f7f8;
  --warm: #c69a43;
  --warm-soft: #f4ead7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
}

a:hover {
  color: var(--brand-blue-dark);
}

.container {
  max-width: 1180px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 118px;
  height: 58px;
  padding: 0;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 112px;
  height: 42px;
  object-fit: contain;
}

.site-nav .nav-link {
  color: var(--ink);
  font-weight: 650;
  padding: .5rem .85rem;
}

.site-nav .nav-link:hover {
  color: var(--brand-blue);
}

.nav-cta {
  margin-left: .4rem;
  color: #fff !important;
  background: var(--brand-blue);
  border: 1px solid var(--brand-blue);
  border-radius: 8px;
}

.nav-cta:hover {
  background: var(--brand-blue-dark);
}

.language-menu {
  margin: 0 .25rem;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 38px;
  padding: .25rem .55rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}

.language-trigger:hover,
.language-trigger:focus {
  border-color: rgba(22, 93, 150, .45);
  color: var(--brand-blue);
}

.language-code {
  font-size: .78rem;
  line-height: 1;
}

.language-option {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 650;
}

.language-option.active {
  color: #fff;
  background: var(--brand-blue);
}

.page-shell {
  overflow: hidden;
}

.hero-section {
  position: relative;
  padding: 76px 0 54px;
  background:
    linear-gradient(90deg, rgba(22, 93, 150, .09) 0, rgba(22, 93, 150, 0) 42%),
    var(--surface);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 54px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 14px;
  color: var(--brand-blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--warm);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 780;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 760;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 740;
}

.hero-lead {
  max-width: 650px;
  color: #4d5358;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn-primary-action,
.btn-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 750;
}

.btn-primary-action {
  color: #fff;
  background: var(--brand-blue);
  border: 1px solid var(--brand-blue);
}

.btn-primary-action:hover {
  color: #fff;
  background: var(--brand-blue-dark);
}

.btn-secondary-action {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
}

.btn-secondary-action:hover {
  border-color: var(--brand-blue);
}

.btn-primary-action.wide {
  width: 100%;
}

.hero-visual {
  position: relative;
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(36, 36, 38, .08);
}

.hero-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 24px;
}

.hero-event-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-event-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  object-fit: cover;
  border: 1px solid rgba(22, 93, 150, .22);
  border-radius: 8px;
}

.focus-section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.focus-item {
  min-height: 128px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.focus-item strong,
.focus-item span {
  display: block;
}

.focus-item strong {
  margin-bottom: 10px;
  color: var(--brand-blue-dark);
  font-size: 1.02rem;
}

.focus-item span {
  color: var(--muted);
  font-size: .95rem;
}

.intro-band {
  padding: 42px 0;
  background: var(--ink);
  color: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.intro-band h2 {
  margin: 0;
  color: #fff;
}

.intro-band p {
  margin: 0;
  color: #d6d8da;
  font-size: 1.08rem;
}

.content-section,
.method-section,
.contact-section,
.legal-section {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.compact {
  margin-bottom: 0;
}

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

.service-card {
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 93, 150, .45);
  box-shadow: 0 18px 45px rgba(36, 36, 38, .08);
}

.service-number {
  display: block;
  margin-bottom: 32px;
  color: var(--warm);
  font-weight: 850;
}

.service-card p {
  color: var(--muted);
}

.method-section {
  background: var(--surface-alt);
}

.gallery-section {
  padding: 84px 0;
  background: var(--surface);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.gallery-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.event-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.event-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.event-photo figcaption {
  min-height: 116px;
  padding: 18px;
}

.event-photo strong,
.event-photo span {
  display: block;
}

.event-photo strong {
  margin-bottom: 6px;
  color: var(--brand-blue-dark);
}

.event-photo span {
  color: var(--muted);
  font-size: .94rem;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  padding: 20px 24px 20px 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 6px rgba(22, 93, 150, .12);
}

.timeline-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.proof-section {
  padding: 44px 0;
  background: var(--warm-soft);
}

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

.proof-grid > div {
  padding: 18px 0;
}

.metric-value {
  display: block;
  color: var(--brand-blue-dark);
  font-size: 3rem;
  line-height: 1;
  font-weight: 830;
}

.metric-label {
  display: block;
  color: #55524a;
  font-weight: 650;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(22, 93, 150, .08), rgba(198, 154, 67, .11)),
    var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 48px;
  align-items: center;
}

.contact-grid p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
}

.contact-line {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 650;
}

.contact-line.primary {
  color: var(--brand-blue);
  font-size: 1.18rem;
}

.legal-content {
  max-width: 850px;
}

.legal-content h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legal-content p {
  color: var(--muted);
}

.site-footer {
  padding: 46px 0;
  color: #d7dadd;
  background: #1f2022;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
}

.footer-logo {
  width: 180px;
  max-width: 100%;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 6px;
}

.site-footer strong,
.site-footer a,
.site-footer span,
.site-footer p {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
  color: #fff;
}

.site-footer a {
  color: #fff;
  margin-bottom: 8px;
}

.site-footer span,
.site-footer p {
  color: #c5c9cc;
}

@media (max-width: 991.98px) {
  .brand-mark img {
    width: 108px;
    height: 40px;
  }

  .site-nav .navbar-collapse {
    padding: 18px 0;
  }

  .language-menu {
    margin: 8px 0;
  }

  .nav-cta {
    display: inline-flex;
    margin: 8px 0 0;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero-grid,
  .intro-grid,
  .method-grid,
  .gallery-heading,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 0;
  }

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

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

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

@media (max-width: 640px) {
  .hero-section,
  .content-section,
  .method-section,
  .gallery-section,
  .contact-section,
  .legal-section {
    padding: 56px 0;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn-primary-action,
  .btn-secondary-action {
    width: 100%;
  }

  .service-grid,
  .focus-grid,
  .event-gallery,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .hero-event-strip {
    grid-template-columns: 1fr;
  }
}
