/* ========== PlexioCloud — editorial ========== */
:root {
  --paper: #ece7dd;      /* warm paper */
  --paper-2: #e4dece;
  --ink: #1a1712;        /* near-black, warm */
  --ink-soft: #6b6459;
  --line: #cfc7b6;
  --accent: #c8451f;     /* burnt vermillion — human, not tech */
  --max: 1280px;
}

/* Dark theme */
[data-theme="dark"] {
  --paper: #14120f;
  --paper-2: #1b1814;
  --ink: #efe9dd;
  --ink-soft: #a49b8b;
  --line: #33302a;
  --accent: #e8663f;
}
[data-theme="dark"] .nav.scrolled {
  background: rgba(20, 18, 15, 0.85);
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .nav.scrolled .nav-cta { background: var(--accent); color: #fff; }
[data-theme="dark"] body::before { opacity: 0.25; }

* { margin: 0; padding: 0; box-sizing: border-box; }

::selection { background: var(--accent); color: var(--paper); }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: 0;
}

body {
  font-family: "Archivo", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }

.display, .sec-title, .contact-title, h1, h2, h3, .studio-statement {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ---------- Kicker / index labels ---------- */
.kicker {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.idx {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0;
}

/* ---------- Nav (floating pill) ---------- */
.nav {
  position: fixed; top: 22px; left: 50%; transform: translateX(-50%);
  z-index: 50;
  width: min(1180px, calc(100% - 40px));
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 24px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  box-shadow: none;
  transition: top 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
  color: #f6f1e8;
}
.nav.scrolled,
.nav.nav-solid {
  top: 12px;
  background: rgba(246, 241, 232, 0.9);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-color: rgba(26, 23, 18, 0.1);
  box-shadow: 0 12px 34px rgba(26, 23, 18, 0.14);
  color: var(--ink);
}
.nav.nav-solid { top: 22px; }
[data-theme="dark"] .nav.nav-solid {
  background: rgba(20, 18, 15, 0.82);
  border-color: rgba(239, 233, 221, 0.1);
}
.nav.nav-solid .nav-pill a:hover { background: rgba(26, 23, 18, 0.06); }
.nav.nav-solid .nav-pill a.active { background: rgba(26, 23, 18, 0.08); }
.nav.nav-solid .nav-cta { background: var(--ink); color: var(--paper); }
.nav.nav-solid .nav-cta:hover { background: var(--accent); color: #fff; }
[data-theme="dark"] .nav.nav-solid .nav-cta { background: var(--accent); color: #fff; }
.brand { font-family: "Fraunces", serif; font-size: 1.3rem; font-weight: 500; white-space: nowrap; }
.brand sup { font-size: 0.6em; }

.nav-pill { display: flex; align-items: center; gap: 4px; }
.nav-pill a {
  font-size: 0.88rem; font-weight: 500;
  padding: 9px 18px; border-radius: 100px;
  color: currentColor; opacity: 0.75;
  transition: opacity 0.25s, background 0.25s;
}
.nav-pill a:hover { opacity: 1; background: rgba(255, 255, 255, 0.12); }
.nav-pill a.active { opacity: 1; background: rgba(255, 255, 255, 0.14); }
.nav.scrolled .nav-pill a:hover { background: rgba(26, 23, 18, 0.06); }
.nav.scrolled .nav-pill a.active { background: rgba(26, 23, 18, 0.08); }

.nav-cta {
  font-size: 0.88rem; font-weight: 500;
  padding: 10px 22px; border-radius: 100px;
  background: #f6f1e8; color: #14120f;
  transition: background 0.3s, transform 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.nav.scrolled .nav-cta { background: var(--ink); color: var(--paper); }
.nav.scrolled .nav-cta:hover { background: var(--accent); color: #fff; }

/* theme toggle */
.nav-end { display: flex; align-items: center; gap: 10px; }

/* hamburger */
.nav-toggle {
  display: none;
  width: 42px; height: 42px; border-radius: 100px;
  background: transparent; border: 1px solid currentColor;
  cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  color: currentColor;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: currentColor; transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu panel */
.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-links { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mobile-links a {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 8vw, 2.6rem); font-weight: 500;
  color: var(--ink); padding: 8px 16px;
}
.mobile-links a.active { color: var(--accent); }
.mobile-links .mobile-cta {
  margin-top: 18px; font-family: "Archivo", sans-serif; font-size: 1rem;
  background: var(--ink); color: var(--paper);
  padding: 12px 34px; border-radius: 100px;
}
body.menu-open { overflow: hidden; }
.theme-toggle {
  width: 38px; height: 38px; border-radius: 100px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: currentColor; cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.theme-toggle:hover { transform: translateY(-1px); background: rgba(255,255,255,0.18); }
.nav.scrolled .theme-toggle { background: rgba(26,23,18,0.06); border-color: rgba(26,23,18,0.12); }
.theme-toggle .ico-moon { display: none; }
.theme-toggle .ico-sun { display: block; }
[data-theme="dark"] .theme-toggle .ico-moon { display: block; }
[data-theme="dark"] .theme-toggle .ico-sun { display: none; }

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}
.btn:hover { background: var(--accent); transform: translateY(-2px); }
.link-underline { font-size: 0.95rem; border-bottom: 1px solid var(--ink); padding-bottom: 3px; transition: color 0.3s, border-color 0.3s; }
.link-underline:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Hero (full screen, video background) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f6f1e8;
  scroll-snap-align: start;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(0.15) contrast(1.06) brightness(0.95);
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-bg video.show { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 15% 30%, rgba(15,13,10,0.72) 0%, rgba(15,13,10,0.30) 55%, transparent 80%),
    linear-gradient(180deg, rgba(15,13,10,0.55) 0%, rgba(15,13,10,0.20) 40%, rgba(15,13,10,0.80) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(120px, 18vh, 180px) clamp(24px, 6vw, 96px) clamp(90px, 14vh, 130px);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.hero-kicker { margin-bottom: 22px; }
.display {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.98;
  max-width: 15ch;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.display em { font-style: italic; color: #ff9f7e; }
.display em.type-w { border-right: 2px solid transparent; padding-right: 1px; white-space: nowrap; }
.display em.type-w.caret { border-right-color: currentColor; animation: caretBlink 0.8s step-end infinite; }
@keyframes caretBlink { 0%, 100% { border-right-color: currentColor; } 50% { border-right-color: transparent; } }
.hero-quote {
  font-family: "Fraunces", serif; font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.4; color: rgba(246,241,232,0.85);
  margin-top: 34px; padding-left: 20px;
  border-left: 2px solid var(--accent);
  max-width: 32ch;
}
.hero .kicker { color: rgba(246,241,232,0.8); }
.hero-right { padding-bottom: 4px; }
.lede { font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(246,241,232,0.9); line-height: 1.6; max-width: 42ch; margin-bottom: 34px; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* CTA card */
.cta-card {
  background: rgba(20, 18, 14, 0.32);
  border: 1px solid rgba(246, 241, 232, 0.14);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.cta-status {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(246,241,232,0.85); margin-bottom: 18px;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #57d99a; box-shadow: 0 0 0 0 rgba(87,217,154,0.6); animation: ping 1.8s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(87,217,154,0.5); } 70% { box-shadow: 0 0 0 8px rgba(87,217,154,0); } 100% { box-shadow: 0 0 0 0 rgba(87,217,154,0); } }
.cta-card .lede { margin-bottom: 24px; max-width: none; }

.btn-lg { padding: 16px 28px; font-size: 1rem; border-radius: 100px; gap: 10px; }
.btn-lg svg { transition: transform 0.3s ease; }
.btn-lg:hover svg { transform: translateX(4px); }

.btn-play {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 0.95rem; font-weight: 500; color: #f6f1e8;
  transition: color 0.25s;
}
.btn-play:hover { color: #ff9f7e; }
.play-ico {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(246,241,232,0.4); color: #f6f1e8;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.btn-play:hover .play-ico { background: rgba(246,241,232,0.12); border-color: #ff9f7e; transform: scale(1.05); }

.cta-trust { display: flex; align-items: center; gap: 14px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(246,241,232,0.14); }
.avatars { display: flex; }
.avatars img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(20,18,14,0.6); margin-left: -10px; }
.avatars img:first-child { margin-left: 0; }
.cta-trust p { font-size: 0.85rem; color: rgba(246,241,232,0.8); }
.cta-trust strong { color: #f6f1e8; }
.hero .btn { background: #f6f1e8; color: #14120f; }
.hero .btn:hover { background: var(--accent); color: #fff; }
.hero .link-underline { color: #f6f1e8; border-color: rgba(246,241,232,0.6); }
.hero .link-underline:hover { color: #ff9f7e; border-color: #ff9f7e; }

/* phase indicator */
.hero-phases {
  position: absolute; z-index: 2; left: clamp(20px, 5vw, 60px);
  bottom: clamp(30px, 6vh, 56px);
  display: flex; gap: 26px; flex-wrap: wrap;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.hero-phases .phase { color: rgba(246,241,232,0.4); transition: color 0.4s; position: relative; }
.hero-phases .phase.active { color: #f6f1e8; }
.hero-phases .phase.active::before {
  content: ""; position: absolute; left: 0; top: -10px; width: 100%; height: 2px;
  background: var(--accent);
}

/* scroll cue */
.hero-scroll {
  position: absolute; z-index: 2;
  left: 50%; transform: translateX(-50%);
  bottom: clamp(20px, 4vh, 34px);
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(246,241,232,0.75);
  display: flex; align-items: center; gap: 10px;
}
.hero-scroll span { display: inline-block; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

@media (max-width: 860px) {
  .hero-phases { display: none; }
  .display { max-width: 100%; }
}

/* ---------- Ticker ---------- */
.ticker {
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
  position: relative; z-index: 2;
}
.ticker-row { display: flex; align-items: center; gap: 26px; width: max-content; white-space: nowrap; animation: ticker 40s linear infinite; }
.ticker-footer { margin-top: 0; }
.ticker-row span { font-family: "Fraunces", serif; font-size: 1.5rem; }
.ticker-row .sep { color: var(--accent); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Section shells ---------- */
.services, .feature, .work, .studio, .contact {
  width: 100%; margin: 0 auto;
  padding: clamp(80px, 10vh, 140px) clamp(24px, 6vw, 96px);
  position: relative; z-index: 2;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  scroll-snap-align: start;
}

.sec-head { margin-bottom: 50px; }
.sec-title { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.05; margin-top: 16px; max-width: 16ch; }

/* ---------- Services index list ---------- */
.index-list { list-style: none; border-top: 1px solid var(--line); position: relative; }
.row {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr 180px 40px;
  gap: 24px; align-items: center;
  padding: 30px 24px 30px 18px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding-left 0.45s cubic-bezier(0.22,1,0.36,1), color 0.4s ease;
  overflow: hidden;
}
/* accent sweep fill */
.row::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.55s cubic-bezier(0.76,0,0.24,1);
}
.row > * { position: relative; z-index: 1; }
.row:hover { padding-left: 40px; color: var(--paper); }
.row:hover::before { transform: translateY(0); }

.row-num { font-family: "Fraunces", serif; font-style: italic; color: var(--accent); font-size: 1.4rem; transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); }
.row:hover .row-num { transform: translateX(-4px); }
.row-main h3 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 400; letter-spacing: -0.01em; transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); }
.row:hover .row-main h3 { transform: translateX(6px); }
.row-main p { color: var(--ink-soft); margin-top: 8px; max-width: 52ch; font-size: 1rem; transition: color 0.4s ease, opacity 0.4s ease; }
.row:hover .row-main p { color: rgba(246,241,232,0.72); }
.row-tag { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); text-align: right; transition: color 0.4s ease; }
.row:hover .row-tag { color: rgba(246,241,232,0.6); }
.row-arrow { opacity: 0; transform: translate(-8px, 8px) rotate(-8deg); transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1); justify-self: end; }
.row:hover .row-arrow { opacity: 1; transform: translate(0,0) rotate(0); color: var(--accent); }

/* floating image preview follows cursor */
.row-preview {
  position: fixed; top: 0; left: 0; z-index: 60;
  width: clamp(180px, 20vw, 280px); aspect-ratio: 4 / 3;
  border-radius: 12px; overflow: hidden;
  pointer-events: none;
  opacity: 0; transform: translate(-50%, -50%) scale(0.85) rotate(-4deg);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 24px 60px -18px rgba(0,0,0,0.5);
  will-change: transform, opacity;
}
.row-preview.show { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-4deg); }
.row-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (hover: none) { .row-preview { width: 120px; border-radius: 10px; } }

/* ---------- Feature (Applied AI) ---------- */
.feature { display: block; }
.kicker-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); margin-right: 10px; vertical-align: middle;
  animation: kdot 2.4s ease-in-out infinite;
}
@keyframes kdot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.7); } }

.feature-head { margin-bottom: clamp(40px, 7vh, 90px); }
.feature-title {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 5rem); line-height: 0.98; letter-spacing: -0.02em;
  margin-top: 18px;
}
.feature-title em { font-style: italic; color: var(--accent); }

.feature-body {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px); align-items: end;
}
.feature-media {
  position: relative; border-radius: 16px; overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.feature-media img {
  width: 100%; height: clamp(340px, 52vh, 620px); object-fit: cover;
  filter: grayscale(0.35) contrast(1.05);
  transform: scale(1.04); transition: transform 1.2s cubic-bezier(0.22,1,0.36,1), filter 0.8s ease;
}
.feature-media video {
  width: 100%; height: clamp(340px, 52vh, 620px); object-fit: cover; display: block;
  filter: grayscale(0.3) contrast(1.05);
  transform: scale(1.04); transition: transform 1.2s cubic-bezier(0.22,1,0.36,1), filter 0.8s ease;
}
.feature-media:hover img,
.feature-media:hover video { transform: scale(1); filter: grayscale(0); }
.feature-media figcaption {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px; border-radius: 100px;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(8px);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.01em;
  border: 1px solid var(--line);
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #37b24d;
  box-shadow: 0 0 0 0 rgba(55,178,77,0.5); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(55,178,77,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(55,178,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(55,178,77,0); }
}
.feature-copy { color: var(--ink-soft); font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.65; margin: 0 0 34px; max-width: 42ch; }
.facts { list-style: none; border-top: 1px solid var(--line); }
.facts li {
  display: flex; align-items: center; gap: 20px; position: relative;
  padding: 18px 8px; border-bottom: 1px solid var(--line);
  cursor: default; transition: padding-left 0.4s cubic-bezier(0.22,1,0.36,1), color 0.35s ease;
}
.facts-num { font-family: "Fraunces", serif; font-style: italic; color: var(--accent); font-size: 1.05rem; flex-shrink: 0; }
.facts-txt { font-size: clamp(1rem, 1.4vw, 1.2rem); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); }
.facts-line {
  margin-left: auto; width: 0; height: 1px; background: var(--accent);
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}
.facts li:hover { padding-left: 18px; }
.facts li:hover .facts-txt { transform: translateX(4px); }
.facts li:hover .facts-line { width: clamp(24px, 6vw, 70px); }

/* ---------- Work (awwwards) ---------- */
.work-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: clamp(36px, 6vh, 70px);
}
.work-head .sec-title { margin-top: 14px; }
.work-count {
  font-family: "Fraunces", serif; font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  line-height: 1.25; text-align: right; flex-shrink: 0;
}
.work-count span { display: block; font-family: "Archivo", sans-serif; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }

.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.6vw, 40px); }
.work-card {
  position: relative; display: block; padding: 0; border: 0; background: none;
  border-radius: 16px; text-align: left; cursor: pointer; color: var(--paper);
  perspective: 1600px; font: inherit; -webkit-tap-highlight-color: transparent;
}
.work-card.is-feature, .work-card.is-wide { grid-column: 1 / -1; }

.work-inner {
  position: relative; width: 100%;
  height: clamp(300px, 40vw, 440px);
  transition: transform 0.8s cubic-bezier(0.7,0,0.2,1);
  transform-style: preserve-3d;
}
.work-card.is-feature .work-inner, .work-card.is-wide .work-inner { height: clamp(360px, 52vw, 600px); }
.work-card.flipped .work-inner { transform: rotateY(180deg); }

.work-front, .work-back {
  position: absolute; inset: 0; border-radius: 16px; overflow: hidden;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.work-back {
  transform: rotateY(180deg);
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(22px, 2.6vw, 40px);
  color: var(--paper);
}

.work-shot { width: 100%; height: 100%; overflow: hidden; border-radius: 16px; }
.work-card img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  filter: grayscale(0.28) brightness(0.92);
  transform: scale(1.02);
  transition: transform 0.9s cubic-bezier(0.22,1,0.36,1), filter 0.7s ease;
}
.work-front::after {
  content: ""; position: absolute; inset: 0; z-index: 1; border-radius: 16px;
  background: linear-gradient(to top, rgba(10,9,7,0.82) 0%, rgba(10,9,7,0.25) 42%, rgba(10,9,7,0) 68%);
  opacity: 0.85; transition: opacity 0.5s ease; pointer-events: none;
}
.work-card:hover .work-front img { transform: scale(1.06); filter: grayscale(0) brightness(0.95); }
.work-card:hover .work-front::after { opacity: 1; }
.work-idx {
  position: absolute; top: 18px; left: 20px; z-index: 2;
  font-family: "Fraunces", serif; font-style: italic; font-size: 1.15rem; color: #fff;
}
.work-front .work-idx { mix-blend-mode: difference; }
.work-back .work-idx { color: var(--accent); position: static; }

.work-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(20px, 2.5vw, 34px);
  display: flex; flex-direction: column; gap: 18px;
}
.work-meta-main h3 {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2.4rem); line-height: 1.05; letter-spacing: -0.01em; color: #fff;
}
.work-meta-main p {
  color: rgba(255,255,255,0.78); font-size: 0.98rem; line-height: 1.5;
  margin-top: 8px; max-width: 46ch;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease, margin-top 0.5s ease;
}
.work-card:hover .work-meta-main p { max-height: 90px; opacity: 1; }
.work-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.work-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.work-tags em {
  font-style: normal; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; padding: 6px 12px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.35);
}
.work-flip {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  font-size: 0.85rem; font-weight: 500; color: #fff;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.work-flip svg { transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.work-card:hover .work-flip { opacity: 1; transform: translateX(0); }
.work-card:hover .work-flip svg { transform: rotate(-40deg); }

/* Work card back face */
.work-back-body h3 {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem); line-height: 1.05; letter-spacing: -0.01em;
  margin: 14px 0 12px;
}
.work-back-body > p {
  color: var(--ink-soft); font-size: clamp(0.92rem, 1.1vw, 1.02rem); line-height: 1.55;
  max-width: 52ch; margin-bottom: clamp(18px, 2.4vw, 30px);
}
.work-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 26px); border-top: 1px solid var(--line); padding-top: 22px;
}
.work-stats div { display: flex; flex-direction: column; gap: 6px; }
.work-stats b {
  font-family: "Fraunces", serif; font-weight: 400; font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem); color: var(--accent); line-height: 1;
}
.work-stats span { font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.work-back .work-tags em { color: var(--paper); border-color: var(--line); }



/* ---------- Studio ---------- */
.studio { text-align: left; }
.studio-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.studio-since { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.studio-since b { font-family: "Fraunces", serif; font-style: italic; font-weight: 400; color: var(--accent); text-transform: none; letter-spacing: 0; font-size: 1.05rem; }
.studio-statement { font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.28; max-width: 26ch; margin: 26px 0 clamp(50px, 8vh, 90px); }
.studio-statement em { font-style: italic; color: var(--accent); }
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stat {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: clamp(28px, 4vh, 46px) clamp(18px, 2vw, 30px) clamp(24px, 3vh, 36px);
  border-right: 1px solid var(--line);
  transition: background 0.4s ease;
}
.stat:last-child { border-right: 0; }
.stat::before {
  content: ""; position: absolute; top: -1px; left: 0; height: 2px; width: 0;
  background: var(--accent); transition: width 0.55s cubic-bezier(0.22,1,0.36,1);
}
.stat:hover::before { width: 100%; }
.stat:hover { background: var(--paper-2); }
.stat-idx { font-family: "Fraunces", serif; font-style: italic; font-size: 0.9rem; color: var(--ink-soft); }
.stat-num {
  font-family: "Fraunces", serif; font-weight: 400; font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95; letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.stat-label { color: var(--ink-soft); font-size: 0.88rem; }
.numbers b { font-family: "Fraunces", serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; display: block; }
.numbers span { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Contact / finale ---------- */
.contact {
  position: relative; overflow: hidden;
  text-align: left;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  border-top: 1px solid var(--line);
}
.contact-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; display: block; opacity: 0.9;
}
.contact-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: none; margin: 0 auto;
  padding: clamp(70px, 12vh, 130px) clamp(24px, 6vw, 96px);
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(36px, 6vw, 90px); align-items: center;
}
.contact-main { min-width: 0; }
.contact-title {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6.4rem); line-height: 0.95; letter-spacing: -0.025em;
  margin: 18px 0 40px;
}
.contact-title em { font-style: italic; color: var(--accent); }

.mail {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Fraunces", serif; font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem); color: var(--ink);
  position: relative; padding-bottom: 4px;
}
.mail-text { background-image: linear-gradient(var(--accent), var(--accent)); background-size: 0% 1.5px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size 0.5s cubic-bezier(0.22,1,0.36,1); }
.mail svg { color: var(--accent); opacity: 0; transform: translate(-6px, 6px); transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1); }
.mail:hover { color: var(--accent); }
.mail:hover .mail-text { background-size: 100% 1.5px; }
.mail:hover svg { opacity: 1; transform: translate(0, 0); }

.contact-form { display: flex; gap: 14px; margin-top: clamp(34px, 6vh, 64px); max-width: 540px; align-items: stretch; }
.field { position: relative; flex: 1; }
.field input {
  width: 100%; padding: 20px 18px 14px; background: color-mix(in srgb, var(--paper) 70%, transparent);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 12px;
  font-size: 1rem; color: var(--ink); font-family: inherit;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.field input:focus { outline: none; border-color: var(--accent); }
.field label {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--ink-soft); font-size: 1rem; pointer-events: none;
  transition: top 0.25s ease, font-size 0.25s ease, color 0.25s ease;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: 13px; transform: none; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--accent);
}
.contact-form .btn-lg { flex-shrink: 0; }

/* Contact FOMO / availability */
.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.avail {
  border: 1px solid var(--line); border-radius: 18px;
  background: color-mix(in srgb, var(--paper) 72%, transparent);
  backdrop-filter: blur(10px);
  padding: clamp(24px, 2.4vw, 34px);
  position: relative; overflow: hidden;
}
.avail::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--accent);
}
.avail-status {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft);
}
.avail-big {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem); line-height: 1.05; letter-spacing: -0.01em;
  margin: 18px 0 22px;
}
.avail-big b { font-style: normal; }
.avail-big em { font-style: italic; color: var(--accent); }
.avail-meter { display: flex; gap: 7px; margin-bottom: 20px; }
.avail-meter span { height: 8px; flex: 1; border-radius: 100px; }
.avail-meter .on { background: var(--accent); }
.avail-meter .off { background: var(--line); }
.avail-note { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }
.avail-note b { color: var(--ink); font-weight: 600; }
.avail-tick { font-size: 0.8rem; color: var(--ink-soft); text-align: right; padding-right: 4px; }
.avail-tick b { color: var(--accent); font-family: "Fraunces", serif; font-style: italic; font-weight: 400; }

