@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --black: #111111;
  --dark: #181818;
  --white: #ffffff;
  --warm: #f7f6f2;
  --gray: #e7e5e0;
  --muted: #77736d;
  --purple: #6c4dff;
  --purple-dark: #5238d9;
  --border: rgba(17,17,17,.12);
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--warm);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(247,246,242,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}

.header.scrolled {
  border-bottom-color: var(--border);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: .9;
  letter-spacing: .13em;
}

.logo span {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
}

.logo small {
  font-size: 8px;
  letter-spacing: .38em;
  margin-top: 7px;
  color: var(--muted);
}

.nav nav,
nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav nav a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .25s ease;
}

.nav nav a:hover {
  color: var(--purple);
}

.nav .nav-cta {
  background: var(--black);
  color: white;
  padding: 13px 19px;
}

.nav .nav-cta:hover {
  background: var(--purple);
  color: white;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 150px 0 80px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(108,77,255,.09), transparent 28%),
    var(--warm);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 80px;
}

.eyebrow,
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple);
}

.hero h1 {
  margin-top: 22px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(64px, 7vw, 110px);
  line-height: .93;
  letter-spacing: -.055em;
  font-weight: 800;
}

.hero h1 span,
h2 span {
  color: var(--purple);
}

.hero-text {
  max-width: 540px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .3s ease;
}

.btn-primary {
  background: var(--black);
  color: white;
}

.btn-primary:hover {
  background: var(--purple);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: white;
}

