:root {
  --navy: #061c37;
  --navy-2: #0b2d52;
  --red: #d7192d;
  --ink: #0a203c;
  --muted: #5d6876;
  --paper: #ffffff;
  --soft: #f2f5f8;
  --line: #dce2e8;
  --max: 1180px;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", sans-serif;
  line-height: 1.55;
}

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

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

.icon-arrow,
.icon-upload {
  display: inline-block;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-arrow {
  width: 14px;
  height: 14px;
}

.icon-arrow-diagonal {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 13 13 3M6 3h7v7' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 13 13 3M6 3h7v7' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-arrow-right {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 8h11M9 4l4 4-4 4' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 8h11M9 4l4 4-4 4' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-upload {
  width: 28px;
  height: 28px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 16V4m0 0L7.5 8.5M12 4l4.5 4.5M5 15v4h14v-4' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 16V4m0 0L7.5 8.5M12 4l4.5 4.5M5 15v4h14v-4' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

button,
input,
select {
  font: inherit;
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.section-pad {
  padding-block: 86px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: white;
  background: rgba(6, 28, 55, 0.97);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  display: block;
  width: 44px;
  height: auto;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: white;
  background: var(--red);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  font-size: 14px;
  padding-top: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.button):hover {
  color: #ff9da6;
}

.career-link {
  opacity: 0.72;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--red);
  color: white;
  background: var(--red);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 20px;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 24, 47, 0.99) 0%, rgba(5, 24, 47, 0.92) 31%, rgba(5, 24, 47, 0.2) 64%, rgba(5, 24, 47, 0.08)),
    linear-gradient(0deg, rgba(5, 24, 47, 0.72), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 132px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #ff5261;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

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

h1,
h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(62px, 7vw, 100px);
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -0.018em;
}

.hero-copy {
  max-width: 550px;
  margin-bottom: 34px;
  color: #dce5ef;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.trust-strip {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 72px;
  align-items: center;
  background: rgba(8, 37, 69, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-strip span {
  padding: 8px 22px;
  text-align: center;
  font-weight: 700;
}

.trust-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-inquiry {
  padding-block: 44px;
}

.inquiry-card {
  position: relative;
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  padding: 26px;
  display: grid;
  grid-template-columns: 1.45fr 1fr 0.8fr 0.9fr auto;
  align-items: end;
  gap: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.inquiry-card .eyebrow {
  margin-bottom: 8px;
}

.inquiry-card h2 {
  margin: 0;
  font-size: 38px;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid #cfd6de;
  border-radius: 0;
  color: var(--ink);
  background: white;
}

.form-note {
  position: absolute;
  right: 26px;
  bottom: -32px;
  color: var(--red);
  font-size: 13px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 76px;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  position: absolute;
  z-index: -1;
  top: -16px;
  left: -16px;
  width: 88px;
  height: 88px;
  content: "";
  background: var(--red);
}

.about-image-wrap img {
  min-height: 550px;
  object-fit: cover;
}

.about-image-wrap span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 9px;
  color: white;
  background: rgba(6, 28, 55, 0.75);
  font-size: 10px;
  text-transform: uppercase;
}

.about-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  font-size: 17px;
}

.principles {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.principles li {
  position: relative;
  padding-left: 42px;
}

.principles li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid var(--red);
  color: var(--red);
  content: "✓";
  font-weight: 700;
}

.principles strong,
.principles span {
  display: block;
}

.principles span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

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

.section-heading p {
  max-width: 390px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: white;
}

.service-grid article {
  position: relative;
  min-height: 300px;
  padding: 32px 26px;
}

.service-grid article + article {
  border-left: 1px solid var(--line);
}

.service-number {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.service-icon {
  margin: 35px 0 22px;
  color: var(--red);
  font-size: 44px;
  line-height: 1;
}

.service-grid h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.service-grid p {
  color: var(--muted);
  font-size: 14px;
}

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

.process h2 {
  margin-bottom: 52px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.process-list > li > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #ff5967;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 8px;
}

.process-list p {
  margin: 0;
  color: #b8c7d7;
  font-size: 14px;
}

.final-cta {
  background: #eef2f6;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.footer {
  padding-block: 58px 34px;
  color: white;
  background: #04162c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 55px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid strong {
  margin-bottom: 8px;
}

.footer-grid p,
.footer-grid a:not(.brand) {
  margin: 0;
  color: #aebdcd;
  font-size: 13px;
}

.footer-brand {
  margin-bottom: 10px;
}

.subpage-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.subpage-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 24, 47, 0.99), rgba(5, 24, 47, 0.76) 48%, rgba(5, 24, 47, 0.25)),
    linear-gradient(0deg, rgba(5, 24, 47, 0.55), transparent);
}

.subpage-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  padding-block: 92px 76px;
}

.subpage-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(58px, 7vw, 90px);
}

.subpage-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: #dce5ef;
  font-size: 18px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.intro-grid .lead {
  color: var(--muted);
  font-size: 20px;
}

.detail-stack {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px;
  background: white;
}

.detail-row .service-number {
  font-size: 15px;
}

.detail-row h3 {
  margin-bottom: 6px;
  font-size: 23px;
}

.detail-row p {
  margin: 0;
  color: var(--muted);
}

.detail-row > span:last-child {
  color: var(--red);
  font-size: 26px;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 76px;
}

.content-split img {
  min-height: 520px;
  object-fit: cover;
}

.content-split p {
  color: var(--muted);
  font-size: 17px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-grid article {
  min-height: 240px;
  padding: 34px;
  background: white;
}

.value-grid span {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-weight: 700;
}

.value-grid h3 {
  margin: 25px 0 12px;
}

.value-grid p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 48px;
}

.timeline article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.timeline article:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-number {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 46px;
  font-weight: 700;
}

.timeline h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.timeline p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.career-intro {
  background: var(--soft);
}

.career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.career-grid h2 {
  max-width: 620px;
}

.career-benefits {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-benefits li {
  padding: 22px 0 22px 38px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--red) 0 4px, transparent 4px);
}

.application-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
}

.application-form .full,
.application-form .button,
.application-form .form-note {
  grid-column: 1 / -1;
}

.application-form textarea {
  width: 100%;
  min-height: 140px;
  resize: vertical;
  padding: 14px;
  border: 1px solid #cfd6de;
  font: inherit;
}

.application-form .form-note {
  position: static;
  margin: 0;
}

.about-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.about-story-copy .lead {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.55;
}

.about-story-copy p:not(.lead) {
  color: var(--muted);
  font-size: 17px;
}

.manifesto {
  padding-block: 76px;
  color: white;
  background: var(--navy);
}

.manifesto-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.manifesto p {
  max-width: 900px;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 600;
  line-height: 1.02;
}

.manifesto span {
  flex: 0 0 auto;
  color: #aebdcd;
  font-size: 13px;
}

.value-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.team-section {
  background: white;
}

.team-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.team-heading h2 {
  margin: 0;
}

.placeholder-notice {
  max-width: 390px;
  padding: 16px 18px;
  border-left: 3px solid var(--red);
  background: var(--soft);
}

.placeholder-notice strong,
.placeholder-notice span {
  display: block;
}

.placeholder-notice span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

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

.team-card {
  border: 1px solid var(--line);
  background: white;
}

.team-photo-placeholder {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(145deg, rgba(215, 25, 45, 0.86), transparent 48%),
    linear-gradient(25deg, #061c37, #294764);
}

.team-photo-placeholder::before,
.team-photo-placeholder::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.team-photo-placeholder::before {
  width: 210px;
  height: 210px;
  right: -70px;
  top: -55px;
}

.team-photo-placeholder::after {
  width: 150px;
  height: 150px;
  left: -65px;
  bottom: -55px;
}

.team-photo-placeholder span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 82px;
  font-weight: 700;
  line-height: 0.75;
}

.team-photo-placeholder small {
  font-size: 10px;
  letter-spacing: 0.15em;
}

.team-card-copy {
  padding: 24px;
}

