@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* =============================================
   TOKENS
============================================= */
:root {
  --black:       #FFFFFF;
  --surface:     #F2F2F2;
  --card:        #E8E8E8;
  --border:      #D4D4D4;
  --white:       #0A0A0A;
  --muted:       #111111;
  --rust:        #39FF14;
  --rust-light:  #5FFF35;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h:       72px;
  --section-v:   120px;
  --max-w:       1360px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* grain disabled on light theme */
body::after { display: none; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   LAYOUT
============================================= */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

section.section { padding: var(--section-v) 0; }
.section--line   { border-top: 1px solid var(--border); }

/* =============================================
   NAVIGATION
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.2s;
}
.nav__brand:hover { color: var(--rust); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__link:hover,
.nav__link.active { color: var(--white); }

.nav__cta {
  background: var(--rust);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--rust-light); }

/* hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: #0A0A0A;
  transition: transform 0.3s, opacity 0.3s;
}

/* mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: #0A0A0A;
  z-index: 950;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-mobile.open { display: flex; }

.nav-mobile__link {
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: 0.04em;
  color: #F2EDE8;
  transition: color 0.2s;
}
.nav-mobile__link:hover { color: var(--rust); }

.nav-mobile__close {
  position: absolute;
  top: 24px; right: 44px;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  background: none;
  border: none;
  transition: color 0.2s;
  line-height: 1;
}
.nav-mobile__close:hover { color: #F2EDE8; }

/* =============================================
   HERO — HOME
============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-h);
  padding-bottom: 88px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--rust);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 10.5vw, 152px);
  line-height: 0.91;
  letter-spacing: 0.01em;
  margin-bottom: 44px;
}
.hero__headline em {
  font-style: normal;
  color: var(--rust);
}

.hero__sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.6;
  margin-bottom: 52px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn__arrow { transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--primary { background: var(--rust); color: var(--white); }
.btn--primary:hover { background: var(--rust-light); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn--ghost:hover { border-color: rgba(10,10,10,0.4); }

/* =============================================
   MARQUEE BELT
============================================= */
.marquee-belt {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 17px 0;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 36px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--rust);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  padding-top: calc(var(--nav-h) + 88px);
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}

.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
}
.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--rust);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 112px);
  line-height: 0.93;
  letter-spacing: 0.01em;
}
.page-hero__title em {
  font-style: normal;
  color: var(--rust);
}

.page-hero__sub {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
}

/* =============================================
   SECTION LABELS
============================================= */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--rust);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

/* =============================================
   HOME — SERVICES TEASER
============================================= */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 32px;
  flex-wrap: wrap;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.service-card {
  background: var(--black);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s;
}
.service-card:hover { background: var(--card); }

.service-card__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--rust);
  text-transform: uppercase;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.service-card__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 400px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-top: auto;
  padding-top: 24px;
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 14px; }

/* =============================================
   HOME — STORY TEASER
============================================= */
.story-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-teaser__pull {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0.01em;
}
.story-teaser__pull em {
  font-style: normal;
  color: var(--rust);
}

.story-teaser__body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}
.story-teaser__body p + p { margin-top: 20px; }
.story-teaser__body strong { color: var(--white); font-weight: 500; }

/* =============================================
   HOME — CTA BLOCK
============================================= */
.cta-block {
  text-align: center;
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.cta-block__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.cta-block__title em { font-style: normal; color: var(--rust); }

.cta-block__sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 48px;
  font-weight: 300;
}

/* =============================================
   SERVICES PAGE
============================================= */
.service-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  padding: 88px 0;
  border-top: 1px solid var(--border);
}

.service-block__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  padding-top: 8px;
  position: sticky;
  top: 100px;
  align-self: start;
}

.service-block__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}

.service-block__lead {
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 620px;
}

.service-block__body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 620px;
}
.service-block__body p + p { margin-top: 18px; }

.includes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 48px 0 20px;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
}

.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--white);
  line-height: 1.5;
}
.includes-item::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--rust);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* =============================================
   WHY GT PAGE
============================================= */
.story-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
}

.story-layout__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  position: sticky;
  top: 100px;
  align-self: start;
}

.story-intro-line {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin-bottom: 48px;
}

.story-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.88;
  max-width: 700px;
}
.story-body p + p  { margin-top: 28px; }
.story-body strong { color: var(--white); font-weight: 500; }

.story-pull {
  border-left: 2px solid var(--rust);
  padding: 20px 32px;
  margin: 52px 0;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--white);
  background: var(--surface);
}

/* What Makes Us Different */
.diff-section { margin-top: 120px; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-top: 56px;
}

.diff-card {
  background: var(--card);
  padding: 56px 48px;
  transition: background 0.3s;
}
.diff-card:hover { background: #181818; }

.diff-card__title {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.diff-card__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* =============================================
   WORK PAGE
============================================= */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--border);
}

.work-item {
  position: relative;
  background: var(--card);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  cursor: pointer;
}

.work-item video,
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-item:hover video,
.work-item:hover img { transform: scale(1.04); }

.work-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.work-item:hover .work-item__overlay { opacity: 1; }

.work-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

.work-item__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(191,89,32,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.work-item:hover .work-item__play { opacity: 1; }

/* =============================================
   CONTACT PAGE
============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.contact-headline em { font-style: normal; color: var(--rust); }

.contact-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 420px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 52px;
  padding-top: 12px;
}

.contact-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}

.contact-item__value {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--white);
}
.contact-item__value a { transition: color 0.2s; }
.contact-item__value a:hover { color: var(--rust); }

/* =============================================
   FOOTER
============================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 48px;
  margin-top: auto;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.05em;
}

.footer__location {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.footer__nav {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 8px;
}

.footer__nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy,
.footer__contact {
  font-size: 13px;
  color: var(--muted);
}
.footer__contact a { color: var(--muted); transition: color 0.2s; }
.footer__contact a:hover { color: var(--white); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  :root { --section-v: 88px; }
  .wrap, .nav__inner { padding: 0 28px; }

  .story-teaser,
  .contact-layout { grid-template-columns: 1fr; gap: 52px; }

  .story-layout,
  .service-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-layout__label,
  .service-block__label { position: static; }
}

@media (max-width: 768px) {
  :root { --section-v: 64px; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { padding: 0 24px; }

  .service-grid,
  .diff-grid { grid-template-columns: 1fr; }

  .work-grid { grid-template-columns: 1fr; }
  .work-item { aspect-ratio: 16 / 9; }

  .service-card { padding: 44px 32px; }
  .diff-card { padding: 44px 32px; }

  .cta-block { padding: 80px 24px; }
  .footer__nav { gap: 24px; }
}

@media (max-width: 480px) {
  .wrap, .nav__inner { padding: 0 20px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero { padding-bottom: 64px; }
  .footer__top { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
