:root {
  --blue-900: #031f3d;
  --blue-800: #062b57;
  --blue-700: #0b3d74;
  --cream: #fffbea;
  --white: #ffffff;
  --mist: #e8eef4;
  --steel: #6d7e90;
  --line: rgba(6, 43, 87, 0.16);
  --hairline: rgba(6, 43, 87, 0.095);
  --shadow: 0 30px 80px rgba(3, 31, 61, 0.16);
  --glass-bg: rgba(255, 255, 255, 0.34);
  --glass-border: rgba(255, 255, 255, 0.54);
  --glass-shadow: 0 18px 46px rgba(3, 31, 61, 0.09);
  --serif: "Plumb Rockwell", Rockwell, "Rockwell Nova", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --page: min(92vw, 1440px);
  --section-y: clamp(2.8rem, 4.2vw, 4.7rem);
  --section-y-tight: clamp(2.2rem, 3.3vw, 3.6rem);
  --rockwell-width: 0.71;
  --rockwell-tracking: 0.015em;
}

@font-face {
  font-family: "Plumb Rockwell";
  src: local("Rockwell Italic"), local("Rockwell-Italic");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--blue-900);
  background: var(--cream);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 8%, rgba(11, 61, 116, 0.055), transparent 34rem),
    linear-gradient(90deg, rgba(6, 43, 87, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 43, 87, 0.016) 1px, transparent 1px);
  background-size: auto, 5.2rem 5.2rem, 5.2rem 5.2rem;
}

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

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

main {
  position: relative;
  isolation: isolate;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.site-header {
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) auto minmax(9rem, 1fr);
  align-items: center;
  width: var(--page);
  margin: 0 auto;
  padding: 1.45rem 0 0.75rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand-logo {
  width: clamp(7.4rem, 9.2vw, 9.9rem);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(2.2rem, 5vw, 5.1rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-nav a,
.nav-cta {
  position: relative;
  overflow: hidden;
  min-height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.1rem 0.2rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

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

.nav-cta {
  justify-self: end;
  border-radius: 0;
  padding: 0;
  color: var(--blue-900);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  box-shadow: none;
  backdrop-filter: none;
}

.founder-link::before {
  content: "";
  position: absolute;
  inset: -120% auto auto -55%;
  width: 42%;
  height: 320%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: rotate(22deg) translateX(-120%);
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta::after {
  content: "\2197";
  margin-left: 0.85rem;
  font-size: 0.95rem;
  line-height: 1;
}

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

.founder-link:hover::before {
  transform: rotate(22deg) translateX(410%);
}

.nav-cta:active,
.button:active {
  transform: translateY(1px) scale(0.98);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: calc(68dvh - 4.6rem);
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.56fr);
  align-items: center;
  gap: clamp(2.2rem, 4.8vw, 5.8rem);
  padding: clamp(1.8rem, 3.2vw, 3.4rem) 0 clamp(1.8rem, 3vw, 3.2rem);
}

.hero-pipe {
  position: absolute;
  top: clamp(-6.2rem, -6.2vw, -4.8rem);
  left: 50%;
  z-index: 0;
  width: 1670px;
  height: auto;
  max-width: none;
  pointer-events: none;
  transform: translateX(-50%);
  clip-path: inset(0 0 30% 0);
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.18) 5%,
    #000 15%,
    #000 85%,
    rgba(0, 0, 0, 0.18) 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.18) 5%,
    #000 15%,
    #000 85%,
    rgba(0, 0, 0, 0.18) 95%,
    transparent 100%
  );
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-left: clamp(0rem, 3.2vw, 3rem);
  align-self: center;
}

.eyebrow,
.panel-label,
.founder-tag,
.type-label {
  margin: 0 0 1.1rem;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue-700);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  letter-spacing: var(--rockwell-tracking);
  line-height: 0.92;
  transform: scaleX(var(--rockwell-width));
  transform-origin: left center;
}

h1 {
  max-width: 19ch;
  margin-bottom: 1.45rem;
  font-size: clamp(3.25rem, 6.1vw, 6rem);
}

.hero-title span {
  display: block;
}

h2 {
  max-width: 18ch;
  margin-bottom: 0.9rem;
  font-size: clamp(2.55rem, 5.1vw, 5.25rem);
}

h3 {
  font-size: clamp(1.25rem, 1.9vw, 1.9rem);
  line-height: 1.05;
}