.contact-foot {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  margin-top: clamp(46px, 8vh, 90px); padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 0.85rem; color: var(--ink-soft);
}


/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line); width: 100%; margin: 0 auto;
  padding: clamp(50px, 8vh, 96px) clamp(24px, 6vw, 96px) 30px;
  position: relative; z-index: 2;
  background: var(--paper);
  scroll-snap-align: end;
}
.footer-hero {
  display: block;
  padding-bottom: clamp(30px, 5vh, 60px);
}
.footer-word {
  position: relative;
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(3.4rem, 17vw, 15rem); line-height: 0.86; letter-spacing: -0.04em;
  white-space: normal; overflow-wrap: anywhere; user-select: none;
}
.footer-word sup { font-size: 0.22em; vertical-align: super; }
.footer-word-base,
.footer-word-fill {
  display: block; grid-area: 1 / 1;
}
.footer-word-base {
  color: color-mix(in srgb, var(--ink) 30%, var(--paper));
  -webkit-text-fill-color: color-mix(in srgb, var(--ink) 30%, var(--paper));
  -webkit-text-stroke: 1px color-mix(in srgb, var(--ink) 45%, var(--paper));
  text-stroke: 1px color-mix(in srgb, var(--ink) 45%, var(--paper));
}
.footer-word-fill {
  position: absolute; inset: 0;
  color: var(--accent);
  -webkit-mask-image: radial-gradient(circle var(--spot, 170px) at var(--mx, -999px) var(--my, -999px), #000 0%, #000 42%, transparent 78%);
  mask-image: radial-gradient(circle var(--spot, 170px) at var(--mx, -999px) var(--my, -999px), #000 0%, #000 42%, transparent 78%);
  transition: opacity 0.4s ease;
}
.footer-line {
  margin-top: clamp(20px, 3vh, 34px); color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}
.footer-line em { font-style: italic; font-family: "Fraunces", serif; color: var(--accent); }

.footer-bar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px;
  margin-top: clamp(20px, 3vh, 30px);
  padding-top: 26px; border-top: 1px solid var(--line);
  font-size: 0.85rem; color: var(--ink-soft);
}
.footer-meta { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.footer-meta span:last-child { font-family: "Fraunces", serif; font-style: italic; }
.footer-social { display: flex; gap: 22px; }
.footer-social a {
  color: var(--ink); position: relative; padding-bottom: 2px;
  background-image: linear-gradient(var(--accent), var(--accent)); background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: color 0.3s ease, background-size 0.4s cubic-bezier(0.22,1,0.36,1);
}
.footer-social a:hover { color: var(--accent); background-size: 100% 1px; }

/* ---------- Reveal ---------- */
.up { opacity: 0; transform: translateY(30px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.up.in { opacity: 1; transform: none; }

/* ---------- Split-line reveal (headings) ---------- */
[data-split] .line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
[data-split] .line-in {
  display: block; transform: translateY(112%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}
[data-split].in .line-in { transform: translateY(0); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center; gap: 0;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}
.preloader.done { transform: translateY(-100%); pointer-events: none; }
.preloader-word {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(2rem, 6vw, 4rem); letter-spacing: -0.02em;
  opacity: 0; transform: translateY(16px);
  animation: preIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
}
.preloader-word sup { font-size: 0.4em; color: var(--ink-soft); }
.preloader-count {
  position: absolute; right: clamp(20px, 5vw, 60px); bottom: clamp(18px, 4vh, 44px);
  font-family: "Fraunces", serif; font-size: clamp(1.4rem, 3vw, 2.4rem); color: var(--ink-soft);
}
@keyframes preIn { to { opacity: 1; transform: none; } }
body.loading { overflow: hidden; height: 100vh; }

/* ---------- Custom cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 180; pointer-events: none; }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  transform: translate(-50%, -50%); pointer-events: none;
}
.cursor-dot { width: 7px; height: 7px; background: var(--accent); transition: width 0.2s, height 0.2s, opacity 0.2s; }
.cursor-ring {
  width: 34px; height: 34px; border: 1.5px solid var(--ink-soft);
  transition: width 0.25s cubic-bezier(0.22,1,0.36,1), height 0.25s cubic-bezier(0.22,1,0.36,1), border-color 0.25s, background 0.25s, opacity 0.2s;
}
.cursor.is-hover .cursor-ring { width: 56px; height: 56px; border-color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, transparent); }
.cursor.is-hover .cursor-dot { opacity: 0; }
.cursor.is-down .cursor-ring { width: 26px; height: 26px; }
@media (hover: none) { .cursor { display: none; } }
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, .work-card, .row, .field, label { cursor: none; }
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 190;
  background: var(--accent); transform: scaleX(0); transform-origin: 0 50%;
}

/* facts line draws in on reveal */
.facts-line { transform: scaleX(0); transform-origin: left; transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); transition-delay: 0.2s; }
.feature-body.in .facts-line { transform: scaleX(1); }

/* work card 3D tilt */
.work-card { transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform 0.3s ease; will-change: transform; }
.work-card.tilting { transition: transform 0.08s linear; }

@media (prefers-reduced-motion: reduce) {
  [data-split] .line-in { transform: none !important; }
  .preloader { display: none; }
  .work-card { transform: none !important; }
  body.loading { overflow: auto; height: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-pill { display: none; }
  .nav-toggle { display: flex; }
  .nav-end .nav-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; align-items: start; gap: 26px; }
  .hero-right { padding-top: 6px; }
  .row { grid-template-columns: 44px 1fr; padding-left: 12px; padding-right: 12px; }
  .row:hover { padding-left: 20px; }
  .row-tag, .row-arrow { display: none; }
  .feature-body { grid-template-columns: 1fr; align-items: stretch; }
  .work-head { flex-direction: column; align-items: flex-start; }
  .work-count { text-align: left; }
  .work-grid { grid-template-columns: 1fr; }
  .work-meta-main p { max-height: 90px; opacity: 1; margin-top: 8px; }
  .work-flip { opacity: 1; transform: none; }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-form { flex-direction: column; }
  .contact-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-meta { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-social { flex-wrap: wrap; }

  /* Tighten vertical rhythm on mobile — no forced full-height sections */
  html { scroll-snap-type: none; }
  .services, .feature, .work, .studio, .contact, .stack {
    min-height: auto; justify-content: flex-start; scroll-snap-align: none;
    padding-top: clamp(56px, 9vh, 84px); padding-bottom: clamp(56px, 9vh, 84px);
  }
  .studio-statement { margin-bottom: clamp(34px, 5vh, 48px); }
  .contact-title { margin: 14px 0 28px; }
  .contact-inner { grid-template-columns: 1fr; gap: clamp(30px, 6vh, 46px); }
  .avail-tick { text-align: left; }
}

/* ================= Contact page ================= */
.cpage { padding-top: clamp(96px, 14vh, 150px); }

.chero {
  padding: clamp(30px, 6vh, 70px) clamp(24px, 6vw, 96px) clamp(20px, 5vh, 50px);
  max-width: var(--max);
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(20px, 4vw, 60px);
  align-items: center;
}
.chero-copy { min-width: 0; }
.chero-title {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6.4rem); line-height: 0.94; letter-spacing: -0.03em;
  margin: 16px 0 22px;
}
.chero-title em { font-style: italic; color: var(--accent); }
.chero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.4rem); color: var(--ink-soft);
  max-width: 560px; line-height: 1.5;
}
.chero-sub b { color: var(--ink); font-weight: 600; }
.chero-scroll {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.chero-scroll span { display: inline-block; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

.cform-wrap {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 90px);
  padding: clamp(30px, 6vh, 70px) clamp(24px, 6vw, 96px) clamp(70px, 10vh, 130px);
  align-items: start;
}

/* left column */
.cform-side { position: sticky; top: 120px; }
.cform-side .kicker { font-size: 0.9rem; }
.csteps { list-style: none; margin: 24px 0 40px; display: flex; flex-direction: column; gap: 26px; }
.csteps li { display: flex; gap: 18px; align-items: baseline; font-size: 1.28rem; line-height: 1.45; color: var(--ink); }
.cstep-num { font-family: "Fraunces", serif; font-style: italic; color: var(--accent); font-size: 1.5rem; min-width: 34px; }
.cside-mail { border-top: 1px solid var(--line); padding-top: 26px; }

/* ---- Antigravity particle background ---- */
.ag-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.cpage, .cpage + .footer { position: relative; z-index: 1; }
.chero, .cform-wrap { position: relative; z-index: 1; }

/* ---- Cartoon scene ---- */
.chero-art { justify-self: center; width: 100%; max-width: 420px; }
.toon { width: 100%; height: auto; display: block; overflow: visible; }
.toon-blob { fill: color-mix(in srgb, var(--accent) 12%, transparent); }

/* character strokes */
.ch-body { fill: var(--accent); }
.ch-head { fill: var(--paper-2); stroke: var(--ink); stroke-width: 3; }
.ch-eyes circle { fill: var(--ink); transform-box: fill-box; transform-origin: center;
  animation: toonBlink 4.5s ease-in-out infinite; }
.ch-cheek { fill: color-mix(in srgb, var(--accent) 45%, transparent); }
.ch-smile { fill: none; stroke: var(--ink); stroke-width: 3; stroke-linecap: round; }
.ch-arm-line { fill: none; stroke: var(--ink); stroke-width: 5; stroke-linecap: round; }
.ch-hand { fill: var(--paper-2); stroke: var(--ink); stroke-width: 3; }

/* waving arm */
.ch-arm { transform-box: fill-box; transform-origin: 222px 268px; transform-origin: bottom left;
  animation: toonWave 1.6s ease-in-out infinite; }
@keyframes toonWave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-16deg); }
  60% { transform: rotate(10deg); }
}
@keyframes toonBlink {
  0%, 92%, 100% { transform: scaleY(1); }
  96% { transform: scaleY(0.1); }
}