.hero-visual {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-placeholder {
  width: min(100%, 470px);
  aspect-ratio: .78;
  background:
    linear-gradient(145deg, #e4e0d9, #c9c3ba);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portrait-placeholder::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(108,77,255,.16);
  top: 70px;
  right: -70px;
}

.portrait-placeholder::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(17,17,17,.06);
  bottom: 60px;
  left: -50px;
}

.portrait-placeholder span {
  font-family: 'Manrope', sans-serif;
  font-size: 180px;
  font-weight: 800;
  color: rgba(17,17,17,.08);
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: 45px;
  left: 5px;
  padding: 18px 22px;
  background: var(--black);
  color: white;
  min-width: 210px;
}

.hero-badge strong {
  display: block;
  font-size: 11px;
  letter-spacing: .15em;
}

.hero-badge span {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  color: #bbb;
}

/* STATS */

.stats {
  background: var(--black);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 42px 35px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
}

.stat span {
  display: block;
  margin-top: 12px;
  color: #aaa;
  font-size: 12px;
  max-width: 190px;
}

/* GENERAL SECTIONS */

.section {
  padding: 140px 0;
}

.section-heading {
  margin-bottom: 65px;
}

.section-heading h2,
.two-column h2 {
  margin-top: 18px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -.05em;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.section-copy {
  max-width: 590px;
}

.section-copy p {
  margin-bottom: 22px;
  font-size: 17px;
  color: #57534e;
  line-height: 1.9;
}

/* EXPERTISE */

.expertise {
  background: white;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.expertise-card {
  padding: 48px;
  min-height: 390px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: .35s ease;
}

.expertise-card:hover {
  background: var(--black);
  color: white;
  transform: translateY(-5px);
}

.expertise-card span {
  font-size: 12px;
  color: var(--purple);
  font-weight: 700;
}

.expertise-card h3 {
  margin-top: 42px;
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  letter-spacing: -.04em;
}

.expertise-card p {
  max-width: 450px;
  margin-top: 15px;
  color: var(--muted);
}

.expertise-card:hover p {
  color: #aaa;
}

.expertise-card ul {
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.expertise-card li {
  border: 1px solid var(--border);
  padding: 7px 11px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.expertise-card:hover li {
  border-color: rgba(255,255,255,.18);
}

/* WORK */

.work {
  background: var(--warm);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card {
  min-height: 530px;
  padding: 34px;
  background: white;
  display: flex;
  flex-direction: column;
  transition: .35s ease;
  border: 1px solid transparent;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: var(--purple);
}

.case-number {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: var(--purple);
  font-weight: 700;
}

.case-category {
  margin-top: 75px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
}

.case-card h3 {
  margin-top: 13px;
  font-family: 'Manrope', sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.04em;
}

.case-client {
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
  padding-top: 60px;
}

.case-stats strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 25px;
}

.case-stats span {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
}

.case-card > a {
  margin-top: 35px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-card > a:hover {
  color: var(--purple);
}

/* PROCESS */

.process {
  background: var(--black);
  color: white;
}

.process .section-label {
  color: #9b89ff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
}

.process-grid > div {
  padding: 35px 24px 25px;
  border-right: 1px solid rgba(255,255,255,.15);
  min-height: 245px;
}

.process-grid > div:last-child {
  border-right: 0;
}

.process-grid span {
  color: #9b89ff;
  font-size: 11px;
  font-weight: 700;
}

.process-grid h3 {
  margin-top: 45px;
  font-family: 'Manrope', sans-serif;
  font-size: 25px;
}

.process-grid p {
  margin-top: 10px;
  color: #aaa;
  font-size: 12px;
}

/* CREATIVE */

.creative {
  background: white;
}

.creative-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.creative-tags span {
  padding: 12px 15px;
  background: var(--warm);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* LEADERSHIP */

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
}

.leadership-grid div {
  padding: 27px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 17px;
}

.leadership-grid div:nth-child(odd) {
  margin-right: 30px;
}

/* EXPERIENCE */

.experience {
  background: white;
}

.timeline {
  border-top: 1px solid var(--border);
}

.timeline-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-item > span {
  font-size: 10px;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--purple);
}

.timeline-item h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
}

.timeline-item p {
  margin-top: 4px;
  color: var(--muted);
}

/* TOOLS */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.tools-grid > div {
  min-height: 190px;
  padding: 30px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tools-grid small {
  color: var(--purple);
  font-size: 9px;
  letter-spacing: .12em;
  font-weight: 700;
  margin-bottom: auto;
}

.tools-grid strong {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  margin-top: 8px;
}

/* CONTACT */

.contact {
  background: var(--purple);
  color: white;
}

.contact .section-label {
  color: rgba(255,255,255,.7);
}

.contact h2 {
  margin-top: 20px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(60px, 8vw, 115px);
  line-height: .9;
  letter-spacing: -.06em;
}

.contact h2 span {
  color: var(--black);
}

.contact-inner > p:not(.section-label) {
  margin-top: 30px;
  max-width: 480px;
  font-size: 17px;
  color: rgba(255,255,255,.82);
}

.contact-links {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-links a {
  padding: 14px 18px;
  background: var(--black);
  color: white;
  font-size: 11px;
  font-weight: 600;
  transition: .25s ease;
}

.contact-links a:hover {
  background: white;
  color: var(--black);
}

/* FOOTER */

footer {
  background: var(--black);
  color: white;
}

.footer-inner {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.footer-inner strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  letter-spacing: .08em;
  font-size: 13px;
}

.footer-inner span,
.footer-inner div:nth-child(2),
.footer-inner div:nth-child(3) {
  color: #777;
  font-size: 10px;
}

.footer-inner div:nth-child(2) {
  text-align: center;
}

.footer-inner div:nth-child(3) {
  text-align: right;
}

/* ANIMATION */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeUp .8s ease both;
}

.hero-content .hero-text {
  animation-delay: .12s;
}

.hero-actions {
  animation-delay: .2s;
}

/* RESPONSIVE */

@media (max-width: 1000px) {

  .nav nav {
    gap: 18px;
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .two-column {
    gap: 50px;
  }

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

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

  .process-grid > div:nth-child(2n) {
    border-right: 0;
  }

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

@media (max-width: 700px) {

  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .nav {
    min-height: 72px;
  }

  .nav nav {
    display: none;
  }

  .hero {
    padding-top: 115px;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 82px);
  }

  .hero-text {
    font-size: 15px;
  }

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

  .hero-visual {
    min-height: 430px;
  }

  .portrait-placeholder {
    width: 88%;
  }

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

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .two-column h2 {
    font-size: 48px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .expertise-card {
    min-height: auto;
    padding: 34px;
  }

  .expertise-card h3 {
    margin-top: 30px;
  }

  .case-card {
    min-height: 480px;
  }

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

  .process-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
    min-height: auto;
  }

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

  .leadership-grid div:nth-child(odd) {
    margin-right: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .contact h2 {
    font-size: 62px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 30px 0;
    text-align: left;
  }

  .footer-inner div:nth-child(2),
  .footer-inner div:nth-child(3) {
    text-align: left;
  }
}
