:root {
  --cream: #f3eee4;
  --cream-2: #e9e2d4;
  --ink: #14120f;
  --ink-2: #2a2621;
  --muted: #6b645a;
  --accent: #ff4a1c;
  --accent-soft: #ffb59e;
  --butter: #ffd23f;
  --radius: 22px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --body: "Manrope", system-ui, sans-serif;
  --pad: clamp(20px, 5vw, 72px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); margin: 0; line-height: 1; letter-spacing: -0.03em; }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
::selection { background: var(--accent); color: var(--cream); }

/* grain overlay */
.grain {
  position: fixed; inset: -50%; z-index: 100; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-5%, 3%); }
  40% { transform: translate(3%, -6%); }
  60% { transform: translate(-7%, -2%); }
  80% { transform: translate(5%, 6%); }
}

/* NAV */
.nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 10px 10px 22px; z-index: 50;
  border-radius: 999px;
  background: rgba(243, 238, 228, .72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(20, 18, 15, .08);
  transition: box-shadow .4s var(--ease), background .4s;
}
.nav.scrolled { box-shadow: 0 10px 40px -12px rgba(20, 18, 15, .25); background: rgba(243, 238, 228, .9); }
.logo { font-family: var(--display); font-weight: 800; font-size: 26px; letter-spacing: -0.05em; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 30px; font-weight: 500; font-size: 15px; }
.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-weight: 700; font-size: 16px;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .3s var(--ease), color .3s;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--accent); border-radius: inherit;
  transform: translateY(101%); transition: transform .45s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { transform: translateY(-2px); }
.btn .arrow { display: inline-block; transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px) rotate(-8deg); }
.btn-small { padding: 11px 18px; font-size: 14px; }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover { color: var(--cream); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.eyebrow.light { color: rgba(243, 238, 228, .65); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 74, 28, .6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 74, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 74, 28, 0); }
}

/* HERO */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: 40px;
  padding: 130px var(--pad) 60px; max-width: 1400px; margin: 0 auto;
}
.hero-title { font-size: clamp(48px, 7.4vw, 112px); font-weight: 800; line-height: .95; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero-title .word {
  display: inline-block; transform: translateY(110%) rotate(4deg);
  animation: rise 1s var(--ease) forwards; animation-delay: calc(var(--d) * 90ms + 150ms);
}
.hero-title .serif { color: var(--accent); font-size: 1.08em; padding-right: .04em; }
@keyframes rise { to { transform: translateY(0) rotate(0); } }

.reveal-load { opacity: 0; transform: translateY(18px); animation: fadeUp .9s var(--ease) forwards; animation-delay: calc(var(--d) * 90ms + 150ms); }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.hero-sub { max-width: 520px; font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); margin: 30px 0 34px; }
.rotator { display: inline-block; position: relative; font-family: var(--serif); font-style: italic; font-size: 1.25em; color: var(--accent); line-height: 1; vertical-align: -0.08em; }
.rot-word { display: inline-block; }
.rot-word.out { animation: rotOut .35s var(--ease) forwards; }
.rot-word.in { animation: rotIn .45s var(--ease) forwards; }
@keyframes rotOut { to { opacity: 0; transform: translateY(-60%); filter: blur(4px); } }
@keyframes rotIn { from { opacity: 0; transform: translateY(60%); filter: blur(4px); } to { opacity: 1; transform: none; filter: none; } }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* HERO ART */
.hero-art { position: relative; height: min(620px, 70vh); min-height: 460px; }
.blob {
  position: absolute; inset: 8% 6%;
  background: radial-gradient(circle at 30% 30%, var(--accent-soft), transparent 60%),
              radial-gradient(circle at 70% 70%, var(--butter), transparent 55%),
              radial-gradient(circle at 60% 20%, #ff8a65, transparent 50%);
  filter: blur(40px); opacity: .75;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  animation: morph 14s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; transform: rotate(0) scale(1); }
  50% { border-radius: 63% 37% 38% 62% / 56% 61% 39% 44%; transform: rotate(20deg) scale(1.06); }
}
.card {
  position: absolute; background: #fffdf8; border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(20, 18, 15, .28), 0 0 0 1px rgba(20, 18, 15, .05);
  opacity: 0; animation: pop .9s var(--ease) forwards;
}
@keyframes pop { from { opacity: 0; transform: translateY(40px) scale(.92); } to { opacity: 1; transform: none; } }
.float { will-change: translate; }

