@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");
@import url("https://fonts.cdnfonts.com/css/nexa");
:root {
  --ink: #000000;
  --paper: #ffffff;
  --line-soft: rgba(0, 0, 0, 0.1);
  --line-mid: rgba(0, 0, 0, 0.22);
  --muted: rgba(0, 0, 0, 0.55);
  --muted-strong: rgba(0, 0, 0, 0.72);
  --muted-light: rgba(255, 255, 255, 0.55);
  --line-light: rgba(255, 255, 255, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

body.tbps-contact-body {
  padding-top: 0 !important;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1320px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s;
  position: relative;
}

.nav-links a:hover {
  opacity: 0.55;
}

.nav-links a.active {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
}

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

/* ============ HERO ============ */
.hero {
  padding: 100px 0 60px;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-mid);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.85);
  }
}

.hero-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: #000;
  padding-bottom: 0.15em;
}

.hero-title .ital {
  font-style: italic;
  font-weight: 400;
  opacity: 0.75;
}

.hero-title .swap {
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  font-style: italic;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.hero-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
  align-items: end;
}

.hero-sub p {
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted-strong);
  max-width: 520px;
}

.hero-sub p strong {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hero-meta-item {
  border-top: 1px solid var(--ink);
  padding-top: 14px;
}

.hero-meta-key {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.hero-meta-val {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-meta-val .ital {
  font-style: italic;
  font-weight: 400;
  opacity: 0.7;
}

.hero-meta-val a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line-mid);
  transition: border-color 0.2s;
}

.hero-meta-val a:hover {
  border-color: var(--ink);
}

/* ============ CHANNELS GRID (the main feature) ============ */
.channels {
  padding: 80px 0 60px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #000;
}

.section-title .ital {
  font-style: italic;
  font-weight: 400;
}

.section-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

.channels-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.channel {
  position: relative;
  border-radius: 20px;
  padding: 36px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.channel:hover {
  transform: translateY(-6px);
}

.channel.dark {
  background: var(--ink);
  color: var(--paper);
}

.channel.light {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-mid);
}

/* Featured channel - large */
.channel.featured {
  grid-column: span 1;
  grid-row: span 2;
  min-height: 600px;
  padding: 48px;
}

.channel-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 24px;
}

.channel-title {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #000;
}

.dark .channel-title {
  color: var(--paper);
}

.channel-title .ital {
  font-style: italic;
  font-weight: 400;
}

.channel.featured .channel-title {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 18px;
  color: #fff;
}

.channel-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-strong);
  max-width: 320px;
  margin-bottom: 28px;
}

.channel.dark .channel-desc {
  color: #ffffff;
}

.channel.featured .channel-desc {
  font-size: 16px;
  max-width: 380px;
}

.channel-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
}

.channel-action .arr {
  transition: transform 0.25s ease;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.channel:hover .channel-action .arr {
  transform: translateX(6px);
}

/* Visuals inside channels */
.channel-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

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

/* Featured channel visual — big @ symbol */
.at-mark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-40%);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 480px;
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

/* Pulse circle for "Studio" */
.pulse-rings {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
}

.pulse-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  animation: ripple 4s ease-out infinite;
}

.pulse-rings span:nth-child(2) {
  animation-delay: 1s;
}

.pulse-rings span:nth-child(3) {
  animation-delay: 2s;
}

@keyframes ripple {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Slash pattern for press */
.slash-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(0, 0, 0, 0.05) 12px,
    rgba(0, 0, 0, 0.05) 13px
  );
  pointer-events: none;
}

/* Calendar grid for "Book a call" */
.calendar-mini {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  width: 200px;
}

