:root {
  --ink: #160c28;
  --ink-soft: #2b1b42;
  --paper: #fbf7ee;
  --paper-deep: #eee6d9;
  --purple: #8e3cff;
  --coral: #ff5f49;
  --lime: #d8ff4f;
  --cyan: #55e5ef;
  --white: #fff;
  --line: rgba(22, 12, 40, .16);
  --display: "Syne", sans-serif;
  --body: "DM Sans", sans-serif;
  --shadow: 0 24px 70px rgba(22, 12, 40, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
::selection { color: var(--ink); background: var(--lime); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(84px, 10vw, 145px) 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled {
  background: rgba(22, 12, 40, .92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .14);
  backdrop-filter: blur(16px);
}
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); line-height: 1; }
.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  transform: rotate(-7deg);
}
.brand-mark svg { width: 31px; height: 31px; fill: currentColor; }
.brand-copy { display: flex; letter-spacing: -.04em; font-size: 19px; }
.brand-copy strong { font-weight: 800; }
.brand-copy span { color: var(--coral); font-weight: 600; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 17px; border: 1px solid rgba(255, 255, 255, .4); border-radius: 999px; }
.nav-cta:hover { color: var(--ink); border-color: var(--lime); background: var(--lime); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: transparent;
}
.menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--white); transition: transform .2s ease; }

.hero {
  position: relative;
  min-height: 820px;
  padding: 150px 0 0;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(4px); opacity: .8; }
.hero-orb-one { top: -180px; left: -180px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(142,60,255,.65), transparent 68%); }
.hero-orb-two { right: -220px; bottom: 20px; width: 540px; height: 540px; background: radial-gradient(circle, rgba(255,95,73,.4), transparent 68%); }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 58px; align-items: center; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow > span { width: 28px; height: 2px; background: var(--lime); }
.eyebrow-dark > span { background: var(--purple); }
.hero h1, .section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: .97;
  letter-spacing: -.055em;
}
.hero h1 { max-width: 720px; font-size: clamp(55px, 6.6vw, 94px); }
.hero h1 em, .section h2 em { color: var(--coral); font-style: normal; }
.hero-lede { max-width: 650px; margin: 30px 0 34px; color: rgba(255,255,255,.73); font-size: clamp(17px, 1.6vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--lime); }
.button-primary:hover { background: var(--cyan); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.34); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 55px 0 0; padding: 0; list-style: none; }
.hero-proof li { padding-left: 14px; border-left: 2px solid rgba(216,255,79,.5); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-family: var(--display); font-size: 14px; }
.hero-proof span { margin-top: 3px; color: rgba(255,255,255,.55); font-size: 12px; }

