/* ============================================================
 * inks & interfaces — playful coral light-mode portfolio
 * design system: paper + coral + clay-render 3D props
 * ============================================================ */

:root {
  /* ----- brand palette ----- */
  --paper: #fbf8f4;
  --paper-deep: #f5f1ea;
  --cream: #f5efe8;
  --cream-2: #efe7dd;
  --coral: #f25b54;
  --coral-deep: #d94840;
  --coral-soft: #f47a73;
  --peach: #ffd9c7;
  --mint: #b8e3d0;
  --butter: #ffe38a;
  --ink: #141414;
  --ink-2: #1f1f1f;
  --ash: #6b6b6b;
  --ash-2: #9a9a9a;
  --hairline: rgba(20, 20, 20, 0.08);
  --hairline-2: rgba(20, 20, 20, 0.14);

  /* ----- type ----- */
  --type-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --type-body: "Inter", system-ui, sans-serif;
  --type-mono: "JetBrains Mono", ui-monospace, monospace;

  /* ----- metrics ----- */
  --nav-h: 76px;
  --gutter: clamp(20px, 4.5vw, 72px);
  --radius-card: 28px;
  --radius-pill: 999px;

  /* ----- motion ----- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0.05, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ----- shadows (clay) ----- */
  --shadow-clay-1: 0 2px 4px rgba(20, 20, 20, 0.06),
    0 12px 28px -8px rgba(20, 20, 20, 0.16),
    0 24px 56px -24px rgba(217, 72, 64, 0.2);
  --shadow-clay-2: 0 1px 2px rgba(20, 20, 20, 0.05),
    0 6px 16px -4px rgba(20, 20, 20, 0.1);
  --shadow-deep: 0 30px 60px -20px rgba(20, 20, 20, 0.2),
    0 50px 100px -40px rgba(217, 72, 64, 0.18);
}

/* ============ reset ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
}
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--type-body);
  font-size: 16px;
  line-height: 1.6;
  cursor: none;
  overflow-x: clip;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: none;
}
::selection {
  background: var(--coral);
  color: var(--paper);
}

/* ============ custom cursor ============ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}
.cursor-dot,
.cursor-ring {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--spring), height 0.35s var(--spring),
    opacity 0.25s, background 0.25s, border-color 0.25s;
}
.cursor-dot {
  width: 14px;
  height: 14px;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(242, 91, 84, 0.18);
}
.cursor-ring {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--coral);
  opacity: 0;
}
.cursor-label {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cursor.is-hover .cursor-dot {
  width: 6px;
  height: 6px;
  box-shadow: none;
}
.cursor.is-hover .cursor-ring {
  width: 72px;
  height: 72px;
  opacity: 1;
  background: var(--coral);
  border-color: var(--coral);
}
.cursor.is-hover .cursor-label {
  opacity: 1;
}
.cursor.is-cross .cursor-dot {
  opacity: 0;
}
.cursor.is-cross .cursor-ring {
  width: 28px;
  height: 28px;
  opacity: 1;
  border-color: var(--coral);
  background: transparent;
  border-radius: 0;
  border-width: 1.5px;
  clip-path: polygon(
    0 49%,
    100% 49%,
    100% 51%,
    0 51%,
    0 0,
    49% 0,
    49% 100%,
    51% 100%,
    51% 0,
    0 0
  );
  background: var(--coral);
}
@media (hover: none) {
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
  button,
  a {
    cursor: pointer;
  }
}

/* ============ back to top ============ */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--paper);
  display: grid;
  place-items: center;
  cursor: none;
  z-index: 90;                       /* under nav (100), over content */
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out),
              transform 0.35s var(--spring),
              background 0.25s;
  box-shadow: 0 8px 22px -6px rgba(217, 72, 64, 0.55),
              0 2px 6px rgba(20, 20, 20, 0.12);
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--coral-deep);
  transform: translateY(-3px);
}
.back-to-top:active {
  transform: translateY(-1px);
}
.back-to-top svg {
  display: block;
}
@media (hover: none) {
  .back-to-top { cursor: pointer; }
}
@media (max-width: 760px) {
  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }
  .back-to-top svg { width: 18px; height: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: opacity 0.2s;
    transform: none !important;
  }
}

