:root {
  --charcoal: #22272b;
  --slate: #45545d;
  --orange: #d96828;
  --blue: #436b7c;
  --bone: #f2eee5;
  --white: #ffffff;
  --ink-soft: #667078;
  --line: rgba(34, 39, 43, 0.16);
  --max-width: 1500px;
  --radius: 1.1rem;
  --shadow: 0 22px 60px rgba(34, 39, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--charcoal);
  background:
    linear-gradient(rgba(34, 39, 43, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 39, 43, 0.045) 1px, transparent 1px),
    var(--bone);
  background-size: 48px 48px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  text-rendering: optimizeLegibility;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 0.4rem;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
  padding-block: clamp(1rem, 2.5vw, 2.5rem);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: min(820px, calc(100vh - 6rem));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(34, 39, 43, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 52%;
  width: 1px;
  background: var(--line);
  content: "";
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 6.5rem);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.8rem;
  margin-bottom: clamp(3rem, 8vh, 6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-lockup__mark {
  display: grid;
  width: 2.35rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.brand-lockup__name {
  font-size: 0.9rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: clamp(0.78rem, 0.7rem + 0.25vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.15rem, 6.9vw, 7.25rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

h1 span {
  color: var(--orange);
}

.lede {
  max-width: 62ch;
  margin: clamp(1.6rem, 3vw, 2.25rem) 0 0;
  color: var(--slate);
  font-size: clamp(1.03rem, 0.95rem + 0.38vw, 1.28rem);
  line-height: 1.72;
}

.status {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.72rem;
  margin-top: 2rem;
  padding: 0.72rem 0.95rem;
  color: var(--charcoal);
  background: rgba(217, 104, 40, 0.09);
  border: 1px solid rgba(217, 104, 40, 0.42);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.status__dot {
  width: 0.68rem;
  aspect-ratio: 1;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(217, 104, 40, 0.45);
  animation: pulse 2s infinite;
}

blockquote {
  max-width: 38rem;
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  padding: 0 0 0 1.25rem;
  color: var(--charcoal);
  border-left: 0.35rem solid var(--orange);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.65rem);
  font-weight: 750;
  line-height: 1.35;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.services li {
  padding: 0.55rem 0.75rem;
  color: var(--slate);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(67, 107, 124, 0.3), transparent 55%),
    var(--charcoal);
}

.hero__visual::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      100deg,
      transparent 0,
      transparent 42px,
      rgba(255, 255, 255, 0.035) 43px,
      rgba(255, 255, 255, 0.035) 45px
    );
  content: "";
}

.hero__visual::after {
  position: absolute;
  right: -10%;
  bottom: 8%;
  width: 48%;
  height: 12px;
  background: repeating-linear-gradient(
    135deg,
    var(--orange) 0 18px,
    transparent 18px 32px
  );
  opacity: 0.72;
  content: "";
  transform: rotate(-6deg);
}

.dock-number,
.logo-stage,
.route-line,
.visual-statement,
.visual-footer {
  position: relative;
  z-index: 1;
}

.dock-number {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Arial Narrow", "Roboto Condensed", sans-serif;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.route-line {
  position: absolute;
  top: 10%;
  right: 2.5rem;
  bottom: 14%;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.route-line span {
  position: absolute;
  left: 50%;
  width: 0.74rem;
  aspect-ratio: 1;
  background: var(--charcoal);
  border: 2px solid var(--orange);
  border-radius: 50%;
  transform: translateX(-50%);
}

.route-line span:nth-child(1) { top: 0; }
.route-line span:nth-child(2) { top: 33%; }
.route-line span:nth-child(3) { top: 66%; }
.route-line span:nth-child(4) { bottom: 0; }

.logo-stage {
  display: grid;
  width: min(78%, 520px);
  margin: auto;
  place-items: center;
}

.logo-stage::before,
.logo-stage::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.logo-stage::before {
  inset: -9%;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.logo-stage::after {
  inset: -17%;
  border: 1px dashed rgba(217, 104, 40, 0.5);
  animation: rotate 28s linear infinite;
}

.logo-stage__ring {
  position: relative;
  overflow: hidden;
  padding: 0.65rem;
  background: var(--white);
  border: 0.28rem solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.3);
}

.logo-stage__ring img {
  display: block;
  max-width: 100%;
  height: auto;
}

.visual-statement {
  margin: 0;
  color: var(--bone);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.visual-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-footer span:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.3rem 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  color: var(--charcoal);
  font-weight: 800;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 104, 40, 0.45); }
  70% { box-shadow: 0 0 0 0.7rem rgba(217, 104, 40, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 104, 40, 0); }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero::after {
    display: none;
  }

  .hero__copy {
    padding-bottom: 3rem;
  }

  .brand-lockup {
    margin-bottom: 4rem;
  }

  h1 {
    max-width: 10ch;
  }

  .hero__visual {
    min-height: 680px;
  }

  .logo-stage {
    width: min(56vw, 460px);
  }
}

@media (max-width: 640px) {
  body {
    background-size: 32px 32px;
  }

  .site-shell {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-block: 0.5rem;
  }

  .hero {
    border-radius: 0.8rem;
  }

  .hero__copy,
  .hero__visual {
    padding: 1.45rem;
  }

  .brand-lockup {
    margin-bottom: 3rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .lede {
    line-height: 1.6;
  }

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

  .hero__visual {
    min-height: 560px;
  }

  .logo-stage {
    width: min(74vw, 380px);
  }

  .route-line {
    right: 1.25rem;
  }

  .visual-footer {
    gap: 0.45rem;
    font-size: 0.62rem;
  }

  .site-footer {
    flex-direction: column;
    padding: 1rem 0.2rem;
  }
}

@media (max-width: 420px) {
  .services {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 500px;
  }

  .visual-footer {
    display: none;
  }
}

@media (min-width: 1800px) {
  :root {
    --max-width: 1720px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(620px, 0.8fr);
  }

  .hero__copy {
    padding-inline: clamp(5rem, 7vw, 8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