.hero-stage { position: relative; min-height: 515px; transform: rotate(1.5deg); }
.portrait-card { position: absolute; overflow: hidden; padding: 8px; color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.portrait-one { top: 30px; left: 5%; width: 47%; transform: rotate(-7deg); }
.portrait-two { top: 0; right: 2%; width: 44%; transform: rotate(6deg); }
.portrait-three { right: 21%; bottom: 5px; width: 43%; transform: rotate(-1deg); }
.portrait-art { position: relative; height: 205px; overflow: hidden; }
.portrait-art .halo, .portrait-art .figure { position: absolute; }
.portrait-art .halo { width: 135px; height: 135px; border: 18px solid rgba(22,12,40,.15); border-radius: 50%; }
.portrait-art .figure { bottom: -55px; width: 115px; height: 220px; border-radius: 55px 55px 20px 20px; transform: rotate(-8deg); }
.portrait-art .figure::before {
  position: absolute;
  top: -54px;
  left: 25px;
  width: 68px;
  height: 76px;
  border-radius: 50% 50% 45% 45%;
  background: inherit;
  content: "";
}
.portrait-art-one { background: var(--coral); }
.portrait-art-one .halo { top: 15px; right: -15px; }
.portrait-art-one .figure { left: 54px; background: var(--ink); }
.portrait-art-two { background: var(--cyan); }
.portrait-art-two .halo { top: -30px; left: -25px; border-color: rgba(142,60,255,.45); }
.portrait-art-two .figure { right: 39px; background: var(--purple); transform: rotate(8deg); }
.portrait-art-three { height: 185px; background: var(--lime); }
.portrait-art-three .halo { right: 15px; bottom: -35px; border-color: rgba(255,95,73,.5); }
.portrait-art-three .figure { left: 42px; background: var(--ink-soft); transform: rotate(3deg); }
.portrait-label { display: flex; align-items: center; justify-content: space-between; padding: 9px 4px 2px; font-family: var(--display); text-transform: uppercase; font-size: 12px; }
.stage-note { position: absolute; z-index: 5; padding: 8px 13px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: var(--white); background: rgba(22,12,40,.82); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; backdrop-filter: blur(8px); }
.stage-note-top { top: -22px; left: 28%; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(216,255,79,.15); }
.stage-sticker {
  position: absolute;
  z-index: 6;
  right: 3%;
  bottom: 50px;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  transform: rotate(12deg);
}
.stage-scribble { position: absolute; z-index: 5; right: 5%; bottom: 140px; width: 120px; fill: none; stroke: var(--white); stroke-linecap: round; stroke-width: 3; }
.talent-ticker { margin-top: 65px; overflow: hidden; border-block: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.035); }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 24px; padding: 17px 0; animation: ticker 28s linear infinite; font-family: var(--display); text-transform: uppercase; }
.ticker-track span { font-size: 16px; font-weight: 700; white-space: nowrap; }
.ticker-track i { color: var(--coral); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.section h2 { font-size: clamp(45px, 5.3vw, 74px); }
.section-heading > p { margin: 0 0 4px; color: rgba(22,12,40,.66); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 410px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255,255,255,.45);
  transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
}
.service-card:hover { z-index: 2; border-color: transparent; box-shadow: var(--shadow); transform: translateY(-8px) rotate(-1deg); }
.service-featured { background: var(--lime); }
.service-number { display: block; color: rgba(22,12,40,.55); font-size: 12px; font-weight: 700; }
.service-icon { display: grid; width: 94px; height: 94px; margin: 46px 0 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.service-icon svg { width: 58px; fill: none; stroke: var(--ink); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.service-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: 25px; letter-spacing: -.04em; }
.service-card p { margin: 0; color: rgba(22,12,40,.67); }
.card-arrow { position: absolute; top: 25px; right: 25px; font-size: 22px; }

.process { position: relative; color: var(--white); background: var(--ink-soft); overflow: hidden; }
.process::after { position: absolute; right: -140px; bottom: -200px; width: 550px; height: 550px; border: 110px solid rgba(142,60,255,.18); border-radius: 50%; content: ""; }
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.process-intro { position: sticky; top: 130px; align-self: start; }
.process-intro > p:not(.eyebrow) { max-width: 430px; color: rgba(255,255,255,.65); font-size: 18px; }
.text-link { display: inline-flex; gap: 25px; margin-top: 25px; border-bottom: 1px solid rgba(255,255,255,.35); font-weight: 700; }
.process-steps { margin: 0; padding: 0; list-style: none; }
.process-steps li { display: grid; grid-template-columns: 70px 1fr; gap: 30px; padding: 34px 0 40px; border-top: 1px solid rgba(255,255,255,.17); }
.process-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.17); }
.process-steps > li > span { color: var(--lime); font-family: var(--display); font-size: 14px; }
.process-steps h3 { margin: 0 0 9px; font-family: var(--display); font-size: clamp(25px, 3vw, 36px); letter-spacing: -.035em; }
.process-steps p { max-width: 550px; margin: 0; color: rgba(255,255,255,.62); font-size: 17px; }