/* ============ nav ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 var(--gutter);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.3s;
}
.nav.is-scrolled,
.nav.menu-open {
  background: rgba(251, 248, 244, 0.96);
  border-bottom: 1px solid var(--hairline);
}
.nav-mark {
  display: inline-flex;
  align-items: center;
}
.nav-mark img {
  height: 26px;
  width: auto;
}
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
  justify-self: center;
  font-family: var(--type-display);
  font-weight: 500;
  font-size: 15px;
  text-transform: lowercase;
}
.nav-links a {
  position: relative;
  padding: 6px 2px;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-links a.is-active {
  color: var(--coral);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--coral);
  transition: right 0.4s var(--ease-out);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.is-active::after {
  right: 0;
}

.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--type-display);
  font-weight: 500;
  font-size: 14px;
  background: var(--coral);
  color: var(--paper);
  padding: 11px 22px 11px 18px;
  border-radius: var(--radius-pill);
  transition: background 0.3s, transform 0.3s var(--spring);
  box-shadow: 0 6px 18px -6px rgba(217, 72, 64, 0.55);
}
.nav-cta:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}
/* tiny orbiting smiley */
.nav-cta-smiley {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe38a, #f2c84a);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15),
    inset -2px -2px 4px rgba(0, 0, 0, 0.08);
  animation: orbit 6s linear infinite;
}
.nav-cta-smiley::before,
.nav-cta-smiley::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--ink);
  border-radius: 50%;
  top: 8px;
}
.nav-cta-smiley::before {
  left: 6px;
}
.nav-cta-smiley::after {
  right: 6px;
}
.nav-cta-smiley span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 12px;
  width: 8px;
  height: 4px;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0 0 8px 8px;
}
@keyframes orbit {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  25% {
    transform: translate(-4px, -2px) rotate(8deg);
  }
  50% {
    transform: translate(2px, 2px) rotate(0deg);
  }
  75% {
    transform: translate(-2px, 1px) rotate(-6deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}

/* ============ section primitives ============ */
.eyebrow {
  display: inline-block;
  font-family: var(--type-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--coral);
  text-transform: lowercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--type-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.045em;
  line-height: 0.92;
  font-size: clamp(48px, 8vw, 128px);
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}
.section-title em {
  color: var(--coral);
  font-style: normal;
}
.section-sub {
  font-family: var(--type-body);
  font-size: 17px;
  color: var(--ash);
  line-height: 1.55;
  max-width: 540px;
  margin: 20px 0 0;
}

/* ============ hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("../uploads/Pattern-b0cb819e.webp");
  background-size: 360px 360px;
  background-position: -80px -80px;
  opacity: 0.045;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--type-mono);
  font-size: 12px;
  color: var(--coral);
  text-transform: lowercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.hero-eyebrow .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(242, 91, 84, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 91, 84, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(242, 91, 84, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 91, 84, 0);
  }
}

.hero-headline {
  font-family: var(--type-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.05em;
  line-height: 0.92;
  font-size: clamp(54px, 8.5vw, 140px);
  margin: 0;
  color: var(--ink);
}
.hero-headline .accent {
  color: var(--coral);
}
.hero-headline .row {
  display: block;
  position: relative;
}
.hero-headline .word {
  display: inline-block;
  transform: translateY(20%);
  opacity: 0;
  animation: rise 1s var(--ease-out) forwards;
}
.hero-headline .word.d1 {
  animation-delay: 0.1s;
}
.hero-headline .word.d2 {
  animation-delay: 0.25s;
}
.hero-headline .word.d3 {
  animation-delay: 0.4s;
}
.hero-headline .word.d4 {
  animation-delay: 0.55s;
}
.hero-headline .word.d5 {
  animation-delay: 0.7s;
}
.hero-headline .word.d6 {
  animation-delay: 0.85s;
}
.hero-headline .word.d7 {
  animation-delay: 1s;
}
@keyframes rise {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-tag {
  margin-top: 32px;
  font-family: var(--type-body);
  font-size: 18px;
  color: var(--ash);
  max-width: 460px;
  line-height: 1.55;
}
.hero-tag em {
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
}

.hero-ctas {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-coral {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--coral);
  color: var(--paper);
  padding: 18px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 16px;
  transition: background 0.25s, transform 0.35s var(--spring), box-shadow 0.35s;
  box-shadow: 0 10px 26px -8px rgba(217, 72, 64, 0.45);
}
.btn-coral:hover {
  background: var(--coral-deep);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px -10px rgba(217, 72, 64, 0.6);
}
.btn-coral svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s var(--ease-out);
}
.btn-coral:hover svg {
  transform: translateX(4px);
}
.btn-text {
  font-family: var(--type-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.btn-text:hover {
  color: var(--coral);
  border-color: var(--coral);
}

/* hero 3D stage (right side) */
.hero-stage {
  position: relative;
  height: min(640px, 70vh);
  min-height: 460px;
}
.hero-stage > * {
  position: absolute;
}

/* squishy blob */
.prop-blob {
  width: 320px;
  height: 320px;
  left: 8%;
  top: 18%;
  transition: transform 0.8s var(--spring);
}
.prop-blob svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 24px 36px rgba(217, 72, 64, 0.28))
    drop-shadow(0 4px 8px rgba(20, 20, 20, 0.1));
}
.prop-blob .blob-body {
  animation: blobMorph 8s ease-in-out infinite;
  transform-origin: center;
}
@keyframes blobMorph {
  0%,
  100% {
    transform: scale(1, 1) rotate(0deg);
  }
  33% {
    transform: scale(1.04, 0.96) rotate(2deg);
  }
  66% {
    transform: scale(0.96, 1.04) rotate(-2deg);
  }
}
.prop-blob:hover .blob-body {
  animation: blobSquish 0.6s var(--spring);
}
@keyframes blobSquish {
  0% {
    transform: scale(1, 1);
  }
  40% {
    transform: scale(1.18, 0.82);
  }
  70% {
    transform: scale(0.92, 1.08);
  }
  100% {
    transform: scale(1, 1);
  }
}

/* paperclip */
.prop-clip {
  width: 110px;
  height: 160px;
  right: 6%;
  top: 4%;
  transform: rotate(18deg);
  transition: transform 0.6s var(--spring);
}
.prop-clip:hover {
  transform: rotate(28deg) scale(1.08) translateY(-6px);
}
.prop-clip svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 22px rgba(20, 20, 20, 0.18));
}

