:root {
  --marine: #163D55;
  --white: #ffffff;
  --accent: #F2C94C;
  --text: #2F2F2F;
  --muted: #6b7280;
  --line: #E5E7EB;
  --bg: #f7f8f9;
  --max: 1360px;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(7, 24, 36, 0.10);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease, padding .35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  mix-blend-mode: difference;
}

.site-header.is-scrolled .brand {
  color: var(--marine);
  mix-blend-mode: normal;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: var(--accent);
  flex: 0 0 auto;
}

.brand-text {
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  position: relative;
  font-size: 14px;
  color: var(--white);
  mix-blend-mode: difference;
}

.site-header.is-scrolled .nav a {
  color: var(--marine);
  mix-blend-mode: normal;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 0;
  color: var(--white);
  font-size: 14px;
  transition: .3s ease;
  mix-blend-mode: normal !important;
}

.site-header.is-scrolled .nav-cta {
  border-color: rgba(22, 61, 85, .18);
  color: var(--marine);
  background: rgba(255, 255, 255, .85);
}

.nav-cta:hover {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: rgba(255, 255, 255, .1);
  border-radius: 0;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: #fff;
  transform: translateX(-50%);
  transition: .3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 17px
}

.menu-toggle span:nth-child(2) {
  top: 22px
}

.menu-toggle span:nth-child(3) {
  top: 27px
}

.site-header.is-scrolled .menu-toggle {
  background: rgba(22, 61, 85, .08);
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--marine);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: #0e2431;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  will-change: transform, opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 15, 22, .72) 0%, rgba(6, 15, 22, .24) 45%, rgba(6, 15, 22, .18) 100%),
    linear-gradient(to right, rgba(9, 20, 29, .55) 0%, rgba(9, 20, 29, 0) 52%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 140px 0 72px;
  display: grid;
  grid-template-columns: 1.15fr .65fr;
  gap: 48px;
  align-items: end;
}

.hero-main {
  max-width: 560px;
  padding-left: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--accent);
  display: block;
}

.hero h1 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(32px, 4.6vw, 68px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.04em;
  max-width: 11ch;
}

.hero-copy {
  margin-top: 26px;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 0;
  transition: .3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(242, 201, 76, .28);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .14);
}

.hero-side {
  justify-self: end;
  width: min(100%, 360px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.hero-side-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-side-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .72);
}

.hero-side-number {
  font-family: "Inter Tight", sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
}

.hero-side p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .85);
}

.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0 0 20px;
}

.hero-strip {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .15);
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
}

.hero-strip-item {
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, .04);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .84);
}

.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--marine);
  color: var(--white);
}

.section-muted {
  background: var(--bg);
}

.section-head {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--marine);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-dark .section-kicker {
  color: rgba(255, 255, 255, .72);
}

.section-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--accent);
  display: block;
}

.section-title {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 400;
}

.section-intro {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 760px;
}

.section-dark .section-intro {
  color: rgba(255, 255, 255, .78);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: stretch;
}

.story-image {
  position: relative;
  min-height: 680px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-panel {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 20px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}

.story-panel h3 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.03em;
}

.story-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.story-points {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.story-point {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
}

.story-point small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--marine);
}

.story-point span {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}

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

.service-card {
  position: relative;
  min-height: 560px;
  border-radius: 0;
  overflow: hidden;
  background: #0b1f2b;
  color: #fff;
  display: block;
  text-decoration: none;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transform: scale(1.02);
  transition: transform .8s ease, opacity .4s ease;
}

.service-card:hover img {
  transform: scale(1.08);
  opacity: .84;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 14, 20, .92) 0%, rgba(6, 14, 20, .28) 65%);
}

.service-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 28px;
}

.service-index {
  margin-bottom: auto;
  width: 54px;
  height: 54px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .12em;
}

.service-content h3 {
  margin: 0 0 14px;
  font-family: "Inter Tight", sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.03em;
}

.service-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .82);
}

.service-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}

.home-gallery {
  margin-top: 52px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.home-gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background: #0b1f2b;
  margin: 0;
  cursor: zoom-in;
}

.home-gallery-item.is-feature {
  grid-row: span 2;
  min-height: 778px;
}

.home-gallery-item.is-wide {
  grid-column: 1 / -1;
  min-height: 420px;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.005);
  transition: transform .7s ease;
}