.team-role {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.team-card-copy > p:not(.team-role) {
  min-height: 100px;
  color: var(--muted);
  font-size: 13px;
}

.team-card a {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.about-vision {
  color: white;
  background:
    linear-gradient(110deg, rgba(6, 28, 55, 0.98), rgba(6, 28, 55, 0.86)),
    url("assets/hero-offshore.png") center / cover;
}

.about-vision-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
}

.about-vision h2 {
  margin: 0;
}

.about-vision-grid > div:last-child p {
  margin-bottom: 28px;
  color: #c5d2df;
  font-size: 17px;
}

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    padding: 26px;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
  }

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

  .menu-toggle {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 9px 13px;
    color: white;
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: var(--red);
    color: white;
    background: var(--red);
  }

  .inquiry-card {
    grid-template-columns: 1fr 1fr;
  }

  .inquiry-card > div {
    grid-column: 1 / -1;
  }

  .about {
    gap: 42px;
  }

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

  .service-grid article:nth-child(3) {
    border-left: 0;
  }

  .service-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .section-pad {
    padding-block: 64px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand {
    font-size: 21px;
  }

  .brand-logo {
    width: 38px;
    height: auto;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    min-height: 710px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 24, 47, 0.98) 12%, rgba(5, 24, 47, 0.8) 55%, rgba(5, 24, 47, 0.28)),
      linear-gradient(90deg, rgba(5, 24, 47, 0.58), transparent);
  }

  .hero-content {
    padding-bottom: 190px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 45px;
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .trust-strip {
    width: 100%;
    min-height: 125px;
  }

  .trust-strip span {
    padding: 10px 7px;
    font-size: 11px;
  }

  .inquiry-card {
    width: min(calc(100% - 32px), var(--max));
    padding: 22px;
    grid-template-columns: 1fr;
  }

  .inquiry-card > div {
    grid-column: auto;
  }

  .inquiry-card .button {
    width: 100%;
  }

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

  .about-image-wrap img {
    min-height: 400px;
  }

  .section-heading,
  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .service-grid article {
    min-height: auto;
  }

  .service-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .intro-grid,
  .content-split,
  .career-grid,
  .about-story,
  .about-vision-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .team-heading,
  .manifesto-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .team-photo-placeholder {
    min-height: 290px;
  }

  .detail-row {
    grid-template-columns: 46px 1fr auto;
    gap: 14px;
    padding: 24px 18px;
  }

  .timeline article {
    grid-template-columns: 62px 1fr;
    gap: 18px;
  }

  .application-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .application-form .full,
  .application-form .button,
  .application-form .form-note {
    grid-column: auto;
  }
}

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

  .button {
    transition: none;
  }
}

.chatbot {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  font-family: "Inter", sans-serif;
}

.chatbot-launcher {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  background: rgba(5, 24, 47, 0.94);
  box-shadow: 0 14px 36px rgba(3, 15, 21, 0.22);
  box-shadow: 0 14px 34px rgba(5, 24, 47, 0.25);
  font-weight: 700;
  cursor: pointer;
}

.chatbot-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(239, 48, 54, 0.16);
}

.chatbot-icon {
  display: none;
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3v2M9.5 3h5M7 7h10a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H9l-4 2v-4.2A3 3 0 0 1 4 14.5V10a3 3 0 0 1 3-3Zm2 5.5v-1M15 8.5v-1M8.5 15h7' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3v2M9.5 3h5M7 7h10a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H9l-4 2v-4.2A3 3 0 0 1 4 14.5V10a3 3 0 0 1 3-3Zm2 5.5v-1M15 8.5v-1M8.5 15h7' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  display: none;
  width: min(370px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 24px 70px rgba(5, 24, 47, 0.28);
}

.chatbot-panel.open {
  display: block;
  animation: chat-rise .28s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes chat-rise {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px;
  color: white;
  background: var(--navy);
}

.chatbot-panel header strong,
.chatbot-panel header span {
  display: block;
}

.chatbot-panel header strong {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
}

.chatbot-panel header strong::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(239,48,54,.14);
}

.chatbot-panel header span {
  margin-top: 4px;
  padding-left: 16px;
  color: #aebdcd;
  font-size: 11px;
}

.chatbot-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.08);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.chatbot-messages {
  max-height: 285px;
  min-height: 190px;
  padding: 18px;
  overflow-y: auto;
  background: var(--soft);
}

.chat-message {
  width: fit-content;
  max-width: 86%;
  margin-bottom: 11px;
  padding: 11px 13px;
  border: 1px solid rgba(11,24,32,.07);
  border-radius: 12px 12px 12px 3px;
  color: var(--ink);
  background: white;
  font-size: 13px;
  line-height: 1.45;
}

.chat-message.user {
  margin-left: auto;
  color: white;
  background: var(--navy-2);
  border-color: transparent;
  border-radius: 12px 12px 3px 12px;
}

.chat-message.pending {
  color: var(--muted);
}

.chat-fallback-form {
  display: grid;
  gap: 7px;
  width: 92%;
  margin-bottom: 11px;
  padding: 12px;
  border: 1px solid rgba(11,24,32,.07);
  border-radius: 12px 12px 12px 3px;
  background: white;
}

.chat-fallback-form input,
.chat-fallback-form textarea {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
  resize: vertical;
  font: 13px "Inter", sans-serif;
}

.chat-fallback-form textarea {
  min-height: 56px;
}

.chat-fallback-form input:focus,
.chat-fallback-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(5,24,47,.08);
}

.chat-fallback-form button {
  height: 38px;
  border: 0;
  border-radius: 7px;
  color: white;
  background: var(--red);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.chat-fallback-form button:disabled {
  opacity: 0.6;
  cursor: default;
}

.chat-fallback-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.chatbot-suggestions {
  display: flex;
  gap: 7px;
  padding: 10px 14px 0;
  overflow-x: auto;
  background: white;
}

.chatbot-suggestions button {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--navy);
  background: white;
  font-size: 10px;
  cursor: pointer;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 8px;
  padding: 12px 14px 8px;
}

.chatbot-form input {
  height: 46px;
  padding-inline: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  font: 13px "Inter", sans-serif;
}

.chatbot-form input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(5,24,47,.08);
}

.chatbot-form button {
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--red);
  font-size: 22px;
  cursor: pointer;
}

.chatbot-disclaimer {
  margin: 0;
  padding: 0 14px 12px;
  color: var(--muted);
  font-size: 9px;
}

@media (max-width: 680px) {
  .chatbot {
    right: 14px;
    bottom: 14px;
  }

  .chatbot-launcher {
    position: relative;
    display: grid;
    width: 50px;
    min-height: 50px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    box-shadow: 0 8px 26px rgba(3,15,21,.24);
    transition: opacity .2s ease, transform .2s ease;
  }

  .chatbot-launcher::after {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 7px;
    height: 7px;
    border: 2px solid var(--navy);
    border-radius: 50%;
    background: var(--red);
    content: "";
  }

  .chatbot-dot,
  .chatbot-label {
    display: none;
  }

  .chatbot-icon {
    display: block;
    color: white;
  }

  .chatbot-panel {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    max-height: min(620px, calc(100dvh - 24px));
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(3,15,21,.34);
  }

  .chatbot.is-open .chatbot-launcher {
    opacity: 0;
    pointer-events: none;
    transform: scale(.82);
  }

  .chatbot-panel > header {
    padding: 15px 16px;
  }

  .chatbot-messages {
    min-height: 155px;
    max-height: 34dvh;
    padding: 15px;
  }

  .chatbot-suggestions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px 12px 0;
    overflow: visible;
  }

  .chatbot-suggestions button {
    min-height: 38px;
    padding: 7px 8px;
    white-space: normal;
    line-height: 1.25;
  }

  .chatbot-form {
    grid-template-columns: minmax(0, 1fr) 44px;
    padding: 10px 12px 7px;
  }

  .chatbot-form input,
  .chatbot-form button {
    height: 44px;
  }

  .chatbot-disclaimer {
    padding: 0 12px 11px;
  }

}