/* character gentle bob */
.toon-char { transform-box: fill-box; transform-origin: center;
  animation: toonFloat 3.4s ease-in-out infinite; }
@keyframes toonFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* breathing shadow (counter to float) */
.toon-shadow { fill: color-mix(in srgb, var(--ink) 16%, transparent);
  transform-box: fill-box; transform-origin: center;
  animation: toonShadow 3.4s ease-in-out infinite; }
@keyframes toonShadow {
  0%,100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(0.82); opacity: 0.32; }
}

/* antenna */
.ch-antenna { transform-box: fill-box; transform-origin: left bottom;
  animation: toonAntenna 2.2s ease-in-out infinite; }
.ch-antenna-dot { fill: var(--accent); transform-box: fill-box; transform-origin: center;
  animation: toonPulse 2.2s ease-in-out infinite; }
@keyframes toonAntenna { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(9deg); } }
@keyframes toonPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.25); } }

/* speech bubble */
.toon-bubble { transform-box: fill-box; transform-origin: bottom left;
  animation: toonBubble 6s ease-in-out infinite; }
.tb-shape { fill: var(--ink); }
.tb-text { fill: var(--paper); font-family: "Fraunces", serif; font-style: italic;
  font-size: 26px; text-anchor: middle; }
@keyframes toonBubble {
  0%, 8% { opacity: 0; transform: scale(0.4) translateY(6px); }
  16%, 40% { opacity: 1; transform: scale(1) translateY(0); }
  48%, 100% { opacity: 0; transform: scale(0.6) translateY(4px); }
}

