:root {
  --cream: #fbf8ef;
  --cream-2: #fffdf7;
  --blush: #fbd5e8;
  --pink: #f58bd2;
  --hot: #ff4fb8;
  --rose: #a63873;
  --ink: #211713;
  --muted: #78645d;
  --line: rgba(33, 23, 19, 0.14);
  --glass: rgba(255, 255, 255, 0.68);
  --shadow: 0 28px 90px rgba(89, 36, 68, 0.16);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 79, 184, 0.22), transparent 30rem),
    radial-gradient(circle at 86% 34%, rgba(251, 213, 232, 0.8), transparent 34rem),
    linear-gradient(135deg, var(--cream), #fff 46%, var(--blush));
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.atmosphere::before,
.atmosphere::after {
  position: absolute;
  border-radius: 999px;
  content: "";
  filter: blur(34px);
  opacity: 0.38;
  transform: translate3d(0, 0, 0);
}

.atmosphere::before {
  width: 34vw;
  height: 34vw;
  min-width: 230px;
  min-height: 230px;
  top: 10%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 79, 184, 0.38), rgba(251, 213, 232, 0.05) 68%, transparent);
  animation: fogDrift 18s ease-in-out infinite alternate;
}

.atmosphere::after {
  width: 38vw;
  height: 38vw;
  min-width: 260px;
  min-height: 260px;
  right: -12%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(246, 154, 216, 0.42), rgba(255, 255, 255, 0.06) 66%, transparent);
  animation: fogDriftAlt 22s ease-in-out infinite alternate;
}

.atmosphere span {
  position: absolute;
  width: var(--size, 86px);
  height: var(--size, 86px);
  border: 1px solid rgba(255, 79, 184, 0.28);
  border-radius: 999px;
  background: radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.42), rgba(246, 154, 216, 0.16) 42%, rgba(255, 79, 184, 0.04) 72%);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.22), 0 18px 70px rgba(255, 79, 184, 0.12);
  opacity: 0.38;
  transform: translate3d(0, 0, 0);
  animation: bubbleFloat var(--speed, 16s) ease-in-out infinite;
}

.atmosphere span:nth-child(1) {
  --size: 74px;
  --speed: 16s;
  top: 18%;
  left: 7%;
}

.atmosphere span:nth-child(2) {
  --size: 118px;
  --speed: 22s;
  top: 54%;
  left: 72%;
  animation-delay: -5s;
}

.atmosphere span:nth-child(3) {
  --size: 52px;
  --speed: 14s;
  top: 76%;
  left: 18%;
  animation-delay: -8s;
}

.atmosphere span:nth-child(4) {
  --size: 96px;
  --speed: 19s;
  top: 28%;
  left: 86%;
  animation-delay: -3s;
}

.atmosphere span:nth-child(5) {
  --size: 42px;
  --speed: 13s;
  top: 12%;
  left: 48%;
  animation-delay: -10s;
}

.atmosphere span:nth-child(6) {
  --size: 140px;
  --speed: 25s;
  top: 83%;
  left: 58%;
  animation-delay: -12s;
}

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

img {
  max-width: 100%;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(89, 36, 68, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.header-cta,
.desktop-nav a,
.menu-button,
.primary-action,
.secondary-action {
  min-height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 8px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 79, 184, 0.26);
  background: #fff;
  box-shadow: 0 10px 24px rgba(89, 36, 68, 0.12);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.mobile-header-name {
  display: none;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.desktop-nav a:hover {
  background: var(--ink);
  color: white;
}

.header-cta {
  display: none;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.menu-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: white;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 19;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 248, 239, 0.94);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(24px);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-inner {
  display: grid;
  width: min(100% - 48px, 440px);
  gap: 28px;
  justify-items: center;
  text-align: center;
}

.mobile-menu-nav {
  display: grid;
  gap: 18px;
}

.mobile-menu-nav a {
  font-family: var(--serif);
  font-size: clamp(36px, 12vw, 72px);
  line-height: 1;
  text-align: center;
}

.mobile-menu-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.mobile-menu-socials a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--rose);
  box-shadow: 0 14px 40px rgba(89, 36, 68, 0.12);
}

.mobile-menu-socials svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mobile-menu-footer {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

main {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: calc(100svh - 82px);
  align-items: center;
  gap: 34px;
  padding: 46px 0 38px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 22px rgba(255, 79, 184, 0.7);
}

.hero-eyebrow::before {
  display: none;
}

.section-kicker.no-dot::before {
  display: none;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(46px, 8.6vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.025em;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.18em;
}

.hero-title .word {
  display: inline-flex;
  white-space: nowrap;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.82em, 0) rotate(3deg);
  transform-origin: 50% 80%;
}

.hero-copy.is-visible .hero-title .char {
  animation: letterGlide 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--char-index) * 34ms);
}

