@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

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

:root {
  --black: #f2f2f2;
  --white: #111111;
  --muted: rgba(17, 17, 17, 0.58);
  --line: rgba(17, 17, 17, 0.12);
  --line-dark: rgba(17, 17, 17, 0.08);
  --font: "Raleway", "Helvetica Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 60px;
  background: transparent;
  transition: background 0.35s ease;
}

nav.nav-scrolled {
  background: #2a2a2a;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.nav-logo img {
  display: block;
  width: 118px;
  height: auto;
  max-width: none;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-size: 11.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #ffffff;
}

nav.nav-on-dark .nav-links a {
  color: rgba(255, 255, 255, 0.76);
}

nav.nav-on-dark .nav-links a:hover,
nav.nav-on-dark .nav-links a[aria-current="page"] {
  color: #ffffff;
}

nav.nav-on-light .nav-links a {
  color: rgba(255, 255, 255, 0.76);
}

nav.nav-on-light .nav-links a:hover,
nav.nav-on-light .nav-links a[aria-current="page"] {
  color: #ffffff;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links .nav-socials a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease;
  line-height: 0;
  opacity: 0.75;
  padding: 0 !important;
  width: 36px;
  height: 36px;
}

.nav-links .nav-socials a:hover {
  opacity: 1 !important;
}

/* Infinite Client Logo Ticker */
.logo-ticker-container {
  overflow: hidden;
  background: #ffffff;
  padding: 40px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  z-index: 10;
}

.logo-ticker-inner {
  display: flex;
  width: max-content;
  animation: logo-ticker-scroll 45s linear infinite;
}

.logo-ticker-inner:hover {
  animation-play-state: paused;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

.ticker-track img {
  height: 50px;
  /* Make it big */
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
  display: block;
  flex-shrink: 0;
}

.ticker-track img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

@keyframes logo-ticker-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

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

@media (max-width: 900px) {
  .nav-socials {
    padding: 20px 0 10px;
  }
}

.nav-toggle {
  display: none;
  appearance: none;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  width: 46px;
  height: 46px;
  padding: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 120px 24px 96px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 30s linear infinite;
  opacity: 0.45;
  z-index: -3;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.12) 0%, rgba(0,0,0,0.18) 40%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg, rgba(6,6,6,0.72) 0%, rgba(8,8,8,0.84) 52%, rgba(14,14,14,0.96) 100%); */
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  background: #050505;
  pointer-events: none;
  overflow: hidden;
}

.hero-media-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #090909;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, 177.78svh);
  height: max(100%, 56.25vw);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%) scale(1.08);
  filter: saturate(0.72) contrast(1.06) brightness(0.65);
  opacity: 0.60;
}

@keyframes gridDrift {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(80px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  color: #f4f4f4;
}

.hero-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 30px;
}

.hero-title {
  font-size: clamp(48px, 9vw, 68px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  color: #f6f6f6;
}

.hero .text-accent {
  color: rgba(255, 255, 255, 0.7);
}

.hero .text-accent-muted {
  color: rgba(255, 255, 255, 0.54);
}

.hero .text-accent-dark {
  color: rgba(255, 255, 255, 0.42);
}

.hero-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.24);
  margin: 0 auto 28px;
}

.hero-sub {
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  max-width: 420px;
  margin: 0 auto;
  line-height: 2;
}

.hero-ctas {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero .hero-cta {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f4f4f4;
  backdrop-filter: blur(8px);
}

.hero .hero-cta:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero .hero-cta.primary {
  background: #f4f4f4;
  color: #111111;
  border-color: #f4f4f4;
}

.hero .hero-cta.primary:hover {
  background: #ffffff;
  color: #111111;
}

.hero-cta,
.contact-action {
  min-width: 180px;
  padding: 16px 28px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.74);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11.5px;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hero-cta:hover,
.contact-action:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 17, 17, 0.28);
}

.hero-cta.primary,
.contact-action.primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero-cta.primary:hover,
.contact-action.primary:hover {
  background: #1d1d1d;
  color: #f2f2f2;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.28);
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(6px);
  }
}

section {
  padding: 120px 60px;
}

.section-label {
  font-size: 10.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.35);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 64px;
  height: 1px;
  background: rgba(17, 17, 17, 0.18);
}

.section-headline,
.about-headline,
.clients-headline,
.presence-headline,
.contact-headline,
.founder-name {
  font-size: 32px;
  line-height: 0.96;
  letter-spacing: 0.04em;
  font-weight: 300;
}

.body-copy,
.about-body,
.founder-bio,
.contact-body,
.section-copy {
  font-size: 14.5px;
  line-height: 2;
  color: rgba(17, 17, 17, 0.58);
}

.about {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}

.about-headline {
  margin-bottom: 34px;
}

