:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --text: #f2f0eb;
  --muted: #aaa59a;
  --line: rgba(242, 240, 235, 0.16);
  --accent: #f5a623;
  --accent-dark: #c4841a;
  --container: 1180px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
main { flex: 1; }
h1, h2, h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
}
h1 em, h2 em { color: var(--accent); font-style: normal; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(14px);
}
.nav-wrap, .intro-grid, .section, .process-inner, .fit-inner, .offer-inner,
.contact-section, .site-footer-inner, .work-hero, .work-gallery, .work-cta,
.sample-disclosure-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link, .footer-logo { display: inline-flex; align-items: center; }
.logo { display: block; width: auto; height: 52px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a { transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links .nav-cta {
  padding: 11px 18px;
  color: #080808;
  background: var(--accent);
}
.nav-links .nav-cta:hover { color: #080808; background: var(--accent-dark); }
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span { width: 20px; height: 2px; background: var(--text); }

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.8) 37%, rgba(8, 8, 8, 0.12) 72%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.72) 0%, transparent 34%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 90px 24px 130px;
}
.eyebrow, .section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow::before, .section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--accent);
}
.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(4.5rem, 8.5vw, 7.8rem);
}
.hero-content > p {
  max-width: 560px;
  margin: 0 0 38px;
  color: #cbc7be;
  font-size: 1.08rem;
  line-height: 1.75;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 25px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s, color 0.2s;
}
.button.primary { color: #080808; background: var(--accent); }
.button.primary:hover { transform: translateY(-1px); background: var(--accent-dark); }
.button.secondary { color: var(--text); border-color: rgba(242, 240, 235, 0.32); background: rgba(13, 13, 13, 0.28); }
.button.secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero-proof {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, auto);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.84);
  backdrop-filter: blur(12px);
}
.hero-proof span {
  min-width: 130px;
  padding: 19px 24px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.intro-band { border-bottom: 1px solid var(--line); background: var(--surface); }
.intro-grid {
  padding-top: 92px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: end;
}
.intro-grid h2, .section-heading h2, .process-inner h2, .offer-inner h2,
.contact-info h2, .work-cta h2 {
  font-size: clamp(3rem, 5.6vw, 5rem);
}
.intro-copy p, .offer-inner p, .contact-info p, .work-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}
.intro-copy p + p { margin-top: 16px; }