.about { background: var(--paper-deep); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.about-art { position: relative; }
.about-frame { position: relative; min-height: 590px; overflow: hidden; background: var(--coral); box-shadow: var(--shadow); transform: rotate(-2deg); }
.about-frame::before { position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.25), transparent 25%), linear-gradient(135deg, transparent 55%, rgba(22,12,40,.12)); content: ""; }
.about-sun { position: absolute; top: 50px; right: 50px; width: 185px; height: 185px; border: 34px solid var(--lime); border-radius: 50%; }
.about-person { position: absolute; bottom: -80px; width: 135px; height: 390px; border-radius: 80px 80px 0 0; transform-origin: bottom; }
.about-person::before { position: absolute; top: -82px; left: 22px; width: 94px; height: 105px; border-radius: 50%; background: inherit; content: ""; }
.about-person-one { left: 10%; background: var(--ink); transform: rotate(-8deg); }
.about-person-two { left: 38%; z-index: 2; height: 430px; background: var(--purple); transform: rotate(2deg); }
.about-person-three { right: 7%; height: 360px; background: var(--cyan); transform: rotate(10deg); }
.about-caption { position: absolute; right: -30px; bottom: 34px; z-index: 5; padding: 17px 22px; color: var(--white); background: var(--ink); font-family: var(--display); font-size: 16px; font-weight: 700; line-height: 1.2; transform: rotate(3deg); }
.about-copy .lead { font-size: 22px; font-weight: 600; line-height: 1.4; }
.about-copy > p:not(.eyebrow) { color: rgba(22,12,40,.72); }
.values { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.values span { padding: 8px 14px; border: 1px solid rgba(22,12,40,.3); border-radius: 999px; font-size: 13px; font-weight: 700; }

.contact { color: var(--white); background: var(--purple); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 85px; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy > p:not(.eyebrow) { max-width: 480px; color: rgba(255,255,255,.72); font-size: 18px; }
.contact-copy h2 em { color: var(--lime); }
.contact-options { display: grid; gap: 10px; margin-top: 38px; }
.contact-options a { display: block; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.contact-options span, .contact-options strong { display: block; }
.contact-options span { color: rgba(255,255,255,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.contact-options strong { margin-top: 3px; font-size: 15px; }
.brief-form { padding: clamp(26px, 4.2vw, 48px); color: var(--ink); background: var(--paper); box-shadow: 16px 16px 0 rgba(22,12,40,.25); }
.form-status:not(:empty) { margin-bottom: 20px; padding: 11px 14px; border-left: 4px solid var(--purple); background: rgba(142,60,255,.1); font-weight: 600; }
.form-status.is-error { border-color: var(--coral); background: rgba(255,95,73,.11); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.brief-form label { display: block; margin-bottom: 19px; }
.brief-form label > span:first-child { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 700; }
.brief-form input:not([type="checkbox"]), .brief-form select, .brief-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid rgba(22,12,40,.28);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}
.brief-form input:not([type="checkbox"]), .brief-form select { height: 48px; }
.brief-form textarea { resize: vertical; }
.brief-form input:focus, .brief-form select:focus, .brief-form textarea:focus { border-color: var(--purple); box-shadow: 0 2px 0 var(--purple); }
.brief-form [aria-invalid="true"] { border-color: var(--coral)!important; }
.consent { display: grid!important; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 28px 0!important; color: rgba(22,12,40,.66); font-size: 12px; }
.consent input { width: 17px; height: 17px; accent-color: var(--purple); }
.consent a, .form-note a { text-decoration: underline; }
.button-light { width: 100%; color: var(--white); background: var(--ink); }
.button-light:hover { color: var(--ink); background: var(--lime); }
.form-note { margin: 13px 0 0; color: rgba(22,12,40,.55); font-size: 11px; text-align: center; }

.site-footer { padding: 75px 0 28px; color: var(--white); background: #0e071a; }
.footer-top { display: grid; grid-template-columns: 1.15fr 1.2fr .7fr .7fr; gap: 45px; padding-bottom: 65px; }
.brand-footer { align-self: start; }
.footer-top > p { margin: 0; color: rgba(255,255,255,.6); }
.footer-top nav { display: grid; align-content: start; gap: 10px; font-size: 14px; }
.footer-top nav a:hover { color: var(--lime); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto auto; gap: 25px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: 12px; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.legal-page { min-height: 100vh; padding: 140px 0 90px; color: var(--ink); background: var(--paper); }
.legal-page .brand { color: var(--ink); }
.legal-content { max-width: 820px; }
.legal-content h1 { margin: 45px 0 20px; font-family: var(--display); font-size: clamp(44px, 7vw, 76px); line-height: 1; letter-spacing: -.055em; }
.legal-content h2 { margin-top: 40px; font-family: var(--display); font-size: 25px; letter-spacing: -.035em; }
.legal-content p, .legal-content li { color: rgba(22,12,40,.72); }
.back-link { display: inline-flex; margin-top: 40px; border-bottom: 1px solid currentColor; font-weight: 700; }

@media (max-width: 960px) {
  .site-nav { gap: 18px; }
  .site-nav > a:not(.nav-cta) { display: none; }
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { width: min(620px, 100%); margin: 20px auto 0; }
  .hero-proof { max-width: 650px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading > p { max-width: 620px; }
  .process-grid, .about-grid, .contact-grid { gap: 55px; }
  .about-frame { min-height: 500px; }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 620px); }
  .header-inner { height: 72px; }
  .site-header.is-open { background: var(--ink); }
  .menu-toggle { display: block; }
  .site-header.is-open .menu-toggle span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .site-header.is-open .menu-toggle span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 72px 0 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 40px 28px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-header.is-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a:not(.nav-cta) { display: block; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-family: var(--display); font-size: 24px; }
  .site-nav .nav-cta { margin-top: 25px; text-align: center; }
  .hero { padding-top: 125px; }
  .hero-grid { gap: 35px; }
  .hero-lede { font-size: 17px; }
  .hero-proof { grid-template-columns: 1fr; gap: 12px; margin-top: 38px; }
  .hero-stage { min-height: 420px; }
  .portrait-art { height: 155px; }
  .portrait-art-three { height: 140px; }
  .portrait-card { padding: 6px; }
  .portrait-label { font-size: 9px; }
  .stage-sticker { width: 68px; height: 68px; font-size: 12px; }
  .talent-ticker { margin-top: 35px; }
  .service-grid, .process-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; }
  .process-intro, .contact-copy { position: static; }
  .process-steps li { grid-template-columns: 45px 1fr; gap: 15px; }
  .about-grid { gap: 70px; }
  .about-art { max-width: 520px; }
  .about-frame { min-height: 470px; }
  .about-caption { right: 10px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .brand-footer, .footer-top > p { grid-column: 1 / -1; }
  .footer-top > p { grid-row: auto; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom span:last-child { grid-column: 1 / -1; }
}

@media (max-width: 420px) {
  .brand-copy { font-size: 17px; }
  .hero h1 { font-size: 48px; }
  .hero-actions .button { width: 100%; }
  .hero-stage { min-height: 365px; }
  .portrait-one { left: 0; width: 52%; }
  .portrait-two { right: 0; width: 49%; }
  .portrait-three { right: 20%; width: 49%; }
  .portrait-art { height: 132px; }
  .portrait-art-three { height: 120px; }
  .stage-scribble { display: none; }
  .about-frame { min-height: 410px; }
  .about-person { width: 100px; }
  .about-person-two { left: 36%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > * { grid-column: 1!important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; scroll-behavior: auto!important; transition-duration: .01ms!important; }
  [data-reveal] { opacity: 1; transform: none; }
}