.post { width: 290px; left: 12%; top: 6%; padding: 14px; animation-delay: .6s; rotate: -4deg; }
.post-head { display: flex; align-items: center; gap: 10px; font-size: 13px; margin-bottom: 12px; }
.post-head small { display: block; color: var(--muted); font-size: 11px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: conic-gradient(var(--accent), var(--butter), var(--accent)); padding: 2px; flex: none; position: relative; }
.avatar::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--ink); }
.avatar.sm { width: 28px; height: 28px; }
.post-img {
  aspect-ratio: 1; border-radius: 14px; display: grid; place-items: center; overflow: hidden;
  background: var(--ink);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px);
}
.post-img-text { font-family: var(--display); font-weight: 800; color: var(--cream); font-size: 50px; line-height: .9; text-align: center; letter-spacing: -0.05em; }
.post-img-text em { font-family: var(--serif); font-weight: 400; color: var(--accent); }
.post-foot { display: flex; align-items: baseline; gap: 6px; margin-top: 12px; font-size: 15px; }
.post-foot small { color: var(--muted); }
.heart { color: var(--accent); font-size: 20px; display: inline-block; animation: beat 1.6s ease-in-out infinite; }
@keyframes beat { 0%, 60%, 100% { transform: scale(1); } 20% { transform: scale(1.3); } 40% { transform: scale(.95); } }

.chart { width: 230px; right: 2%; top: 36%; padding: 18px; animation-delay: .85s; rotate: 3deg; }
.chart small { color: var(--muted); font-size: 12px; font-weight: 600; }
.chart-num { display: block; font-family: var(--display); font-size: 40px; letter-spacing: -0.04em; margin: 4px 0 6px; }
.spark { width: 100%; height: 60px; overflow: visible; }
.spark path { fill: none; stroke: var(--accent); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 300; stroke-dashoffset: 300; animation: draw 2.2s 1.3s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.chart-tag { display: inline-block; margin-top: 6px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.bubble { display: flex; gap: 10px; align-items: center; left: 2%; bottom: 10%; padding: 12px 16px; max-width: 260px; animation-delay: 1.1s; rotate: 2deg; }
.bubble p { margin: 0; font-size: 14px; font-weight: 500; line-height: 1.35; }
.pill { display: flex; align-items: center; gap: 8px; right: 12%; top: 4%; padding: 10px 16px; border-radius: 999px; font-weight: 700; font-size: 14px; background: var(--ink); color: var(--cream); animation-delay: 1.35s; rotate: -3deg; }
.live { width: 9px; height: 9px; border-radius: 50%; background: #3ddc84; animation: pulseG 1.6s infinite; }
@keyframes pulseG { 0% { box-shadow: 0 0 0 0 rgba(61,220,132,.6); } 100% { box-shadow: 0 0 0 10px rgba(61,220,132,0); } }

/* MARQUEE */
.marquee {
  background: var(--accent); color: var(--ink); overflow: hidden;
  padding: 22px 0; transform: rotate(-1.5deg) scale(1.03); margin: 20px 0 0;
  border-block: 2px solid var(--ink); position: relative; z-index: 2;
}
.marquee-track { display: flex; gap: 36px; width: max-content; animation: scroll 32s linear infinite; align-items: center; }
.marquee span { font-family: var(--display); font-weight: 800; font-size: clamp(28px, 4vw, 52px); letter-spacing: -0.03em; white-space: nowrap; }
.marquee i { font-style: normal; font-size: 26px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* SECTION HEAD */
.section-head { max-width: 900px; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(38px, 5.2vw, 76px); font-weight: 800; line-height: 1; }
.section-head .serif { color: var(--accent); }

/* SERVICES */
.services { background: var(--ink); color: var(--cream); padding: 150px var(--pad) 130px; margin-top: -30px; position: relative; z-index: 1; }
.services > * { max-width: 1260px; margin-left: auto; margin-right: auto; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service {
  position: relative; padding: 34px 30px 30px; border-radius: var(--radius);
  background: #1d1a16; border: 1px solid rgba(243, 238, 228, .08);
  overflow: hidden; isolation: isolate;
  transition: transform .5s var(--ease), border-color .4s;
}
.service::before {
  content: ""; position: absolute; z-index: -1; width: 360px; height: 360px; border-radius: 50%;
  left: var(--mx, 50%); top: var(--my, 50%); transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, rgba(255, 74, 28, .35), transparent 65%);
  transition: transform .5s var(--ease);
}
.service:hover::before { transform: translate(-50%, -50%) scale(1); }
.service:hover { transform: translateY(-6px); border-color: rgba(255, 74, 28, .5); }
.num { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--accent); }
.service h3 { font-size: 28px; font-weight: 600; margin: 40px 0 14px; }
.service p { color: rgba(243, 238, 228, .7); font-size: 15.5px; margin: 0 0 22px; }
.service ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.service li { font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(243, 238, 228, .18); }

/* STATEMENT */
.statement { padding: 160px var(--pad); max-width: 1300px; margin: 0 auto; }
.fill-text { font-family: var(--display); font-weight: 600; font-size: clamp(32px, 4.6vw, 68px); line-height: 1.08; letter-spacing: -0.035em; margin: 0; }
.fill-text .w { color: rgba(20, 18, 15, .14); transition: color .3s; }
.fill-text .w.on { color: var(--ink); }
.fill-text .serif .w.on, .fill-text .w.serif.on { color: var(--accent); }

/* PROCESS */
.process { padding: 40px var(--pad) 140px; max-width: 1400px; margin: 0 auto; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: s; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: var(--cream-2); transition: background .4s, transform .5s var(--ease); }
.step:hover { background: var(--butter); transform: rotate(-1.5deg) translateY(-6px); }
.step-num {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: var(--ink); color: var(--cream); font-family: var(--display); font-weight: 800; font-size: 22px; margin-bottom: 60px;
  transition: transform .6s var(--ease);
}
.step:hover .step-num { transform: rotate(360deg); background: var(--accent); }
.step h3 { font-size: 30px; font-weight: 800; margin-bottom: 12px; }
.step p { margin: 0; color: var(--ink-2); font-size: 15.5px; }

/* WHY */
.why { padding: 0 var(--pad) 140px; }
.why-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); }
.why-item { padding: 34px 30px 0 0; display: flex; flex-direction: column; gap: 10px; }
.why-item + .why-item { padding-left: 30px; border-left: 1px solid rgba(20, 18, 15, .15); }
.why-item b { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 44px; line-height: 1; color: var(--accent); }
.why-item span { color: var(--ink-2); }

/* CONTACT */
.contact {
  position: relative; overflow: hidden; background: var(--ink); color: var(--cream);
  margin: 0 14px; border-radius: 36px; padding: 150px var(--pad); text-align: center;
}
.contact-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.contact-title { font-size: clamp(56px, 10vw, 160px); font-weight: 800; letter-spacing: -0.05em; line-height: .9; }
.contact-title .serif { color: var(--accent); }
.contact-sub { color: rgba(243, 238, 228, .7); font-size: 19px; max-width: 520px; margin: 28px auto 44px; }
.btn-big { background: var(--cream); color: var(--ink); padding: 22px 36px; font-size: clamp(17px, 2vw, 22px); }
.btn-big:hover { color: var(--cream); }
.contact-rings span {
  position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255, 74, 28, .35); border-radius: 50%;
  width: 40vmax; height: 40vmax; transform: translate(-50%, -50%) scale(.4); opacity: 0;
  animation: ring 6s linear infinite;
}
.contact-rings span:nth-child(2) { animation-delay: 2s; }
.contact-rings span:nth-child(3) { animation-delay: 4s; }
@keyframes ring { 0% { opacity: 0; transform: translate(-50%, -50%) scale(.3); } 20% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.8); } }