/* petal tile */
.prop-petal {
  width: 180px;
  height: 180px;
  left: 0;
  bottom: 6%;
  transform: rotate(-12deg) perspective(800px) rotateY(20deg);
  animation: petalSpin 18s linear infinite;
  transform-style: preserve-3d;
}
@keyframes petalSpin {
  0% {
    transform: perspective(800px) rotateY(0deg) rotate(-12deg);
  }
  100% {
    transform: perspective(800px) rotateY(360deg) rotate(-12deg);
  }
}
.prop-petal img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 24px 32px rgba(217, 72, 64, 0.32));
}

/* swatch card floating */
.prop-swatch {
  width: 130px;
  height: 170px;
  right: 16%;
  bottom: 12%;
  border-radius: 12px;
  background: var(--coral);
  box-shadow: 0 22px 40px -10px rgba(217, 72, 64, 0.5),
    inset 0 -4px 8px rgba(0, 0, 0, 0.06);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  transform: rotate(8deg);
  animation: bob 5s ease-in-out infinite;
  cursor: none;
  transition: transform 0.5s var(--spring);
}
@keyframes bob {
  0%,
  100% {
    transform: rotate(8deg) translateY(0);
  }
  50% {
    transform: rotate(8deg) translateY(-10px);
  }
}
.prop-swatch:hover {
  animation-play-state: paused;
  transform: rotate(0deg) scale(1.08);
}
.prop-swatch::after {
  content: "";
  display: block;
  height: 28px;
  background: var(--paper);
  border-radius: 6px;
  margin-top: 6px;
}
.prop-swatch .sw-hex {
  opacity: 0.9;
  font-size: 9px;
}
.prop-swatch .sw-name {
  font-family: var(--type-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

/* hero status row */
.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 16px 0;
  overflow: hidden;
  background: var(--paper);
}
.hero-marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marqL 36s linear infinite;
  font-family: var(--type-mono);
  font-size: 12px;
  color: var(--coral);
  text-transform: lowercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.hero-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-marquee-track i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  font-style: normal;
}
@keyframes marqL {
  to {
    transform: translateX(-50%);
  }
}

/* ============ section divider — petal line art ============ */
.divider {
  position: relative;
  padding: 0 var(--gutter);
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.divider svg {
  flex: 1;
  height: 28px;
  color: var(--coral);
}
.divider span {
  font-family: var(--type-mono);
  font-size: 11px;
  color: var(--coral);
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

/* ============ about strip ============ */
.about {
  padding: 100px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
}
.about-copy {
  max-width: 560px;
}
.about-title {
  font-family: var(--type-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.04em;
  line-height: 0.94;
  font-size: clamp(40px, 5.5vw, 80px);
  margin: 12px 0 28px;
  color: var(--ink);
}
.about-title em {
  color: var(--coral);
  font-style: normal;
}
.about-body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ash);
  margin: 0 0 14px;
}
.about-body strong {
  color: var(--ink);
  font-weight: 500;
}
.about-cards {
  position: relative;
  height: 320px;
  perspective: 1200px;
}
.about-cards .card {
  position: absolute;
  width: 240px;
  height: 150px;
  border-radius: 16px;
  padding: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-clay-1);
  transition: transform 0.6s var(--spring);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: none;
}
.about-cards .card:nth-child(1) {
  left: 12%;
  top: 30%;
  transform: rotate(-10deg);
  z-index: 1;
  background: var(--cream);
}
.about-cards .card:nth-child(2) {
  left: 30%;
  top: 14%;
  transform: rotate(-2deg);
  z-index: 2;
  background: var(--paper);
}
.about-cards .card:nth-child(3) {
  left: 48%;
  top: 28%;
  transform: rotate(8deg);
  z-index: 3;
  background: var(--coral);
  color: var(--paper);
}
.about-cards:hover .card:nth-child(1) {
  transform: rotate(-22deg) translate(-60px, 10px);
}
.about-cards:hover .card:nth-child(2) {
  transform: rotate(-3deg) translateY(-10px);
}
.about-cards:hover .card:nth-child(3) {
  transform: rotate(20deg) translate(80px, -10px);
}
.about-cards .card .c-mark {
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.04em;
  color: var(--coral);
  text-transform: lowercase;
}
.about-cards .card:nth-child(3) .c-mark {
  color: var(--paper);
}
.about-cards .card .c-meta {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ash);
  text-transform: lowercase;
}
.about-cards .card:nth-child(3) .c-meta {
  color: rgba(251, 248, 244, 0.8);
}