.hero p,
.section-heading p,
.contact-section p {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 4.8vw, 24px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 1000;
}

.primary-action {
  padding: 0 22px;
  background: var(--hot);
  color: white;
  box-shadow: 0 14px 34px rgba(255, 79, 184, 0.28);
}

.secondary-action {
  padding: 0 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.hero-visual {
  position: relative;
}

.portrait-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 620px);
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--glass);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.portrait-card::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 2px solid rgba(255, 79, 184, 0.42);
  border-radius: 44px;
  content: "";
  transform: rotate(-3deg);
}

.portrait-card img {
  display: block;
  width: 100%;
  height: clamp(430px, 72vw, 720px);
  border-radius: 34px;
  object-fit: cover;
  object-position: center;
}

.floating-stat {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(89, 36, 68, 0.16);
  backdrop-filter: blur(16px);
}

.floating-stat strong {
  color: var(--hot);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.floating-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.floating-stat.one {
  top: 24px;
  left: -8px;
}

.floating-stat.two {
  right: -8px;
  bottom: 26px;
}

.proof-band,
.contact-section {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.proof-band {
  padding: 24px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.metric-grid article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(251, 213, 232, 0.55);
}

.metric-grid strong,
.metric-grid span {
  font-family: var(--serif);
  font-size: clamp(42px, 12vw, 78px);
  line-height: 1;
}

.metric-grid span {
  color: var(--hot);
}

.metric-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.receipts-section,
.portfolio-intro-section,
.work-section,
.experience-section,
.contact-section {
  padding: 74px 0 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 11vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.receipt-layout {
  display: grid;
  gap: 16px;
}

.receipt-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.receipt-card.large {
  min-height: 620px;
}

.receipt-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.88;
}

.receipt-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.9;
}

.video-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(33, 23, 19, 0.68));
  content: "";
  pointer-events: none;
}

.receipt-card div {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(33, 23, 19, 0.72);
  color: white;
  backdrop-filter: blur(14px);
}

.receipt-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.receipt-card strong {
  font-size: 20px;
}

.work-grid {
  display: grid;
  gap: 16px;
}

.work-grid article,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 60px rgba(89, 36, 68, 0.09);
}

.work-grid article {
  padding: 24px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.16em;
}

.experience-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 30px;
}

.company-mark {
  display: inline-flex;
  width: 158px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  line-height: 1;
  box-shadow: 0 12px 30px rgba(89, 36, 68, 0.08);
}

.company-mark img {
  display: block;
  width: 100%;
  max-width: 126px;
  max-height: 30px;
  object-fit: contain;
}

.ontrac-mark img {
  max-height: 34px;
}

.luminos-mark img {
  max-height: 32px;
}

.hivibe-mark img {
  max-height: 28px;
}

.timeline time {
  color: var(--hot);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

.work-grid h3,
.timeline h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.05;
}

