@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Sans+Condensed:wght@300;400;500;600;700&display=swap");

:root {
  --rose: #c9517a;
  --pine: #4a6741;
  --lotus-purple: #7b6a9e;
  --goose-yellow: #b8922a;
  --paper: #f7f2ea;
  --ink: #1c1915;
  --blush: #f3e5e8;
  --green-wash: #e7ece2;
  --portrait-green: #9ca76f;
  --line: rgba(28, 25, 21, 0.16);
  --muted: rgba(28, 25, 21, 0.66);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --sans-condensed: "IBM Plex Sans Condensed", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 8% 18%, rgba(201, 81, 122, 0.12), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(74, 103, 65, 0.14), transparent 32%),
    var(--paper);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 4px),
    radial-gradient(circle, rgba(28, 25, 21, 0.22) 0 0.6px, transparent 0.8px);
  background-size: 28px 28px, 5px 5px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.nav-cta,
.label,
.eyebrow-stack,
.case-number,
.creator-panels span,
.ai-projects span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand {
  justify-self: start;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.nav-cta {
  justify-self: end;
  padding: 9px 20px;
  border: 1px solid var(--rose);
  border-radius: 999px;
  color: var(--rose);
  letter-spacing: 0.04em;
  transition: background 180ms ease, color 180ms ease;
}

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

.section-pad {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 64px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(360px, 1.1fr);
  min-height: calc(100svh - 72px);
  padding-top: clamp(34px, 5vw, 70px);
  padding-bottom: clamp(24px, 3.6vw, 48px);
  gap: 0;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--portrait-green) 0 50%, var(--paper) 50% 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  top: 36px;
  width: min(56vw, 820px);
  height: min(58vw, 760px);
  z-index: -1;
  background: var(--green-wash);
  clip-path: ellipse(45% 52% at 52% 48%);
}

.eyebrow-stack {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  color: rgba(28, 25, 21, 0.7);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(3.6rem, 5.8vw, 6.6rem);
  text-wrap: balance;
}

h1 em {
  color: var(--rose);
  font-style: italic;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6.7vw, 6.4rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.12;
}

.cn-line {
  color: var(--muted);
  font-family: "Noto Serif SC", serif;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 560px;
  color: rgba(28, 25, 21, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.hero-copy {
  padding-right: clamp(24px, 4vw, 64px);
}

.hero-actions,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  border-color: var(--rose);
  background: var(--rose);
  color: white;
}

.button.secondary:hover {
  border-color: var(--pine);
  background: var(--pine);
  color: white;
}

.hero-visual {
  position: relative;
  min-height: min(650px, calc(100svh - 122px));
  isolation: isolate;
  padding-left: clamp(24px, 4vw, 64px);
}

.hero-editorial-image {
  position: absolute;
  right: 0;
  bottom: clamp(8px, 2vw, 26px);
  width: min(92%, 650px);
  height: auto;
  object-fit: contain;
  border-radius: 0;
  filter: saturate(0.98) contrast(1.02);
  box-shadow: none;
}

.float-tag {
  position: absolute;
  z-index: 2;
  background: rgba(247, 242, 234, 0.92);
  color: var(--rose);
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(28, 25, 21, 0.1);
}

.float-tag {
  padding: 8px 12px;
  border: 1px solid rgba(201, 81, 122, 0.22);
  font-size: 0.78rem;
}

.tag-one {
  left: 2%;
  bottom: 18%;
}

.tag-two {
  right: 2%;
  top: 42%;
  color: var(--pine);
}

.tag-three {
  right: 12%;
  bottom: 7%;
  color: var(--goose-yellow);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(18px, 2.4vw, 28px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: 16px 16px 14px 0;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  color: var(--rose);
  font-family: var(--sans-condensed);
  font-weight: 500;
  font-size: clamp(2.3rem, 3.6vw, 4.2rem);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.proof-strip span {
  display: block;
  color: var(--muted);
  font-family: var(--sans-condensed);
  font-size: 0.86rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.worked-with {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.78);
  overflow: hidden;
}

.worked-with span {
  color: rgba(28, 25, 21, 0.42);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  animation: logo-scroll 26s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track img {
  width: 132px;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.8);
  opacity: 0.72;
}

.logo-track span {
  min-width: 132px;
  color: rgba(28, 25, 21, 0.54);
  font-size: 0.85rem;
}

@keyframes logo-scroll {
  to {
    transform: translateX(-50%);
  }
}

.about {
  background: linear-gradient(90deg, var(--paper) 0 48%, var(--blush) 48% 100%);
}

.section-intro {
  max-width: 980px;
  margin-bottom: 34px;
}

.section-intro.compact {
  max-width: 760px;
}

.label {
  margin-bottom: 14px;
  color: var(--rose);
}

.label.light {
  color: rgba(255, 255, 255, 0.76);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--green-wash);
  border: 1px solid var(--line);
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.03);
}

.about-image span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 280px;
  padding: 12px 14px;
  background: var(--paper);
  color: var(--pine);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.05;
}

