:root {
  --ink: #070707;
  --muted: #66696d;
  --soft: #f4f4f2;
  --soft-2: #ececea;
  --line: rgba(7, 7, 7, 0.1);
  --line-strong: rgba(7, 7, 7, 0.18);
  --yellow: #ffd33d;
  --yellow-deep: #e3ad00;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 7, 7, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(22px);
  transition: padding 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  border-color: var(--line);
  box-shadow: 0 18px 50px rgba(7, 7, 7, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.05;
  font-size: 0.95rem;
  font-weight: 900;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #303236;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 14px;
  transition: background 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  background: var(--soft);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  padding-top: clamp(118px, 15vh, 154px);
  padding-bottom: clamp(68px, 9vw, 104px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
}

.hero-copy {
  max-width: 960px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #2f3135;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 211, 61, 0.24);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 1080px;
  font-size: clamp(3.35rem, 6.5vw, 6.25rem);
  font-weight: 900;
}

h2 {
  max-width: 950px;
  font-size: clamp(2.55rem, 5.8vw, 6rem);
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.12;
}

.lead {
  width: min(770px, 100%);
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.9vw, 1.34rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(7, 7, 7, 0.14);
}

.btn-primary:hover {
  background: #1f2023;
}

.btn-ghost {
  border-color: var(--line-strong);
  background: var(--white);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--yellow-deep);
  box-shadow: 0 16px 42px rgba(227, 173, 0, 0.12);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.service-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fafafa;
  padding: 9px 13px;
  color: #383a3f;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-note {
  border-left: 2px solid var(--yellow);
  padding-left: 20px;
}

.hero-note span {
  display: block;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
}

.hero-note p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.media-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 211, 61, 0.18), transparent 24%),
    linear-gradient(145deg, #eeeeec, #dededb);
}

.hero-media {
  min-height: clamp(320px, 42vw, 560px);
  margin-top: clamp(38px, 6vw, 70px);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0), rgba(7, 7, 7, 0.16)),
    linear-gradient(135deg, rgba(255, 211, 61, 0.12), transparent 34%);
  content: "";
  pointer-events: none;
}

.placeholder-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 7, 7, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 7, 7, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 82%);
}

.media-block:not(.hero-media)::before,
.media-block:not(.hero-media)::after {
  position: absolute;
  content: "";
}

.media-block:not(.hero-media)::before {
  width: 38%;
  aspect-ratio: 1;
  right: 11%;
  top: 16%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  filter: blur(1px);
}

.media-block:not(.hero-media)::after {
  width: 36%;
  height: 34%;
  left: 9%;
  bottom: 15%;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 7, 7, 0.08);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
}

.media-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 14px;
  color: #323438;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.media-caption span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
}

.media-caption p {
  margin: 0;
}

.media-caption small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.services-section,
.work-section,
.about-section,
.process-section {
  padding-block: clamp(86px, 11vw, 150px);
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 62px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 36px;
  align-items: end;
}