/* sparkles + heart */
.toon-spark { fill: var(--accent); }
.toon-spark.s1 { transform: translate(96px, 150px); animation: toonPop 2.6s ease-in-out infinite; }
.toon-spark.s2 { transform: translate(276px, 132px); animation: toonPop 2.6s ease-in-out 0.9s infinite; }
.toon-heart { fill: var(--accent); transform: translate(250px, 158px) scale(1.4);
  animation: toonPop 3s ease-in-out 0.4s infinite; }
@keyframes toonPop {
  0%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ch-arm, .ch-eyes circle, .toon-char,
  .toon-spark, .toon-heart, .toon-shadow, .ch-antenna, .ch-antenna-dot,
  .toon-bubble, .toon-train, .tr-smoke, .tr-bob, .tr-spoke,
  .cloud.c1, .cloud.c2 { animation: none; }
  .toon-spark, .toon-heart { opacity: 0.9; }
  .toon-bubble { opacity: 1; }
  .toon-train { transform: translateX(150px); }
}

/* cursor parallax (set by JS) */
.toon-parallax { transform: translate(calc(var(--px, 0) * 10px), calc(var(--py, 0) * 8px));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.chero-art:hover .ch-arm { animation-duration: 0.7s; }

/* ---- railway track + engine (self-contained in the scene) ---- */
.toon { overflow: hidden; }
.tk-bed  { stroke: color-mix(in srgb, var(--paper-2) 84%, var(--ink)); stroke-width: 15; stroke-linecap: round; }
.tk-tie  { stroke: color-mix(in srgb, var(--ink-soft) 65%, var(--paper)); stroke-width: 15; stroke-dasharray: 3 9; }
.tk-rail { stroke: var(--ink); stroke-width: 3; }

/* clouds */
.cl-body { fill: color-mix(in srgb, var(--paper) 45%, #ffffff);
  stroke: color-mix(in srgb, var(--ink) 22%, var(--paper)); stroke-width: 2; paint-order: stroke; }
.cl-shadow { fill: color-mix(in srgb, var(--ink) 8%, transparent); transform: translate(0, 3px); }
[data-theme="dark"] .cl-body { fill: color-mix(in srgb, var(--paper-2) 74%, var(--ink-soft));
  stroke: color-mix(in srgb, var(--ink) 40%, var(--paper-2)); }
[data-theme="dark"] .cl-shadow { fill: color-mix(in srgb, #000 22%, transparent); }
.cloud.c1 { animation: drift1 16s ease-in-out infinite; }
.cloud.c2 { animation: drift2 20s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-18px); } }
@keyframes drift2 { 0%,100% { transform: translateX(0); } 50% { transform: translateX(16px); } }

/* tunnels / hills at both ends */
.hill-back { fill: color-mix(in srgb, var(--accent) 12%, var(--paper-2)); }
.hill { fill: color-mix(in srgb, var(--accent) 24%, var(--paper-2)); }
.hill-tuft { fill: color-mix(in srgb, var(--accent) 40%, var(--paper-2)); }
.tunnel-mouth { fill: color-mix(in srgb, var(--ink) 88%, var(--accent)); }
.tunnel-rim { fill: none; stroke: var(--ink); stroke-width: 3; stroke-linejoin: round; }

/* train motion */
.toon-train { animation: trainRun 8s linear infinite; }
@keyframes trainRun {
  0%   { transform: translateX(-96px); }
  100% { transform: translateX(376px); }
}
.tr-bob { transform-box: fill-box; transform-origin: center;
  animation: trainBob 0.5s ease-in-out infinite; }
@keyframes trainBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-1.4px); } }
.tr-spoke { stroke: var(--ink-soft); stroke-width: 1.6; stroke-linecap: round;
  transform-box: fill-box; transform-origin: center; animation: spokeSpin 0.7s linear infinite; }