.about-right {
  padding-top: 80px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

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

.stat-number {
  color: #00649e;
  font-size: 49.5px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 10.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.918);
  max-width: 150px;
  text-align: right;
  line-height: 1.7;
  margin-top: 6px;
}

#services {
  background: #ffffff;
  color: #000000;
}

#services .section-label {
  color: rgba(0, 0, 0, 0.35);
}

#services .section-label::after {
  background: rgba(0, 0, 0, 0.14);
}

#services .section-headline,
#services .service-name,
#services .service-desc {
  color: #000000;
}

#services .service-desc {
  color: rgba(0, 0, 0, 0.55);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-item {
  padding: 0;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.25s ease, color 0.25s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(18%) brightness(0.92);
}

.service-item:hover .service-img img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

.service-item-body {
  padding: 32px 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-item:nth-child(3n) {
  border-right: none;
}

.service-item:nth-child(n+7) {
  border-bottom: none;
}

.service-item:hover {
  background: #f4f4f4;
  color: #000000;
}

.service-item:hover .service-num,
.service-item:hover .service-desc {
  color: rgba(0, 0, 0, 0.58);
}

.service-item:hover .service-num {
  color: rgba(0, 0, 0, 0.48);
}

.service-num {
  font-size: 14.5px;
  color: rgba(0, 0, 0, 0.25);
  margin-bottom: 18px;
}

.service-name {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.service-desc {
  font-size: 12.5px;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.55);
}

#sectors {
  max-width: 1200px;
  margin: 0 auto;
}

.sectors-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.sector-tag {
  padding: 18px 32px;
  border: 1px solid var(--line);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.56);
  margin-right: -1px;
  margin-bottom: -1px;
  transition: all 0.25s ease;
}

.sector-tag:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  position: relative;
  z-index: 1;
}

#clients {
  background: #e8e8e8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clients-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  padding: 16px 18px;
}

.client-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.client-logo.wide img {
  max-height: 90px;
}

.clients-circles {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.88) 0%, rgba(248, 248, 246, 0.92) 38%, #f1f1ee 100%);
}

.clients-circles .clients-grid {
  max-width: 1360px;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 28px 18px;
  justify-items: center;
  align-items: start;
}

.clients-circles .client-logo {
  width: min(148px, 100%);
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 22px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: radial-gradient(circle at 50% 38%, #ffffff 0%, #fcfcfb 100%);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(17, 17, 17, 0.04);
}

.clients-circles .client-logo img {
  max-width: 74%;
  max-height: 100px;
}

.clients-circles .client-logo.is-tight img {
  max-width: 100%;
  max-height: 50px;
}

.clients-circles .client-logo.is-square img {
  max-width: 58%;
  max-height: 58px;
}

.clients-circles .client-logo.is-tall img {
  max-width: 64%;
  max-height: 70px;
}

.clients-circles .client-logo.force-dark img {
  filter: brightness(0) saturate(100%);
}

#founder {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 96px;
  align-items: start;
}

.founder-img-wrap {
  position: relative;
}

.founder-img-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f2f2f2;
  border: 1px solid var(--line);
  overflow: hidden;
}

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

.founder-img-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.14);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #111111;
  white-space: nowrap;
}

.founder-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  pointer-events: none;
}

.founder-label {
  font-size: 10.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.38);
  margin-bottom: 8px;
}

.founder-title {
  font-size: 17.5px;
  color: rgba(17, 17, 17, 0.62);
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.founder-bio+.founder-bio {
  margin-top: 24px;
}

.founder-edu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.edu-item {
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.42);
  display: flex;
  gap: 20px;
  align-items: center;
}

.edu-item::before {
  content: '';
  width: 20px;
  height: 1px;
  background: rgba(17, 17, 17, 0.2);
  flex-shrink: 0;
}

#presence {
  background: var(--white);
  color: var(--black);
  text-align: center;
}

#presence .presence-headline,
#presence .city {
  color: var(--black);
}

.presence-headline {
  max-width: 900px;
  margin: 0 auto 72px;
}

.presence-cities {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.city {
  flex: 1;
  padding: 40px 24px;
  border-right: 1px solid var(--line-dark);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.4);
}

.city:last-child {
  border-right: none;
}

.city strong {
  display: block;
  font-size: 23.5px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 4px;
  color: var(--black);
}

#contact {
  position: relative;
  overflow: hidden;
  padding: 160px 60px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.86) 0%, transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.7) 0%, transparent 24%),
    linear-gradient(180deg, #f7f7f7 0%, #ececec 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.02) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.35;
  pointer-events: none;
}

.contact-shell {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: stretch;
}

.contact-copy {
  padding: 22px 0;
}

.contact-pre {
  font-size: 10.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.38);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-pre::after {
  content: '';
  width: 60px;
  height: 1px;
  background: rgba(17, 17, 17, 0.18);
}