/* 2026 editorial homepage direction */
.home-page {
  --navy: #07171f;
  --red: #e22d2d;
  --ink: #0b1820;
  --paper: #eeeae2;
  --soft: #e3e0d9;
  --line: rgba(11, 24, 32, 0.2);
  background: var(--paper);
}

.home-page .site-header {
  position: fixed;
  left: 0;
  min-height: 88px;
  width: 100%;
  color: #f4f0e8;
  background: linear-gradient(180deg, rgba(4, 17, 24, 0.86), transparent);
  backdrop-filter: none;
}

.home-page .brand {
  font-size: 29px;
  letter-spacing: 0.09em;
}

.home-page .main-nav {
  gap: 34px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .nav-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.5);
}

.home-page .nav-cta:hover {
  color: #fff !important;
  border-color: #fff;
}

.home-page .nav-login {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
}

.home-page .nav-login:hover {
  color: #fff !important;
  background: #b71122;
  border-color: #b71122;
}

.language-switcher {
  margin-left:auto;
  margin-right:24px;
  padding:7px 0;
  border:0;
  color:rgba(255,255,255,.55);
  background:transparent;
  font:500 11px "Inter",sans-serif;
  letter-spacing:.12em;
  cursor:pointer;
}
.language-switcher strong { color:white; font-weight:600; }
.language-switcher:hover span { color:white; }

.home-page .hero {
  min-height: min(900px, 100svh);
  align-items: center;
  background: #06141b;
}

.home-page .hero-image {
  object-position: 62% center;
  filter: saturate(.5) contrast(1.08) brightness(.43);
  transform: scale(1.04);
  animation: hero-settle 1.5s cubic-bezier(.2,.75,.25,1) forwards;
}

.hero-v-portrait {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: min(62vw, 1120px);
  height: 100%;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 53% 100%, 47% 100%);
  filter: drop-shadow(0 0 36px rgba(0,0,0,.38));
}

.hero-v-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(.78) contrast(1.06) brightness(.82);
}

@keyframes hero-settle { to { transform: scale(1); } }

.home-page .hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,15,21,.96) 0%, rgba(3,15,21,.83) 35%, rgba(3,15,21,.16) 57%, rgba(3,15,21,.05) 100%),
    linear-gradient(0deg, rgba(3,15,21,.74), rgba(3,15,21,.04) 62%);
  pointer-events: none;
}

.home-page .hero-content {
  padding-top: 120px;
  padding-bottom: 80px;
}

.home-page .hero-content h1 {
  max-width: 900px;
  margin: 12px 0 36px;
  font-size: clamp(76px, 9.2vw, 142px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .8;
  text-transform: uppercase;
}

.home-page .hero-content h1 span {
  color: var(--paper);
}

.home-page .hero-content-centered {
  display: flex;
  max-width: 1220px;
  min-height: 680px;
  padding-top: 150px;
  padding-bottom: 90px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.home-page .hero-content-centered h1 {
  max-width: 860px;
  margin: 18px 0 28px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(74px, 7.5vw, 112px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .84;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
  opacity: 0;
  animation: hero-line-in .8s cubic-bezier(.2,.75,.25,1) forwards;
  transform: translateX(-46px);
}

.hero-title-line:nth-child(2) {
  animation-delay: .13s;
}

.hero-title-line:nth-child(3) {
  animation-delay: .26s;
}

@keyframes hero-line-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-eyebrow {
  margin: 0;
  color: #ff7a7a;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
}

.hero-quick-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 34px;
}

.hero-quick-actions .button {
  min-width: 235px;
  justify-content: space-between;
}

.hero-primary-action {
  background: var(--red);
}

.home-page .eyebrow {
  color: #ff5e5e;
  font-size: 11px;
  letter-spacing: .23em;
}

.home-page .hero-eyebrow {
  color: #ff8888;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

/* Barlow Condensed's uppercase Ø has an oversized right side-bearing at this scale */
.glyph-o {
  position: relative;
  display: inline-block;
}

.glyph-o::after {
  position: absolute;
  top: .11em;
  left: 50%;
  width: .055em;
  height: .78em;
  background: currentColor;
  content: "";
  transform: translateX(-50%) rotate(24deg);
  transform-origin: center;
}

.hero-word-nowrap {
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-line {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

.hero-bottom {
  display: grid;
  max-width: 820px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
}

.hero-bottom p {
  margin: 0;
  color: rgba(244,240,232,.78);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: gap .25s ease;
}

.text-link:hover { gap: 38px; }

.hero-tech {
  position: absolute;
  z-index: 2;
  top: 114px;
  color: rgba(255,255,255,.6);
  font-size: 9px;
  letter-spacing: .2em;
}

.hero-tech-left { left: 24px; writing-mode: vertical-rl; }
.hero-tech-right { right: 28px; }
.hero-tech i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(226,45,45,.14);
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  letter-spacing: .2em;
}

.statement {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 24px;
  padding-block: 145px;
}

.statement-kicker {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.statement-kicker i {
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 8px;
  background: var(--red);
}

.statement h2 {
  margin: -10px 0 50px;
  font-size: clamp(52px, 6.2vw, 88px);
  font-weight: 500;
}

.statement > p {
  grid-column: 2;
  max-width: 600px;
  margin-left: auto;
  color: #425058;
  font-size: 18px;
}

.why-section {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 24px;
  padding-block: 135px 145px;
}

.why-content h2 {
  max-width: 900px;
  margin: -12px 0 78px;
  font-size: clamp(62px, 7vw, 102px);
  font-weight: 500;
  line-height: .88;
}

.why-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(50px, 8vw, 130px);
  list-style: none;
}

.why-list li:nth-child(4) {
  grid-column: 1;
}

.why-list li:nth-child(n+5) {
  grid-column: 2;
}

.why-list li:nth-child(5) {
  grid-row: 1;
}

.why-list li:nth-child(6) {
  grid-row: 2;
}

.why-list li:nth-child(7) {
  grid-row: 3;
}

.why-list li {
  position: relative;
  display: grid;
  min-height: 82px;
  grid-template-columns: 34px 72px 1fr auto;
  gap: 16px;
  align-items: center;
  border-top: 1px solid rgba(7,25,35,.16);
  cursor: pointer;
  outline: none;
}

.why-list li:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.why-list span {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.why-list i {
  width: 100%;
  height: 1px;
  background: var(--red);
}

.why-list p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}

.why-text { display: grid; }

.why-list p.why-desc { display: none; }

.why-info {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(7,25,35,.5);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: underline;
  text-decoration-color: rgba(7,25,35,.28);
  text-underline-offset: 3px;
  white-space: nowrap;
  pointer-events: none;
}

.why-list li:hover .why-info {
  color: var(--red);
  text-decoration-color: var(--red);
}

.why-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 15, 21, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease;
}

.why-modal-overlay.is-hover {
  background: transparent;
  pointer-events: none;
}

.why-modal-overlay.is-hover .why-modal {
  pointer-events: auto;
}

.why-modal-overlay.is-left-trigger {
  justify-content: flex-end;
}

.why-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.why-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 44px 40px 36px;
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 30px 70px rgba(3, 15, 21, 0.35);
  transform: translateY(14px);
  transition: transform 200ms ease;
}

.why-modal-overlay.is-open .why-modal {
  transform: translateY(0);
}

.why-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: none;
  color: rgba(7,25,35,.55);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.why-modal-close:hover { color: var(--ink); background: rgba(7,25,35,.06); }

.why-modal-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.why-modal h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

.why-modal-body {
  margin: 0;
  color: rgba(7,25,35,.68);
  font-size: 15px;
  line-height: 1.6;
}

.why-modal-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.why-modal-actions .button { min-height: 46px; padding: 0 24px; }

.why-modal-close-text {
  border: 0;
  background: none;
  color: rgba(7,25,35,.55);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.why-modal-close-text:hover { color: var(--ink); }

.editorial-services {
  display: grid;
  grid-template-columns: minmax(320px, 38%) 1fr;
  min-height: 780px;
  background: #f5f1e9;
}

.service-visual {
  position: sticky;
  top: 0;
  height: 100vh;
  max-height: 900px;
  overflow: hidden;
}

.service-visual::after {
  content: "MONVERA";
  position: absolute;
  inset: 0;
  z-index:2;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  padding-top:30px;
  color:#f5f1e9;
  font:700 clamp(24px,2.8vw,44px) "Barlow Condensed",sans-serif;
  letter-spacing:.16em;
  white-space:nowrap;
  background: radial-gradient(ellipse 42% 52% at 55% 46%, rgba(255,255,255,.12), transparent 50%, rgba(0,0,0,.58) 100%), linear-gradient(90deg,rgba(4,17,24,.72) 0%,rgba(4,17,24,.44) 34%,rgba(4,17,24,.08) 62%,transparent 78%), linear-gradient(0deg, rgba(4,17,24,.62), transparent 45%);
}

.service-visual::before { content:""; position:absolute; z-index:1; inset:0; pointer-events:none; background:linear-gradient(90deg,transparent 0 30%,rgba(245,241,233,.94) 30% 32%,transparent 32% 74%,rgba(245,241,233,.94) 74% 76%,transparent 76% 100%); }
.service-visual img { height: 100%; object-fit: cover; filter:grayscale(1) saturate(0) contrast(1.08) brightness(.88); }
.image-label {
  position: absolute;
  z-index: 1;
  bottom: 28px;
  left: 28px;
  color: white;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.service-list { padding: 62px clamp(28px, 5vw, 80px); }
.service-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
  color: #6b7478;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.service-row {
  display: grid;
  grid-template-columns: 50px minmax(190px, 1fr) minmax(130px, .6fr) 30px;
  align-items: center;
  min-height: 138px;
  gap: 22px;
  border-top: 1px solid rgba(11,24,32,.28);
  transition: padding .28s ease, background .28s ease;
}

.service-row:last-child { border-bottom: 1px solid rgba(11,24,32,.28); }
.service-row:hover { padding-inline: 18px; background: rgba(11,24,32,.035); }
.service-row h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(38px, 4vw, 61px);
  font-weight: 500;
  line-height: 1;
}
.service-row p { margin: 0; color: #647077; font-size: 13px; }
.service-number { color: var(--red); font: 600 13px "Barlow Condensed", sans-serif; letter-spacing: .12em; }
.service-arrow {
  width: 16px;
  height: 16px;
  justify-self: end;
  transition: transform .25s ease;
}
.service-row:hover .service-arrow { transform: translate(4px,-4px); }

.process-new {
  color: #f1ede5;
  background: var(--navy);
  padding-block: 135px;
}

.process-title {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  margin-bottom: 90px;
}
.process-title h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 100px);
  font-weight: 500;
}
.process-steps {
  display: grid;
  margin: 0 0 68px;
  padding: 0;
  grid-template-columns: repeat(3,1fr);
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.22);
}
.process-steps li {
  min-height: 240px;
  padding: 28px 32px 22px 0;
  border-right: 1px solid rgba(255,255,255,.16);
}
.process-steps li + li { padding-left: 32px; }
.process-steps li > span { color: #ff5e5e; font-size: 12px; letter-spacing: .15em; }
.process-steps h3 { margin: 70px 0 12px; font: 500 35px "Barlow Condensed",sans-serif; }
.process-steps p { max-width: 250px; color: rgba(255,255,255,.62); font-size: 14px; }
.outline-link {
  display: flex;
  width: fit-content;
  min-width: 240px;
  justify-content: space-between;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.45);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s, background .25s;
}
.outline-link:hover { color: var(--navy); background: var(--paper); }