.about-copy {
  color: rgba(28, 25, 21, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-story {
  max-width: 100%;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(247, 242, 234, 0.96), rgba(247, 242, 234, 0.76)),
    var(--paper);
}

.about-story p {
  margin: 0 0 22px;
  padding: 0;
  border-bottom: 0;
  color: rgba(28, 25, 21, 0.78);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.18vw, 1.16rem);
  font-weight: 400;
  line-height: 1.78;
}

.about-story p:first-child {
  color: rgba(28, 25, 21, 0.78);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.18vw, 1.16rem);
  line-height: 1.75;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.tag-list span,
.tag-list small {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid currentColor;
  color: var(--pine);
  font-family: var(--sans-condensed);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.about .tag-list {
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 14px;
}

.tag-list span:nth-child(odd) {
  color: var(--rose);
}

.cases {
  background: linear-gradient(180deg, var(--paper), var(--blush));
}

.cases .section-intro h2 {
  white-space: nowrap;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.case-scroll {
  display: grid;
  gap: clamp(56px, 8vw, 120px);
  overflow: visible;
  padding: 10px 0 48px;
}

.case-feature-card {
  position: sticky;
  top: 90px;
  display: flex;
  align-items: flex-end;
  min-height: min(680px, 76vh);
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(28, 25, 21, 0.18);
  border-radius: 14px;
  transform: rotate(var(--tilt, -1deg));
  box-shadow: 0 28px 80px rgba(28, 25, 21, 0.16);
  isolation: isolate;
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease, border-color 240ms ease;
}

.case-feature-card:nth-child(2) {
  top: 106px;
  --tilt: 1.2deg;
}

.case-feature-card:nth-child(3) {
  top: 124px;
  --tilt: -1.5deg;
}

.case-feature-card:nth-child(4) {
  top: 142px;
  --tilt: 1deg;
}

.case-feature-card:hover {
  transform: rotate(0deg) scale(1.025);
  box-shadow: 0 34px 90px rgba(28, 25, 21, 0.24);
  filter: saturate(1.06);
  border-color: rgba(247, 242, 234, 0.65);
}

.case-feature-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.92) contrast(1.04);
  border: 0;
}

.case-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 242, 234, 0.9), rgba(247, 242, 234, 0.54) 48%, rgba(28, 25, 21, 0.08)),
    linear-gradient(180deg, transparent, rgba(28, 25, 21, 0.18));
}

.case-feature-card div {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(20px, 3vw, 34px);
  background: rgba(247, 242, 234, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(28, 25, 21, 0.12);
}

.case-feature-card span {
  color: rgba(28, 25, 21, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.case-feature-card h3 {
  margin: 14px 0 18px;
  max-width: 780px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  line-height: 1;
}

.case-feature-card p {
  max-width: 680px;
  color: rgba(28, 25, 21, 0.72);
  font-size: 1rem;
}

.case-feature-card ul {
  display: grid;
  gap: 6px;
  max-width: 720px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(28, 25, 21, 0.68);
  font-family: var(--sans-condensed);
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  font-weight: 500;
  line-height: 1.18;
}

.card-rose {
  background: var(--rose);
}

.card-yellow {
  background: #efb63f;
}

.card-green {
  background: var(--green-wash);
}

.card-purple {
  background: var(--lotus-purple);
}

.card-rose,
.card-purple {
  color: var(--ink);
}

.card-rose p,
.card-purple p,
.card-rose span,
.card-purple span {
  color: rgba(28, 25, 21, 0.68);
}

.case-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.case-details article {
  min-height: 280px;
  padding: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.72);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.case-details article img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  margin-bottom: 18px;
  filter: saturate(0.88) contrast(1.02);
}

.experience-image-link {
  display: block;
  overflow: hidden;
}

.experience-image-link img {
  transition: transform 220ms ease, filter 220ms ease;
}

.experience-image-link:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.05);
}

