@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

:root {
  --ink: #10100f;
  --paper: #f4f0e8;
  --muted: #6e685f;
  --line: rgba(16, 16, 15, 0.28);
  --white: #f7f4ee;
  --blue: #006fff;
  --night: #050505;
  --warm: #d8c7aa;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

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

img,
video {
  display: block;
}

.main {
  background: var(--paper);
}

.section-pad {
  padding: 5vw 3vw;
}

.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: visible;
  background: #0d0d0c;
  z-index: 2;
}

.hero > video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.08) 42%, rgba(0,0,0,0.42));
  z-index: 1;
}

.cursor {
  height: 7.5vw;
  width: 7.5vw;
  min-height: 78px;
  min-width: 78px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  font-size: clamp(16px, 1.5vw, 26px);
  font-style: italic;
}

.hero-content {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

nav {
  width: 100%;
  padding: 2.6vw 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(16px, 1.4vw, 24px);
}

.brand {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.8vw;
  align-items: center;
}

.nav-links a {
  transition: opacity 220ms ease;
}

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

.hero-bottom {
  padding: 0 3vw 1.4vw;
}

.hero-bottom p {
  max-width: 780px;
  margin-bottom: 1.2vw;
  font-size: clamp(20px, 2.2vw, 42px);
  line-height: 1;
}

.hero-bottom h1 {
  position: relative;
  z-index: 4;
  font-size: clamp(64px, 15vw, 230px);
  line-height: 0.84;
  font-weight: 100;
  letter-spacing: 0;
  margin-bottom: -0.08em;
  color: var(--paper);
  mix-blend-mode: difference;
}

.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 5vw;
  padding-bottom: 1.2vw;
  margin-bottom: 1.8vw;
  border-bottom: 1px solid var(--line);
}

.section-top h3 {
  width: min(520px, 54vw);
  font-size: clamp(19px, 1.55vw, 30px);
  line-height: 1;
  font-weight: 100;
}

.section-top h4 {
  font-size: clamp(16px, 1.3vw, 24px);
  font-weight: 100;
  white-space: nowrap;
}

.line-reveal {
  overflow: hidden;
}

.line-reveal h2 {
  max-width: 1580px;
  font-size: clamp(32px, 3.8vw, 72px);
  font-weight: 100;
  line-height: 0.94;
  letter-spacing: 0;
}

.statement {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work {
  min-height: 100vh;
}

.center-title {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.center-title p {
  margin-bottom: 1vw;
  font-size: clamp(16px, 1.1vw, 21px);
}

.center-title span {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.78em;
}

.center-title h2 {
  font-size: clamp(32px, 3.7vw, 70px);
  font-weight: 100;
  line-height: 0.94;
  text-decoration: underline 3px;
  text-underline-offset: 0.08em;
}

.work-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1vw;
  margin-top: 6vw;
}

.work-card {
  min-height: 64vh;
  position: relative;
  overflow: hidden;
  background: #151515;
  isolation: isolate;
}

.featured-card {
  grid-column: span 2;
}

.wide-card {
  grid-column: span 2;
}

.work-card img,
.work-card video {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.work-card img {
  z-index: 2;
  transition: opacity 700ms linear, transform 900ms ease;
}

.work-card video {
  z-index: 1;
  transform: scale(1.04);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.58));
}

.work-card:hover img {
  opacity: 0;
  transform: scale(1.03);
}

.placeholder-label {
  position: absolute;
  top: 6%;
  left: 8%;
  z-index: 4;
  color: white;
  font-size: clamp(14px, 1vw, 18px);
  opacity: 0.72;
}

.work-card h3 {
  position: absolute;
  left: 8%;
  bottom: 14%;
  z-index: 4;
  color: white;
  font-size: clamp(34px, 3.8vw, 72px);
  line-height: 0.92;
  font-weight: 100;
}

.work-meta {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 6%;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: white;
  font-size: clamp(15px, 1vw, 20px);
}