@keyframes spokeSpin { to { transform: rotate(360deg); } }

/* envelope cargo */
.fe-body { fill: var(--paper); stroke: var(--ink); stroke-width: 2.2; }
.fe-flap { fill: none; stroke: var(--ink); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.fe-dot  { fill: var(--accent); }
[data-theme="dark"] .fe-body { fill: var(--paper-2); }

/* train parts */
.tr-body { fill: var(--accent); stroke: var(--ink); stroke-width: 2.4; }
.tr-cab  { fill: var(--paper-2); stroke: var(--ink); stroke-width: 2.4; }
.tr-chimney { fill: var(--ink); }
.tr-flat { fill: var(--ink-soft); stroke: var(--ink); stroke-width: 2; }
.tr-wheel { fill: var(--paper-2); stroke: var(--ink); stroke-width: 2.6; }
.tr-coupling { stroke: var(--ink); stroke-width: 2.6; stroke-linecap: round; }
.tr-smoke { fill: color-mix(in srgb, var(--ink-soft) 55%, var(--paper)); opacity: 0;
  transform-box: fill-box; transform-origin: center; }
.tr-smoke.p1 { animation: trSmoke 1.6s ease-out infinite; }
.tr-smoke.p2 { animation: trSmoke 1.6s ease-out 0.55s infinite; }
.tr-smoke.p3 { animation: trSmoke 1.6s ease-out 1.1s infinite; }
@keyframes trSmoke {
  0%   { opacity: 0.7; transform: translate(0, 0) scale(0.5); }
  100% { opacity: 0; transform: translate(5px, -18px) scale(1.5); }
}

/* CTA "receives" the envelope */
.btn.receiving { animation: btnReceive 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes btnReceive {
  0% { transform: scale(1); }
  40% { transform: scale(0.94); }
  100% { transform: scale(1); }
}

@media (max-width: 860px) {
  .chero { grid-template-columns: 1fr; }
  .chero-art { max-width: 300px; margin-top: 10px; order: -1; }
}


/* form */
.cform { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; }
.field-full { grid-column: 1 / -1; }
.cform .field { margin: 0; }
.field textarea {
  width: 100%; resize: vertical; min-height: 130px; font: inherit; font-size: 1rem; color: var(--ink);
  background: color-mix(in srgb, var(--paper) 70%, transparent);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 22px 18px 14px; outline: none; transition: border-color 0.3s ease, background 0.3s ease;
}
.field textarea:focus { border-color: var(--accent); }
.field-area label { top: 24px; transform: none; }
.field-area textarea:focus + label,
.field-area textarea:not(:placeholder-shown) + label {
  top: 13px; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--accent);
}
.opt { color: var(--ink-soft); font-size: 0.85em; }

/* chips */
.cchips { border: 0; padding: 0; margin: 4px 0; }
.cchips legend {
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 14px; padding: 0;
}
.chip { display: inline-flex; margin: 0 10px 10px 0; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-block; padding: 9px 18px; border: 1px solid var(--line); border-radius: 100px;
  font-size: 0.92rem; color: var(--ink-soft); transition: all 0.25s ease;
}
.chip:hover span { border-color: var(--ink-soft); color: var(--ink); }
.chip input:checked + span { background: var(--accent); border-color: var(--accent); color: #fff; }
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.cform-foot { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 8px; }
.cform-status { font-size: 0.9rem; color: var(--ink-soft); }
.cform-status.ok { color: var(--accent); font-family: "Fraunces", serif; font-style: italic; font-size: 1rem; }

@media (max-width: 860px) {
  .cform-wrap { grid-template-columns: 1fr; gap: 44px; }
  .cform-side { position: static; }
  .cform { grid-template-columns: 1fr; }
}

/* ========== About page ========== */
.apage { padding-top: clamp(104px, 14vh, 150px); }
.apage > section {
  max-width: var(--max); margin: 0 auto;
  padding-left: clamp(24px, 6vw, 96px); padding-right: clamp(24px, 6vw, 96px);
}

/* hero: headline + intro side by side */
.ahero {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(24px, 5vw, 70px);
  align-items: end; padding-bottom: clamp(30px, 5vh, 54px);
  border-bottom: 1px solid var(--line);
}
.ahero-title {
  font-family: "Fraunces", serif; font-weight: 400; letter-spacing: -0.03em; line-height: 0.95;
  font-size: clamp(2.9rem, 7.5vw, 6.2rem); margin: 14px 0 0;
}
.ahero-title em { font-style: italic; color: var(--accent); }
.ahero-moto { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--ink-soft); line-height: 1.5; margin: 0; }
.ahero-meta { list-style: none; margin: 22px 0 0; display: grid; gap: 10px; }
.ahero-meta li {
  display: flex; justify-content: space-between; gap: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
  font-size: 0.92rem; color: var(--ink);
}
.ahero-meta b { font-weight: 500; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; align-self: center; }

/* numbers strip */
.astrip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-top: clamp(30px, 5vh, 54px); padding-bottom: clamp(40px, 6vh, 70px);
}
.astrip .stat { padding: 6px 24px; border-left: 1px solid var(--line); }
.astrip .stat:first-child { border-left: 0; padding-left: 0; }
.astrip .stat-num {
  display: block; font-family: "Fraunces", serif; font-weight: 400; letter-spacing: -0.02em;
  font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1; color: var(--ink);
}
.astrip .stat-label { display: block; margin-top: 8px; font-size: 0.88rem; color: var(--ink-soft); }