.split-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.project-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.service-card:hover,
.project-card:hover,
.process-step:hover {
  border-color: rgba(227, 173, 0, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.card-media {
  position: relative;
  min-height: 84px;
  display: grid;
  place-items: start;
  align-items: center;
}

.service-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  border: 2px solid var(--ink);
  background: #fbfbfa;
  box-shadow: 0 12px 28px rgba(7, 7, 7, 0.06);
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.service-card > span {
  margin-top: 24px;
  color: var(--yellow-deep);
  font-weight: 900;
}

.service-card h3 {
  margin-top: 10px;
}

.service-card p,
.project-card p,
.process-step p,
.about-copy p,
.cta-inner p {
  color: var(--muted);
}

.service-card p {
  margin: 14px 0 0;
}

.service-wide {
  grid-column: span 2;
}

.icon-camera .service-icon {
  border-radius: 15px;
}

.icon-camera .service-icon::before {
  inset: 17px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.icon-camera .service-icon::after {
  top: 10px;
  left: 12px;
  width: 18px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
}

.icon-video .service-icon {
  width: 72px;
  border-radius: 16px;
}

.icon-video .service-icon::before {
  top: 17px;
  right: -18px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid var(--ink);
}

.icon-video .service-icon::after {
  inset: 15px auto auto 15px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
}

.icon-design .service-icon {
  border-radius: 14px 14px 4px 14px;
  transform: rotate(-8deg);
}

.icon-design .service-icon::before {
  left: 14px;
  right: 14px;
  top: 18px;
  height: 2px;
  background: var(--ink);
  box-shadow: 0 11px 0 var(--ink), 0 22px 0 var(--ink);
}

.icon-design .service-icon::after {
  right: -8px;
  bottom: -8px;
  width: 22px;
  height: 22px;
  background: var(--yellow);
  transform: rotate(45deg);
}

.icon-logistics .service-icon {
  border-radius: 10px;
}

.icon-logistics .service-icon::before {
  inset: 14px 10px auto;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 4px;
}

.icon-logistics .service-icon::after {
  left: 10px;
  right: 10px;
  bottom: 11px;
  height: 8px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 10px 4px, var(--ink) 0 4px, transparent 5px),
    radial-gradient(circle at calc(100% - 10px) 4px, var(--ink) 0 4px, transparent 5px),
    var(--yellow);
}

.icon-brand .service-icon {
  border-radius: 50%;
}

.icon-brand .service-icon::before {
  inset: 13px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.icon-brand .service-icon::after {
  inset: 24px;
  border-radius: 50%;
  background: var(--yellow);
}

.icon-social .service-icon {
  border-radius: 50%;
}

.icon-social .service-icon::before {
  width: 16px;
  height: 16px;
  left: 10px;
  top: 23px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 25px -15px 0 var(--ink), 34px 18px 0 var(--ink);
}

.icon-social .service-icon::after {
  left: 22px;
  top: 21px;
  width: 30px;
  height: 28px;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  transform: rotate(23deg);
}

.icon-print .service-icon {
  border-radius: 12px;
}

.icon-print .service-icon::before {
  left: 12px;
  right: 12px;
  top: -10px;
  height: 28px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: var(--white);
}

.icon-print .service-icon::after {
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 19px;
  border-radius: 4px;
  background: var(--yellow);
}

.icon-web {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.06) 1px, transparent 1px),
    linear-gradient(145deg, var(--soft), var(--soft-2));
  background-size: 28px 100%, auto;
}

.icon-web .service-icon {
  width: 76px;
  border-radius: 10px;
}

.icon-web .service-icon::before {
  left: 0;
  right: 0;
  top: 13px;
  height: 2px;
  background: var(--ink);
}

.icon-web .service-icon::after {
  left: 13px;
  right: 13px;
  bottom: 13px;
  height: 18px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.icon-motion .service-icon {
  border-radius: 50%;
  animation: floatMark 3s ease-in-out infinite alternate;
}

.icon-motion .service-icon::before {
  inset: 13px;
  border-radius: 50%;
  border: 2px dashed var(--ink);
}

.icon-motion .service-icon::after {
  left: 24px;
  top: 19px;
  border-left: 19px solid var(--yellow);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.icon-event .service-icon {
  border-radius: 14px;
}

.icon-event .service-icon::before {
  left: 12px;
  right: 12px;
  top: 18px;
  height: 28px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 100%),
    linear-gradient(var(--yellow), var(--yellow));
  background-size: 12px 100%, auto;
}

.icon-event .service-icon::after {
  left: 17px;
  top: 8px;
  width: 7px;
  height: 18px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 20px 0 0 var(--ink);
}

.icon-source .service-icon {
  border-radius: 50%;
}

.icon-source .service-icon::before {
  left: 12px;
  right: 12px;
  top: 29px;
  height: 3px;
  background: var(--ink);
  transform: rotate(-20deg);
  box-shadow: 0 15px 0 var(--ink), 0 -15px 0 var(--ink);
}

.icon-source .service-icon::after {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--yellow);
  left: 8px;
  top: 24px;
  box-shadow: 34px -17px 0 var(--yellow), 34px 17px 0 var(--yellow);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  display: grid;
  gap: 22px;
  padding: 18px;
}

.project-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(260px, 32vw, 420px);
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: #e7e7e4;
}

.project-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0), rgba(7, 7, 7, 0.18)),
    linear-gradient(135deg, rgba(255, 211, 61, 0.1), transparent 34%);
  content: "";
  pointer-events: none;
}

.project-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}

.project-media span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 7px 11px;
  color: #33363a;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.project-card h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
}

.project-card p {
  max-width: 640px;
  margin: 10px 0 4px;
  font-size: 1.02rem;
}

.stats-section {
  border-block: 1px solid var(--line);
  background: #fbfbfa;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-block: 0;
}

.stat {
  min-height: 220px;
  display: grid;
  align-content: center;
  border-inline: 1px solid var(--line);
  padding: 34px;
}

.stat strong {
  display: block;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 1;
  font-weight: 900;
}

.stat strong::after {
  content: "+";
  color: var(--yellow-deep);
}

.stat span {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 900;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
}

.about-copy {
  padding-top: 12px;
}

.about-copy p {
  margin: 0;
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}

.about-copy p + p {
  margin-top: 24px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  min-height: 300px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  background: #fbfbfa;
}

.process-step span {
  color: var(--yellow-deep);
  font-weight: 900;
}

.process-step p {
  margin: 20px 0 0;
}

.cta-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(86px, 10vw, 128px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 211, 61, 0.32), transparent 34%),
    #f4f4f2;
  padding: clamp(48px, 8vw, 92px);
}

.cta-inner {
  max-width: 880px;
}

.cta-inner h2 {
  font-size: clamp(2.7rem, 6vw, 6.3rem);
}

.cta-inner p {
  max-width: 760px;
  margin: 24px 0 34px;
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 44px 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin: 0 auto;
}

address {
  display: grid;
  justify-items: end;
  gap: 9px;
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

address a {
  color: var(--ink);
  font-weight: 900;
}

address a:hover {
  color: var(--yellow-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatMark {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(14px);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-heading,
  .about-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-note {
    max-width: 520px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  address {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero {
    padding-top: 118px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .services-grid,
  .project-grid,
  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-wide {
    grid-column: span 1;
  }

  .stat {
    min-height: 170px;
    border-top: 1px solid var(--line);
  }

  .media-caption {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
  }
}

@media (max-width: 500px) {
  .section-shell,
  .cta-section,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand strong {
    max-width: 142px;
    font-size: 0.88rem;
  }

  h2 {
    font-size: clamp(2.3rem, 13vw, 3.6rem);
  }

  .hero-media {
    min-height: 330px;
  }

  .service-card,
  .project-card,
  .process-step {
    padding: 14px;
  }

  .cta-section {
    padding: 34px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