.home-gallery-item:hover img {
  transform: scale(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 15, .92);
  z-index: 1200;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  padding: 24px;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-media {
  width: auto;
  height: auto;
  max-width: calc(100vw - 140px);
  max-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
}

.lightbox-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  display: block;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  font: inherit;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  transition: background .2s ease, border-color .2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .45);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 28px;
  line-height: 1;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  line-height: 1;
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  line-height: 1;
}

.method-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.method-card {
  padding: 36px;
  border-radius: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.method-card h3 {
  margin: 0 0 20px;
  font-family: "Inter Tight", sans-serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.03em;
  color: var(--marine);
}

.method-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--marine);
}

.method-list li span:last-child {
  color: var(--muted);
  text-align: right;
}

.quote-band {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  padding: 26px 0;
  margin-top: 36px;
}

.presence-image {
  margin-top: 32px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  max-width: 540px;
}

.presence-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.section-presence .section-head {
  grid-template-columns: 1.05fr 1.15fr;
  align-items: center;
  gap: 56px;
}

.section-presence .section-intro {
  max-width: 34rem;
  margin-bottom: 22px;
}

.section-presence .presence-image {
  margin-top: 18px;
}

.marquee {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  padding-right: 28px;
}

.marquee-track span {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.03em;
  color: rgba(255, 255, 255, .92);
}

.marquee-dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--accent);
  flex: 0 0 auto;
}

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

.partner-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.partner-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(22, 61, 85, .16);
}

.partner-box small {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--marine);
}

.partner-box h3 {
  margin: 0 0 12px;
  font-family: "Inter Tight", sans-serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.03em;
}
.is-scrolled a.nav-cta {
  background: #eec64b !important;
}
.partner-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.about-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.about-image {
  border-radius: 0;
  overflow: hidden;
  min-height: 720px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 38px;
  border-radius: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.about-content h3 {
  margin: 0 0 18px;
  font-family: "Inter Tight", sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.03em;
  color: var(--marine);
}

.about-content p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
}

.about-micro {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-micro .mini {
  padding: 18px;
  border-radius: 0;
  background: var(--bg);
  border: 1px solid var(--line);
}

.mini small {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--marine);
}

.mini span {
  line-height: 1.7;
  font-size: 14px;
  color: var(--text);
  display: block;
}

.contact-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: 36px;
  border-radius: 0;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
}

.contact-panel h3 {
  margin: 0 0 16px;
  font-family: "Inter Tight", sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.03em;
}

.contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
  font-size: 16px;
}

.contact-form {
  padding: 36px;
  border-radius: 0;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
}

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

.field {
  display: grid;
  gap: 10px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .72);
}

.field input,
.field textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 16px 18px;
  border-radius: 0;
  background: rgba(255, 255, 255, .94);
  color: #111;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.footer {
  padding: 30px 0 40px;
  background: var(--marine);
  color: rgba(255, 255, 255, .68);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.reveal,
.reveal-up,
.reveal-scale {
  opacity: 0;
}

@media (max-width: 1120px) {

  .hero-grid,
  .section-head,
  .story-grid,
  .method-wrap,
  .partners-grid,
  .about-layout,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .services {
    grid-template-columns: 1fr;
  }

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

  .home-gallery-item {
    min-height: 340px;
  }

  .home-gallery-item.is-feature,
  .home-gallery-item.is-wide {
    grid-row: span 1;
    grid-column: auto;
    min-height: 340px;
  }

  .hero-side {
    justify-self: start;
  }

  .story-image,
  .about-image {
    min-height: 460px;
  }

  .partners-grid {
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(22, 61, 85, .1);
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .3s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a,
  .site-header.is-scrolled .nav a {
    color: var(--marine);
    mix-blend-mode: normal;
  }

  .nav-cta {
    color: var(--marine);
    border-color: rgba(22, 61, 85, .12);
    background: var(--bg);
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    padding-top: 130px;
  }

  .hero h1 {
    max-width: 12ch;
  }

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

  .about-micro,
  .form-grid,
  .home-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-grid {
    width: min(calc(100% - 28px), var(--max));
    padding-bottom: 24px;
  }

  .section {
    padding: 88px 0;
  }

  .story-panel,
  .method-card,
  .partner-box,
  .about-content,
  .contact-panel,
  .contact-form {
    padding: 24px;
  }

  .service-card {
    min-height: 440px;
  }

  .story-point {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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