/* mission / vision */
.mv-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 28px);
  padding-bottom: clamp(44px, 7vh, 84px);
}
.mv-card {
  border: 1px solid var(--line); border-radius: 18px; padding: clamp(24px, 2.6vw, 38px);
  background: color-mix(in srgb, var(--paper) 55%, transparent);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.mv-card:hover { border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); transform: translateY(-3px); }
.mv-tag { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.mv-card h2 {
  font-family: "Fraunces", serif; font-weight: 400; letter-spacing: -0.01em;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem); margin: 14px 0 12px; line-height: 1.05;
}
.mv-card p { color: var(--ink-soft); line-height: 1.55; margin: 0; }

/* values */
.values { padding-bottom: clamp(44px, 7vh, 84px); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 30px); margin-top: 30px;
}
.value-card { border-top: 2px solid var(--ink); padding-top: 18px; }
.value-num { font-family: "Fraunces", serif; font-style: italic; color: var(--accent); font-size: 1.3rem; }
.value-card h3 { font-size: 1.2rem; font-weight: 500; margin: 10px 0 8px; }
.value-card p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.5; margin: 0; }

/* why choose us: sticky heading + list */
.why {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 5vw, 70px);
  align-items: start; padding-bottom: clamp(44px, 7vh, 84px);
}
.why-head { position: sticky; top: 120px; }
.why-list { list-style: none; margin: 0; display: grid; gap: 0; }
.why-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: baseline;
  padding: 22px 0; border-top: 1px solid var(--line);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem); color: var(--ink-soft);
}
.why-list li:last-child { border-bottom: 1px solid var(--line); }
.why-list b { font-weight: 600; color: var(--ink); }
.why-i { font-family: "Fraunces", serif; font-style: italic; color: var(--accent); font-size: 1.05rem; }