.hero-lede,
.method-intro p,
.work-panel p,
.founder-card p,
.guide-copy p,
.logo-notes p,
.type-specimens p,
.voice-grid p {
  max-width: 65ch;
  color: rgba(3, 31, 61, 0.72);
  font-size: 0.98rem;
  line-height: 1.72;
}

.hero-lede {
  max-width: 39ch;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.button-primary {
  color: var(--blue-900);
  background: transparent;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.18);
}

.button::after {
  content: "\2197";
  margin-left: 0.85rem;
  font-size: 0.95rem;
  line-height: 1;
}

.hero-mark {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 28.5rem);
  animation: float-soft 8.5s ease-in-out infinite;
}

.hero-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px 6rem 2px 6rem;
  box-shadow: var(--shadow);
}

.logo-orbit {
  position: absolute;
  z-index: 3;
  inset: -1.4rem auto auto -3rem;
  width: 11.5rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  background: rgba(3, 31, 61, 0.48);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: float-glass 6.5s ease-in-out infinite;
  overflow: hidden;
  pointer-events: none;
}

.logo-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 42%);
  opacity: 0.72;
}

.logo-orbit span {
  position: relative;
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-orbit span:last-child {
  border-bottom: 0;
}

.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid rgba(6, 43, 87, 0.08);
  background: rgba(255, 255, 255, 0.12);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span {
  padding: 0.62rem 1.75rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 3rem);
  font-style: italic;
  letter-spacing: var(--rockwell-tracking);
  transform: scaleX(var(--rockwell-width));
  transform-origin: left center;
  white-space: nowrap;
  color: var(--blue-800);
}

.section {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.section-kicker {
  --kicker-pipe-gap: 0.62rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  margin-bottom: 1.15rem;
  color: var(--blue-700);
}

.section-kicker::before {
  content: "";
  order: 3;
  flex: 1 1 auto;
  height: 0.68rem;
  margin-left: var(--kicker-pipe-gap);
  margin-right: calc((100vw - var(--page)) / -2);
  background:
    linear-gradient(
      270deg,
      transparent calc(100% - 0.1rem),
      rgba(6, 43, 87, 0.16) calc(100% - 0.1rem),
      rgba(6, 43, 87, 0.16) 100%
    ),
    linear-gradient(
      270deg,
      rgba(6, 43, 87, 0) 0%,
      rgba(6, 43, 87, 0.04) 18%,
      rgba(6, 43, 87, 0.11) 62%,
      rgba(6, 43, 87, 0.11) calc(100% - 0.19rem),
      transparent calc(100% - 0.19rem)
    );
  border-radius: 0 999px 999px 0;
  pointer-events: none;
}

.section-kicker span,
.guide-heading span,
.process-step span {
  font-family: var(--serif);
  display: inline-block;
  font-size: 1.65rem;
  font-style: italic;
  letter-spacing: var(--rockwell-tracking);
  transform: scaleX(var(--rockwell-width));
  transform-origin: left center;
}

.section-kicker span {
  position: relative;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  transform: none;
}

.section-kicker span::before {
  content: "";
  position: absolute;
  right: calc(100% + 0.86rem);
  top: 0.08rem;
  width: clamp(3.6rem, 4.8vw, 5.15rem);
  height: 0.68rem;
  background:
    linear-gradient(
      90deg,
      transparent calc(100% - 0.1rem),
      rgba(6, 43, 87, 0.16) calc(100% - 0.1rem),
      rgba(6, 43, 87, 0.16) 100%
    ),
    linear-gradient(
      90deg,
      rgba(6, 43, 87, 0) 0%,
      rgba(6, 43, 87, 0.04) 22%,
      rgba(6, 43, 87, 0.11) 58%,
      rgba(6, 43, 87, 0.11) calc(100% - 0.19rem),
      transparent calc(100% - 0.19rem)
    );
  border-radius: 999px 0 0 999px;
  pointer-events: none;
}

.section-kicker span::after {
  content: ".";
}

.section-kicker p {
  position: relative;
  margin: 0;
  padding-top: 0;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(13rem, auto));
  gap: 0.85rem;
}

.work-panel {
  position: relative;
  min-height: 13rem;
  padding: clamp(1.25rem, 2.2vw, 1.85rem);
  border: 1px solid rgba(6, 43, 87, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 360ms ease,
    border-color 360ms ease,
    background 360ms ease;
}

.work-panel::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 10rem;
  height: 10rem;
  border: 1.1rem solid rgba(6, 43, 87, 0.08);
  border-radius: 999px;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 360ms ease;
}

