:root {
  --navy: #16294b;
  --navy-700: #1f3a6b;
  --accent: #2f62c4;
  --accent-soft: #5e8ae0;
  --ink: #13223d;
  --body: #3a465c;
  --muted: #76828f;
  --bg: #ffffff;
  --bg-2: #f4f6f9;
  --bg-3: #eaeef3;
  --line: #dbe1ea;
  --display: "Saira", system-ui, sans-serif;
  --script: "Yellowtail", cursive;
  --mono: "Space Mono", ui-monospace, monospace;
  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-splashing,
body.nav-locked {
  overflow: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      110% 80% at 82% 4%,
      rgba(47, 98, 196, 0.1),
      transparent 55%
    ),
    linear-gradient(rgba(22, 41, 75, 0.06) 1px, transparent 1px) 0 0/64px 64px,
    linear-gradient(90deg, rgba(22, 41, 75, 0.06) 1px, transparent 1px) 0 0/64px
      64px;
  opacity: 0.7;
  mask-image: linear-gradient(180deg, #000, transparent 60%);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #bfd0ea;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: #bfd0ea;
  display: inline-block;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  flex: none;
}
.brand img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.85em 1.5em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn--primary {
  background: var(--navy);
  color: #fff;
}
.btn--primary:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn svg {
  width: 18px;
  height: 18px;
}

header.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
  position: relative;
}
.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover {
  color: var(--navy);
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--navy);
}
.nav__ig svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}
/* sidebar pieces — display:contents keeps desktop flex intact; mobile restyles them */
.nav__drawer,
.nav__items {
  display: contents;
}
.nav__close,
.nav__panel-label,
.nav__panel-book,
.nav__social,
.nav__scrim {
  display: none;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3f9;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}
.splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(47, 98, 196, 0.18),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88),
      rgba(234, 238, 243, 0.96)
    );
}
.splash__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: min(92vw, 460px);
}
.splash__gauge {
  width: min(88vw, 420px);
  filter: drop-shadow(0 22px 48px rgba(21, 38, 69, 0.16));
}
.splash__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: none;
}
.splash__brand img {
  height: 48px;
}

.hero {
  position: relative;
  min-height: min(68vh, 680px);
  display: flex;
  align-items: center;
  padding-block: clamp(40px, 2vw, 80px);
  background:
    linear-gradient(
      90deg,
      rgba(20, 20, 26, 0.7) 0%,
      rgba(20, 20, 26, 0.46) 38%,
      rgba(20, 20, 26, 0.26) 100%
    ),
    linear-gradient(180deg, rgba(20, 20, 26, 0.09), rgba(20, 20, 26, 0.39)),
    url("https://res.cloudinary.com/wje2wffp/image/upload/v1783018573/bannerprinc_bllufo.webp")
      center 40% / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(94, 138, 224, 0.22),
      transparent 28%
    ),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0/56px
      56px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0
      0/56px 56px;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: inherit;
}
.hero__copy {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-block: 1rem;
}
.hero h1 {
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.015em;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  margin: 0.42em 0 0.42em;
  max-width: 12ch;
}
.hero h1 .hl {
  color: #dce6f7;
  white-space: nowrap;
}
.hero p.lead {
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
  color: #e0e8f3;
  max-width: 50ch;
  margin-bottom: 1.6rem;
}
.hero__cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.hero__note {
  margin-top: 1.2rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: #bfd0ea;
  letter-spacing: 0.03em;
}

