:root {
  --bg: #050505;
  --text: #f4f4f4;
  --muted: rgba(244,244,244,.68);
  --line: rgba(255,255,255,.14);
  --yellow: #ffd84d;
  --yellow-soft: rgba(255,216,77,.14);
  --yellow-line: rgba(255,216,77,.44);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,216,77,.16), transparent 24%),
    radial-gradient(circle at 82% 64%, rgba(255,255,255,.06), transparent 30%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .045;
  background-image: linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px);
  background-size: 100% 4px;
}

a { color: inherit; text-decoration: none; }

.service-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px,4vw,56px);
  background: linear-gradient(to bottom, rgba(5,5,5,.88), transparent);
}

.service-logo img {
  display: block;
  width: clamp(118px,11vw,168px);
  filter: invert(1);
}

.service-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.service-nav-links a {
  opacity: .72;
  transition: opacity .25s ease, color .25s ease;
}

.service-nav-links a:hover,
.service-nav-links a[aria-current="page"] {
  opacity: 1;
  color: var(--yellow);
}

.service-hero {
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px,4vw,56px) 72px;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 128px;
  width: min(86vw,1100px);
  height: min(52vw,520px);
  min-height: 330px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,216,77,.22);
  border-radius: 38px;
  pointer-events: none;
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px,100%);
  margin: 0 auto;
}

.service-kicker,
.section-kicker {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.service-hero h1 {
  width: min(1050px,100%);
  margin: 0;
  font-size: clamp(58px,10vw,148px);
  line-height: .84;
  letter-spacing: -.075em;
  text-wrap: balance;
}

.service-lead {
  width: min(680px,100%);
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px,2.2vw,28px);
  line-height: 1.28;
}

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

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
  background: var(--yellow);
  color: #050505;
}

.service-btn.primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #050505;
}

.service-btn.primary:hover {
  background: transparent;
  color: var(--yellow);
}

.service-section {
  padding: clamp(76px,10vw,138px) clamp(20px,4vw,56px);
}

.service-section + .service-section {
  border-top: 1px solid var(--line);
}

.service-inner {
  width: min(1180px,100%);
  margin: 0 auto;
}

.service-section h2 {
  width: min(900px,100%);
  margin: 0 0 42px;
  font-size: clamp(40px,6.6vw,92px);
  line-height: .94;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(34px,7vw,100px);
  align-items: start;
}

.service-intro-grid p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px,1.7vw,23px);
  line-height: 1.55;
}

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

.service-card,
.process-card,
.work-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.032);
}

.service-card {
  min-height: 260px;
  padding: 26px;
}

.service-card::before,
.work-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 84% 12%, rgba(255,216,77,.18), transparent 34%);
}

.service-card span,
.process-card span,
.work-placeholder span {
  position: relative;
  z-index: 1;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 92px 0 12px;
  font-size: clamp(27px,3vw,42px);
  line-height: .95;
  letter-spacing: -.05em;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.process-card {
  min-height: 230px;
  padding: 26px;
}

.process-card strong {
  display: block;
  margin-top: 72px;
  font-size: 28px;
  letter-spacing: -.04em;
}

.process-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 16px;
}

.work-placeholder {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background:
    linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.15)),
    linear-gradient(135deg, rgba(255,216,77,.08), rgba(255,255,255,.025));
}

.work-placeholder h3 {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  font-size: 30px;
  letter-spacing: -.05em;
}

.work-placeholder:first-child {
  min-height: 480px;
}

.placeholder-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.cross-service {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.cross-service:hover {
  transform: translateY(-5px);
  border-color: var(--yellow-line);
  background: rgba(255,216,77,.055);
}

.cross-service span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cross-service strong {
  display: block;
  margin-top: 18px;
  font-size: 30px;
  letter-spacing: -.05em;
}

.service-cta {
  min-height: 62svh;
  display: grid;
  place-items: center;
  text-align: center;
}

.service-cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.service-cta p {
  width: min(640px,100%);
  margin: -16px auto 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px,4vw,56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .service-nav-links a:not(.nav-home) { display: none; }
  .service-hero { min-height: 82svh; padding-top: 128px; }
  .service-hero::before {
    top: 104px;
    width: calc(100% - 28px);
    height: 440px;
    border-radius: 28px;
  }
  .service-hero h1 { font-size: clamp(52px,13vw,94px); }
  .service-intro-grid { grid-template-columns: 1fr; }
  .service-grid,
  .process-grid,
  .work-grid,
  .cross-services { grid-template-columns: 1fr; }
  .work-placeholder,
  .work-placeholder:first-child { min-height: 300px; }
}

@media (max-width: 560px) {
  .service-nav { padding: 18px 14px; }
  .service-nav-links { gap: 10px; font-size: 9px; }
  .service-hero { padding: 118px 14px 58px; }
  .service-hero::before {
    width: calc(100% - 18px);
    height: 390px;
    min-height: 0;
    border-radius: 24px;
  }
  .service-hero h1 {
    max-width: 100%;
    font-size: clamp(46px,15vw,74px);
    line-height: .87;
    overflow-wrap: anywhere;
  }
  .service-lead { font-size: 18px; }
  .service-section { padding-left: 14px; padding-right: 14px; }
  .service-section h2 { font-size: clamp(38px,12vw,58px); }
  .service-card { min-height: 230px; padding: 22px; }
  .service-card h3 { margin-top: 70px; }
  .service-footer { flex-direction: column; align-items: flex-start; padding-left: 14px; padding-right: 14px; }
}