.contact-headline {
  max-width: 660px;
  margin-bottom: 24px;
  text-align: left;
}

.contact-body {
  max-width: 540px;
  margin-bottom: 36px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-note {
  margin-top: 24px;
  font-size: 11.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.34);
}

.contact-panel {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04) 0%, transparent 30%);
  pointer-events: none;
}

.contact-panel-label {
  position: relative;
  z-index: 1;
  font-size: 10.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.38);
  margin-bottom: 24px;
}

.contact-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.contact-card:last-of-type {
  border-bottom: none;
}

.contact-card-label {
  font-size: 10.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.38);
  margin-bottom: 10px;
}

.contact-card-value {
  display: block;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.1;
  color: #111111;
  white-space: nowrap;
}

a[href^="mailto:"]:not(.contact-card-value) {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

.contact-card-note {
  font-size: 13.5px;
  line-height: 1.9;
  color: rgba(17, 17, 17, 0.56);
  text-align: left;
}

.social-links {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding-top: 22px;
}

.social-links-label {
  font-size: 10.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.38);
  margin-bottom: 14px;
}

.social-links-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(17, 17, 17, 0.72);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

/* Public Relations page */
.service-item {
  display: block;
  color: inherit;
  text-decoration: none;
}

.pr-page .section-label {
  margin-bottom: 18px;
}

.pr-split,
.pr-full {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  background: #ffffff;
  color: #000000;
}

.pr-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pr-split .pr-visual {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.pr-split.reverse .pr-visual {
  order: 2;
  border-right: none;
  border-left: 1px solid var(--line);
}

.pr-split.reverse .pr-copy {
  order: 1;
}

.pr-copy {
  padding: 68px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pr-heading {
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 0.94;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  max-width: 720px;
}

.pr-paragraph {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(0, 0, 0, 0.62);
}

.pr-paragraph+.pr-paragraph {
  margin-top: 18px;
}

.pr-mini-label {
  font-size: 10.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
  margin-bottom: 18px;
}

.pr-list-block {
  margin-top: 26px;
}

.pr-bullet-list {
  list-style: none;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.pr-bullet-list li {
  position: relative;
  padding: 14px 0 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.62);
}

.pr-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 14px;
  color: #000000;
}

.pr-divider {
  height: 26px;
  background: #111111;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.pr-divider span {
  width: 54px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #efefef;
  border: 1px solid rgba(0, 0, 0, 0.16);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #000000;
}

.pr-full {
  padding: 68px 60px 84px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pr-full-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pr-heading-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.pr-mark {
  width: 54px;
  height: 34px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #f2f2f2;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #000000;
}

.pr-notes {
  display: grid;
  border-top: 1px solid var(--line);
}

.pr-notes article {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.pr-notes strong {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.pr-notes p {
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.62);
}

.pr-visual--tower {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.16) 36%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(135deg, #1c1f23 0%, #090909 46%, #22252b 100%);
}

.pr-visual--tower::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
}

.pr-visual--tower::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

.pr-skyline {
  position: absolute;
  inset: 16% 12% 18%;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  z-index: 1;
}

.pr-skyline span {
  flex: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.05));
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.pr-visual-copy {
  position: absolute;
  left: 32px;
  bottom: 28px;
  z-index: 2;
  max-width: 280px;
}

.pr-visual-copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.pr-visual-copy span {
  display: block;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.66);
}

.pr-visual--proof {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(180deg, #efefee 0%, #e6e6e4 100%);
}

.pr-proof-card {
  width: min(100%, 460px);
  padding: 30px 28px 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
  text-align: center;
}

.pr-proof-card img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 18px;
}

.pr-proof-card p {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.48);
}

.pr-visual--strategy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(180deg, #f6f6f5 0%, #ececeb 100%);
}

.pr-strategy-card {
  width: min(100%, 460px);
  padding: 34px;
  background: #111111;
  color: #f2f2f2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.12);
}

.pr-strategy-card h3 {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 0.95;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 14px 0 18px;
  font-weight: 600;
}

.pr-strategy-card p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
}