/* FOOTER */
.footer { padding: 90px var(--pad) 36px; max-width: 1400px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 60px; border-bottom: 1px solid rgba(20, 18, 15, .15); }
.logo-big { font-size: clamp(80px, 16vw, 220px); line-height: .8; letter-spacing: -0.07em; }
.footer-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.footer-cols h4 { font-family: var(--body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-cols a { display: block; margin-bottom: 8px; font-weight: 500; transition: color .25s; }
.footer-cols a:hover { color: var(--accent); }
.footer-cols address { font-style: normal; line-height: 1.7; font-weight: 500; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 26px; font-size: 13.5px; color: var(--muted); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--rd, 0ms); }
.reveal.in { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-art { height: 480px; max-width: 520px; width: 100%; margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .hero-art { height: 440px; min-height: 0; }
  .post { width: 220px; left: 4%; }
  .post-img-text { font-size: 38px; }
  .chart { width: 190px; right: 0; top: 44%; }
  .chart-num { font-size: 32px; }
  .bubble { left: 0; bottom: 2%; max-width: 230px; }
  .pill { right: 2%; }
  .service-grid, .steps { grid-template-columns: 1fr; }
  .step-num { margin-bottom: 30px; }
  .why-inner { grid-template-columns: 1fr; }
  .why-item, .why-item + .why-item { padding: 26px 0; border-left: 0; border-bottom: 1px solid rgba(20, 18, 15, .15); }
  .statement { padding: 110px var(--pad); }
  .contact { padding: 110px 22px; margin: 0 8px; border-radius: 26px; }
  .footer-cols { gap: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
