:root {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #181818;
  --text: #f4f2ef;
  --muted: #a6a3a0;
  --line: #2a2a2a;
  --pink: #ff3f9f;
  --white: #ffffff;
  --pink-soft: #ff75bc;
  --max: 1280px;
  --radius: 24px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.04em;
}

.logo span,
.eyebrow,
.card-meta,
.section-label {
  color: var(--pink);
}

nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}

nav a:hover,
.text-link:hover,
.arrow-link:hover {
  color: var(--pink);
}

.section {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.banner {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.055em;
  line-height: .98;
}

h1 {
  max-width: 1050px;
  margin-top: 24px;
  font-size: clamp(58px, 8vw, 120px);
}

h1 span {
  color: var(--pink);
}

h2 {
  max-width: 900px;
  font-size: clamp(42px, 5vw, 76px);
}

h3 {
  font-size: clamp(28px, 3vw, 42px);
}

p {
  color: var(--muted);
  max-width: 680px;
}

.hero-copy {
  margin: 36px 0 0;
  font-size: 19px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

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

.button-pink {
  background: var(--pink);
  color: #080808;
}

.button-white {
  border: solid 1px #ffffff;
  color: #ffffff;
}

.text-link {
  font-weight: 600;
}

.one-column {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.one-column p {
  font-size: 20px;
  margin-top: 28px;
}

.two-columns,
.three-columns {
  display: grid;
  gap: 24px;
  margin-top: 64px;
}

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

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

.project-card,
.mini-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding-bottom: 32px;
  transition: transform .25s ease, border-color .25s ease;
}

.project-card:hover,
.mini-card:hover {
  transform: translateY(-5px);
  border-color: #454545;
}

.project-card > :not(.project-image),
.mini-card > :not(.mini-image) {
  margin-left: 32px;
  margin-right: 32px;
}

.project-image,
.mini-image {
  min-height: 420px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--pink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: .9;
  text-align: center;
  letter-spacing: -.06em;
}



.project-image img {
  width: 100%;
}

.mini-image img {
  width: 100%;
}

.project-pink .project-image {
  background: var(--pink);
  color: #080808;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card-meta span:last-child {
  color: var(--muted);
}

.project-card h3 {
  margin-top: 16px;
}

.project-card p {
  margin-top: 12px;
}

.arrow-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
}

.mini-image {
  min-height: 270px;
  font-size: 90px;
}

.mini-card h3 {
  margin-top: 18px;
}

.mini-card p {
  min-height: 78px;
  margin-top: 10px;
}

.statement {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.statement h2 {
  color: var(--pink);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  border-bottom: 0;
}

.contact h2 {
  max-width: 700px;
}

.contact p {
  font-size: 19px;
  margin: 28px 0;
}

footer {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 28px 0 40px;
  display: flex;
  justify-content: space-between;
  color: #6e6c69;
  font-size: 12px;
}

/* Tablet */
@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }

  .banner {
    min-height: 620px;
  }

  .one-column,
  .statement,
  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .three-columns .mini-card:last-child {
    grid-column: 1 / -1;
  }
}

/* Mobile: every column becomes 100% width */
@media (max-width: 640px) {
  .site-header,
  .section,
  footer {
    width: min(100% - 40px, var(--max));
  }

  .site-header {
    min-height: 72px;
  }

  nav {
    gap: 16px;
    font-size: 12px;
  }

  .section {
    padding: 72px 0;
  }

  .banner {
    min-height: 640px;
  }

  h1 {
    font-size: clamp(52px, 15vw, 82px);
  }

  h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .two-columns,
  .three-columns {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .three-columns .mini-card:last-child {
    grid-column: auto;
  }

  .project-image {
    min-height: 300px;
  }

  .mini-image {
    min-height: 240px;
  }

  .project-card > :not(.project-image),
  .mini-card > :not(.mini-image) {
    margin-left: 24px;
    margin-right: 24px;
  }

  .card-meta {
    flex-direction: column;
    gap: 4px;
  }

  footer {
    flex-direction: column;
    gap: 8px;
  }
}