.case-details article span,
.case-details article h3,
.case-details article p {
  margin-left: 22px;
  margin-right: 22px;
}

.experience-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: clamp(32px, 6vw, 74px) 0 18px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.experience-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
  line-height: 0.95;
}

.experience-heading .label {
  margin: 0;
}

.experience-details {
  margin-top: 0;
}

.case-details article:target {
  border-color: var(--rose);
  background: var(--blush);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(28, 25, 21, 0.12);
}

.case-details span {
  color: var(--rose);
  font-weight: 800;
  letter-spacing: 0.18em;
}

.case-details h3 {
  margin: 18px 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.6rem);
}

.case-details ul {
  margin: 18px 22px 0;
  padding-left: 18px;
  color: var(--muted);
  font-family: var(--sans-condensed);
  font-size: 1.02rem;
  line-height: 1.25;
}

.experience-meta {
  color: var(--rose);
  font-family: var(--sans-condensed);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
}

.blush-card {
  background: var(--blush);
}

.paper-card {
  background: #fbf7ef;
}

.green-card {
  background: var(--green-wash);
}

.purple-card {
  background: #ece6f0;
}

.creator {
  background: var(--lotus-purple);
  color: white;
  overflow: hidden;
}

.creator-lead {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
}

.creator-lead h2 {
  max-width: 720px;
  font-size: clamp(2.9rem, 5.2vw, 5.4rem);
}

.creator-lead p:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.creator-button {
  margin-top: 32px;
  border-color: var(--paper);
  color: var(--paper);
}

.creator-button:hover {
  background: var(--paper);
  color: var(--lotus-purple);
}

