:root {
  --bg: #090909;
  --surface: #111;
  --bone: #f2f0e9;
  --muted: #8f8e89;
  --line: #252525;
  --blue: #315cff;
  --pad: clamp(24px, 5vw, 76px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--bone);
  font-family: Arial, Helvetica, sans-serif;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

/* Navigation ------------------------------------------------------------ */
.nav {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: linear-gradient(to bottom, rgba(9, 9, 9, 0.92), transparent);
}
.brand {
  font-size: 19px;
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.045em;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
}
.navlinks a { opacity: 0.72; transition: opacity 180ms ease, color 180ms ease; }
.navlinks a:hover,
.navlinks a:focus-visible { opacity: 1; }
.nav-cta {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  opacity: 1;
}

.menu-toggle {
  position: absolute;
  right: var(--pad);
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--bone);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  width: 15px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 25;
  inset: 0;
  display: none;
  pointer-events: none;
}
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 220ms ease;
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(82vw, 360px);
  height: 100%;
  padding: 92px 24px 28px;
  background: #101010;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 240ms ease;
}
.mobile-menu.open { pointer-events: auto; }
.mobile-menu.open .mobile-menu-backdrop { opacity: 1; }
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 4px; min-height: 100%; }
.mobile-menu-inner > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.mobile-menu-inner > a::after { content: "↗︎"; opacity: 0.5; }
.mobile-menu-inner .nav-cta {
  margin-top: auto;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.mobile-menu-inner .nav-cta::after { content: none; }

/* Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.text-hero {
  background:
    radial-gradient(circle at 74% 34%, rgba(49, 92, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #121212, #070707);
}
.text-hero .ghost {
  position: absolute;
  top: 16%;
  right: -0.04em;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(130px, 27vw, 430px);
  font-weight: 800;
  line-height: 0.7;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.back {
  position: absolute;
  z-index: 5;
  top: 96px;
  left: var(--pad);
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--bone);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease;
}
.back:hover,
.back:focus-visible {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.3);
}
.hero-content {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 38px;
  left: var(--pad);
}
.hero-kicker,
.eyebrow {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-kicker { margin-bottom: 18px; color: #d3d2cd; }
.hero h1 {
  margin: 0;
  font-size: clamp(92px, 14.8vw, 224px);
  font-weight: 800;
  line-height: 0.76;
  letter-spacing: -0.082em;
  text-transform: uppercase;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  color: #cac9c4;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-meta span + span::before { content: "·"; margin-right: 14px; color: #666; }

/* Career ---------------------------------------------------------------- */
.section { padding: clamp(90px, 10vw, 150px) var(--pad) clamp(70px, 8vw, 110px); }
.career-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 8vw, 130px);
}
.section-title {
  margin: 15px 0 0;
  font-size: clamp(55px, 7.5vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.career-copy p {
  margin: 0;
  color: #b8b7b1;
  font-size: 17px;
  line-height: 1.78;
  text-align: justify;
  text-justify: inter-word;
}
.career-copy p + p { margin-top: 22px; }
.career-copy strong { color: var(--bone); }
.represented-since {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.business-email {
  display: inline-block;
  margin-top: 30px;
  font-size: clamp(18px, 2vw, 27px);
  letter-spacing: -0.02em;
}
.business-email:hover,
.business-email:focus-visible { color: var(--blue); }

.nono-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.nono-socials a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--bone);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}
.nono-socials a:hover,
.nono-socials a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.nono-socials svg { width: 17px; height: 17px; fill: currentColor; }
.nono-socials img { width: 18px; height: 18px; object-fit: contain; }

/* Performances ---------------------------------------------------------- */
.performance-block { padding: 0 var(--pad) clamp(90px, 9vw, 120px); }
.performance-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.performance-stat {
  display: flex;
  min-height: 164px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 22px 23px 0;
  transition: background 180ms ease, color 180ms ease;
}
.performance-stat + .performance-stat {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.performance-link:hover,
.performance-link:focus-visible { background: rgba(255, 255, 255, 0.025); }
.performance-stat strong {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.performance-stat span {
  margin-top: 20px;
  color: #d1d0ca;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}
.performance-stat small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.performance-link:hover small,
.performance-link:focus-visible small { color: var(--blue); }

/* Story ----------------------------------------------------------------- */
.story { padding: 12px; background: #efede5; color: #111; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; }
.story-grid.reverse .story-photo { order: 2; }
.story-grid.reverse .story-copy { order: 1; }
.story-photo { position: relative; overflow: hidden; }
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 6.2vw, 96px);
}
.story-copy .eyebrow { color: #6d6b67; }
.story-title {
  margin: 12px 0 34px;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.064em;
  text-transform: uppercase;
}
.story-subtitle {
  margin: 32px 0 15px;
  font-size: clamp(20px, 2.1vw, 31px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.story-copy p {
  margin: 0;
  color: #3b3a36;
  font-size: 16px;
  line-height: 1.72;
  text-align: justify;
  text-justify: inter-word;
}
.story-copy p + p { margin-top: 18px; }
.story-copy strong { color: #111; }

/* Footer ---------------------------------------------------------------- */
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px var(--pad);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-tailors-link {
  text-decoration: underline;
  text-decoration-color: rgba(153, 154, 150, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.footer-tailors-link:hover,
.footer-tailors-link:focus-visible { color: var(--bone); text-decoration-color: currentColor; }

/* Accessibility -------------------------------------------------------- */
a:focus-visible,
button:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

@media (max-width: 960px) {
  .navlinks { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: block; }
  .career-grid,
  .story-grid { grid-template-columns: 1fr; }
  .story-grid.reverse .story-photo,
  .story-grid.reverse .story-copy { order: initial; }
  .story-photo { min-height: 560px; }
}

@media (max-width: 700px) {
  .performance-stats { grid-template-columns: 1fr; }
  .performance-stat,
  .performance-stat + .performance-stat {
    min-height: 132px;
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .performance-stat:first-child { border-top: 0; }
}

@media (max-width: 650px) {
  .hero { min-height: 620px; }
  .hero h1 { font-size: 22vw; }
  .hero-meta { gap: 10px; font-size: 9px; }
  .hero-meta span + span::before { margin-right: 10px; }
  .section { padding: 78px var(--pad) 76px; }
  .career-copy p,
  .story-copy p { text-align: left; }
  .performance-block { padding-bottom: 82px; }
  .story { padding: 8px; }
  .story-photo { min-height: 460px; }
  .story-copy { padding: 56px 28px 62px; }
  .story-title { font-size: clamp(48px, 14vw, 70px); }
  .footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .menu-toggle span,
  .mobile-menu-backdrop,
  .mobile-menu-panel,
  .nono-socials a,
  .performance-stat { transition: none; }
  .nono-socials a:hover,
  .nono-socials a:focus-visible { transform: none; }
}

.story-copy .story-beat {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 24px 0 2px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: left;
}
.story-copy .story-beat + p { margin-top: 18px; }
.story-beat span { color: var(--blue); flex: 0 0 auto; }