.about {
  min-height: 100vh;
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 5vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-panel > div {
  padding: 2.2vw 2vw;
}

.about-panel > div + div {
  border-left: 1px solid var(--line);
}

.about-panel p {
  color: var(--muted);
  font-size: clamp(15px, 1vw, 20px);
  margin-bottom: 1vw;
}

.about-panel h3 {
  font-size: clamp(24px, 2.4vw, 46px);
  line-height: 0.96;
  font-weight: 100;
}

.process {
  min-height: 120vh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6vw;
  align-items: start;
  background: var(--ink);
  color: var(--paper);
}

.process .section-top {
  border-bottom-color: rgba(244, 240, 232, 0.28);
}

.process-sticky {
  position: sticky;
  top: 7vw;
}

.process-sticky h2 {
  font-size: clamp(36px, 4.4vw, 82px);
  line-height: 0.88;
  font-weight: 100;
}

.process-list {
  display: grid;
  gap: 1px;
  background: rgba(244, 240, 232, 0.22);
  border: 1px solid rgba(244, 240, 232, 0.22);
}

.process-step {
  min-height: 34vh;
  padding: 2vw;
  background: #10100f;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 320ms ease, color 320ms ease, transform 320ms ease;
}

.process-step.is-active,
.process-step:hover {
  background: var(--paper);
  color: var(--ink);
}

.process-step span {
  color: var(--blue);
  font-size: clamp(16px, 1.05vw, 20px);
  margin-bottom: auto;
}

.process-step h3 {
  font-size: clamp(28px, 3vw, 58px);
  line-height: 0.9;
  font-weight: 100;
  margin-bottom: 1vw;
}

.process-step p {
  max-width: 560px;
  color: currentColor;
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.12;
  opacity: 0.78;
}

.services {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, rgba(0,111,255,0.28), transparent 34%), #15120f;
}

.services > video {
  position: absolute;
  width: min(72vw, 920px);
  opacity: 0.68;
  filter: blur(26px);
}

.orbit {
  position: relative;
  width: min(54vw, 720px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: white;
}

.orbit svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: orbit 18s linear infinite;
}

.orbit circle {
  fill: none;
  stroke: white;
  stroke-width: 0.25;
}

.orbit .dot {
  fill: white;
  stroke: none;
}

.orbit h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(44px, 5.8vw, 104px);
  font-weight: 100;
}

.service-list {
  position: absolute;
  left: 3vw;
  right: 3vw;
  bottom: 4vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(16, 16, 15, 0.24);
  color: var(--ink);
}

.service-list div {
  background: rgba(244, 240, 232, 0.88);
  backdrop-filter: blur(8px);
  padding: 1.4vw;
  min-height: 170px;
  transition: transform 260ms ease, background 260ms ease;
}

.service-list div:hover {
  background: var(--white);
  transform: translateY(-10px);
}

.service-list span {
  display: block;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 20px);
  margin-bottom: 1vw;
}

.service-list h3 {
  font-size: clamp(21px, 2vw, 38px);
  line-height: 0.9;
  font-weight: 100;
  margin-bottom: 0.8vw;
}

.service-list p {
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.08;
}

.proof {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4vw;
  align-items: end;
}

.proof-quote p,
.brief-prompts p {
  color: var(--muted);
  font-size: clamp(15px, 0.95vw, 19px);
  margin-bottom: 1vw;
}

.proof-quote h2 {
  font-size: clamp(36px, 4.8vw, 90px);
  line-height: 0.88;
  font-weight: 100;
}

.proof-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid article {
  background: var(--paper);
  padding: 2vw 0;
}

.proof-grid span {
  display: block;
  color: var(--blue);
  font-size: clamp(16px, 1vw, 20px);
  margin-bottom: 1.2vw;
}

.proof-grid h3 {
  font-size: clamp(24px, 2.3vw, 44px);
  line-height: 0.9;
  font-weight: 100;
  margin-bottom: 1vw;
}

.proof-grid p {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.14;
}

.gallery {
  min-height: 100vh;
  padding: 4vw 0;
  overflow: hidden;
}

