:root {
  --ink: #10202b;
  --muted: #60707a;
  --line: #dce5e8;
  --paper: #f5f7f8;
  --white: #ffffff;
  --blue: #0b5f93;
  --blue-dark: #082a45;
  --blue-soft: #e8f2f7;
  --gold: #d99a2b;
  --shadow: 0 20px 48px rgba(11, 42, 61, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 76px);
  color: var(--white);
  background: rgba(6, 31, 50, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-name {
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-limited {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a,
.footer a {
  transition: color 180ms ease;
}

.nav a:hover,
.footer a:hover,
.service-card a:hover,
.text-link:hover {
  color: var(--gold);
}

.quote-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: #081824;
  background: var(--gold);
  border-radius: 6px;
  font-weight: 850;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 31, 0.92) 0%, rgba(7, 42, 66, 0.7) 48%, rgba(7, 42, 66, 0.2) 82%),
    linear-gradient(0deg, rgba(5, 39, 64, 0.18), rgba(5, 39, 64, 0.18));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 150px clamp(20px, 6vw, 88px) 110px;
  color: var(--white);
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 4.1vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #071923;
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.steps-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin: -76px auto 0;
  padding: 0 clamp(20px, 4vw, 40px);
  gap: 18px;
}

.steps-strip article {
  min-height: 178px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.steps-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.steps-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

.section,
.story-section,
.approach-section,
.ecommerce-section,
.cta-section {
  padding: clamp(76px, 9vw, 132px) clamp(20px, 6vw, 88px);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.85fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  background: var(--paper);
}

.story-section.solution {
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  background: var(--white);
}

.story-copy {
  max-width: 720px;
}

.story-copy p:not(.eyebrow),
.section-heading p,
.ecommerce-section p {
  color: var(--muted);
  font-size: 1.06rem;
}

.stat-card {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(8, 42, 69, 0.94), rgba(11, 95, 147, 0.84)),
    url("assets/service-ocean-photo.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.7rem;
  line-height: 1.1;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.82);
}

.story-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 850;
}

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

.section-heading.centered {
  margin: 0 auto 44px;
  text-align: center;
}

.services-section {
  background: var(--blue-soft);
}

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-photo {
  display: block;
  width: 100%;
  height: 172px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.service-content {
  padding: 26px;
}

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

.service-card a {
  color: var(--blue);
  font-weight: 850;
}

.approach-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.15fr);
  gap: clamp(34px, 7vw, 94px);
  background: var(--white);
}

.approach-grid {
  display: grid;
  gap: 16px;
}

.approach-grid article {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
}

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

.approach-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.ecommerce-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.9fr);
  gap: clamp(36px, 7vw, 94px);
  align-items: start;
  background: var(--paper);
}

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

.check-list li {
  position: relative;
  padding: 18px 18px 18px 52px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 20px;
  width: 16px;
  height: 9px;
  border-bottom: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(5, 24, 39, 0.94), rgba(8, 76, 118, 0.88)),
    url("assets/service-delivery-photo.jpg") center / cover;
}

.cta-copy h2,
.cta-copy p {
  max-width: 820px;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card div {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.contact-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a,
.contact-card address {
  color: var(--ink);
  font-size: 1.08rem;
  font-style: normal;
  font-weight: 800;
}

.contact-card a:hover {
  color: var(--blue);
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 32px;
  align-items: start;
  padding: 44px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.72);
  background: #071620;
  font-size: 0.95rem;
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.1rem;
}

.footer p {
  max-width: 520px;
  margin-bottom: 0;
}

.footer nav {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

@media (max-width: 1050px) {
  .nav {
    display: none;
  }

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

  .story-section,
  .story-section.solution,
  .approach-section,
  .ecommerce-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .quote-link {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero::after {
    background: rgba(3, 18, 31, 0.72);
  }

  .hero-inner {
    padding: 126px 20px 72px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .steps-strip {
    grid-template-columns: 1fr;
    margin-top: -42px;
  }

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