:root {
  --orange: #fc5610;
  --orange-soft: #ff7a3d;
  --orange-dim: rgba(252, 86, 16, 0.14);
  --black: #010101;
  --black-2: #070707;
  --surface: #0d0d0d;
  --surface-2: #141414;
  --ink: #f6f3ee;
  --muted: rgba(246, 243, 238, 0.58);
  --faint: rgba(246, 243, 238, 0.38);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --wrap: min(1280px, calc(100% - 48px));
  --radius: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.is-touch {
  cursor: auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  color: inherit;
  cursor: none;
}

ul {
  list-style: none;
}

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--orange);
  color: #fff;
  padding: 10px 14px;
  z-index: 100;
}

.skip:focus {
  top: 16px;
}

.grain,
.grain::after {
  pointer-events: none;
}

.grain::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 200;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, opacity 0.2s;
}

.cursor.is-hover {
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1px solid var(--orange);
}

body.is-touch .cursor {
  display: none;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.muted {
  color: var(--muted);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 18px 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), transform 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(1, 1, 1, 0.78);
  backdrop-filter: blur(18px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.nav {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  height: 42px;
  flex: 0 0 auto;
}

.logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-links .mobile-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 650;
  background: var(--orange);
  color: #fff;
  transition: transform 0.3s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--orange-soft);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: transparent;
}

.btn .arrow {
  transition: transform 0.3s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  left: 13px;
  transition: 0.25s var(--ease);
}