.section { padding-top: 110px; padding-bottom: 112px; }
.section-heading { margin-bottom: 58px; }
.section-heading h2 { max-width: 780px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.service-card {
  min-height: 330px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  transition: background 0.25s;
}
.service-card:hover { background: var(--surface-2); }
.service-number {
  margin-bottom: auto;
  color: rgba(242, 240, 235, 0.2);
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
}
.service-card h3 { margin-bottom: 14px; font-size: 28px; }
.service-card p, .process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.process-section { border-block: 1px solid var(--line); background: var(--surface); }
.process-inner { padding-top: 106px; padding-bottom: 110px; }
.section-heading.compact { max-width: 800px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.process-index { color: var(--accent); font-family: "Bebas Neue", sans-serif; font-size: 28px; }
.process-list h3 { margin-bottom: 9px; font-size: 30px; }
.process-list p { max-width: 650px; }

.fit-section { border-bottom: 1px solid var(--line); }
.fit-inner { padding-top: 90px; padding-bottom: 94px; }
.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.fit-grid h2 {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  transition: color 0.2s;
}
.fit-grid h2:nth-child(odd) { border-right: 1px solid var(--line); }
.fit-grid h2:nth-child(even) { padding-left: 34px; }
.fit-grid h2:hover { color: var(--accent); }

.offer-section {
  border-block: 1px solid rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.08);
}
.offer-inner {
  padding-top: 86px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
}
.offer-inner .section-label { color: var(--accent); }
.offer-inner .section-label::before { background: var(--accent); }
.offer-inner p { max-width: 620px; margin-top: 22px; color: var(--muted); }
.offer-points { border-top: 1px solid var(--line); }
.offer-points div { padding: 19px 0; border-bottom: 1px solid var(--line); }
.offer-points strong, .offer-points span { display: block; }
.offer-points strong { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.offer-points span { margin-top: 3px; color: var(--muted); font-size: 0.9rem; }

.contact-section {
  padding-top: 110px;
  padding-bottom: 112px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}
.contact-info { position: sticky; top: 122px; }
.contact-info p { margin-top: 22px; max-width: 470px; }
.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 30px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: grid; gap: 8px; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.contact-form label:nth-of-type(5), .contact-form label:nth-of-type(6), .contact-form button, .form-status { grid-column: 1 / -1; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  outline: none;
  padding: 14px 16px;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
textarea { min-height: 130px; resize: vertical; }
select { appearance: none; }
.form-status { display: none; margin: 0; padding: 13px 15px; border: 1px solid var(--line); font-size: 0.9rem; }
.form-status.is-visible { display: block; }
.form-status.success { border-color: rgba(245, 166, 35, 0.5); background: rgba(245, 166, 35, 0.09); }
.form-status.error { border-color: rgba(255, 120, 120, 0.5); background: rgba(255, 120, 120, 0.08); }

.work-hero { padding-top: 110px; padding-bottom: 82px; }
.work-hero h1 { margin-bottom: 24px; font-size: clamp(4.4rem, 10vw, 8rem); }
.work-hero p { max-width: 600px; }
.sample-disclosure {
  border-block: 1px solid rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.08);
}
.sample-disclosure-inner {
  padding-top: 25px;
  padding-bottom: 27px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
}
.disclosure-label {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sample-disclosure strong { display: block; margin-bottom: 5px; font-size: 0.95rem; }
.sample-disclosure p { max-width: 760px; margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.65; }
.work-gallery { padding-top: 76px; padding-bottom: 112px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px 22px;
}
.sample-card { min-width: 0; }
.sample-video {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s, border-color 0.25s;
}
.sample-card:hover .sample-video { transform: translateY(-4px); border-color: rgba(245, 166, 35, 0.58); }
.sample-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.sample-info { padding-top: 17px; }
.sample-info span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.sample-info h2 {
  min-height: 2em;
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  line-height: 1;
}
.sample-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}
.work-cta {
  padding-top: 82px;
  padding-bottom: 86px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.site-footer { border-top: 1px solid var(--line); }
.site-footer-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 11px;
}
.footer-logo img { width: auto; height: 34px; }
.footer-links { display: flex; gap: 24px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links a:hover { color: var(--text); }
.social-links { display: flex; align-items: center; gap: 9px; }
.social-links a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-links a:hover {
  border-color: rgba(245, 166, 35, 0.65);
  background: rgba(245, 166, 35, 0.08);
  color: var(--accent);
}
.social-links svg { width: 15px; height: 15px; fill: currentColor; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow { animation: fadeUp 0.55s ease both; }
.hero h1 { animation: fadeUp 0.55s 0.08s ease both; }
.hero-content > p { animation: fadeUp 0.55s 0.16s ease both; }
.hero .cta-row { animation: fadeUp 0.55s 0.24s ease both; }

@media (max-width: 900px) {
  .hamburger { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 81px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(13, 13, 13, 0.98);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 12px; }
  .nav-links .nav-cta { margin-top: 6px; text-align: center; }
  .hero { min-height: 760px; align-items: flex-end; }
  .hero-image { object-position: 65% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.76) 55%, rgba(8, 8, 8, 0.16) 100%); }
  .hero-content { padding-top: 300px; padding-bottom: 140px; }
  .hero h1 { max-width: 680px; }
  .hero-proof { left: 0; grid-template-columns: repeat(4, 1fr); }
  .hero-proof span { min-width: 0; padding: 16px 10px; }
  .intro-grid, .offer-inner, .contact-section { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info { position: static; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 22px; }
}

@media (max-width: 580px) {
  .nav-wrap, .intro-grid, .section, .process-inner, .fit-inner, .offer-inner,
  .contact-section, .site-footer-inner, .work-hero, .work-gallery, .work-cta,
  .sample-disclosure-inner {
    padding-left: 18px;
    padding-right: 18px;
  }
  .logo { height: 44px; }
  .hero { min-height: 700px; }
  .hero-content { padding-left: 18px; padding-right: 18px; padding-bottom: 128px; }
  .hero h1 { font-size: clamp(3.8rem, 17vw, 5.2rem); }
  .hero-content > p { font-size: 0.98rem; }
  .hero-proof span { font-size: 8px; letter-spacing: 0.1em; }
  .intro-grid, .section, .process-inner, .fit-inner, .offer-inner, .contact-section { padding-top: 76px; padding-bottom: 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .process-list li { grid-template-columns: 50px 1fr; gap: 18px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-grid h2:nth-child(n) { padding: 23px 0; border-right: 0; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label, .contact-form label:nth-of-type(5), .contact-form label:nth-of-type(6), .contact-form button, .form-status { grid-column: 1; }
  .sample-disclosure-inner { grid-template-columns: 1fr; gap: 8px; }
  .video-grid { grid-template-columns: 1fr; gap: 48px; }
  .sample-card { width: min(100%, 360px); margin: 0 auto; }
  .sample-info h2 { min-height: 0; }
  .work-cta { grid-template-columns: 1fr; }
  .site-footer-inner { padding-top: 28px; padding-bottom: 28px; flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
}