/* ============ process (horizontal scroll) ============ */
.process {
  position: relative;
  background: var(--cream);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-top: 80px;
  margin-bottom: 80px;
}
.process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 48px;
}
.process-head {
  padding: 32px var(--gutter) 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.process-head .ph-title {
  max-width: 720px;
}
.process-head .ph-counter {
  font-family: var(--type-mono);
  font-size: 12px;
  color: var(--coral);
  letter-spacing: 0.1em;
}
.process-head .ph-counter b {
  font-size: 80px;
  font-family: var(--type-display);
  font-weight: 700;
  color: var(--coral);
  letter-spacing: -0.04em;
  line-height: 1;
}
.process-track {
  display: flex;
  padding: 0 var(--gutter) 40px;
  gap: 32px;
  will-change: transform;
}
.process-card {
  flex: 0 0 460px;
  height: 480px;
  background: var(--paper);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-clay-2);
  overflow: hidden;
  transition: transform 0.6s var(--spring), box-shadow 0.4s;
}
.process-card.active {
  transform: translateY(-8px);
  box-shadow: var(--shadow-clay-1);
}
.process-card .pc-no {
  font-family: var(--type-mono);
  font-size: clamp(64px, 8vw, 108px);
  font-weight: 500;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
}
.process-card .pc-name {
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 32px;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  margin: 8px 0 12px;
}
.process-card .pc-body {
  font-size: 15px;
  color: var(--ash);
  line-height: 1.55;
  margin: 0 0 8px;
}
.process-card .pc-prop {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 220px;
  height: 220px;
  pointer-events: none;
}
.process-card.active .pc-prop {
  animation: propWiggle 1.4s var(--spring);
}
@keyframes propWiggle {
  0% {
    transform: rotate(0) scale(1);
  }
  30% {
    transform: rotate(-6deg) scale(1.06);
  }
  60% {
    transform: rotate(4deg) scale(0.98);
  }
  100% {
    transform: rotate(0) scale(1);
  }
}