.gallery h2 {
  font-size: clamp(48px, 7vw, 128px);
  line-height: 0.86;
  font-weight: 100;
  border-bottom: 2px solid var(--ink);
  width: 96%;
  margin-left: 2%;
}

.swipper {
  height: 60vh;
  width: 100%;
  margin-top: -4%;
  position: relative;
}

.swiper {
  width: 130%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}

.swiper-slide img {
  width: 19%;
  height: min(42vh, 480px);
  object-fit: cover;
  transition: transform 500ms ease;
}

.swiper-slide img:hover {
  transform: translateY(-3vh) rotate(-1.4deg);
}

.faq {
  min-height: 90vh;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-item {
  appearance: none;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4vw;
  padding: 2.2vw 0;
  text-align: left;
  font-family: inherit;
}

.faq-item span {
  font-size: clamp(24px, 2.6vw, 50px);
  line-height: 0.9;
  font-weight: 100;
}

.faq-item p {
  align-self: center;
  max-width: 720px;
  font-size: clamp(16px, 1.15vw, 22px);
  line-height: 1.05;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 420ms ease, opacity 260ms ease;
}

.faq-item.is-open p {
  max-height: 180px;
  opacity: 1;
}

footer {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: var(--night);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-top {
  width: 96%;
  display: grid;
  grid-template-columns: 1fr 0.6fr auto auto;
  gap: 5vw;
  align-items: start;
  margin: 6vw auto 0;
  padding-bottom: 2vw;
  border-bottom: 1px solid rgba(255,255,255,0.24);
}

.footer-cta h3 {
  font-size: clamp(24px, 2.4vw, 46px);
  line-height: 0.96;
  font-weight: 100;
  margin-bottom: 1vw;
}

.footer-cta p {
  max-width: 620px;
  color: rgba(255,255,255,0.68);
  font-size: clamp(16px, 1.05vw, 21px);
  line-height: 1.08;
  margin-bottom: 2vw;
}

.footer-cta a {
  display: inline-block;
  padding: 8px 24px 10px;
  border-radius: 999px;
  border: 1px solid white;
  font-size: clamp(16px, 1.1vw, 22px);
  transition: background 250ms ease, color 250ms ease;
}

.footer-cta a:hover {
  background: white;
  color: black;
}

footer ul {
  list-style: none;
  font-size: clamp(16px, 1.1vw, 22px);
  line-height: 1.14;
}

.brief-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brief-prompts p {
  flex: 0 0 100%;
  color: rgba(255,255,255,0.58);
}

.brief-prompts span {
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  padding: 7px 14px 8px;
  color: rgba(255,255,255,0.84);
  font-size: clamp(16px, 1vw, 19px);
}

footer li a:hover {
  text-decoration: underline;
}

.footer-word {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 1vw;
  overflow: hidden;
}

.footer-word span {
  display: block;
  font-size: clamp(48px, 10vw, 180px);
  line-height: 0.78;
  font-weight: 100;
}

.page-hero {
  min-height: 82vh;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dark-page {
  background: var(--night);
  color: var(--white);
}

.contact-hero {
  min-height: 70vh;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.46;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.24), rgba(0,0,0,0.52));
}

.page-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title {
  position: relative;
  z-index: 2;
  width: min(1320px, 94vw);
  margin: 0 auto;
  padding: 8vw 0 4vw;
}

.page-title p {
  font-size: clamp(16px, 1.2vw, 22px);
  color: currentColor;
  opacity: 0.72;
  margin-bottom: 1vw;
}

.page-title h1 {
  max-width: 1180px;
  font-size: clamp(56px, 8.6vw, 156px);
  line-height: 0.82;
  font-weight: 100;
}

.case-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.case-row {
  display: grid;
  grid-template-columns: 0.15fr 0.85fr 1fr 0.75fr;
  gap: 2vw;
  align-items: center;
  background: var(--paper);
  padding: 2vw 0;
}

.case-row span,
.values span,
.service-page-list span {
  color: var(--blue);
  font-size: clamp(16px, 1.1vw, 22px);
}

.case-row h2 {
  font-size: clamp(34px, 4.2vw, 78px);
  line-height: 0.88;
  font-weight: 100;
}

.case-row p {
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 25px);
  line-height: 1.08;
}