.work-grid p,
.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.brand-strip {
  width: 100vw;
  margin: 78px calc(50% - 50vw) 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee div {
  display: flex;
  align-items: center;
}

.marquee span {
  padding: 24px 32px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 24px;
}

.contact-section {
  display: grid;
  gap: 26px;
  margin: 74px 0 40px;
  padding: 28px;
}

.contact-card {
  display: grid;
  gap: 10px;
}

.contact-link {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-weight: 900;
}

.contact-link svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-link span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.instagram-link {
  color: #d62976;
}

.tiktok-link {
  color: #111;
}

.linkedin-link {
  color: #0a66c2;
}

.email-link {
  color: var(--rose);
}

.portfolio-intro-section {
  position: relative;
  isolation: isolate;
}

.portfolio-intro-section::before {
  position: absolute;
  inset: 100px auto -20px 4%;
  z-index: -1;
  width: min(46vw, 520px);
  border-radius: 46px;
  background: linear-gradient(180deg, rgba(255, 188, 225, 0.78), rgba(255, 226, 242, 0.28));
  content: "";
}

.portfolio-orbit {
  position: absolute;
  inset: 94px 0 auto;
  z-index: 2;
  pointer-events: none;
}

.portfolio-orbit span {
  position: absolute;
  color: #fff;
  font-size: clamp(18px, 3vw, 34px);
  font-weight: 1000;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(255, 79, 184, 0.98),
    0 0 20px rgba(255, 79, 184, 0.32);
  transform: translate3d(0, 0, 0);
  animation: labelFloat 8s ease-in-out infinite alternate;
}

.portfolio-orbit span:nth-child(1) {
  top: -44px;
  left: 7%;
}

.portfolio-orbit span:nth-child(2) {
  top: -44px;
  left: 48%;
}

.portfolio-orbit span:nth-child(3) {
  top: -22px;
  right: 0;
}

.portfolio-orbit span:nth-child(4) {
  top: 160px;
  left: -8px;
}

.portfolio-orbit span:nth-child(5) {
  bottom: 28px;
  left: 4%;
}

.portfolio-orbit span:nth-child(6) {
  bottom: 28px;
  left: 50%;
}

.portfolio-orbit span:nth-child(7) {
  right: 4%;
  bottom: 100px;
}

.portfolio-orbit .marquee-clone {
  display: none;
}

.portfolio-frame {
  position: relative;
  display: grid;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 192, 226, 0.68) 0 30%, rgba(255, 253, 247, 0.94) 30% 100%);
  box-shadow: var(--shadow);
}

.portfolio-frame::after {
  position: absolute;
  inset: auto 8% -34% auto;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 79, 184, 0.28);
  border-radius: 50%;
  content: "";
}

.portfolio-photo,
.portfolio-copy {
  position: relative;
  z-index: 1;
}

.portfolio-photo {
  min-height: 420px;
  overflow: hidden;
  box-shadow: 0 20px 54px rgba(89, 36, 68, 0.14);
}

.portfolio-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.portfolio-copy {
  display: grid;
  gap: 22px;
  max-width: 620px;
  margin-left: auto;
}

.portfolio-copy .section-kicker {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 5.4vw, 78px);
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: none;
}

.portfolio-copy .section-kicker::before {
  display: none;
}

.portfolio-copy h2 {
  max-width: 680px;
  font-family: var(--sans);
  font-size: clamp(27px, 4vw, 44px);
  font-weight: 1000;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

.portfolio-copy p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 650;
  line-height: 1.48;
}

.portfolio-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.portfolio-proof-row span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(255, 79, 184, 0.26);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--rose);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@keyframes letterGlide {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(0, 0.82em, 0) rotate(3deg);
  }

  58% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, -0.06em, 0) rotate(-1deg);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0);
  }
}

@keyframes bubbleFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -38px, 0) scale(1.08);
  }

  100% {
    transform: translate3d(-18px, 28px, 0) scale(0.94);
  }
}

@keyframes fogDrift {
  from {
    transform: translate3d(-4%, 2%, 0) scale(1);
  }

  to {
    transform: translate3d(14%, 12%, 0) scale(1.18);
  }
}

@keyframes fogDriftAlt {
  from {
    transform: translate3d(5%, 0, 0) scale(1.06);
  }

  to {
    transform: translate3d(-12%, -11%, 0) scale(0.92);
  }
}

