:root {
  color-scheme: light;
  --navy: #071a33;
  --navy-2: #0b294d;
  --blue: #0759c7;
  --blue-bright: #168af0;
  --sky: #dceeff;
  --orange: #ffad1f;
  --paper: #f7faff;
  --white: #ffffff;
  --slate: #526274;
  --line: #cad9e8;
  --max: 1180px;
  --radius: 1.15rem;
  --shadow: 0 1.25rem 4rem rgb(7 26 51 / 12%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(202 217 232 / 72%);
  background: rgb(255 255 255 / 93%);
  backdrop-filter: blur(12px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 16rem;
  height: 5rem;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.7vw, 1.5rem);
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

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

.language-link {
  min-width: 3rem;
  min-height: 2.75rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.header-call {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, var(--paper) 0%, var(--paper) 55%, #eaf5ff 55%, #d8ecff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: 3.2rem;
  width: min(57vw, 48rem);
  height: 0.55rem;
  border-radius: 999px;
  background: var(--orange);
  transform: rotate(-8deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.72fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 1.15rem;
  padding: 0.4rem 0.75rem;
  border-left: 4px solid var(--orange);
  background: var(--white);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 760;
}

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

h1,
h2,
h3 {
  line-height: 1.07;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  letter-spacing: -0.06em;
}

h2 {
  max-width: 17ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.05rem, 4vw, 3.7rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 62ch;
  margin-bottom: 1.8rem;
  color: var(--slate);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-copy {
  padding-top: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border: 2px solid var(--navy);
  border-radius: 0.65rem;
  font-weight: 760;
  text-decoration: none;
}

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

.button-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.button-secondary:hover {
  background: var(--white);
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 26rem;
  margin: 0;
  justify-self: end;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 1.75rem 5rem 1.75rem 1.75rem;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.proof-bar {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  min-height: 7.5rem;
  display: grid;
  align-content: center;
  padding: 1.25rem clamp(1rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
  font-weight: 720;
  line-height: 1.35;
}

.proof-list li:first-child {
  border-left: 1px solid var(--line);
}

.proof-list span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--blue);
  font-size: 1.55rem;
}

.content-section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-intro p,
.split-copy p,
.story-copy p {
  max-width: 65ch;
  color: var(--slate);
}

.service-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-item,
.benefit-item {
  padding: 1.6rem 1.35rem 0 0;
  border-right: 1px solid var(--line);
}

.service-item + .service-item,
.benefit-item + .benefit-item {
  padding-left: 1.35rem;
}

.service-item:last-child,
.benefit-item:last-child {
  border-right: 0;
}

.service-item p,
.benefit-item p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.96rem;
}

.split-section {
  background: var(--paper);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(2.25rem, 6vw, 6rem);
}

.split-image {
  position: relative;
  width: 100%;
  max-width: 34rem;
  margin: 0;
  justify-self: center;
}

.split-image::before {
  content: "";
  position: absolute;
  inset: -1rem 1rem 1rem -1rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
}

.split-image img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.mission-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-left: 5px solid var(--orange);
  background: var(--white);
  color: var(--navy);
  font-weight: 680;
}

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

.benefits-section .section-intro p,
.benefit-item p {
  color: #bdcee0;
}

.benefits-section .section-intro .eyebrow,
.operations-section .section-intro .eyebrow,
.contact-section .eyebrow {
  color: var(--blue);
}

.benefit-grid {
  border-color: #36506c;
}

.benefit-item {
  border-color: #36506c;
}

.amazon-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(20rem, 1.28fr);
}

.amazon-grid .split-image {
  max-width: 22rem;
}

.amazon-grid .split-image img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.amazon-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.amazon-points li {
  padding-top: 0.8rem;
  border-top: 3px solid var(--orange);
  font-weight: 680;
}

.poster-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 0.42fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.poster-strip img {
  max-height: 38rem;
  width: 100%;
  object-fit: contain;
}

.operations-section {
  overflow: hidden;
  background: var(--navy-2);
  color: var(--white);
}

.operations-section .section-intro p {
  color: #c8d8e8;
}

.gallery {
  display: grid;
  grid-auto-columns: minmax(17rem, 21rem);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.25rem max(1rem, calc((100vw - var(--max)) / 2)) 2rem;
  scroll-padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--orange) #244663;
}

.gallery figure {
  margin: 0;
  scroll-snap-align: start;
}

.gallery img {
  width: 100%;
  height: clamp(22rem, 38vw, 28rem);
  aspect-ratio: 3 / 4;
  border-radius: 0.75rem;
  background: #1a3652;
  object-fit: cover;
}

.gallery figcaption {
  padding-top: 0.65rem;
  color: #c8d8e8;
  font-size: 0.88rem;
}

.gallery-hint {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0.5rem auto 0;
  color: #c8d8e8;
  font-size: 0.92rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.contact-section::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -10rem;
  width: 38rem;
  height: 38rem;
  border: 5rem solid rgb(255 173 31 / 35%);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
}

.contact-grid p {
  max-width: 55ch;
  margin-bottom: 0;
  color: #e5f2ff;
}

.contact-links {
  display: grid;
  gap: 0.75rem;
}

.contact-links a {
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  border: 2px solid var(--white);
  border-radius: 0.65rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 760;
  text-decoration: none;
}

.contact-links a:last-child {
  background: transparent;
  color: var(--white);
}

.site-footer {
  background: var(--navy);
  color: #bed0e1;
}

.footer-inner {
  display: grid;
  min-height: 9rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  width: 10rem;
  height: 5.5rem;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--white);
}

@media (max-width: 1040px) {
  .site-nav a:not(.language-link, .header-call) {
    display: none;
  }
}

@media (max-width: 880px) {
  .hero-grid,
  .split-grid,
  .amazon-grid,
  .poster-strip,
  .contact-grid,
  .section-intro {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    gap: 3rem;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
  }

  .hero-visual {
    max-width: 30rem;
    margin-inline: auto;
    justify-self: center;
  }

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

  .service-item:nth-child(2),
  .benefit-item:nth-child(2) {
    border-right: 0;
  }

  .service-item:nth-child(n + 3),
  .benefit-item:nth-child(n + 3) {
    margin-top: 1.5rem;
    border-top: 1px solid var(--line);
  }

  .benefit-item:nth-child(n + 3) {
    border-top-color: #36506c;
  }

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

@media (max-width: 580px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .brand img {
    width: 11.5rem;
    height: 4rem;
  }

  .header-call {
    width: 2.9rem;
    padding: 0;
    font-size: 0;
  }

  .header-call::before {
    content: "☎";
    font-size: 1.15rem;
  }

  .hero-grid {
    gap: 2.5rem;
    padding-block: 3.25rem;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .proof-list {
    grid-template-columns: 1fr;
  }

  .proof-list li,
  .proof-list li:first-child {
    min-height: 5.5rem;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-list li:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .benefit-grid,
  .amazon-points,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .service-item,
  .service-item + .service-item,
  .benefit-item,
  .benefit-item + .benefit-item {
    margin-top: 0;
    padding: 1.3rem 0;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-item,
  .benefit-item + .benefit-item {
    border-bottom-color: #36506c;
  }

  .gallery {
    grid-auto-columns: min(78vw, 19rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-block: 2rem;
  }

  .footer-logo {
    width: 9rem;
    height: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
