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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

hr {
  border: none;
  border-top: 1px solid #c9c9c9;
  margin: 0 24px;
}

a {
  color: inherit;
}

/* ============ INTRO / LOGO PAGE ============ */
.intro {
  position: relative;
  height: 100vh;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.intro-mark {
  position: absolute;
  top: 28px;
  left: 24px;
}

.intro-mark img {
  height: 18px;
  width: auto;
}

.intro-nav {
  position: absolute;
  top: 26px;
  right: 24px;
  display: flex;
  gap: 40px;
}

.intro-nav a {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  color: #8a8a8a;
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transform-origin: left center;
  transition: color 0.25s ease, transform 0.25s ease;
}

.intro-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.35s ease;
}

.intro-nav a:hover {
  color: #fff;
  transform: scale(1.18);
}

.intro-nav a:hover::after {
  width: 100%;
}

.intro-years {
  position: absolute;
  top: 150px;
  left: 24px;
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  animation: flicker 6s infinite;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 22%, 24%, 55% {
    opacity: 0.35;
  }
}

.intro-logo-big {
  position: absolute;
  right: 3vw;
  bottom: 5vh;
  width: clamp(200px, 80vw, 1300px);
  max-width: 90vw;
  height: auto;
  will-change: transform, opacity;
}

.intro-role {
  position: absolute;
  left: 24px;
  bottom: 34px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: #b5b5b5;
}