.work-panel::before,
.brief-form::before,
.proof-list::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.52), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 38%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.work-panel:hover {
  transform: translateY(-0.28rem);
  border-color: rgba(6, 43, 87, 0.18);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.work-panel:hover::before {
  opacity: 1;
}

.work-panel:hover::after {
  transform: translate(-0.25rem, -0.25rem) scale(1.04);
  opacity: 0.82;
}

.work-panel.wide {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
  min-height: 100%;
}

.work-panel.compact {
  grid-column: 7 / 10;
  grid-row: 1;
  margin-top: 0;
}

.work-panel.compact.dark {
  grid-column: 10 / 13;
  grid-row: 1;
}

.work-panel.dark {
  color: var(--cream);
  background: var(--blue-800);
  box-shadow: none;
}

.work-panel.dark .panel-label,
.work-panel.dark h3 {
  color: var(--cream);
}

.work-panel.tall {
  grid-column: 7 / 13;
  grid-row: 2;
  background: var(--blue-900);
  color: var(--cream);
}

.work-panel.dark::before,
.work-panel.tall::before,
.work-panel.dark:hover::before,
.work-panel.tall:hover::before {
  opacity: 0;
}

.work-panel.dark:hover,
.work-panel.tall:hover {
  transform: translateY(-0.22rem);
  border-color: rgba(6, 43, 87, 0.1);
  box-shadow: 0 18px 46px rgba(3, 31, 61, 0.16);
}

.work-panel.dark:hover::after,
.work-panel.tall:hover::after {
  transform: translate(-0.2rem, -0.2rem) scale(1.035);
  opacity: 0.72;
}

.work-panel.tall .panel-label {
  color: var(--cream);
}

.work-panel.tall ul {
  display: grid;
  gap: 0.8rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.work-panel.tall li {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.asymmetric {
  padding-bottom: clamp(0.8rem, 1.5vw, 1.5rem);
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2.4rem, 5vw, 5.6rem);
  align-items: start;
  padding-top: clamp(0.8rem, 1.5vw, 1.55rem);
  padding-bottom: clamp(0.85rem, 1.55vw, 1.65rem);
}

.method .section-kicker,
.proof .section-kicker,
.contact .section-kicker {
  grid-column: 1 / -1;
  width: 100%;
}

.process-map {
  position: relative;
  display: grid;
  grid-template-rows: repeat(3, minmax(5.35rem, auto));
  gap: clamp(3rem, 4.15vw, 4.6rem);
  padding: 0.25rem 0 0.15rem;
  isolation: isolate;
}

.process-route {
  position: absolute;
  inset: -0.2rem -0.15rem 0.1rem;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  opacity: 0.92;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 92%, transparent 100%);
}

.process-route path {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-route-shadow {
  stroke: rgba(255, 251, 234, 0.74);
  stroke-width: 9;
}

.process-route-main {
  stroke: rgba(6, 43, 87, 0.125);
  stroke-width: 1.1;
}

.process-step {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.68rem 0;
}

.process-step > * {
  position: relative;
  z-index: 1;
}

.process-step h3 {
  margin: 0;
}

.process-step p {
  grid-column: 2;
  margin: -0.6rem 0 0;
  max-width: 36rem;
  color: rgba(3, 31, 61, 0.68);
  line-height: 1.7;
}

.founders .section-kicker {
  margin-bottom: clamp(2rem, 3.2vw, 3.6rem);
}

.founder-grid {
  display: grid;
  grid-template-columns:
    minmax(13rem, 0.72fr)
    minmax(0, 1fr)
    minmax(0, 1fr);
  gap: clamp(1.8rem, 3vw, 2.9rem);
  align-items: stretch;
}

.founders {
  padding-top: clamp(1.8rem, 3vw, 3.2rem);
  padding-bottom: clamp(2.4rem, 3.8vw, 4rem);
}

.founder-card {
  min-height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.agency-intro {
  display: grid;
  align-content: start;
  max-width: 21rem;
  padding-bottom: 0.15rem;
}

.agency-intro h2 {
  max-width: 9ch;
  font-size: clamp(2.05rem, 3.1vw, 3.3rem);
  line-height: 1;
  margin-bottom: 1.35rem;
}

.agency-intro p:last-child {
  max-width: 31ch;
  color: rgba(3, 31, 61, 0.74);
  font-size: 0.9rem;
  line-height: 1.68;
}

.founder-s,
.founder-v {
  display: grid;
  grid-template-columns: minmax(8.75rem, 0.82fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: clamp(1rem, 1.8vw, 1.45rem);
  row-gap: 1rem;
  align-items: start;
}

.founder-heading {
  grid-column: 1 / -1;
  min-height: 5.8rem;
}

.founder-photo {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 1;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  background: var(--mist);
  box-shadow: 0 16px 36px rgba(3, 31, 61, 0.08);
}

.founder-photo::after {
  content: none;
}

.founder-card:hover .founder-photo {
  transform: none;
  box-shadow: 0 16px 36px rgba(3, 31, 61, 0.08);
}

.founder-card:hover .founder-photo::after {
  opacity: 0;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.founder-s .founder-photo img {
  object-position: center;
}

.founder-copy {
  grid-column: 2;
  grid-row: 2 / 4;
  display: flex;
  flex-direction: column;
  justify-content: start;
  min-height: 0;
  padding: 0.05rem 0 0;
}

.founder-v {
  margin-top: 0;
  background: transparent;
  color: var(--blue-900);
}

.founder-v .founder-photo {
  background: var(--white);
}

.founder-v .founder-photo img {
  object-position: center;
}

.founder-v .founder-tag,
.founder-v p {
  color: rgba(3, 31, 61, 0.72);
}

.founder-tag {
  margin-bottom: 0.55rem;
}

.founder-card h2 a {
  color: inherit;
  text-decoration: none;
}

.founder-card h2 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.founder-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  width: fit-content;
  color: var(--blue-800);
  border-radius: 999px;
  padding: 0.28rem 0.48rem 0.26rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(6, 43, 87, 0.11);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
  transition:
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.founder-link:hover {
  color: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(3, 31, 61, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.founder-copy p {
  max-width: 36ch;
}

.founder-copy p {
  margin-bottom: 0.95rem;
  font-size: clamp(0.84rem, 0.88vw, 0.94rem);
  line-height: 1.6;
}

.founder-copy p:last-child {
  margin-bottom: 0;
}

.founder-card h2 {
  max-width: none;
  margin-bottom: 0.66rem;
  font-size: clamp(2.1rem, 2.85vw, 2.9rem);
}

.skill-row {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem 0.95rem;
  margin-top: 0;
  padding-top: 0.05rem;
}

.skill-row span {
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(1.8rem, 3.4vw, 3.5rem);
  align-items: end;
  padding-top: clamp(0.8rem, 1.5vw, 1.55rem);
  padding-bottom: clamp(0.85rem, 1.55vw, 1.65rem);
}

.contact {
  padding-top: clamp(0.8rem, 1.5vw, 1.55rem);
}

.proof h2,
.contact h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 3.55vw, 3.75rem);
  line-height: 1;
}

.proof-list {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(6, 43, 87, 0.09);
  background:
    linear-gradient(90deg, transparent calc(33.333% - 0.5px), rgba(6, 43, 87, 0.09) 0 calc(33.333% + 0.5px), transparent 0),
    linear-gradient(90deg, transparent calc(66.666% - 0.5px), rgba(6, 43, 87, 0.09) 0 calc(66.666% + 0.5px), transparent 0),
    linear-gradient(180deg, transparent calc(50% - 0.5px), rgba(6, 43, 87, 0.09) 0 calc(50% + 0.5px), transparent 0),
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(12px);
}

.proof-list::before {
  opacity: 0.72;
}

.proof-list div {
  position: relative;
  z-index: 1;
  min-height: clamp(7.2rem, 10vw, 9.2rem);
  display: grid;
  align-content: start;
  padding: clamp(1rem, 1.55vw, 1.35rem);
}

.proof-list div:last-child {
  border-right: 0;
}

.proof-list span {
  font-family: var(--serif);
  display: block;
  margin-bottom: 0.7rem;
  font-size: clamp(1.85rem, 2.45vw, 2.45rem);
  letter-spacing: var(--rockwell-tracking);
  line-height: 0.8;
  transform: scaleX(var(--rockwell-width));
  transform-origin: left center;
}

.proof-list p {
  max-width: 22ch;
  margin: 0;
  color: rgba(3, 31, 61, 0.68);
  font-size: 0.8rem;
  line-height: 1.45;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(28rem, 1.02fr);
  gap: clamp(1.8rem, 3.4vw, 3.6rem);
  align-items: start;
}

.brief-form {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: clamp(1rem, 1.7vw, 1.35rem);
  border: 1px solid rgba(6, 43, 87, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.2)),
    rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(14px);
}

.brief-form::before {
  opacity: 0.55;
}

.form-field {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(6, 43, 87, 0.13);
  border-radius: 2px;
  padding: 0.82rem 0.9rem;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.68);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

input:focus,
textarea:focus {
  border-color: var(--blue-800);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(6, 43, 87, 0.06);
  transform: translateY(-1px);
}

small {
  color: rgba(3, 31, 61, 0.55);
  font-size: 0.74rem;
  line-height: 1.4;
}

.form-error {
  color: #8a2f2a;
  min-height: 1rem;
}

.brief-form .button {
  position: relative;
  z-index: 1;
  justify-self: start;
  cursor: pointer;
}

.site-footer {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 1.35rem 0 2.2rem;
  border-top: 1px solid rgba(6, 43, 87, 0.1);
}

.site-footer p {
  max-width: 35rem;
  margin: 0;
  color: rgba(3, 31, 61, 0.64);
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-copy {
  justify-self: center;
  text-align: center;
}

.site-footer a {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 0.18rem;
  transform: translateY(0.18rem);
}

.footer-links span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(3, 31, 61, 0.52);
}

.footer-links span a {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.footer-links b {
  font-weight: 400;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.guideline-page {
  background: var(--cream);
}

.guideline-hero {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  min-height: calc(70dvh - 4.6rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 0.84fr);
  gap: clamp(2rem, 4.5vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 4.4rem) 0 var(--section-y-tight);
  overflow: hidden;
}

.guideline-hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: 15%;
  width: 54vw;
  height: 18rem;
  border: 1px solid rgba(6, 43, 87, 0.075);
  border-left: 0;
  border-radius: 0 9rem 9rem 0;
  pointer-events: none;
}

.guideline-hero-copy > p:last-child {
  max-width: 35rem;
  color: rgba(3, 31, 61, 0.68);
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.65;
}

.guideline-hero h1 {
  max-width: 16ch;
}

.guideline-identity-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 0.85rem;
}

.identity-logo,
.identity-note {
  border: 1px solid rgba(6, 43, 87, 0.11);
  background: rgba(255, 255, 255, 0.42);
}

.identity-logo {
  display: grid;
  place-items: center;
  min-height: 13rem;
  padding: 1.2rem;
}

.identity-logo.dark {
  grid-column: 1 / -1;
  background: var(--blue-800);
}

.identity-logo.dark img {
  width: min(74%, 23rem);
}

.identity-logo.light img {
  width: min(82%, 16rem);
}

.identity-note {
  display: grid;
  align-content: end;
  padding: 1.15rem;
}

.identity-note span,
.application-grid span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.identity-note p {
  margin: 0.9rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: var(--rockwell-tracking);
  transform: scaleX(var(--rockwell-width));
  transform-origin: left center;
}

.guide-section {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(12rem, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(1.8rem, 4vw, 4.8rem);
  padding: clamp(2.15rem, 3.3vw, 3.7rem) 0;
  border-top: 1px solid rgba(6, 43, 87, 0.11);
}

.guide-heading h2 {
  font-size: clamp(2.25rem, 4vw, 4.35rem);
}

.guide-copy ul {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.guide-copy li {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.logo-system {
  display: grid;
  gap: 1rem;
}

.logo-usage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.85rem;
}

.logo-large {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 13rem;
  padding: 1.4rem;
  border: 1px solid rgba(6, 43, 87, 0.11);
  background: rgba(255, 255, 255, 0.44);
}

.logo-large.dark {
  background: var(--blue-800);
}

.logo-large img {
  width: min(82%, 42rem);
  height: auto;
}

.footer-logo {
  width: clamp(7rem, 10vw, 9.4rem);
  height: auto;
}

.logo-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.logo-notes p {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(6, 43, 87, 0.1);
  background: rgba(255, 255, 255, 0.34);
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.swatch {
  min-height: 10.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid var(--line);
  font-weight: 800;
}

.swatch code {
  font-family: var(--sans);
  font-size: 0.78rem;
  opacity: 0.78;
}

.swatch.navy {
  color: var(--cream);
  background: var(--blue-800);
}

.swatch.ink {
  color: var(--cream);
  background: var(--blue-900);
}

.swatch.cream {
  background: var(--cream);
}

.swatch.mist {
  background: var(--mist);
}

.swatch.steel {
  color: var(--white);
  background: var(--steel);
}

.type-specimens,
.voice-grid,
.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.type-specimens > div,
.voice-grid > div,
.application-grid article {
  padding: clamp(1.25rem, 2.4vw, 1.85rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
}

.display-sample {
  font-family: var(--serif);
  display: inline-block;
  font-size: clamp(2.45rem, 5.3vw, 5.6rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: var(--rockwell-tracking);
  transform: scaleX(var(--rockwell-width));
  transform-origin: left center;
}

.body-sample {
  font-family: var(--sans);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
}

.graphic-language {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.pipe-specimen {
  position: relative;
  min-height: 18rem;
  border: 1px solid rgba(6, 43, 87, 0.1);
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.pipe-specimen::before,
.pipe-specimen::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(6, 43, 87, 0.12);
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.pipe-specimen::before {
  left: -12%;
  top: 28%;
  width: 75%;
  height: 34%;
}

.pipe-specimen::after {
  right: -18%;
  bottom: 18%;
  width: 82%;
  height: 44%;
  transform: scaleX(-1);
}

.pipe-specimen span {
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid rgba(6, 43, 87, 0.16);
  background: var(--cream);
}

.pipe-specimen span:nth-child(1) {
  left: 26%;
  top: 28%;
}

.pipe-specimen span:nth-child(2) {
  left: 58%;
  bottom: 18%;
}

.pipe-specimen span:nth-child(3) {
  right: 18%;
  top: 48%;
}

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

.application-grid p {
  margin: 1rem 0 0;
  color: rgba(3, 31, 61, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

@keyframes ticker {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -0.42rem, 0);
  }
}

@keyframes float-glass {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.2deg);
  }

  50% {
    transform: translate3d(0.18rem, -0.36rem, 0) rotate(0.45deg);
  }
}

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 1rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    overflow-x: auto;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero,
  .method,
  .founder-grid,
  .proof,
  .contact,
  .guideline-hero,
  .guide-section {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    gap: 2.4rem;
    align-items: start;
  }

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

  .hero-mark {
    justify-self: start;
    width: min(100%, 28rem);
  }

  .logo-orbit {
    left: auto;
    right: -1rem;
  }

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

  .work-panel.wide,
  .work-panel.tall,
  .work-panel.compact,
  .work-panel.compact.dark {
    grid-column: auto;
    grid-row: auto;
  }

  .work-panel.compact,
  .founder-v {
    margin-top: 0;
  }

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

  .proof-list div {
    border-right: 0;
    border-bottom: 1px solid rgba(6, 43, 87, 0.1);
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .agency-intro {
    max-width: 34rem;
  }

  .founder-s,
  .founder-v {
    grid-template-columns: minmax(13rem, 18rem) minmax(0, 1fr);
    align-items: start;
  }

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

  .guideline-identity-board,
  .graphic-language,
  .application-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .guideline-hero,
  .guide-section,
  .site-footer {
    width: min(100% - 2rem, 1360px);
  }

  .site-header {
    padding-top: 1rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  h2 {
    max-width: 12.5ch;
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  h3 {
    font-size: clamp(1.2rem, 7vw, 1.7rem);
  }

  .hero {
    min-height: auto;
    padding-top: 1.55rem;
    padding-bottom: 2.35rem;
  }

  .section,
  .guide-section {
    padding-top: 2.65rem;
    padding-bottom: 2.65rem;
  }

  .logo-orbit {
    position: static;
    width: 100%;
    margin-bottom: 0.75rem;
    color: var(--blue-900);
    background: rgba(255, 255, 255, 0.56);
  }

  .logo-orbit span {
    border-color: var(--line);
  }

  .hero-mark img {
    border-radius: 2px 3rem 2px 3rem;
  }

  .founder-s {
    grid-template-columns: 1fr;
  }

  .founder-s,
  .founder-v {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .founder-photo,
  .founder-s .founder-photo,
  .founder-v .founder-photo {
    width: min(100%, 22rem);
  }

  .founder-copy {
    min-height: auto;
  }

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

  .brief-form,
  .logo-notes,
  .logo-usage-grid,
  .type-specimens,
  .voice-grid,
  .application-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-items: start;
  }

  .form-field.full {
    grid-column: auto;
  }

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