.gauge {
  position: relative;
  width: min(100%, 420px);
  margin-inline: auto;
  aspect-ratio: 1;
}
.gauge svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.gauge__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
.gauge__rpm {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(2.1rem, 6vw, 3rem);
  line-height: 1;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
.gauge__unit {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  color: var(--accent);
  margin-top: 0.5em;
}
.gauge__brand {
  margin-top: 1em;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  color: var(--muted);
}

.cluster {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}
.cluster__viewport {
  overflow: hidden;
}
.cluster__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(26px, 4vw, 38px) clamp(16px, 2.5vw, 28px);
  border-left: 1px solid var(--line);
}
.stat:first-child {
  border-left: none;
}
.stat__num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  color: var(--navy);
  line-height: 1.05;
}
.stat__label {
  margin-top: 0.7em;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.section {
  padding-block: clamp(64px, 9vw, 118px);
}
.section--alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.section__head {
  max-width: 60ch;
  margin-bottom: clamp(36px, 5vw, 58px);
}
.section__head h2 {
  font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0.55em 0 0.4em;
}
.section__head p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 50ch;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc {
  background: var(--bg);
  padding: clamp(26px, 3vw, 38px);
  transition: background 0.25s ease;
  position: relative;
  overflow: hidden;
}
.svc::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}
.svc:hover,
.svc:active,
.svc.is-active {
  background: var(--bg-2);
}
.svc:hover::after,
.svc:active::after,
.svc.is-active::after {
  width: 100%;
}
.svc__ico {
  width: 46px;
  height: 46px;
  color: var(--navy);
  margin-bottom: 1.3rem;
}
.svc__ico svg {
  width: 100%;
  height: 100%;
}
.svc h3 {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.svc p {
  color: var(--muted);
  font-size: 0.95rem;
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step {
  background: var(--bg);
  padding: clamp(26px, 3vw, 38px);
}
.step__no {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--bg-3);
  line-height: 1;
}
.step h3 {
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--ink);
  margin: 1rem 0 0.55rem;
}
.step p {
  color: var(--muted);
  font-size: 0.93rem;
}
.step__bar {
  height: 2px;
  width: 32px;
  background: var(--accent);
  margin-top: 1.4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about__body p {
  color: var(--body);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.about__body p strong {
  color: var(--ink);
  font-weight: 700;
}
.about__title {
  font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0.55em 0 0.9em;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}
.badge {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 0.55em 1em;
  letter-spacing: 0.03em;
}
.badge span {
  color: var(--accent);
}
.about-media {
  display: grid;
  gap: 1rem;
}
.about-media__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.about-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #dfe6f2;
  min-height: 0;
}
.about-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(19, 34, 61, 0.08) 0%,
    rgba(19, 34, 61, 0.16) 100%
  );
  pointer-events: none;
}
.about-shot--hero::after {
  background: linear-gradient(
    180deg,
    rgba(19, 34, 61, 0.02) 0%,
    rgba(19, 34, 61, 0.14) 48%,
    rgba(19, 34, 61, 0.78) 100%
  );
}
.about-shot--hero figcaption {
  position: absolute;
  left: clamp(22px, 3vw, 36px);
  right: clamp(22px, 3vw, 36px);
  bottom: clamp(22px, 3vw, 34px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #fff;
}
.about-shot--hero strong {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.05;
}
.about-shot--hero span {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dce6f7;
}
.about-shot--detail {
  aspect-ratio: 1.2;
  min-height: 150px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 2.4rem;
}
.tile {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 260px;
  background: #0d1830;
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 24, 48, 0.12) 0%,
    rgba(13, 24, 48, 0.82) 100%
  );
}
.tile:hover img {
  transform: scale(1.08);
  filter: saturate(1.05);
}
.tile span {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #dce6f7;
  text-transform: uppercase;
}
.work-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.work-cta .ig-handle {
  font-family: var(--mono);
  color: var(--navy);
  font-size: 0.95rem;
}

.cta {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 138, 224, 0.4), transparent 70%);
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(36px, 5vw, 64px);
}
.cta .eyebrow {
  color: var(--accent-soft);
}
.cta .eyebrow::before {
  background: var(--accent-soft);
}
.cta h2 {
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0.5em 0 0.7em;
}
.cta p.lead {
  color: #cdd8ee;
  font-size: 1.05rem;
  max-width: 38ch;
  margin-bottom: 1.8rem;
}
.cta .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.cta .btn--ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.cta__btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.info {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-content: start;
}
.info__row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info__ico {
  width: 38px;
  height: 38px;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: var(--accent-soft);
}
.info__ico svg {
  width: 20px;
  height: 20px;
}
.info__k {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fb4d8;
}
.info__v {
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.2em;
  color: #fff;
}
.info__v small {
  display: block;
  color: #9fb4d8;
  font-weight: 400;
  font-size: 0.82rem;
  margin-top: 0.15em;
  font-family: var(--mono);
}