.calendar-mini div {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.calendar-mini div.taken {
  background: rgba(255, 255, 255, 0.25);
}

.calendar-mini div.today {
  background: var(--paper);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* Briefcase / careers visual */
.careers-blocks {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 140px;
}

.careers-blocks .row {
  height: 8px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}

.careers-blocks .row.full {
  background: var(--ink);
}

.careers-blocks .row.short {
  width: 60%;
}

/* ============ MAP / LOCATIONS ============ */
.locations {
  padding: 80px 0;
  border-top: 1px solid var(--line-soft);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.locations-left h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.locations-left h2 .ital {
  font-style: italic;
  font-weight: 400;
}

.locations-left p {
  font-size: 16px;
  color: var(--muted-strong);
  line-height: 1.55;
  margin-top: 24px;
  max-width: 380px;
}

.locations-left .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.locations-list {
  display: flex;
  flex-direction: column;
}

.loc {
  border-top: 1px solid var(--ink);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: padding-left 0.3s ease;
  cursor: default;
}

.loc:hover {
  padding-left: 12px;
}

.loc:last-child {
  border-bottom: 1px solid var(--ink);
}

.loc-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
}

.loc-body h4 {
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.loc-body h4 .ital {
  font-style: italic;
  font-weight: 400;
}

.loc-body .addr {
  font-size: 14px;
  color: var(--muted-strong);
  line-height: 1.5;
}

.loc-body .addr .role {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

.loc-time {
  text-align: right;
  font-family: "JetBrains Mono", monospace;
}

.loc-time .clock {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.loc-time .zone {
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ============ FAQ MINI ============ */
.faq-mini {
  padding: 100px 0;
  border-top: 1px solid var(--line-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.faq-left h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.faq-left h2 .ital {
  font-style: italic;
  font-weight: 400;
}

.faq-left p {
  font-size: 15px;
  color: var(--muted-strong);
  line-height: 1.55;
  margin-top: 24px;
}

.faq-items {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--ink);
  padding: 22px 0;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--ink);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  gap: 24px;
}

.faq-q .ital {
  font-style: italic;
  font-weight: 400;
}

.faq-q .plus {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 26px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin-top 0.4s ease;
  font-size: 14px;
  color: var(--muted-strong);
  line-height: 1.6;
  max-width: 580px;
}

.faq-item.open .faq-a {
  max-height: 220px;
  margin-top: 14px;
}

/* ============ CTA ============ */
.cta {
  background: var(--ink);
  color: var(--paper);
  border-radius: 32px;
  padding: 80px 60px;
  margin: 0 0 100px;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  color: var(--paper);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 100% 100%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 35%, transparent 65%),
    radial-gradient(ellipse 45% 60% at 0% 0%,    rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 35%, transparent 65%);
  pointer-events: none;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}

.cta h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.cta h2 .ital {
  font-style: italic;
  font-weight: 400;
  opacity: 0.78;
}

.cta h2 u {
  text-decoration: none;
  border-bottom: 4px solid var(--paper);
  padding-bottom: 4px;
}

.cta-side p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.cta-btn .arr {
  transition: transform 0.2s;
}

.cta-btn:hover .arr {
  transform: translateX(4px);
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 60px;
}

.footer h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer li a {
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer li a:hover {
  opacity: 0.55;
}

.footer .logo {
  color: var(--ink);
}

.footer .logo-mark {
  background: var(--ink);
  color: var(--paper);
}

.footer-brand {
  font-family: "Fraunces", serif;
  font-size: clamp(60px, 14vw, 220px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.04em;
  padding: 20px 0 30px;
  overflow: hidden;
  white-space: nowrap;
}

.footer-brand .ital {
  font-style: italic;
  font-weight: 400;
}

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 90px 0 40px;
  }

  .hero-sub {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
  }

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

  .channel.featured {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 380px;
    padding: 32px;
  }

  .at-mark {
    font-size: 320px;
    right: -60px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .loc {
    grid-template-columns: 40px 1fr auto;
    gap: 16px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta {
    padding: 50px 28px;
  }

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

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

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

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

/* ============ PROJECT OVERLAY ============ */
.project-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.project-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.project-overlay iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 96px 0 32px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .at-mark {
    font-size: 200px;
    right: -30px;
  }

  .loc {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .loc-time {
    display: none;
  }

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

  .cta {
    padding: 40px 20px;
  }
}