.case-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5vw;
  align-items: end;
}

.split-story img {
  width: 100%;
  min-height: 70vh;
  object-fit: cover;
}

.split-story h2,
.page-cta h2,
.contact-card h2 {
  font-size: clamp(40px, 5.2vw, 96px);
  line-height: 0.9;
  font-weight: 100;
}

.split-story p {
  max-width: 760px;
  margin-top: 2vw;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 28px);
  line-height: 1.08;
}

.values,
.service-page-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.values article,
.service-page-list article {
  background: var(--paper);
  padding: 2vw;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.values h3,
.service-page-list h2 {
  font-size: clamp(30px, 3.4vw, 64px);
  line-height: 0.9;
  font-weight: 100;
  margin: 1.4vw 0 1vw;
}

.values p,
.service-page-list p,
.brief-checklist p {
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 24px);
  line-height: 1.1;
}

.service-page-list {
  grid-template-columns: repeat(4, 1fr);
}

.service-page-list a,
.page-cta a,
.contact-card a {
  display: inline-block;
  width: fit-content;
  margin-top: 2vw;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 8px 18px 10px;
  font-size: clamp(16px, 1.1vw, 22px);
  transition: background 240ms ease, color 240ms ease;
}

.service-page-list a:hover,
.page-cta a:hover,
.contact-card a:hover {
  background: var(--ink);
  color: var(--paper);
}

.page-cta {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-grid {
  min-height: 60vh;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 5vw;
  align-items: start;
}

.brief-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brief-checklist p {
  flex: 0 0 100%;
}

.brief-checklist span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px 10px;
  font-size: clamp(16px, 1.1vw, 21px);
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding: 72px 20px;
  }

  nav {
    padding: 24px 20px;
    align-items: flex-start;
  }

  .nav-links {
    gap: 8px;
    flex-direction: column;
    align-items: flex-end;
    font-size: 16px;
  }

  .hero-bottom {
    padding: 0 20px 22px;
  }

  .hero-bottom p {
    font-size: 24px;
    max-width: 520px;
  }

  .hero-bottom h1 {
    font-size: 18vw;
  }

  .cursor {
    display: none;
  }

  .section-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .section-top h3 {
    width: 100%;
  }

  .line-reveal h2 {
    font-size: 34px;
  }

  .work-grid,
  .about-panel,
  .process,
  .proof,
  .service-list,
  .footer-top,
  .case-row,
  .split-story,
  .values,
  .service-page-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    gap: 16px;
  }

  .work-card {
    min-height: 66vh;
  }

  .featured-card,
  .wide-card {
    grid-column: span 1;
  }

  .about-panel > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process {
    min-height: 0;
  }

  .process-sticky {
    position: static;
  }

  .process-step {
    min-height: 300px;
    padding: 24px;
  }

  .services {
    align-items: flex-start;
    padding-top: 88px;
  }

  .orbit {
    width: 86vw;
  }

  .service-list {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 28px;
  }

  .service-list div {
    min-height: 0;
    padding: 22px;
  }

  .gallery {
    min-height: 76vh;
  }

  .gallery h2 {
    font-size: 54px;
  }

  .swipper {
    height: 42vh;
    margin-top: 22px;
  }

  .swiper {
    width: 220%;
  }

  .swiper-slide img {
    height: 30vh;
  }

  .proof-grid article {
    padding: 24px 0;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 0;
  }

  .faq-item p {
    font-size: 17px;
  }

  .footer-top {
    margin-top: 70px;
  }

  .page-title {
    padding: 110px 0 42px;
  }

  .page-title h1 {
    font-size: 52px;
  }

  .case-row,
  .values article,
  .service-page-list article {
    padding: 24px 0;
    min-height: 0;
  }

  .split-story img {
    min-height: 48vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