@media (max-width: 640px) {
  .intro-nav {
    gap: 16px;
    max-width: calc(100vw - 48px);
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .intro-nav a {
    font-size: 0.85rem;
    padding-bottom: 4px;
  }

  .intro-years {
    top: 110px;
    font-size: clamp(1.8rem, 9vw, 3.2rem);
  }

  .intro-logo-big {
    right: 3vw;
    bottom: 4vh;
    width: 82vw;
  }
}

/* ============ COVER ============ */
.cover {
  padding-top: 28px;
}

.row-label {
  padding: 20px 24px 4px;
  font-size: 0.7rem;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bio {
  padding: 8px 24px 10px;
}

.bio p {
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.9vw, 2.3rem);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.bio p.in-view {
  opacity: 1;
  transform: translateY(0);
}

.bio p.italic {
  font-style: italic;
}

.bio strong {
  font-weight: 400;
}

.contacts {
  padding: 14px 24px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.pill {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  text-decoration: none;
  color: #000;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.pill:hover {
  background: #000;
  color: #fff;
}

.pill.light {
  border-color: #fff;
  color: #fff;
}

.pill.light:hover {
  background: #fff;
  color: #000;
}

.contact-text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.contact-text a {
  text-decoration: underline;
}

.contact-text span {
  color: #8a8a8a;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* tables shared */
.info-table,
.toc {
  width: 100%;
  border-collapse: collapse;
  padding: 0 24px;
}

.info-table thead th,
.toc thead th {
  text-align: left;
  padding: 14px 24px;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
}

.info-table tbody td,
.toc tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid #c9c9c9;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
}

.info-table tbody td:first-child,
.toc tbody td:nth-child(2) {
  font-weight: 600;
}

.clients-table tbody td:nth-child(3) {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: #6b6b6b;
  font-weight: 400;
}

.clients-table tbody td:nth-child(4) {
  white-space: nowrap;
}

.toc tbody td:first-child {
  width: 60px;
  color: #8a8a8a;
}

.toc td.tag {
  text-align: right;
  color: #8a8a8a;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* ============ SERVICES ACCORDION ============ */
.toc-list {
  padding: 0 24px;
}

.toc-head-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
}

.toc-head-row .toc-no {
  width: 60px;
  flex: none;
}

.toc-head-row .toc-name {
  flex: 1;
}

.toc-row {
  border-bottom: 1px solid #c9c9c9;
}

.toc-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  width: calc(100% + 24px);
  margin: 0 -12px;
  padding: 30px 12px;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  text-transform: uppercase;
  color: #000;
  transition: background 0.2s ease;
}

.toc-detail li {
  text-transform: uppercase;
}

.toc-summary:hover {
  background: #f0f0f0;
}

.toc-summary:hover .toc-no,
.toc-summary:hover .toc-tag,
.toc-summary:hover .toc-chevron {
  color: #000;
}

.toc-summary .toc-no {
  width: 60px;
  flex: none;
  color: #8a8a8a;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
}

.toc-summary .toc-name {
  flex: 1;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
}

.toc-summary .toc-tag {
  color: #8a8a8a;
  font-size: 0.95rem;
  white-space: nowrap;
}

.toc-summary .toc-chevron {
  color: #8a8a8a;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  flex: none;
}

.toc-row.open .toc-chevron {
  transform: rotate(180deg);
}

.toc-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.toc-detail ul {
  list-style: none;
  padding: 0 0 20px 76px;
}

.toc-detail li {
  position: relative;
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.7;
  padding-left: 16px;
  margin-bottom: 4px;
}

.toc-detail li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: #b5b5b5;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px 40px;
  font-size: 0.8rem;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ============ OUR CLIENTS (dark) ============ */
.clients-block {
  background: #000;
  color: #fff;
  padding-bottom: 10px;
}

.clients-block hr {
  border-top-color: #2a2a2a;
}

.clients-block .info-table thead th {
  border-bottom: 1px solid #fff;
}

.clients-block .info-table tbody td {
  border-bottom: 1px solid #2a2a2a;
}

.clients-block .clients-table tbody td:nth-child(3) {
  color: #9a9a9a;
}

.clients-block .info-table tbody td {
  text-transform: uppercase;
}

.clients-block tr.row-clickable {
  cursor: pointer;
}

.clients-block tr.row-clickable td {
  transition: background 0.2s ease, padding 0.2s ease;
}

.clients-block tr.row-clickable:hover td {
  background: rgba(255, 255, 255, 0.08);
}

.clients-block tr.row-clickable td:first-child::after {
  content: "\2197";
  display: inline-block;
  margin-left: 10px;
  opacity: 0;
  transform: translate(-4px, 2px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.clients-block tr.row-clickable:hover td:first-child::after {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============ CLIENT SPREADS ============ */
.spread {
  background: #fff;
  color: #000;
  padding-bottom: 30px;
}

.bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b6b6b;
}

.bar .mark {
  height: 14px;
  width: auto;
}

.title-block {
  padding: 30px 24px 10px;
}

.spread-title {
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-align: right;
}

@media (max-width: 640px) {
  .spread-title {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }
}

.spread-handle-row {
  display: flex;
  justify-content: flex-end;
  padding: 16px 24px;
  border-top: 1px solid #d5d5d5;
}

.spread-handle {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6b6b6b;
  text-decoration: none;
}

.spread-handle:hover {
  color: #000;
  text-decoration: underline;
}

.caption-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 0.8rem;
  color: #6b6b6b;
  border-top: 1px solid #d5d5d5;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.caption-row.bottom {
  border-top: 1px solid #d5d5d5;
  margin-top: 10px;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d5d5d5;
}

.stat-band.band-a {
  background: #f6f6f6;
}

.stat-band.band-b {
  background: #fff;
}

.stat {
  padding: 28px 24px;
  border-left: 1px solid #d5d5d5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat:first-child {
  border-left: none;
}

.num {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #8a8a8a;
  letter-spacing: 0.03em;
}

.stat-band.wide {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 30px 24px;
}

.stat-band.wide p {
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.5;
  color: #333;
}

.pr-handle-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.pr-handle-row .spread-handle {
  color: #000;
}

.inline-tag-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #d5d5d5;
  font-size: 0.8rem;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ig-block {
  background: #000;
  padding-top: 4px;
  padding-bottom: 6px;
}

.ig-block .caption-row {
  color: #b5b5b5;
  border-top: 1px solid #2a2a2a;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 30px 24px 40px;
  align-items: start;
}

.ig-grid > * {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 600px !important;
  overflow: hidden !important;
}

.ig-grid iframe {
  max-width: 100% !important;
}

.ig-grid blockquote.instagram-media,
.ig-grid blockquote.ig-pending {
  display: block;
  min-height: 340px;
}

.ig-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.ig-fallback:hover {
  background: #1a1a1a;
}

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

.ig-grid.one {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

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

@media (max-width: 900px) {
  .ig-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .ig-grid > * {
    height: 440px !important;
  }
}

/* ============ CTA ============ */
.cta {
  position: relative;
  min-height: 70vh;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 24px;
}

.cta-logo {
  width: min(70vw, 480px);
  height: auto;
}

.cta-tagline {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 0.1em;
  color: #b5b5b5;
}

.cta-primary {
  font-size: clamp(1rem, 2vw, 1.2rem);
  padding: 16px 36px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.cta-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -8px;
}

.cta-secondary a {
  color: #6b6b6b;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-secondary span {
  color: #444;
  font-size: 0.8rem;
}

.cta-secondary a:hover {
  color: #fff;
}

.corner {
  position: absolute;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a8a8a;
  z-index: 2;
}

.corner-tl { top: 24px; left: 24px; }
.corner-bl { bottom: 24px; left: 24px; }
.corner-br { bottom: 22px; right: 24px; }

.badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #8a8a8a;
  border-radius: 50%;
  position: relative;
}

.badge::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: #8a8a8a;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
  .stat-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) {
    border-left: 1px solid #2a2a2a;
  }
  .stat:nth-child(3) {
    border-left: none;
  }
  .contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .info-table thead th:nth-child(3),
  .info-table tbody td:nth-child(3) {
    display: none;
  }
}