.about-editorial {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr 52px;
  gap: 7vw;
  padding-block: 145px;
}
.about-editorial-copy { align-self: center; }
.about-editorial-copy h2 { font-size: clamp(54px, 5.5vw, 78px); font-weight: 500; }
.about-editorial-copy > p:not(.eyebrow) { max-width: 480px; margin-bottom: 38px; color: #49565d; font-size: 16px; }
.dark-link { color: var(--ink); }
.about-editorial-image { margin: 0; }
.about-editorial-image img { aspect-ratio: 4/5; object-fit: cover; filter: saturate(.75) contrast(1.05); }
.about-editorial-image figcaption { display: flex; justify-content: space-between; padding-top: 10px; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.value-rail {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #9db6c4;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.value-rail span::after { content: "—"; margin-top: 20px; color: var(--red); }
.value-rail span::after { display:none; }

.inquiry-new {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #07171f;
}
.inquiry-image { position: absolute; inset: 0; opacity: .35; }
.inquiry-image::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg,#07171f 10%,rgba(7,23,31,.78),rgba(7,23,31,.35)); }
.inquiry-image img { height: 100%; object-fit: cover; }
.inquiry-new-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; align-items: center; padding-block: 110px; }
.inquiry-new h2 { font-size: clamp(70px, 8vw, 112px); font-weight: 500; }
.home-personnel-action { max-width:460px; }
.home-personnel-action p { margin-bottom:34px; color:rgba(255,255,255,.7); font-size:17px; line-height:1.7; }
.home-personnel-action .button { min-width:240px; justify-content:space-between; }
.inquiry-form-new { padding: 36px; border: 1px solid rgba(255,255,255,.25); background: rgba(5,17,23,.72); backdrop-filter: blur(8px); }
.inquiry-form-new label { display: grid; gap: 8px; margin-bottom: 22px; }
.inquiry-form-new label span { color: rgba(255,255,255,.66); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.inquiry-form-new input,.inquiry-form-new select { width:100%; min-height: 48px; border:0; border-bottom:1px solid rgba(255,255,255,.3); border-radius:0; color:white; background:transparent; }
.inquiry-form-new select option { color: #111; }
.form-pair { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.inquiry-form-new .button { width:100%; justify-content:space-between; margin-top:8px; }
.inquiry-form-new .form-note { margin: 14px 0 0; color:rgba(255,255,255,.5); font-size:11px; }

.home-page .footer { padding: 72px 0 110px; color: #eeeae2; background: #07171f; }
@media (max-width: 680px) {
  .home-page .footer { padding-bottom: 90px; }
}
.footer-top { display:grid; grid-template-columns:1.4fr 0.9fr 1fr; align-items:start; gap:24px; padding-bottom:70px; }
.footer-brand-block { display:grid; gap:14px; }
.home-page .footer-brand { font-size:36px; }
.footer-top p { margin:0; color:#eeeae2; font-weight:700; }
.footer-top nav { display:flex; flex-direction:column; align-items:flex-start; gap:10px; font-size:13px; }
.footer-top nav a:hover { color:#ff5e5e; }
.footer-contact { display:flex; flex-direction:column; gap:10px; font-size:13px; font-weight:700; color:#eeeae2; }
.footer-contact p { margin:0; color:#eeeae2; }
.footer-contact a { color:inherit; }
.footer-contact a:hover { color:#ff5e5e; }
.footer-bottom { display:grid; grid-template-columns:1fr auto 1fr; align-items:start; gap:24px; padding-top:18px; border-top:1px solid rgba(255,255,255,.18); color:rgba(255,255,255,.43); font-size:9px; letter-spacing:.17em; text-transform:uppercase; }
.footer-center { text-align:center; }
.footer-bottom > span:last-child { justify-self:end; text-align:right; }
.footer-credit { display:block; margin-top:9px; color:rgba(255,255,255,.38); font-size:10px; letter-spacing:.04em; text-transform:none; transition:color .2s ease; }
.footer-credit:hover { color:rgba(255,255,255,.7); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; animation:none !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}

@media (max-width: 800px) {
  .home-page .site-header { min-height:70px; padding-inline:20px; }
  .home-page .brand { font-size:24px; }
  .home-page .menu-toggle { display:block; border:1px solid rgba(255,255,255,.5); color:white; background:transparent; padding:8px 12px; }
  .home-page .menu-toggle[aria-expanded="true"] { border-color:var(--red); background:var(--red); }
  .language-switcher { margin-right:12px; font-size:10px; }
  .home-page .main-nav { top:70px; background:#07171f; }
  .home-page .hero { min-height:760px; }
  .home-page .hero-image { object-position: 48% center; }
  .hero-v-portrait {
    top: 70px;
    right: -34%;
    width: 112%;
    height: 54%;
    clip-path: polygon(5% 0, 95% 0, 53% 100%, 47% 100%);
    opacity: .9;
  }
  .hero-v-portrait img { object-position: 47% center; }
  .home-page .hero-shade {
    background:
      linear-gradient(0deg, rgba(3,15,21,.96) 5%, rgba(3,15,21,.68) 58%, rgba(3,15,21,.18)),
      linear-gradient(90deg, rgba(3,15,21,.78), rgba(3,15,21,.1));
  }
  .home-page .hero-content { padding:130px 0 80px; }
  .home-page .hero-content h1 { font-size:clamp(61px,18vw,86px); line-height:.84; }
  .home-page .hero-content-centered {
    min-height: 680px;
    padding: 145px 20px 90px;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
  }
  .home-page .hero-content-centered h1 {
    max-width: 350px;
    margin: 14px 0 20px;
    font-size: clamp(50px, 14vw, 64px);
    line-height: .84;
  }
  .hero-lead {
    max-width: 350px;
    font-size: 15px;
    line-height: 1.55;
  }
  .hero-quick-actions {
    width: 100%;
    max-width: 350px;
    margin-top: 28px;
    flex-direction: column;
  }
  .hero-quick-actions .button { width: 100%; min-width: 0; }
  .hero-bottom { grid-template-columns:1fr; gap:30px; }
  .hero-bottom p { max-width:330px; font-size:15px; }
  .hero-tech { display:none; }
  .statement { grid-template-columns:1fr; padding-block:90px; }
  .statement h2 { margin:18px 0 34px; font-size:50px; }
  .statement > p { grid-column:1; margin:0; font-size:16px; }
  .why-section {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 88px 96px;
  }
  .why-content h2 {
    margin: 0 0 46px;
    font-size: 54px;
    line-height: .92;
  }
  .why-list {
    grid-template-columns: 1fr;
  }
  .why-list li,
  .why-list li:nth-child(n) {
    min-height: 68px;
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 30px 42px 1fr auto;
    gap: 12px;
    padding: 16px 0;
  }
  .why-list p { font-size: 14px; }
  .why-modal { padding: 60px 24px 28px; }
  .why-modal-overlay.is-left-trigger { justify-content: center; }
  .why-modal h3 { font-size: 22px; }
  .editorial-services { grid-template-columns:1fr; }
  .service-visual { position:relative; height:420px; }
  .service-list { padding:55px 24px 70px; }
  .service-row { grid-template-columns:34px 1fr 24px; min-height:105px; }
  .service-row p { display:none; }
  .service-row h3 { font-size:38px; }
  .process-new { padding-block:90px; }
  .process-title { grid-template-columns:1fr; gap:25px; margin-bottom:50px; }
  .process-title h2 { font-size:56px; }
  .process-steps { grid-template-columns:1fr; }
  .process-steps li,.process-steps li + li { min-height:auto; padding:24px 0; border-right:0; border-bottom:1px solid rgba(255,255,255,.16); }
  .process-steps h3 { margin:28px 0 8px; }
  .about-editorial { grid-template-columns:1fr; gap:50px; padding-block:90px; }
  .about-editorial-copy h2 { font-size:54px; }
  .about-editorial-image img { aspect-ratio:4/4.8; }
  .value-rail { height:48px; flex-direction:row; writing-mode:horizontal-tb; }
  .value-rail span::after { display:none; }
  .inquiry-new { min-height:0; }
  .inquiry-new-inner { grid-template-columns:1fr; gap:30px; padding-block:90px; }
  .inquiry-new h2 { font-size:65px; }
  .inquiry-form-new { padding:24px 20px; }
  .form-pair { grid-template-columns:1fr; gap:0; }
  .footer-top { grid-template-columns:1fr; gap:28px; padding-bottom:50px; }
}

/* Editorial inner pages */
.inner-page { background: var(--paper); }
.home-page .main-nav a[aria-current="page"] { color: #ff6868; }
.inner-hero {
  position: relative; display:flex; min-height:760px; align-items:flex-end; overflow:hidden;
  color:#f2eee6; background:var(--navy);
}
.inner-hero > img { position:absolute; inset:0; height:100%; object-fit:cover; filter:saturate(.72) contrast(1.08); }
.inner-hero-shade { position:absolute; inset:0; background:linear-gradient(90deg,rgba(3,15,21,.96),rgba(3,15,21,.68) 45%,rgba(3,15,21,.15)),linear-gradient(0deg,rgba(3,15,21,.75),transparent 55%); }
.inner-hero-content { position:relative; z-index:1; padding-bottom:105px; }
.inner-hero-content h1 { max-width:900px; margin:10px 0 30px; font-size:clamp(90px,11vw,164px); font-weight:500; line-height:.76; letter-spacing:-.035em; text-transform:uppercase; overflow-wrap:normal; word-break:keep-all; }
.inner-hero-content h1 > span { white-space:nowrap; }
.inner-hero-content > p:last-child { max-width:540px; color:rgba(255,255,255,.72); font-size:17px; }
.inner-hero-content .hero-action { margin-top:26px; min-width:150px; justify-content:space-between; }
.inner-hero-meta { position:absolute; z-index:1; right:28px; bottom:25px; left:28px; display:flex; justify-content:space-between; color:rgba(255,255,255,.5); font-size:9px; letter-spacing:.2em; }
.process-hero > img { object-position:center 42%; }
.process-hero > img { content:url("assets/process-original.png"); }
.philosophy-photo img { content:url("assets/monvera-offshore-hero.png"); filter:grayscale(1) contrast(1.05); }
.service-catalog .catalog-item:nth-child(1) .catalog-image img { content:url("assets/real-fire-watch.jpg"); }
.service-catalog .catalog-item:nth-child(2) .catalog-image img { content:url("assets/stock-tank-cleaning-new.jpg"); }
.service-catalog .catalog-item:nth-child(3) .catalog-image img { content:url("assets/pexels-anoop1992-37659746.jpg"); }
.service-catalog .catalog-item:nth-child(4) .catalog-image img { content:url("assets/stock-safety-leader.jpg"); }
.service-catalog .catalog-item:nth-child(5) .catalog-image img { content:url("assets/hero-two-workers-pexels.jpg"); }
.about-inner-hero > img { object-position:center 48%; }
.career-hero > img { object-position:center 35%; }
.inner-intro { display:grid; grid-template-columns:.75fr 1.55fr .7fr; gap:35px; padding-block:140px; align-items:start; }
.inner-intro h2 { margin:-10px 0 0; font-size:clamp(60px,6.4vw,90px); font-weight:500; }
.inner-intro > p:last-child { color:#536067; font-size:16px; }

.philosophy-photo { position:relative; overflow:hidden; }
.story-split figure.philosophy-photo img { filter:grayscale(.15) contrast(1.04) brightness(.98); }
.philosophy-photo::after { content:""; position:absolute; z-index:1; inset:0; pointer-events:none; background:radial-gradient(ellipse 38% 48% at 52% 45%,rgba(255,255,255,.08) 0%,rgba(255,255,255,.02) 38%,rgba(0,0,0,.1) 76%,rgba(0,0,0,.22) 100%),linear-gradient(180deg,rgba(0,0,0,.08),transparent 28%,transparent 72%,rgba(0,0,0,.12)); mix-blend-mode:multiply; }
.story-v-mark { position:absolute; z-index:1; left:50%; top:50%; width:170px; height:275px; transform:translate(-50%,-50%); }
.story-v-mark span { position:absolute; top:0; width:2px; height:100%; background:rgba(255,255,255,.9); transform-origin:top center; }
.story-v-mark span:first-child { left:18%; transform:rotate(28deg); }
.story-v-mark span:last-child { right:18%; transform:rotate(-28deg); }

.service-catalog { border-top:1px solid var(--line); }
.catalog-item { display:grid; grid-template-columns:80px 1fr minmax(360px,40%); min-height:540px; border-bottom:1px solid var(--line); scroll-margin-top:130px; }
.catalog-item:last-child { border-bottom:none; }
.catalog-no { padding:45px 25px; color:var(--red); font:600 14px "Barlow Condensed",sans-serif; letter-spacing:.13em; border-right:1px solid var(--line); }
.catalog-copy { align-self:center; max-width:620px; padding:70px clamp(35px,6vw,100px); }
.catalog-copy h2 { font-size:clamp(60px,6vw,90px); font-weight:500; }
.catalog-copy > p:not(.eyebrow) { color:#536067; font-size:16px; }
.catalog-copy ul { margin:38px 0 0; padding:0; list-style:none; border-top:1px solid var(--line); }
.catalog-copy li { padding:11px 0; border-bottom:1px solid var(--line); font-size:12px; letter-spacing:.06em; text-transform:uppercase; }
.catalog-more { margin-top:30px; padding-top:24px; border-top:1px solid var(--line); }
.catalog-more summary { color:var(--red); font:600 13px "Barlow Condensed",sans-serif; letter-spacing:.1em; text-transform:uppercase; cursor:pointer; list-style:none; }
.catalog-more summary::-webkit-details-marker { display:none; }
.catalog-more summary::after { margin-left:8px; content:"→"; }
.catalog-more[open] summary::after { content:"↓"; }
.catalog-more p { margin:16px 0 0; color:#536067; font-size:16px; }
.catalog-image { overflow:hidden; }
.catalog-image img { height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.2,.7,.2,1); }
.catalog-item:hover .catalog-image img { transform:scale(1.035); }
.dark-image img { filter:saturate(.7) brightness(.76); }

.method-steps { border-top:1px solid var(--line); }
.method-step { display:grid; grid-template-columns:90px 1.4fr .8fr; min-height:300px; align-items:center; gap:45px; padding:45px max(24px,calc((100vw - var(--max))/2)); border-bottom:1px solid var(--line); }
.method-step > span { align-self:start; color:var(--red); font:600 14px "Barlow Condensed",sans-serif; }
.method-step h2 { margin:0; font-size:clamp(54px,5.5vw,78px); font-weight:500; }
.method-step > p { max-width:380px; color:#58656b; }
.process-principle { padding:130px 0; color:#f0ece4; background:#96adba; }
.process-principle .shell { display:grid; grid-template-columns:100px 1fr; }
.quote-mark { color:var(--red); font:120px/1 "Barlow Condensed",sans-serif; }
.process-principle blockquote { max-width:900px; margin:0; font:500 clamp(48px,5.5vw,78px)/.98 "Barlow Condensed",sans-serif; }
.process-principle p { grid-column:2; margin:35px 0 0; font-size:10px; letter-spacing:.16em; text-transform:uppercase; }

.story-split { display:grid; grid-template-columns:1.1fr .9fr; min-height:730px; }
.story-split figure { margin:0; position:relative; }
.story-split figure img { height:100%; object-fit:cover; filter:saturate(.72); }
.story-split figcaption { position:absolute; bottom:22px; left:24px; color:white; font-size:9px; letter-spacing:.16em; text-transform:uppercase; }
.story-copy { align-self:center; padding:80px clamp(40px,8vw,130px); }
.story-copy > span { color:var(--red); font-size:10px; letter-spacing:.16em; text-transform:uppercase; }
.story-copy h2 { margin-top:35px; font-size:clamp(58px,6vw,86px); font-weight:500; }
.story-copy p { color:#536067; }
.values-editorial { padding:130px 0; color:#f1ede5; background:var(--navy); }
.values-title { display:grid; grid-template-columns:1fr 2fr; margin-bottom:80px; }
.values-title h2 { margin:0; font-size:clamp(65px,7vw,98px); font-weight:500; }
.values-list { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.2); }
.values-list article { min-height:270px; padding:28px 25px; border-right:1px solid rgba(255,255,255,.16); }
.values-list article > span { color:#ff6868; font-size:11px; }
.values-list h3 { margin:80px 0 12px; font:500 31px "Barlow Condensed",sans-serif; }
.values-list p { color:rgba(255,255,255,.58); font-size:13px; }
.team-editorial { padding-block:140px; }
.team-editorial-title { display:grid; grid-template-columns:.7fr 1.3fr .7fr; gap:30px; align-items:start; margin-bottom:70px; }
.team-editorial-title h2 { margin:-9px 0 0; font-size:clamp(65px,7vw,95px); font-weight:500; }
.team-editorial-title > p:last-child { color:#606c72; font-size:12px; }
.team-editorial-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.portrait-placeholder { display:flex; aspect-ratio:3/4; flex-direction:column; justify-content:space-between; padding:18px; color:rgba(255,255,255,.7); background:linear-gradient(145deg,#536976,#142932); }
.portrait-placeholder span { font:500 44px "Barlow Condensed",sans-serif; }
.portrait-placeholder small { letter-spacing:.18em; }
.team-editorial-grid article > p { margin:16px 0 5px; color:var(--red); font-size:9px; letter-spacing:.12em; text-transform:uppercase; }
.team-editorial-grid h3 { font:500 25px "Barlow Condensed",sans-serif; }

.team-story { display:grid; grid-template-columns:.82fr 1.18fr; gap:8vw; padding-block:140px; align-items:center; }
.team-story-copy h2 { max-width:620px; margin:14px 0 28px; font-size:clamp(62px,6.8vw,96px); font-weight:500; }
.team-story-copy > p:not(.eyebrow) { max-width:560px; color:#536067; font-size:16px; }
.team-story-copy ul { margin:38px 0 0; padding:0; list-style:none; border-top:1px solid var(--line); }
.team-story-copy li { padding:14px 0; border-bottom:1px solid var(--line); font-size:11px; letter-spacing:.08em; text-transform:uppercase; }
.team-story-image { margin:0; }
.team-story-image { position:relative; overflow:hidden; }
.team-story-image img { width:100%; aspect-ratio:4/5; object-fit:cover; object-position:center; filter:grayscale(1) saturate(0) contrast(1.08) brightness(.82); }
.team-story-image::after { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(ellipse 40% 52% at 50% 46%,rgba(255,255,255,.14),transparent 48%,rgba(0,0,0,.62) 100%),linear-gradient(180deg,rgba(0,0,0,.2),transparent 35%,rgba(0,0,0,.42)); mix-blend-mode:multiply; }
.team-focus-label { position:absolute; z-index:2; top:12%; right:9%; color:#fff; font:600 clamp(24px,3vw,50px)/.9 "Barlow Condensed",sans-serif; letter-spacing:.08em; text-transform:uppercase; writing-mode:vertical-rl; text-orientation:mixed; }
.team-focus-brand { position:absolute; z-index:2; top:7%; left:8%; color:#fff; font:700 clamp(30px,4vw,64px)/.9 "Barlow Condensed",sans-serif; letter-spacing:.18em; }
.team-focus-frame { position:absolute; z-index:2; top:22%; left:42%; width:24%; height:40%; border:1px solid rgba(255,255,255,.82); box-shadow:0 0 0 999px rgba(0,0,0,.06); }
.team-story-image figcaption { display:flex; justify-content:space-between; gap:20px; padding-top:13px; color:#667278; font-size:9px; letter-spacing:.14em; text-transform:uppercase; }

.inner-cta { padding:120px 0; color:#f1ede5; background:var(--navy); }
.inner-cta h2 { font-size:clamp(70px,8vw,114px); font-weight:500; }
.career-pitch { display:grid; grid-template-columns:1.6fr .7fr; gap:8vw; padding-block:140px; align-items:end; }
.career-pitch h2 { margin:0; font-size:clamp(65px,7vw,98px); font-weight:500; }
.career-pitch > p { color:#536067; font-size:17px; }
.career-qualities { border-block:1px solid var(--line); }
.career-qualities .shell { display:grid; grid-template-columns:repeat(3,1fr); }
.career-qualities article { min-height:320px; padding:40px 35px 35px 0; border-right:1px solid var(--line); }
.career-qualities article + article { padding-left:35px; }
.career-qualities article > span { color:var(--red); font-size:11px; }
.career-qualities h3 { margin:100px 0 12px; font:500 35px "Barlow Condensed",sans-serif; }
.career-qualities p { color:#606c72; font-size:14px; }
.application-section { padding:130px 0; color:white; background:#07171f; }
.application-layout { display:grid; grid-template-columns:.8fr 1.2fr; gap:10vw; }
.application-copy h2 { font-size:clamp(65px,7vw,100px); font-weight:500; }
.application-copy > p:last-child { max-width:400px; color:rgba(255,255,255,.55); }
.application-form-new { padding:40px; border:1px solid rgba(255,255,255,.23); }
.application-form-new label { display:grid; gap:8px; margin-bottom:24px; }
.application-form-new label span { color:rgba(255,255,255,.6); font-size:9px; letter-spacing:.16em; text-transform:uppercase; }
.application-form-new input,.application-form-new select,.application-form-new textarea { width:100%; min-height:48px; padding:0; border:0; border-bottom:1px solid rgba(255,255,255,.28); border-radius:0; color:white; background:transparent; }
.application-form-new textarea { min-height:110px; padding-top:14px; resize:vertical; }
.application-form-new select option { color:#111; }
.application-form-new .button { width:100%; justify-content:space-between; }

@media (max-width:800px) {
  .inner-hero { min-height:720px; }
  .inner-hero-content { padding-bottom:75px; }
  .inner-hero-content h1 { font-size:clamp(72px,22vw,98px); }
  .inner-hero-content > p:last-child { max-width:330px; font-size:15px; }
  .inner-hero-meta { right:18px; left:18px; }
  .inner-hero-meta span:last-child { display:none; }
  .inner-intro { grid-template-columns:1fr; gap:22px; padding-block:85px; }
  .inner-intro h2 { font-size:52px; }
  .story-v-mark { width:120px; height:200px; }
  .catalog-item { grid-template-columns:52px minmax(0,1fr); min-height:0; }
  .catalog-no { padding:32px 15px; }
  .catalog-copy { min-width:0; padding:55px 25px; }
  .catalog-copy h2 { font-size:52px; }
  .catalog-image { grid-column:1/-1; height:300px; }
  .method-step { grid-template-columns:42px 1fr; min-height:0; gap:20px; padding:45px 24px; }
  .method-step > div { min-width:0; }
  .method-step > p { grid-column:2; }
  .method-step h2 { font-size:44px; }
  .process-principle { padding:85px 0; }
  .process-principle .shell { grid-template-columns:45px 1fr; }
  .quote-mark { font-size:70px; }
  .process-principle blockquote { font-size:44px; }
  .story-split { grid-template-columns:1fr; }
  .story-split figure { height:470px; }
  .story-copy { padding:75px 24px; }
  .story-copy h2 { font-size:52px; }
  .values-editorial { padding:85px 0; }
  .values-title { grid-template-columns:1fr; gap:24px; margin-bottom:50px; }
  .values-title h2 { font-size:55px; }
  .values-list { grid-template-columns:1fr; }
  .values-list article { min-height:0; border-right:0; border-bottom:1px solid rgba(255,255,255,.16); }
  .values-list h3 { margin:38px 0 10px; }
  .team-editorial { padding-block:85px; }
  .team-editorial-title { grid-template-columns:1fr; gap:20px; }
  .team-editorial-grid { grid-template-columns:1fr 1fr; }
  .team-editorial-grid h3 { font-size:21px; }
  .team-story { grid-template-columns:1fr; gap:50px; padding-block:85px; }
  .team-story-copy h2 { font-size:55px; }
  .team-story-image img { aspect-ratio:4/3; }
  .career-pitch { grid-template-columns:1fr; padding-block:85px; }
  .career-pitch h2 { font-size:55px; }
  .career-qualities .shell { grid-template-columns:1fr; }
  .career-qualities article,.career-qualities article + article { min-height:0; padding:32px 0; border-right:0; border-bottom:1px solid var(--line); }
  .career-qualities h3 { margin:45px 0 10px; }
  .application-section { padding:85px 0; }
  .application-layout { grid-template-columns:1fr; gap:45px; }
  .application-form-new { padding:28px 20px; }
  .application-form-new .form-pair { grid-template-columns:1fr; }
}

.single-form-heading {
  display:flex; min-height:92px; align-items:center; justify-content:space-between;
  margin-bottom:40px; border-bottom:1px solid rgba(255,255,255,.23);
}
.single-form-heading span { font:600 18px "Inter",sans-serif; }
.single-form-heading small { color:rgba(255,255,255,.43); font-size:10px; letter-spacing:.08em; text-transform:uppercase; }
.personnel-hero .inner-hero-content h1 { max-width:1100px; font-size:clamp(82px,9.5vw,145px); }
.personnel-hero { min-height:530px; }
.personnel-hero .inner-hero-content { padding-bottom:58px; }
.buyer-promise { display:grid; grid-template-columns:1.25fr .75fr; gap:10vw; padding-block:135px; align-items:end; }
.buyer-promise h2 { margin:0; font-size:clamp(65px,7vw,98px); font-weight:500; }
.buyer-promise > div:last-child > p { color:#536067; font-size:17px; }
.buyer-promise ul { margin:35px 0 0; padding:0; list-style:none; border-top:1px solid var(--line); }
.buyer-promise li { padding:12px 0; border-bottom:1px solid var(--line); font-size:11px; letter-spacing:.1em; text-transform:uppercase; }
.personnel-form-section { border-top:1px solid var(--line); }

@media (max-width:800px) {
  .single-form-heading { min-height:72px; margin-bottom:30px; }
  .single-form-heading span { font-size:15px; }
  .single-form-heading small { max-width:120px; text-align:right; font-size:8px; }
  .personnel-hero .inner-hero-content h1 { font-size:clamp(64px,18vw,82px); }
  .personnel-hero { min-height:560px; }
  .buyer-promise { grid-template-columns:1fr; gap:35px; padding-block:85px; }
  .buyer-promise h2 { font-size:53px; }
}

/* Unified application and personnel inquiry */
.application-section {
  position:relative;
  overflow:hidden;
  padding:100px 0;
  color:var(--ink);
  background:#eeeae2;
}
.application-watermark {
  position:absolute;
  right:-20px;
  bottom:20px;
  color:rgba(11,24,32,.035);
  font:500 clamp(90px,14vw,220px)/.8 "Barlow Condensed",sans-serif;
  letter-spacing:-.04em;
  white-space:nowrap;
}
.application-layout { position:relative; z-index:1; grid-template-columns:.68fr 1.32fr; gap:8vw; align-items:start; }
.career-page .application-layout { grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:28px; align-items:stretch; }
.application-visual { position:relative; min-height:690px; overflow:hidden; color:#f4f0e8; background:#071a26; }
.application-visual > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:saturate(.78) contrast(1.05); }
.application-visual-shade { position:absolute; inset:0; background:linear-gradient(90deg,rgba(7,26,38,.96),rgba(7,26,38,.82) 42%,rgba(7,26,38,.22) 82%,rgba(7,26,38,.08)),linear-gradient(0deg,rgba(7,26,38,.48),transparent 55%); }
.application-visual-copy { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; padding:clamp(28px,5vw,70px); }
.application-visual-copy h2 { margin:12px 0 28px; max-width:430px; color:#f4f0e8; font-size:clamp(60px,6vw,96px); line-height:.84; }
.application-visual-copy > p:last-child { max-width:360px; color:rgba(255,255,255,.78); font-size:16px; line-height:1.7; }
.application-copy { position:sticky; top:110px; padding-top:30px; }
.application-copy h2 { margin:12px 0 28px; font-size:clamp(72px,7.5vw,108px); color:var(--ink); line-height:.82; }
.application-copy i { display:block; width:62px; height:3px; margin-bottom:38px; background:var(--red); }
.application-copy > p:not(.eyebrow):not(.application-assurance) { max-width:390px; color:#46545b; font-size:17px; line-height:1.75; }
.application-assurance { margin-top:42px; color:#657178; font-size:10px; letter-spacing:.08em; text-transform:uppercase; }
.application-assurance span { margin-right:8px; color:var(--red); }
.contact-form-shell { padding:0 36px 36px; color:#f4f0e8; background:#071a26; box-shadow:0 28px 65px rgba(7,23,31,.16); }
.contact-tabs { display:grid; grid-template-columns:1fr 1fr; margin-bottom:40px; border-bottom:1px solid rgba(255,255,255,.23); }
.contact-tabs button {
  position:relative; min-height:92px; padding:0 12px; border:0; color:rgba(255,255,255,.55);
  background:transparent; font:600 18px "Inter",sans-serif; cursor:pointer;
}
.contact-tabs button::after { content:""; position:absolute; right:0; bottom:-1px; left:0; height:3px; background:var(--red); transform:scaleX(0); transition:transform .25s ease; }
.contact-tabs button[aria-selected="true"] { color:white; }
.contact-tabs button[aria-selected="true"]::after { transform:scaleX(1); }
.contact-tabs button:hover { color:white; }
.contact-panel[hidden] { display:none; }
.application-form-new { padding:0; border:0; }
.application-form-new label { margin-bottom:18px; }
.application-form-new label span { color:rgba(255,255,255,.82); font-size:10px; }
.application-form-new input,.application-form-new select,.application-form-new textarea {
  min-height:50px; padding:0 18px; border:1px solid rgba(255,255,255,.32); color:white; background:rgba(255,255,255,.025);
  transition:border-color .2s, box-shadow .2s, background .2s;
}
.application-form-new textarea { min-height:100px; padding-top:14px; }
.service-select { position:relative; display:grid; gap:8px; align-self:start; margin-bottom:18px; }
.service-select > span { color:rgba(255,255,255,.82); font-size:10px; letter-spacing:.16em; text-transform:uppercase; }
.service-select-trigger {
  display:flex; align-items:center; justify-content:space-between; width:100%; min-height:50px; margin:0; padding:0 18px;
  border:1px solid rgba(255,255,255,.32); border-radius:0; color:white; background:rgba(255,255,255,.025); font:inherit; text-align:left; cursor:pointer;
  appearance:none; -webkit-appearance:none; transition:border-color .2s, background .2s;
}
.form-pair:has(.service-select) { grid-template-columns:minmax(0,1fr) minmax(0,1fr); align-items:start; }
.form-pair:has(.service-select) > * { min-width:0; }
.service-select.open .service-select-trigger { border-color:#77a9df; background:rgba(255,255,255,.05); }
.service-select-value { min-width:0; overflow-wrap:anywhere; color:rgba(255,255,255,.82); line-height:1.35; }
.service-select-chevron { flex:0 0 auto; width:8px; height:8px; margin-left:12px; border-right:1.5px solid rgba(255,255,255,.6); border-bottom:1.5px solid rgba(255,255,255,.6); transform:rotate(45deg); transition:transform .2s; }
.service-select.open .service-select-chevron { transform:rotate(-135deg); }
.service-select-panel {
  position:absolute; z-index:5; top:calc(100% + 6px); left:0; right:0; display:grid; gap:2px; padding:8px;
  border:1px solid rgba(255,255,255,.32); background:#0c2431; box-shadow:0 18px 40px rgba(0,0,0,.35);
}
.service-select-panel[hidden] { display:none; }
.service-select-panel label.service-select-option {
  display:flex; flex-direction:row; align-items:center; gap:10px; margin-bottom:0; padding:9px 8px;
  color:rgba(255,255,255,.85); font-size:13px; cursor:pointer;
}
.service-select-option:hover { background:rgba(255,255,255,.05); }
.service-select-option input { width:14px; height:14px; accent-color:var(--red); }
.service-select-other { min-height:44px; margin-top:4px; padding:0 10px; border:1px solid rgba(255,255,255,.24); color:white; background:transparent; }
.service-select-other::placeholder { color:rgba(255,255,255,.38); }
.application-form-new input:focus,.application-form-new select:focus,.application-form-new textarea:focus {
  outline:0; border-color:#77a9df; background:rgba(255,255,255,.05); box-shadow:0 0 0 3px rgba(77,140,207,.16);
}
.application-form-new input::placeholder,.application-form-new textarea::placeholder { color:rgba(255,255,255,.38); }
.number-control { display:grid; grid-template-columns:48px minmax(0,1fr) 48px; min-height:50px; border:1px solid rgba(255,255,255,.32); background:rgba(255,255,255,.025); transition:border-color .2s,box-shadow .2s,background .2s; }
.number-control:focus-within { border-color:#77a9df; background:rgba(255,255,255,.05); box-shadow:0 0 0 3px rgba(77,140,207,.16); }
.number-control input { width:100%; min-height:48px; padding:0 4px; border:0; background:transparent; text-align:center; appearance:textfield; -moz-appearance:textfield; }
.number-control input::-webkit-outer-spin-button,.number-control input::-webkit-inner-spin-button { margin:0; appearance:none; }
.number-stepper { display:grid; place-items:center; min-width:48px; padding:0; border:0; color:rgba(255,255,255,.78); background:rgba(255,255,255,.055); font-size:22px; font-weight:400; line-height:1; cursor:pointer; transition:color .2s,background .2s; }
.number-stepper:first-child { border-right:1px solid rgba(255,255,255,.14); }
.number-stepper:last-child { border-left:1px solid rgba(255,255,255,.14); }
.number-stepper:hover { color:white; background:rgba(255,255,255,.12); }
.number-stepper:focus-visible { position:relative; z-index:1; outline:2px solid #77a9df; outline-offset:-4px; }
.file-drop {
  min-height:155px; display:flex !important; align-items:center; justify-content:center; gap:4px !important;
  border:1px dashed rgba(255,255,255,.45); cursor:pointer; transition:border-color .2s,background .2s;
}
.file-drop:hover { border-color:white; background:rgba(255,255,255,.04); }
.file-drop input { position:absolute; width:1px; height:1px; opacity:0; pointer-events:none; }
.file-drop .file-icon { color:white; }
.file-drop strong { font-size:14px; }
.file-drop small { color:rgba(255,255,255,.43); font-size:10px; }
.application-form-new .button { min-height:56px; margin-top:6px; font-size:15px; }
.privacy-note { margin:20px 0 0; color:rgba(255,255,255,.42); font-size:10px; }
.application-form-new .form-note { margin:8px 0 0; color:#ff9090; font-size:11px; }

@media (max-width:800px) {
  .application-section { padding:85px 0; }
  .application-layout { grid-template-columns:1fr; gap:48px; }
  .career-page .application-layout { grid-template-columns:1fr; gap:28px; }
  .application-visual { min-height:540px; }
  .application-visual-copy h2 { font-size:67px; }
  .application-copy { position:static; padding-top:0; }
  .application-copy h2 { font-size:67px; }
  .application-assurance { margin-top:26px; }
  .contact-form-shell { padding:0 18px 28px; }
  .contact-tabs { margin-bottom:30px; }
  .contact-tabs button { min-height:72px; font-size:14px; }
  .application-form-new input,.application-form-new select { min-height:54px; }
  .file-drop { min-height:145px; text-align:center; }
}
.form-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