.pr-strategy-stats {
  list-style: none;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.pr-strategy-stats li {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

footer {
  border-top: 1px solid var(--line);
  padding: 32px 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-copy {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: rgba(17, 17, 17, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

@media (max-width: 900px) {
  nav {
    padding: 18px 18px;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(17, 17, 17, 0.12);
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 101;
  }

  nav.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav.nav-open {
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.16);
  }

  .nav-links li+li {
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 12.5px;
    letter-spacing: 0.3em;
  }

  nav.nav-open .nav-links a {
    color: rgba(17, 17, 17, 0.74);
  }

  nav.nav-open .nav-links a:hover,
  nav.nav-open .nav-links a[aria-current="page"] {
    color: #111111;
  }

  .nav-logo img {
    width: 96px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .client-logo {
    min-height: 92px;
    padding: 14px 12px;
  }

  .client-logo img {
    max-height: 48px;
  }

  .clients-circles .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 12px;
  }

  .clients-circles .client-logo {
    width: min(132px, 100%);
    padding: 18px;
  }

  .clients-circles .client-logo img {
    max-height: 90px;
  }

  section {
    padding: 80px 24px;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 24px 76px;
  }

  .hero-title {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-ctas {
    width: min(100%, 290px);
    margin: 34px auto 0;
    flex-direction: column;
  }

  .hero-cta,
  .contact-action {
    width: 100%;
    min-width: 0;
  }

  .pr-split {
    grid-template-columns: 1fr;
  }

  .pr-split .pr-visual,
  .pr-split.reverse .pr-visual {
    order: 0;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: 360px;
  }

  .pr-split.reverse .pr-copy {
    order: 1;
  }

  .pr-copy {
    padding: 40px 24px 44px;
  }

  .pr-full {
    padding: 44px 24px 56px;
  }

  .pr-notes article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pr-divider {
    padding: 0 18px;
  }

  .pr-visual-copy {
    left: 24px;
    right: 24px;
    bottom: 22px;
    max-width: none;
  }

  .pr-visual--proof,
  .pr-visual--strategy {
    padding: 24px;
  }

  .pr-heading {
    font-size: clamp(30px, 11vw, 44px);
  }

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

  .about-right {
    padding-top: 0;
  }

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

  .service-item {
    border-right: none;
    border-bottom: 1px solid var(--line-dark) !important;
  }

  .service-item:last-child {
    border-bottom: none !important;
  }

  #founder {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .founder-img-wrap {
    max-width: 280px;
  }

  .presence-cities {
    flex-direction: column;
  }

  .city {
    border-right: none;
    border-bottom: 1px solid var(--line-dark);
  }

  .city:last-child {
    border-bottom: none;
  }

  #contact {
    padding: 100px 24px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-copy {
    padding: 0;
  }

  .contact-headline {
    max-width: none;
  }

  .contact-body {
    max-width: none;
  }

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

  .contact-panel {
    padding: 24px;
  }

  .contact-card {
    gap: 10px;
  }

  .contact-card-note {
    text-align: left;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero::before,
  .hero-scroll {
    animation: none;
  }

  .hero-media {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .clients-circles .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 10px;
  }

  .clients-circles .client-logo {
    width: min(122px, 100%);
    padding: 16px;
  }

  .clients-circles .client-logo img {
    max-height: 90px;
  }

  .pr-split .pr-visual,
  .pr-split.reverse .pr-visual {
    min-height: 300px;
  }

  .pr-strategy-card,
  .pr-proof-card {
    padding: 24px;
  }

  .pr-strategy-card h3 {
    font-size: 28px;
  }

  .contact-card-value {
    white-space: normal;
    word-break: break-all;
  }
}

.service-desc,
.design-desc,
.about-body,
.founder-bio,
.contact-body,
.section-copy {
  font-size: 14.5px !important;
}

.body-copy,
.service-desc,
.design-desc,
.about-body,
.founder-bio,
.contact-body,
.section-copy,
.contact-card-note,
.contact-card-value,
.stat-label,
.founder-edu,
.founder-label,
.pr-paragraph,
.pr-bullet-list li,
.pr-notes p,
.city p,
.footer-copy,
.section-label,
.contact-panel-label,
.contact-card-label {
  color: #000000 !important;
}

/* Media Page Carousel & Lightbox */
.coverages-carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.coverages-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE10+ */
}

.coverages-carousel::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.coverage-slide {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: calc((100% - (3 * 16px)) / 4);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  cursor: pointer;
  position: relative;
}

.coverage-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.coverage-slide:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .coverage-slide {
    width: calc((100% - (1 * 16px)) / 2);
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
  z-index: 10010;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10010;
  opacity: 0.6;
  transition: opacity 0.25s ease;
  padding: 20px;
}

.lightbox-nav-btn:hover {
  opacity: 1;
}

.lightbox-nav-btn.prev {
  left: 20px;
}

.lightbox-nav-btn.next {
  right: 20px;
}

/* Industries Page Styles */
.industries-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 0 60px 100px;
}

.industry-item {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: all 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
  border-color: rgba(17, 17, 17, 0.3);
}

.industry-num {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 24px;
}

.industry-name {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.industry-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 30px;
  flex-grow: 1;
}

.industry-cta {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  transition: all 0.25s ease;
}

.industry-item:hover .industry-cta {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: 1fr;
    padding: 0 24px 60px;
    gap: 20px;
  }

  .industry-item {
    padding: 30px;
    min-height: auto;
  }
}

/* Hide social icons from header nav */
.nav-socials {
  display: none !important;
}