/* powered by */
.powered { padding-bottom: clamp(30px, 5vh, 60px); text-align: center; }
.powered .sec-head { align-items: center; }
.powered-note { margin: 12px auto 0; color: var(--ink-soft); font-size: 0.9rem; max-width: 52ch; }

/* BounceCards (vanilla) */
.bounce-cards {
  position: relative; display: flex; justify-content: center; align-items: center;
  width: var(--w, 500px); height: var(--h, 220px); max-width: 100%;
  margin: clamp(20px, 4vh, 44px) auto;
}
.bcard {
  position: absolute; width: clamp(116px, 13vw, 158px); aspect-ratio: 1;
  border: 5px solid var(--paper); border-radius: 22px; overflow: hidden;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,0.35);
  transform: var(--t, none);
  background: var(--ink);
  display: grid; place-items: center;
}
[data-theme="dark"] .bcard { border-color: var(--paper-2); }
.bcard-in {
  font-family: "Fraunces", serif; font-style: italic; letter-spacing: -0.01em;
  font-size: clamp(1rem, 1.5vw, 1.4rem); color: var(--paper); text-align: center;
  transform: scale(0);
}
.bounce-cards.in .bcard-in {
  animation: bounceIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i, 0) * 0.09s + 0.15s);
}
@keyframes bounceIn {
  0%   { transform: scale(0); }
  55%  { transform: scale(1.14); }
  75%  { transform: scale(0.93); }
  100% { transform: scale(1); }
}