/* ============ services ============ */
.services {
  padding: 140px var(--gutter) 120px;
  max-width: 1480px;
  margin: 0 auto;
}
.services-head {
  margin-bottom: 60px;
  max-width: 800px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.5s var(--spring), background 0.35s, box-shadow 0.35s;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: none;
  will-change: transform;
}
.svc-card:hover {
  border-color: var(--coral);
  background: var(--paper);
  box-shadow: var(--shadow-clay-1);
}
.svc-no {
  font-family: var(--type-mono);
  font-size: 11px;
  color: var(--coral);
  letter-spacing: 0.1em;
}
.svc-title {
  font-family: var(--type-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.04em;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.95;
  margin: 14px 0 16px;
}
.svc-body {
  font-size: 15px;
  color: var(--ash);
  line-height: 1.55;
  margin: 0;
  max-width: 320px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.svc-tags span {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  background: var(--paper);
  border: 1px solid var(--hairline);
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 999px;
}
.svc-card:hover .svc-tags span {
  border-color: var(--hairline-2);
}
.svc-mascot {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 160px;
  height: 160px;
  transform: translate(40%, -40%) scale(0.5);
  opacity: 0;
  transition: transform 0.5s var(--spring), opacity 0.4s;
  pointer-events: none;
}
.svc-card:hover .svc-mascot {
  transform: translate(15%, -15%) scale(1) rotate(8deg);
  opacity: 1;
}

/* ============ work — asymmetric grid ============ */
.work {
  padding: 100px var(--gutter) 120px;
  max-width: 1480px;
  margin: 0 auto;
  position: relative;
}
.work-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.work-head .wh-meta {
  font-family: var(--type-mono);
  font-size: 12px;
  color: var(--ash);
  letter-spacing: 0.06em;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px 24px;
}
.work-tile {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: none;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.work-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}
.wt-frame {
  aspect-ratio: 4 / 3;
  background: var(--cream);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.wt-art {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}
.work-tile:hover .wt-art {
  transform: scale(1.06);
}
.wt-eyebrow {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  background: rgba(251, 248, 244, 0.92);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
}
.wt-cta-pill {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 14px;
  background: var(--coral);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
}
.work-tile:hover .wt-cta-pill {
  transform: translateY(0);
  opacity: 1;
}
.wt-meta {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wt-name {
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--ink);
  line-height: 1.05;
}
.wt-tags {
  font-family: var(--type-mono);
  font-size: 11px;
  color: var(--ash);
  letter-spacing: 0.04em;
  display: flex;
  gap: 10px;
}
.wt-tags em {
  color: var(--coral);
  font-style: normal;
}
/* asymmetric placement — all rows fill 12 columns */
.work-tile.t-1 {
  grid-column: 1 / span 7;
}
.work-tile.t-2 {
  grid-column: 8 / span 5;
  margin-top: 48px;
}
.work-tile.t-3 {
  grid-column: 1 / span 5;
  margin-top: 32px;
}
.work-tile.t-4 {
  grid-column: 6 / span 7;
  margin-top: 32px;
}
.work-tile.t-5 {
  grid-column: 1 / span 6;
  margin-top: 32px;
}
.work-tile.t-6 {
  grid-column: 7 / span 6;
  margin-top: 32px;
}

/* view more button */
.work-more {
  text-align: center;
  margin-top: 56px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s,
    transform 0.25s var(--spring);
}
.btn-outline:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--paper);
  transform: translateY(-2px);
}

/* art fills (texture variations) */
.art-go {
  background: linear-gradient(135deg, #ffd9c7, #f25b54);
}
.art-zestee {
  background: linear-gradient(135deg, #ffe38a, #f2a55b);
}
.art-lcm {
  background: linear-gradient(135deg, #b8e3d0, #6ba787);
}
.art-globe {
  background: linear-gradient(135deg, #c8d8f2, #5677b5);
}
.art-satori {
  background: linear-gradient(135deg, #f5efe8, #d7c9b4);
}
.art-vanya {
  background: linear-gradient(135deg, #2a2a2a, #141414);
}
.art-go::after,
.art-zestee::after,
.art-lcm::after,
.art-globe::after,
.art-satori::after,
.art-vanya::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../uploads/Pattern-b0cb819e.webp");
  background-size: 220px;
  mix-blend-mode: multiply;
  opacity: 0.08;
}
.art-vanya::after {
  mix-blend-mode: screen;
  opacity: 0.14;
}

/* mockup chrome inside work tile (per project) */
.wt-mock {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 8% 12%;
}
.mock-phone {
  width: 30%;
  aspect-ratio: 9 / 19;
  background: var(--paper);
  border-radius: 20px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4), inset 0 0 0 4px var(--ink);
  position: relative;
  overflow: hidden;
}
.mock-phone .ph-bar {
  height: 16%;
  background: var(--coral);
}
.mock-phone .ph-img {
  height: 40%;
  background: var(--ink);
  position: relative;
}
.mock-phone .ph-row {
  height: 6%;
  margin: 6%;
  background: rgba(20, 20, 20, 0.1);
  border-radius: 4px;
}
.mock-phone .ph-cta {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12%;
  height: 10%;
  background: var(--coral);
  border-radius: 999px;
}
.wt-mock.style-zestee {
  background: radial-gradient(
      circle at 30% 70%,
      rgba(242, 165, 91, 0.4),
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 227, 138, 0.4),
      transparent 50%
    );
}
.wt-mock.style-zestee .pkg {
  width: 40%;
  aspect-ratio: 3/4;
  background: var(--paper);
  border-radius: 6px;
  box-shadow: 0 30px 50px -16px rgba(0, 0, 0, 0.3);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--type-display);
  font-weight: 700;
  color: var(--coral-deep);
  text-transform: lowercase;
  letter-spacing: -0.04em;
}
.wt-mock.style-zestee .pkg .top {
  font-size: 12px;
  font-family: var(--type-mono);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ash);
}
.wt-mock.style-zestee .pkg .big {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.9;
}

.wt-mock.style-globe .browser {
  width: 80%;
  aspect-ratio: 5/3;
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 30px 60px -16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wt-mock.style-globe .browser .bar {
  height: 18px;
  background: var(--cream);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  gap: 4px;
  padding: 0 8px;
  align-items: center;
}
.wt-mock.style-globe .browser .bar i {
  width: 6px;
  height: 6px;
  background: var(--ash-2);
  border-radius: 50%;
}
.wt-mock.style-globe .browser .content {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wt-mock.style-globe .browser .content > div {
  background: var(--cream);
  border-radius: 4px;
  height: 12px;
}
.wt-mock.style-globe .browser .content > div.tall {
  height: 40%;
  background: linear-gradient(135deg, #5677b5, #c8d8f2);
}
.wt-mock.style-globe .browser .content > div.short {
  width: 50%;
}

.wt-mock.style-lcm .book {
  width: 60%;
  aspect-ratio: 4/5;
  background: var(--paper);
  box-shadow: 0 30px 60px -16px rgba(0, 0, 0, 0.3);
  border-radius: 2px 8px 8px 2px;
  padding: 22px 22px 22px 32px;
  position: relative;
  font-family: var(--type-display);
  text-transform: lowercase;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wt-mock.style-lcm .book::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--hairline-2);
}
.wt-mock.style-lcm .book .label {
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--coral);
  font-weight: 400;
}
.wt-mock.style-lcm .book .big {
  font-size: clamp(20px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 0.95;
}

.wt-mock.style-satori {
  background: radial-gradient(circle at center, var(--cream), var(--cream-2));
}
.wt-mock.style-satori .plate {
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 30px 50px -16px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px var(--hairline);
  display: grid;
  place-items: center;
  font-family: var(--type-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 36px);
  color: var(--coral-deep);
  letter-spacing: -0.04em;
  text-transform: lowercase;
  position: relative;
}
.wt-mock.style-satori .plate::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed var(--hairline-2);
}

.wt-mock.style-vanya .bottle {
  width: 32%;
  aspect-ratio: 4/9;
  background: linear-gradient(180deg, #3a3a3a 0%, #141414 100%);
  border-radius: 8px 8px 14px 14px;
  position: relative;
  box-shadow: 0 40px 60px -20px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wt-mock.style-vanya .bottle::before {
  content: "";
  position: absolute;
  top: -8%;
  width: 30%;
  height: 14%;
  background: var(--ink);
  border-radius: 4px;
}
.wt-mock.style-vanya .bottle .label-strip {
  width: 80%;
  padding: 12px 0;
  border-top: 1px solid var(--coral);
  border-bottom: 1px solid var(--coral);
  text-align: center;
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--coral);
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

/* ============ testimonials ============ */
.testimonials {
  padding: 120px var(--gutter);
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tt-prop {
  position: relative;
  display: grid;
  place-items: center;
  height: 360px;
}
.tt-quote {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.tt-quote::before {
  content: "“";
  font-family: var(--type-display);
  font-size: 1em;
  color: var(--coral);
  display: inline;
  margin-right: 0.08em;
}
.tt-quote em {
  color: var(--coral);
  font-style: normal;
}
.tt-by {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tt-by .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}
.tt-by .meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.tt-by .name {
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 16px;
}
.tt-by .role {
  font-family: var(--type-mono);
  font-size: 11px;
  color: var(--ash);
  letter-spacing: 0.04em;
}
.tt-dots {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
.tt-dots button {
  width: 36px;
  height: 6px;
  border-radius: 3px;
  background: var(--hairline-2);
  transition: background 0.25s, width 0.35s var(--ease-out);
}
.tt-dots button.active {
  background: var(--coral);
  width: 56px;
}

/* coffee cup (testimonials prop) */
.cup {
  position: relative;
  width: 220px;
  height: 220px;
}
.cup .body {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 140px;
  height: 150px;
  background: radial-gradient(circle at 30% 30%, #ffe0c2, #f25b54 70%, #c84439);
  border-radius: 0 0 70px 70px / 0 0 60px 60px;
  box-shadow: 0 20px 40px -10px rgba(217, 72, 64, 0.5),
    inset -8px -10px 14px rgba(0, 0, 0, 0.18),
    inset 8px 10px 14px rgba(255, 255, 255, 0.2);
}
.cup .body::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  width: 130px;
  height: 30px;
  background: radial-gradient(ellipse at center top, #321a18 60%, #4b2624);
  border-radius: 50%;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.5);
}
.cup .handle {
  position: absolute;
  right: 18%;
  bottom: 60px;
  width: 50px;
  height: 60px;
  border: 16px solid #c84439;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
}
.cup .saucer {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 200px;
  height: 24px;
  background: radial-gradient(
    ellipse at center 30%,
    #ffe0c2,
    #f25b54 70%,
    #c84439
  );
  border-radius: 50%;
  box-shadow: 0 10px 18px -4px rgba(217, 72, 64, 0.4);
}
.cup .steam {
  position: absolute;
  left: 50%;
  bottom: 170px;
  transform: translateX(-50%);
  width: 80px;
  height: 100px;
  pointer-events: none;
}
.cup .steam path {
  fill: none;
  stroke: var(--coral);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.7;
  animation: steamRise 3s ease-in-out infinite;
}
.cup .steam path:nth-child(2) {
  animation-delay: 0.7s;
}
.cup .steam path:nth-child(3) {
  animation-delay: 1.3s;
}
@keyframes steamRise {
  0% {
    transform: translateY(20px) translateX(0);
    opacity: 0;
  }
  30% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-20px) translateX(8px);
    opacity: 0;
  }
}

/* ============ pricing ============ */
.pricing {
  padding: 140px var(--gutter) 120px;
  max-width: 1480px;
  margin: 0 auto;
}
.pricing-head {
  margin-bottom: 60px;
  max-width: 760px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: end;
}
.tier {
  position: relative;
  background: var(--paper);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 56px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.5s var(--spring), border-color 0.3s, box-shadow 0.4s;
}
.tier:hover {
  transform: translateY(-6px);
  border-color: var(--coral);
  box-shadow: var(--shadow-clay-1);
}
.tier.popular {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-12px);
}
.tier.popular:hover {
  transform: translateY(-18px);
  border-color: var(--coral);
}
.tier-prop {
  position: absolute;
  top: -52px;
  left: 32px;
  width: 96px;
  height: 96px;
}
.tier .t-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--type-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  background: var(--coral);
  color: var(--paper);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: lowercase;
}
.tier .t-name {
  font-family: var(--type-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  font-size: 28px;
  margin: 0;
}
.tier .t-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 4px;
}
.tier .t-price .num {
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--coral);
}
.tier.popular .t-price .num {
  color: var(--coral-soft);
}
.tier .t-price .unit {
  font-family: var(--type-mono);
  font-size: 12px;
  color: var(--ash);
  letter-spacing: 0.04em;
}
.tier.popular .t-price .unit {
  color: rgba(251, 248, 244, 0.5);
}
.tier .t-desc {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.55;
  margin: 0;
}
.tier.popular .t-desc {
  color: rgba(251, 248, 244, 0.65);
}
.tier .t-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier .t-list li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: start;
  gap: 10px;
}
.tier.popular .t-list li {
  color: var(--paper);
}
.tier .t-list li::before {
  content: "";
  flex: 0 0 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 4px;
  box-shadow: 0 0 0 3px rgba(242, 91, 84, 0.15);
}
.tier .t-cta {
  margin-top: 20px;
  padding: 14px 0;
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-radius: 999px;
  background: var(--cream);
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
.tier:hover .t-cta {
  background: var(--coral);
  color: var(--paper);
}
.tier.popular .t-cta {
  background: var(--coral);
  color: var(--paper);
}
.tier.popular:hover .t-cta {
  background: var(--coral-deep);
}

.pricing-custom {
  margin-top: 32px;
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pricing-custom h4 {
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin: 0;
}
.pricing-custom p {
  font-size: 15px;
  color: var(--ash);
  margin: 6px 0 0;
  max-width: 480px;
}

/* ============ final cta ============ */
.final-cta {
  position: relative;
  padding: 160px var(--gutter) 140px;
  text-align: center;
  background: var(--paper);
  overflow: hidden;
  border-top: 1px solid var(--hairline);
}
.final-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 90vw);
  opacity: 0.06;
  pointer-events: none;
}
.final-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}
.final-title {
  font-family: var(--type-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.045em;
  line-height: 0.92;
  font-size: clamp(54px, 9vw, 144px);
  margin: 0 0 32px;
}
.final-title em {
  color: var(--coral);
  font-style: normal;
}
.final-cta .btn-coral {
  font-size: 18px;
  padding: 22px 32px;
}
.final-row {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--type-mono);
  font-size: 16px;
  flex-wrap: wrap;
}
.final-row .email {
  color: var(--ink);
  border-bottom: 1.5px solid var(--coral);
  padding-bottom: 4px;
  transition: color 0.25s;
}
.final-row .email:hover {
  color: var(--coral);
}

/* speech bubble prop */
.bubble {
  position: relative;
  width: 96px;
  height: 70px;
  background: var(--coral);
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-family: var(--type-display);
  font-weight: 700;
  color: var(--paper);
  font-size: 28px;
  letter-spacing: -0.04em;
  box-shadow: 0 20px 30px -10px rgba(217, 72, 64, 0.5);
  animation: wiggle 3.5s ease-in-out infinite;
}
.bubble::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -8px;
  width: 22px;
  height: 18px;
  background: var(--coral);
  clip-path: polygon(0 0, 100% 0, 30% 100%);
}
@keyframes wiggle {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(6deg) translateY(-6px);
  }
}