.menu-toggle span {
  top: 21px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

body.nav-open .menu-toggle span {
  background: transparent;
}

body.nav-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 128px 0 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 70vw;
  height: 70vw;
  right: -18vw;
  top: -18vw;
  background: radial-gradient(circle, rgba(252, 86, 16, 0.28), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-right: 0;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5.5rem);
  margin: 18px 0 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-lead {
  max-width: 520px;
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.hero-meta b {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.hero-meta span {
  color: var(--faint);
  font-size: 13px;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 108px;
  bottom: 0;
  width: min(50vw, 740px);
  height: auto;
  border-radius: 32px 0 0 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 16%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken 22s ease-in-out infinite alternate;
}

@keyframes ken {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: #050505;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

section {
  padding: 120px 0;
  scroll-margin-top: 88px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  max-width: 14ch;
}

.section-head p {
  max-width: 360px;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin: 18px 0 24px;
}

.about-copy p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 18px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.about-points li {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.about-points strong {
  display: block;
  margin-bottom: 6px;
}

.about-points span {
  color: var(--muted);
  font-size: 14px;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 28px;
}

.about-badge {
  position: absolute;
  left: -28px;
  bottom: 36px;
  background: var(--orange);
  color: #fff;
  border-radius: 22px;
  padding: 22px 24px;
  min-width: 170px;
  box-shadow: 0 20px 50px rgba(252, 86, 16, 0.28);
}

.about-badge b {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.services {
  background:
    radial-gradient(circle at 0% 0%, rgba(252, 86, 16, 0.08), transparent 32%),
    var(--black);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.service-stage {
  position: sticky;
  top: 96px;
  height: min(72vh, 640px);
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
}

.service-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.8s var(--ease);
  transform: scale(1.04);
}

.service-stage img.is-active {
  opacity: 1;
  transform: scale(1);
}

.service-list button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 22px 8px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: start;
  transition: background 0.25s;
}

.service-list button:hover,
.service-list button.is-active {
  background: linear-gradient(90deg, var(--orange-dim), transparent);
}

.service-list .num {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}

.service-list h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.service-list p {
  color: var(--muted);
  font-size: 14px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), margin 0.3s;
}

.service-list button.is-active p,
.service-list button:hover p {
  max-height: 80px;
  margin-top: 4px;
}

.service-list .plus {
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}

.service-list button.is-active .plus {
  transform: rotate(45deg);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 340px;
  display: block;
  background: var(--surface);
}

.work-card.featured {
  grid-row: span 2;
  min-height: 700px;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.work-card:hover img {
  transform: scale(1.06);
}

.work-card .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(1, 1, 1, 0.86));
  transform: translateY(12px);
  transition: transform 0.4s var(--ease);
}

.work-card:hover .cap {
  transform: translateY(0);
}

.work-card small {
  color: var(--orange);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

.work-card h3 {
  font-size: 28px;
  margin-top: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px 32px;
  min-height: 280px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.process-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.process-card span {
  display: block;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 48px;
}

.process-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--muted);
  font-size: 14px;
}

.stats {
  padding: 0 0 40px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-row article {
  padding: 42px 24px;
  border-right: 1px solid var(--line);
}

.stats-row article:last-child {
  border-right: 0;
}

.stats-row b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--orange);
}

.stats-row span {
  color: var(--muted);
  font-size: 14px;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote p {
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.quote img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.quote strong {
  display: block;
}

.quote small {
  color: var(--faint);
}

.faq-list {
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 26px 0;
  font-size: 20px;
  font-weight: 650;
}

.faq-item .icon {
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-item.is-open .answer {
  max-height: 200px;
  padding-bottom: 22px;
}

.contact {
  position: relative;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
}

.contact-visual {
  position: relative;
  min-height: 560px;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-visual .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(1, 1, 1, 0.82));
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-form {
  padding: 48px 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.field input,
.field select,
.field textarea {
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 50px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
}

.form-success {
  display: none;
  color: var(--orange);
  margin-top: 16px;
  font-weight: 650;
}

.form-success.is-visible {
  display: block;
}

.site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

.footer-brand p {
  color: var(--muted);
  max-width: 280px;
  margin: 18px 0;
}

.footer-brand img {
  height: 34px;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--faint);
  font-size: 13px;
}

.footer-bottom a:hover {
  color: var(--orange);
}

.legal-page {
  padding: 160px 0 80px;
}

.legal-page h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  margin: 12px 0 12px;
}

.legal-page .updated {
  color: var(--orange);
  margin-bottom: 36px;
}

.legal-body {
  max-width: 780px;
}

.legal-body h2 {
  font-size: 28px;
  margin: 42px 0 14px;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  margin-bottom: 14px;
}

.legal-body ul {
  padding-left: 4px;
}

.legal-body li {
  padding-left: 18px;
  position: relative;
}

.legal-body li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
}

.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }
.d4 { animation-delay: 0.32s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --wrap: min(100% - 32px, 1280px);
  }

  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  a,
  button,
  input,
  select,
  textarea {
    cursor: pointer;
  }

  .menu-toggle {
    display: block;
  }

  .logo img {
    height: 28px;
    max-width: calc(100vw - 108px);
    object-fit: contain;
    object-position: left center;
  }

  .nav-links,
  .nav > .btn {
    display: none;
  }

  .nav-links .mobile-cta {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(1, 1, 1, 0.96);
    padding: 110px 32px 40px;
    align-items: flex-start;
    gap: 22px;
    z-index: 50;
  }

  .nav-links.is-open a {
    font-size: 32px;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--ink);
  }

  .nav-links.is-open .mobile-cta {
    display: inline-flex;
    margin-top: 12px;
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 650;
  }

  .hero {
    padding-top: 120px;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
    height: 320px;
    border-radius: 24px;
    mask-image: none;
    -webkit-mask-image: none;
    margin-top: 8px;
  }

  .hero-meta,
  .about,
  .services-layout,
  .work-grid,
  .process-grid,
  .stats-row,
  .quotes,
  .contact-panel,
  .footer-top,
  .form-grid,
  .about-points,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    padding-right: 0;
  }

  .section-head {
    align-items: start;
  }

  .about-visual img,
  .contact-visual,
  .service-stage {
    height: 380px;
    position: relative;
    top: auto;
  }

  .about-badge {
    left: 16px;
    bottom: 16px;
  }

  .work-card,
  .work-card.featured {
    min-height: 320px;
    grid-row: auto;
  }

  .stats-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-form {
    padding: 28px 22px 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