/* full stack list */
.stack-list {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 6px auto 0; max-width: 760px; padding: 0;
}
.stack-list li {
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 100px;
  font-size: 0.92rem; color: var(--ink-soft);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.stack-list li:hover { border-color: var(--accent); color: var(--ink); }
.stack-list li:last-child { font-family: "Fraunces", serif; font-style: italic; color: var(--accent); }

/* about CTA */
.about-cta {
  text-align: center; padding-top: clamp(44px, 7vh, 84px); padding-bottom: clamp(60px, 10vh, 110px);
  border-top: 1px solid var(--line);
}
.about-cta .kicker { justify-content: center; }
.about-cta .sec-title { margin: 14px 0 28px; }
.about-cta .sec-title em { font-style: italic; color: var(--accent); }

/* founder note */
.founder {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 54px);
  align-items: center; padding-top: clamp(40px, 6vh, 70px); padding-bottom: clamp(40px, 6vh, 70px);
  border-bottom: 1px solid var(--line);
}
.founder-mark {
  width: clamp(80px, 9vw, 120px); height: clamp(80px, 9vw, 120px); border-radius: 50%;
  display: grid; place-items: center; background: var(--accent); color: var(--paper);
  font-family: "Fraunces", serif; font-size: clamp(3rem, 6vw, 5rem); line-height: 1;
}
.founder-mark span { transform: translateY(0.22em); }
.founder-quote { margin: 0; }
.founder-quote p {
  font-family: "Fraunces", serif; font-weight: 400; letter-spacing: -0.01em; line-height: 1.2;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem); margin: 0 0 18px;
}
.founder-quote em { font-style: italic; color: var(--accent); }
.founder-quote footer { display: flex; flex-direction: column; }
.founder-quote b { font-weight: 600; }
.founder-quote span { color: var(--ink-soft); font-size: 0.92rem; }

/* how we work */
.process { padding-bottom: clamp(44px, 7vh, 84px); }
.steps {
  list-style: none; margin: 30px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px);
}
.step { border-top: 2px solid var(--ink); padding-top: 18px; }
.step-num {
  font-family: "Fraunces", serif; font-style: italic; color: var(--accent); font-size: 1.3rem;
}
.step h3 { font-size: 1.2rem; font-weight: 500; margin: 10px 0 8px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.5; margin: 0; }

/* selected work */
.cases { padding-bottom: clamp(44px, 7vh, 84px); }
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); margin-top: 30px;
}
.case {
  display: flex; flex-direction: column; gap: 14px; text-decoration: none;
  border: 1px solid var(--line); border-radius: 18px; padding: clamp(24px, 2.6vw, 34px);
  background: color-mix(in srgb, var(--paper) 55%, transparent);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.case:hover { border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); transform: translateY(-3px); }
.case-metric {
  font-family: "Fraunces", serif; font-weight: 400; letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem); line-height: 1; color: var(--accent);
}
.case-copy { color: var(--ink); line-height: 1.45; margin: 0; }
.case-tag { margin-top: auto; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }

/* testimonials */
.quotes { padding-bottom: clamp(44px, 7vh, 84px); }
.quotes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); margin-top: 30px;
}
.quote-card {
  margin: 0; border: 1px solid var(--line); border-radius: 18px; padding: clamp(24px, 2.6vw, 34px);
  display: flex; flex-direction: column; gap: 18px;
  background: color-mix(in srgb, var(--paper) 55%, transparent);
}
.quote-card blockquote {
  margin: 0; font-family: "Fraunces", serif; font-style: italic; font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.35; color: var(--ink);
}
.quote-card figcaption { margin-top: auto; display: flex; flex-direction: column; }
.quote-card b { font-weight: 600; }
.quote-card span { color: var(--ink-soft); font-size: 0.88rem; }

/* services recap */
.recap { padding-bottom: clamp(44px, 7vh, 84px); }
.recap-grid {
  list-style: none; margin: 30px 0 26px; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.recap-grid li {
  display: flex; flex-direction: column; gap: 4px; padding: 22px 20px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.recap-grid b { font-weight: 600; font-size: 1.05rem; }
.recap-grid span { color: var(--ink-soft); font-size: 0.92rem; }
.recap-link {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--accent); padding-bottom: 3px;
  transition: gap 0.3s ease;
}
.recap-link:hover { gap: 14px; }

/* trusted / certs */
.trust { text-align: center; padding-bottom: clamp(30px, 5vh, 60px); }
.trust-label { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.certs {
  list-style: none; margin: 18px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px;
}
.certs li {
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 8px;
  font-size: 0.86rem; letter-spacing: 0.02em; color: var(--ink);
  background: color-mix(in srgb, var(--paper) 60%, transparent);
}

/* faq */
.faq {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 5vw, 70px);
  align-items: start; padding-bottom: clamp(44px, 7vh, 84px);
}
.faq .sec-head { position: sticky; top: 120px; }
.faq-list { display: grid; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 22px 0; font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: 0 0 auto; width: 16px; height: 16px; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--accent);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-plus::before { width: 16px; height: 2px; }
.faq-plus::after { width: 2px; height: 16px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item p { margin: 0 0 22px; color: var(--ink-soft); line-height: 1.55; max-width: 60ch; }

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .astrip { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .astrip .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cases-grid, .quotes-grid { grid-template-columns: 1fr; }
  .recap-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .ahero { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .mv-wrap { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; gap: 22px; }
  .why-head { position: static; }
  .founder { grid-template-columns: 1fr; text-align: left; }
  .faq { grid-template-columns: 1fr; gap: 22px; }
  .faq .sec-head { position: static; }
  .bounce-cards { transform: scale(0.82); }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .recap-grid { grid-template-columns: 1fr; }
  .bounce-cards { transform: scale(0.62); }
}

@media (prefers-reduced-motion: reduce) {
  .bcard-in { transform: scale(1); }
  .bounce-cards.in .bcard-in { animation: none; }
}