/* ============ footer ============ */
.footer {
  background: var(--paper);
  padding: 0 var(--gutter) 32px;
  position: relative;
}
.footer-strip {
  height: 36px;
  background-image: url("../uploads/Pattern-b0cb819e.webp");
  background-size: 72px 72px;
  background-repeat: repeat-x;
  background-position: 0 center;
  opacity: 0.35;
  margin-bottom: 60px;
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  animation: footerMarq 3s linear infinite;
}
@keyframes footerMarq {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 72px center;
  }
}
.footer-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--hairline);
}
.f-wordmark img {
  width: min(360px, 90%);
}
.f-tag {
  font-family: var(--type-body);
  font-size: 15px;
  color: var(--ash);
  margin: 20px 0 0;
  max-width: 360px;
  line-height: 1.55;
}
.f-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.f-label {
  font-family: var(--type-mono);
  font-size: 11px;
  color: var(--coral);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  text-transform: lowercase;
}
.f-col a {
  font-family: var(--type-display);
  font-size: 16px;
  color: var(--ink);
  transition: color 0.2s;
  text-transform: lowercase;
}
.f-col a:hover {
  color: var(--coral);
}
.f-socials {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.f-soc {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  text-transform: lowercase;
  transition: transform 0.35s var(--spring), background 0.25s, color 0.25s,
    box-shadow 0.35s;
  box-shadow: var(--shadow-clay-2);
  position: relative;
}
.f-soc:hover {
  transform: translateY(-4px) rotate(-4deg);
  background: var(--coral);
  color: var(--paper);
  box-shadow: var(--shadow-clay-1);
}
.footer-bottom {
  max-width: 1480px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--type-mono);
  font-size: 11px;
  color: var(--ash);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ persistent floating props (3D layer) ============
   small props scattered between sections so motion feels continuous */
.float-prop {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.fp-pencil {
  width: 200px;
  height: 22px;
  transform: rotate(-12deg);
}

.fp-clip-mini {
  width: 60px;
  height: 90px;
  transform: rotate(28deg);
}

.fp-tile-mini {
  width: 90px;
  height: 90px;
  background-image: url("../uploads/Pattern-b0cb819e.webp");
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 10px 18px rgba(217, 72, 64, 0.35));
  animation: spin3d 24s linear infinite;
}
@keyframes spin3d {
  0% {
    transform: perspective(600px) rotateY(0);
  }
  100% {
    transform: perspective(600px) rotateY(360deg);
  }
}

.fp-card-stack {
  width: 110px;
  height: 70px;
  position: relative;
}
.fp-card-stack span {
  position: absolute;
  inset: 0;
  background: var(--paper);
  border-radius: 6px;
  box-shadow: var(--shadow-clay-2);
}
.fp-card-stack span:nth-child(1) {
  transform: rotate(-6deg) translateY(-2px);
}
.fp-card-stack span:nth-child(2) {
  transform: rotate(0deg);
  background: var(--cream);
}
.fp-card-stack span:nth-child(3) {
  transform: rotate(6deg) translateY(2px);
  background: var(--coral);
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--type-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.fp-card-stack span:nth-child(3)::before {
  content: "i&i";
}

/* ============ mobile hamburger + drawer (always-on, shown via media query) ============ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: background .2s;
}
.nav-burger:hover { background: var(--cream); }
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .3s var(--spring), opacity .2s, width .3s var(--spring);
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(251, 248, 244, .98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline);
  padding: 28px var(--gutter) 36px;
  z-index: 99;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--spring), opacity .3s;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu ul li a {
  display: block;
  font-family: var(--type-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  transition: color .2s, padding-left .25s var(--spring);
}
.mobile-menu ul li a:hover,
.mobile-menu ul li a.is-active { color: var(--coral); padding-left: 8px; }
.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--type-display);
  font-weight: 600;
  font-size: 15px;
  background: var(--coral);
  color: var(--paper);
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  transition: background .25s, transform .25s var(--spring);
  box-shadow: 0 6px 18px -6px rgba(217,72,64,.5);
}
.mobile-menu-cta:hover { background: var(--coral-deep); transform: translateY(-2px); }

/* ============ responsive ============ */

/* -- tablet (≤ 1100px) -- */
@media (max-width: 1100px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .work-tile.t-1,
  .work-tile.t-2,
  .work-tile.t-3,
  .work-tile.t-4,
  .work-tile.t-5,
  .work-tile.t-6 {
    grid-column: span 1;
    margin-top: 0;
  }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .tier.popular  { transform: none; }
  .tier.popular:hover { transform: translateY(-6px); }
  .process-card { flex: 0 0 380px; }
}

/* -- mobile (≤ 760px) -- */
@media (max-width: 760px) {

  /* nav */
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: block; }

  /* hero — hide the blank 3D stage, compress spacing */
  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 0;
    min-height: 0;
    gap: 0;
  }
  .hero-stage { display: none; }
  .hero-headline { font-size: clamp(44px, 12vw, 64px); line-height: 0.95; }
  .hero-tag  { font-size: 16px; margin-top: 20px; }
  .hero-ctas { margin-top: 28px; gap: 14px; }
  .btn-coral { font-size: 15px; padding: 14px 20px; gap: 10px; }
  .btn-coral svg { width: 15px; height: 15px; }
  .hero-marquee { position: relative; bottom: auto; margin-top: 48px; }

  /* section title */
  .section-title { font-size: clamp(36px, 10vw, 56px); }

  /* about */
  .about {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 64px var(--gutter) 56px;
  }
  .about-cards { height: 260px; }
  .about-cards .card { width: 175px; height: 115px; }
  .about-title { font-size: clamp(34px, 9vw, 52px); }
  .about-body  { font-size: 16px; }

  /* process — mobile: same horizontal scroll-jacking as desktop, no empty cream */
  .process { margin-top: 0; margin-bottom: 0; }
  .process-sticky {
    justify-content: flex-start;
    padding-top: calc(var(--nav-h) + 12px);
    padding-bottom: 16px;
  }
  .process-head {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    padding: 8px var(--gutter) 12px;
  }
  /* .process-head .ph-counter { display: none; } */
  .process-track {
    flex: 0.89;
    padding: 20px;
    gap: 20px;
    align-items: stretch;
  }
  .process-card {
    flex: 0 0 calc(100vw - calc(var(--gutter) * 2));
    width: calc(100vw - calc(var(--gutter) * 2));
    height: auto;
    min-height: 0;
    padding: 28px 24px 120px;
    margin-right: 0;
  }
  .process-card .pc-no   { font-size: 56px; }
  .process-card .pc-name { font-size: 26px; }
  .process-card .pc-body { font-size: 14px; line-height: 1.55; }
  .process-card .pc-prop {
    width: 100px;
    height: 100px;
    right: 14px;
    bottom: 14px;
  }

  /* services */
  .services {
    padding: 64px var(--gutter) 56px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { min-height: 260px; padding: 28px 24px; }
  .svc-title { font-size: clamp(24px, 7vw, 36px); }

  /* work */
  .work { padding: 64px var(--gutter) 72px; }
  .work-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .work-tile.t-1,
  .work-tile.t-2,
  .work-tile.t-3,
  .work-tile.t-4,
  .work-tile.t-5,
  .work-tile.t-6 {
    grid-column: span 1;
    margin-top: 0;
  }
  .wt-name { font-size: 20px; }
  .wt-meta { padding: 16px 16px 12px; }

  /* testimonials */
  .testimonials { padding: 64px var(--gutter); }
  .testimonials-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .tt-prop { display: none; }
  .tt-quote { font-size: clamp(22px, 6vw, 32px); }
  .tt-by { margin-top: 24px; }
  .tt-dots { margin-top: 28px; }

  /* pricing */
  .pricing { padding: 64px var(--gutter) 56px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .tier { padding: 44px 24px 24px; }
  .tier.popular { transform: none; }
  .tier.popular:hover { transform: translateY(-6px); }
  .tier .t-price .num { font-size: 44px; }
  .tier-prop { top: -40px; width: 76px; height: 76px; }
  .pricing-custom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }
  .pricing-custom h4 { font-size: 22px; }

  /* final cta */
  .final-cta { padding: 80px var(--gutter) 80px; }
  .final-title { font-size: clamp(36px, 11vw, 64px); margin-bottom: 24px; }
  .final-cta .btn-coral { font-size: 16px; padding: 16px 24px; }
  .final-row { font-size: 13px; gap: 10px; margin-top: 40px; }

  /* footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .f-wordmark { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  /* hide floating decorative props on mobile */
  .float-prop { display: none; }
}

/* -- small mobile (≤ 420px) -- */
@media (max-width: 420px) {
  .hero-headline { font-size: 40px; }
  .section-title { font-size: 34px; }
  .btn-coral { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .f-wordmark { grid-column: auto; }
  .work-grid { gap: 16px; }
  .pricing-custom h4 { font-size: 20px; }
}

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