footer {
  border-top: 1px solid var(--line);
  padding-block: 38px;
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.foot__small {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--muted);
}
.foot__links {
  display: flex;
  gap: 1.5rem;
}
.foot__links a {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.foot__links a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: 60vh;
    background-position: center center;
  }
  .hero__copy {
    max-width: min(720px, 86%);
  }
  .cluster__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(odd) {
    border-left: none;
  }
  .svc-grid,
  .proc-grid,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about__body {
    order: 2;
  }
  .about-media {
    order: 1;
  }
  .about-shot--hero {
    min-height: 380px;
  }
  .cta__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav__inner {
    height: 72px;
    min-height: 72px;
    padding-block: 0;
    flex-wrap: nowrap;
  }
  .nav__toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
    width: 54px;
    height: 54px;
    font-size: 2rem;
  }
  .nav__cta {
    display: none;
  }
  /* header's backdrop-filter creates a containing block for fixed children,
     which would trap the drawer inside the header — drop it on mobile so the
     drawer anchors to the viewport (desktop keeps the blur) */
  header.nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.98);
  }
  /* slide-in sidebar — drawer is a viewport-sized clip layer so the
     off-canvas panel never widens the document (keeps header sticky intact) */
  .nav__drawer {
    display: block;
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 100;
  }
  .nav__scrim {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 32, 0.5);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease;
    pointer-events: auto;
  }
  .nav--open .nav__scrim {
    opacity: 1;
    visibility: visible;
  }
  .nav__links {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 78px 18px 26px;
    background: var(--navy);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 110;
  }
  .nav--open .nav__links {
    transform: translateX(0);
    box-shadow: -22px 0 55px rgba(8, 16, 32, 0.45);
  }
  .nav__close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    padding: 0;
    line-height: 1;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }
  .nav__close svg {
    width: 22px;
    height: 22px;
  }
  .nav__panel-label {
    display: block;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-soft);
    padding: 0 14px 0.4rem;
  }
  .nav__items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  .nav__items a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.18rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: #fff;
    padding: 0.95rem 14px;
    border-radius: 12px;
    transition: background 0.2s;
  }
  .nav__items a:hover,
  .nav__items a:active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
  .nav__items a::after {
    content: "›";
    color: var(--accent-soft);
    font-size: 1.4rem;
    font-weight: 400;
  }
  .nav__social {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: auto;
    padding: 0.6rem 0;
  }
  .nav__social a {
    color: #fff;
    transition: color 0.2s;
  }
  .nav__social a:hover {
    color: var(--accent-soft);
  }
  .nav__social svg {
    width: 28px;
    height: 28px;
  }
  .nav__social a:nth-child(2) svg {
    width: 34px;
    height: 34px;
  }
  .nav__panel-book {
    display: inline-flex;
    margin-top: 0.85rem;
    background: #fff;
    color: var(--navy);
    text-transform: none;
    font-size: 1rem;
  }
  .nav__panel-book:hover {
    background: #eef3f9;
    color: var(--navy);
    transform: none;
  }
  .svc-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }
  /* process -> vertical timeline on mobile */
  .proc-grid {
    display: block;
    background: none;
    border: 0;
    gap: 0;
    margin-top: 1.6rem;
    padding-left: 6px;
  }
  .step {
    position: relative;
    background: none;
    padding: 0 0 2.2rem 62px;
    min-height: 48px;
  }
  .step:last-child {
    padding-bottom: 0;
  }
  .step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 52px;
    bottom: 0;
    width: 2px;
    background: var(--line);
  }
  .step__no {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    font-size: 0.95rem;
    z-index: 1;
  }
  .step h3 {
    margin: 0.05rem 0 0.5rem;
  }
  .step__bar {
    display: none;
  }
  .cluster .wrap {
    max-width: none;
    padding-inline: 0;
  }
  .cluster__viewport {
    overflow: hidden;
    width: 100%;
  }
  .cluster__grid {
    display: flex;
    gap: 4px;
    padding: 0 20px 4px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }
  .stat {
    min-width: 78%;
    flex: 0 0 78%;
    border: 1px solid var(--line);
    background: var(--bg);
    padding: 28px 22px 30px;
    user-select: none;
  }
  .splash__content {
    width: min(90vw, 340px);
    gap: 0.85rem;
  }
  .splash__gauge {
    width: min(82vw, 300px);
  }
  .brand img {
    height: 40px;
  }
  .splash__brand img {
    height: 38px;
  }
  .hero {
    min-height: 56vh;
    align-items: flex-end;
    padding-block: 40px 44px;
    background:
      linear-gradient(
        180deg,
        rgba(20, 20, 26, 0.46) 0%,
        rgba(20, 20, 26, 0.64) 60%,
        rgba(20, 20, 26, 0.78) 100%
      ),
      url("https://res.cloudinary.com/dwccpedx7/image/upload/q_auto/f_auto/v1781845747/banner_sszgdf.webp")
        center top/cover no-repeat;
  }
  .hero__copy {
    max-width: 100%;
    padding-block: 0;
  }
  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2rem, 9.4vw, 3rem);
    line-height: 0.98;
  }
  .hero p.lead {
    max-width: 27ch;
    font-size: 1rem;
  }
  .hero__cta .btn,
  .cta__btns .btn,
  .work-cta .btn {
    width: 100%;
  }
  #contact {
    padding-block: 0;
  }
  #contact .wrap {
    max-width: none;
    padding-inline: 0;
  }
  .cta {
    border-radius: 0;
  }
  .cta__inner {
    padding-inline: var(--gut);
  }
  #contact + footer {
    margin-top: 0;
  }
  .work-cta {
    align-items: stretch;
  }
  .tile {
    min-height: 220px;
  }
  .about-shot {
    border-radius: 10px;
  }
  .about-media__grid {
    display: none;
  }
  .about-shot--hero {
    min-height: auto;
  }
  .about-shot--hero figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .about-shot--hero strong {
    font-size: 1.7rem;
  }
  .foot {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