.creator-data {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.creator-data div {
  min-height: 150px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.creator-data div:last-child {
  border-right: 0;
}

.creator-data strong {
  display: block;
  font-family: var(--sans-condensed);
  font-weight: 500;
  letter-spacing: 0;
  font-size: clamp(3.6rem, 6.2vw, 6.8rem);
  line-height: 0.82;
}

.creator-data span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.creator-panels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.creator-panels a {
  display: grid;
  min-height: 350px;
  align-content: end;
  overflow: hidden;
  background: rgba(247, 242, 234, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.creator-panels a:hover {
  transform: translateY(-9px) scale(1.025);
  background: rgba(247, 242, 234, 0.22);
  border-color: var(--goose-yellow);
}

.creator-panels img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  filter: saturate(0.9);
}

.creator-panels a > div:last-child {
  padding: 20px;
}

.creator-panels span {
  color: var(--goose-yellow);
}

.creator-panels p {
  color: rgba(255, 255, 255, 0.78);
}

.embedded-showcase {
  margin-top: clamp(56px, 8vw, 96px);
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.embedded-showcase h3 {
  max-width: 820px;
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 6vw, 6rem);
}

.showcase-subcopy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.social-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 46px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(247, 242, 234, 0.1);
  color: var(--paper);
  font-family: var(--sans-condensed);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-strip a:hover {
  transform: translateY(-4px);
  border-color: var(--goose-yellow);
  background: var(--goose-yellow);
  color: var(--ink);
}

.social-strip span {
  letter-spacing: 0;
}

.phone-stack {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 195px;
  padding: 20px;
  background: var(--paper);
  color: var(--ink);
}

.phone-stack span {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(28, 25, 21, 0.16);
  background: var(--blush);
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.phone-stack span:nth-child(even) {
  margin-left: 34px;
  background: var(--green-wash);
  color: var(--pine);
}

.ai-stack span:nth-child(odd) {
  background: #f2e9c9;
  color: var(--goose-yellow);
}

.ai-teaser {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(247, 242, 234, 0.16), transparent 28%),
    linear-gradient(135deg, var(--pine), #31482d);
  color: var(--paper);
}

.ai-teaser {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.ai-teaser::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  display: block;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(184, 146, 42, 0.54);
  border-radius: 50%;
  animation: slow-turn 16s linear infinite;
}

.ai-teaser::after {
  content: "";
  position: absolute;
  left: 46%;
  bottom: 40px;
  display: block;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(247, 242, 234, 0.24);
  border-radius: 50%;
  animation: float-soft 7s ease-in-out infinite;
}

.ai-heading p:not(.label):not(.cn-line) {
  max-width: 680px;
  color: rgba(247, 242, 234, 0.74);
}

.ai-button {
  margin-top: 12px;
  border-color: var(--goose-yellow);
  color: var(--goose-yellow);
}

.ai-button:hover {
  background: var(--goose-yellow);
  color: var(--ink);
}

.project-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(247, 242, 234, 0.18);
}

.project-preview a {
  min-height: 240px;
  padding: 20px;
  border-right: 1px solid rgba(247, 242, 234, 0.18);
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.project-preview a:last-child {
  border-right: 0;
}

.project-preview a:hover {
  background: rgba(247, 242, 234, 0.14);
  transform: translateY(-8px) scale(1.02);
}

.project-preview strong {
  display: block;
  margin-bottom: 50px;
  color: var(--rose);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

.project-preview span {
  display: block;
  margin-bottom: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.project-preview small {
  color: rgba(247, 242, 234, 0.48);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes slow-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float-soft {
  50% {
    transform: translateY(-18px);
  }
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(28px, 6vw, 88px);
  background: var(--rose);
  color: white;
}

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

.contact p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.8);
}

.contact address {
  display: grid;
  gap: 12px;
  align-content: center;
  font-style: normal;
  font-weight: 700;
}

.contact-button {
  width: fit-content;
  margin-top: 18px;
  border-color: white;
  color: white;
}

.contact-button:hover {
  background: white;
  color: var(--rose);
}

.dark-header {
  border-color: rgba(247, 242, 234, 0.16);
  background: rgba(49, 72, 45, 0.9);
  color: var(--paper);
}

.ai-page {
  background: var(--pine);
  color: var(--paper);
}

.ai-page-hero {
  min-height: 72vh;
  display: grid;
  align-content: center;
  border-bottom: 1px solid rgba(247, 242, 234, 0.18);
  background:
    linear-gradient(120deg, rgba(247, 242, 234, 0.14), transparent 46%),
    radial-gradient(circle at 86% 22%, rgba(201, 81, 122, 0.28), transparent 32%),
    var(--pine);
}

.ai-page-hero h1 {
  max-width: 1040px;
  color: var(--paper);
}

.ai-page-hero p:last-child {
  max-width: 720px;
  color: rgba(247, 242, 234, 0.72);
  font-size: 1.18rem;
}

.ai-projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ai-projects article {
  min-height: 340px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(247, 242, 234, 0.18);
  background: rgba(247, 242, 234, 0.08);
  transition: border-color 180ms ease, background 180ms ease;
}

.ai-projects article:hover {
  border-color: var(--goose-yellow);
  background: rgba(28, 25, 21, 0.18);
}

.ai-projects article:nth-child(5) {
  grid-column: 1 / -1;
  background: rgba(201, 81, 122, 0.14);
}

.ai-projects span {
  color: var(--rose);
}

.ai-projects h2 {
  margin: 32px 0 18px;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
}

.ai-projects p {
  max-width: 720px;
  color: rgba(247, 242, 234, 0.72);
}

.dark-tags small {
  color: var(--goose-yellow);
}

.creator-page {
  background: var(--rose);
  color: var(--paper);
}

.creator-header {
  border-color: rgba(247, 242, 234, 0.18);
  background: rgba(201, 81, 122, 0.9);
  color: var(--paper);
}

.creator-showcase {
  min-height: calc(100svh - 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 30%, rgba(247, 242, 234, 0.18), transparent 24%),
    linear-gradient(180deg, var(--rose), #b7446c);
}

.creator-showcase > .label,
.creator-showcase > p {
  text-align: center;
}

.creator-showcase h1 {
  max-width: 980px;
  margin-inline: auto;
  color: var(--paper);
  text-align: center;
  font-size: clamp(4.2rem, 8vw, 8rem);
}

.creator-showcase > p {
  max-width: 680px;
  margin: 0 auto 48px;
  color: rgba(247, 242, 234, 0.74);
}

.showcase-cards {
  display: flex;
  width: 100%;
  max-width: 1920px;
  gap: clamp(10px, 1.2vw, 18px);
  justify-content: center;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 52px) clamp(10px, 2vw, 28px) 32px;
  animation: none;
}

.showcase-card {
  flex: 1 1 0;
  min-width: 0;
  min-height: clamp(380px, 42vw, 500px);
  padding: clamp(14px, 1.6vw, 24px);
  border-radius: 10px;
  color: var(--ink);
  transform: rotate(var(--rotate, -3deg));
  translate: 0 0;
  box-shadow: 0 26px 70px rgba(28, 25, 21, 0.26);
  animation: card-bob 3.8s ease-in-out infinite;
  transition: transform 220ms ease, box-shadow 220ms ease, translate 220ms ease;
}

.showcase-card:hover {
  animation-play-state: paused;
  transform: rotate(0deg) translateY(-16px) scale(1.03);
  box-shadow: 0 34px 90px rgba(28, 25, 21, 0.34);
}

.showcase-card h2 {
  min-height: clamp(84px, 8vw, 116px);
  color: inherit;
  font-size: clamp(1.9rem, 2.8vw, 4rem);
  line-height: 0.96;
  overflow-wrap: break-word;
}

.showcase-card img {
  width: 100%;
  height: clamp(190px, 17vw, 250px);
  object-fit: contain;
  background: rgba(247, 242, 234, 0.34);
  border: 1px solid rgba(28, 25, 21, 0.14);
}

.showcase-card a {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pink-card {
  background: #ef7ab1;
  --rotate: -5deg;
  animation-delay: 0s;
}

.red-card {
  background: #d95b86;
  --rotate: -3deg;
  animation-delay: 0.3s;
}

.yellow-card {
  background: #efb63f;
  --rotate: 2deg;
  animation-delay: 0.6s;
}

.orange-card {
  background: #f2602a;
  --rotate: -2deg;
  animation-delay: 0.9s;
}

.blue-card {
  background: #8aa9d8;
  --rotate: 4deg;
  animation-delay: 1.2s;
}

@keyframes card-bob {
  50% {
    translate: 0 -8px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .about-grid,
  .creator-lead,
  .ai-teaser,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .proof-strip,
  .creator-data {
    grid-template-columns: repeat(2, 1fr);
  }

  .worked-with {
    grid-template-columns: 1fr;
  }

  .logo-track img {
    width: 112px;
  }

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

  .case-scroll,
  .creator-panels,
  .project-preview,
  .ai-projects {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .case-feature-card,
  .creator-panels a,
  .project-preview a,
  .ai-projects article {
    min-width: min(82vw, 420px);
    scroll-snap-align: start;
  }

  .case-feature-card {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
  }

  .showcase-cards {
    width: auto;
    overflow-x: auto;
    animation: none;
    scroll-snap-type: x mandatory;
  }

  .showcase-card {
    scroll-snap-align: start;
  }

  .ai-projects article:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand,
  .nav-cta {
    font-size: 0.68rem;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .section-pad {
    padding: 68px 18px;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .hero {
    gap: 28px;
  }

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

  .hero-editorial-image {
    width: 100%;
    height: auto;
    right: 0;
  }

  .float-tag {
    display: none;
  }

  .proof-strip div,
  .creator-data div {
    padding: 18px 12px 18px 0;
  }

  .proof-strip strong {
    font-size: 2.8rem;
  }

  .about {
    background: var(--blush);
  }

  .about-image,
  .about-image img {
    min-height: 360px;
    height: 360px;
  }

  .about-story p:first-child {
    font-size: clamp(1.02rem, 1.18vw, 1.16rem);
  }

  .cases .section-intro h2 {
    white-space: normal;
  }

  .case-feature-card {
    min-height: 560px;
    padding: 22px;
  }

  .case-feature-card img {
    height: 240px;
  }

  .case-feature-card h3 {
    font-size: 2.8rem;
  }

  .showcase-card {
    flex-basis: min(82vw, 340px);
    min-height: 470px;
  }

  .showcase-card h2 {
    min-height: 96px;
  }

  .creator-data strong {
    font-size: 4rem;
  }

  .creator-data div {
    min-height: 160px;
  }

  .contact address {
    word-break: break-word;
  }
}