@keyframes labelFloat {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -10px, 0);
  }
}

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

  .desktop-nav,
  .header-cta {
    display: inline-flex;
  }

  .menu-button {
    display: none;
  }

  .hero {
    grid-template-columns: 1.04fr 0.96fr;
    padding-top: 64px;
  }

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

  .receipt-layout {
    align-items: stretch;
    grid-template-columns: 1.1fr 0.9fr;
  }

  .receipt-card {
    height: 300px;
    min-height: 300px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 246, 252, 0.82));
  }

  .receipt-card.large {
    grid-row: span 2;
    height: 616px;
    min-height: 616px;
  }

  .receipt-card img {
    display: block;
    height: 100%;
    min-height: 0;
    padding: 22px;
    object-fit: contain;
    opacity: 1;
  }

  .receipt-card.video-card video {
    height: 100%;
    min-height: 300px;
    object-fit: cover;
  }

  .portfolio-frame {
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(34px, 4vw, 68px);
    align-items: center;
    padding-top: clamp(86px, 6vw, 112px);
  }

  .portfolio-orbit {
    inset: 28px auto auto clamp(28px, 4vw, 72px);
    display: flex;
    width: min(44%, 640px);
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .portfolio-orbit span {
    position: static;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid rgba(255, 79, 184, 0.22);
    border-radius: 999px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--rose);
    font-size: clamp(11px, 0.9vw, 15px);
    letter-spacing: 0.13em;
    text-shadow: none;
    animation: none;
  }

  .portfolio-copy .section-kicker {
    font-size: clamp(48px, 4.9vw, 74px);
  }

  .portfolio-copy h2 {
    font-size: clamp(30px, 3.2vw, 44px);
  }

  .portfolio-copy p {
    font-size: clamp(18px, 1.55vw, 24px);
  }

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

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

  .contact-section {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

}

@media (max-width: 520px) {
  .site-header {
    top: 10px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: calc(100% - 20px);
  }

  .brand span:last-child {
    display: none;
  }

  .mobile-header-name {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(16px, 5.1vw, 21px);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
    text-overflow: clip;
    text-transform: uppercase;
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(44px, 13vw, 58px);
    line-height: 0.94;
  }

  .portrait-card {
    transform: none;
  }

  .portrait-card img {
    height: 500px;
  }

  .floating-stat {
    position: static;
    display: inline-grid;
    margin: 10px;
  }

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

  .hero-copy,
  .section-heading,
  .contact-section > div:first-child {
    justify-items: center;
    text-align: center;
  }

  .hero-title {
    justify-content: center;
  }

  .hero p,
  .section-heading p,
  .contact-section p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .section-kicker,
  .eyebrow {
    justify-content: center;
  }

  .proof-band {
    text-align: center;
  }

  .portfolio-intro-section::before {
    inset: 96px 0 auto;
    width: 100%;
    height: 58%;
    border-radius: 30px;
  }

  .portfolio-frame {
    gap: 22px;
    overflow: hidden;
    padding-top: 82px;
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(255, 192, 226, 0.66) 0 34%, rgba(255, 253, 247, 0.95) 34% 100%);
    text-align: center;
  }

  .portfolio-photo {
    min-height: 360px;
  }

  .portfolio-photo img {
    min-height: 360px;
  }

  .portfolio-copy {
    justify-items: center;
    margin-right: auto;
    margin-left: auto;
  }

  .portfolio-copy .section-kicker {
    font-size: clamp(42px, 14vw, 62px);
  }

  .portfolio-copy p {
    font-size: 17px;
    line-height: 1.5;
  }

  .portfolio-proof-row {
    justify-content: center;
  }

  .portfolio-orbit {
    position: absolute;
    top: 22px;
    left: 0;
    z-index: 2;
    display: flex;
    width: max-content;
    gap: 22px;
    margin: 0;
    padding: 0 0 0 28px;
    animation: portfolioMobileMarquee 22s linear infinite;
  }

  .portfolio-orbit span {
    position: static;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    font-size: clamp(14px, 4vw, 18px);
    animation: none;
    text-shadow:
      0 1px 0 rgba(255, 79, 184, 0.98),
      0 0 14px rgba(255, 79, 184, 0.28);
  }

  .portfolio-orbit .marquee-clone {
    display: inline-flex;
  }

  .metric-grid article,
  .work-grid article,
  .timeline article {
    text-align: center;
  }

  .card-number {
    margin-bottom: 26px;
  }

  .experience-topline {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 24px;
  }

  .timeline time {
    text-align: center;
  }

  .receipt-card.large,
  .receipt-card {
    min-height: 420px;
  }

}

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

  .hero-title .char {
    opacity: 1;
    transform: none;
  }
}
