:root {
  --bg: #ffde26;
  --ink: #0a2f66;
  --muted: #1f4f8f;
  --panel: rgba(255, 248, 188, 0.9);
  --line: rgba(10, 47, 102, 0.22);
  --brand: #0d57b8;
  --brand-deep: #083d84;
  --sea: #0a4fa8;
  --sea-soft: #ffe267;
  --shadow: 0 22px 45px rgba(8, 50, 106, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.7;
  background:
    linear-gradient(rgba(255, 230, 74, 0.42), rgba(255, 230, 74, 0.42)),
    radial-gradient(circle at 15% 12%, rgba(13, 87, 184, 0.12), transparent 40%),
    radial-gradient(circle at 88% 26%, rgba(8, 61, 132, 0.12), transparent 42%),
    var(--bg);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
  z-index: -1;
}

.bg-shape-1 {
  width: 320px;
  height: 320px;
  background: linear-gradient(160deg, rgba(13, 87, 184, 0.23), rgba(13, 87, 184, 0.04));
  top: -120px;
  right: -60px;
}

.bg-shape-2 {
  width: 280px;
  height: 280px;
  background: linear-gradient(160deg, rgba(255, 196, 0, 0.22), rgba(255, 196, 0, 0.04));
  bottom: -110px;
  left: -70px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(10, 47, 102, 0.22);
  backdrop-filter: blur(10px);
  background: rgba(255, 236, 120, 0.86);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  text-decoration: none;
  display: inline-grid;
  letter-spacing: 0.04em;
}

.brand-logo {
  width: 100%;
  height: clamp(72px, 10vw, 120px);
  object-fit: cover;
  object-position: center;
  border-radius: 0.9rem;
  box-shadow: 0 10px 22px rgba(8, 50, 106, 0.18);
  margin-bottom: 0.5rem;
}

.brand-main {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--sea);
}

.brand-sub {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.55rem 0.15rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-color: var(--brand);
}

.site-nav a.active {
  border-bottom-color: var(--brand);
  color: var(--brand-deep);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 0.65rem;
  width: 2.6rem;
  height: 2.6rem;
  cursor: pointer;
  padding: 0.45rem;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 4px 0;
  background: var(--ink);
}

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--brand);
}

.hero {
  padding-top: clamp(3.3rem, 8vw, 6rem);
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.4fr 1fr;
}

.hero-copy h1 {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
  font-size: clamp(2.4rem, 7vw, 5rem);
  margin-bottom: 0.9rem;
  color: #083d84;
}

.hero-copy p {
  max-width: 62ch;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 1rem;
  border: 1px solid rgba(21, 33, 39, 0.11);
  box-shadow: var(--shadow);
  display: block;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
}

.btn-secondary {
  background: var(--sea-soft);
  color: #083d84;
}

.card {
  background: var(--panel);
  border: 1px solid rgba(21, 33, 39, 0.11);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.2vw, 1.5rem);
}

.hero-card h2,
.hero-card h3 {
  margin-bottom: 0.35rem;
}

.hero-card p {
  margin-top: 0;
}

.section-heading {
  max-width: 78ch;
}

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

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

.photo-card {
  overflow: hidden;
  padding: 0;
}

.photo-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: -0.15rem 0 1rem;
  border-radius: 0.85rem;
}

.photo-content {
  padding: 1rem 1.1rem 1.25rem;
}

.photo-content h3 {
  margin-bottom: 0.5rem;
  color: var(--sea);
}

.photo-content p {
  margin: 0;
}

.value-grid,
.approach-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid h3,
.approach-grid h3,
.service-columns h3,
.split-grid h3 {
  color: var(--sea);
}

.checklist ul,
.service-columns ul {
  margin: 0;
  padding-left: 1.1rem;
}

.checklist li,
.service-columns li {
  margin-bottom: 0.55rem;
}

.contact {
  padding-bottom: clamp(4rem, 9vw, 6rem);
}

.contact-panel {
  background: linear-gradient(135deg, #0a4fa8, #083d84);
  color: #f5fbfd;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(1.2rem, 2.6vw, 2rem);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr;
}

.contact-panel .eyebrow {
  color: #d8f4f8;
}

.contact-panel a {
  color: #ffffff;
}

.site-footer {
  border-top: 1px solid rgba(10, 47, 102, 0.2);
  background: rgba(255, 239, 143, 0.72);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

.footer-credit {
  padding: 0 0 1rem;
  font-size: 0.86rem;
  text-align: center;
  color: var(--muted);
}

.footer-credit p {
  margin: 0.2rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .service-columns,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 4.1rem;
    right: 1rem;
    background: rgba(255, 241, 153, 0.98);
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    box-shadow: var(--shadow);
    width: min(280px, calc(100vw - 2rem));
    padding: 0.45rem;
    flex-direction: column;
    gap: 0;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.72rem;
    border-bottom: 1px solid rgba(21, 33, 39, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .value-grid,
  .approach-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
