/* ============================================
   BILADO MEDIA — PREMIUM STYLESHEET
   Inspired by: Locomotive, Obys, Fantasy,
   Graphite, Crafted, Wpromote, Animalz
   ============================================ */

/* ── Variables ── */
:root {
  --black:    #0A0A0A;
  --dark:     #111111;
  --dark2:    #1A1A1A;
  --dark3:    #222222;
  --white:    #FFFFFF;
  --off-white:#F5F3EE;
  --accent:   #C8FF00;       /* electric lime — used by top agencies */
  --accent2:  #2563EB;
  --gray:     #888888;
  --gray-lt:  #CCCCCC;
  --border:   rgba(255,255,255,0.08);
  --font-head:'Syne', sans-serif;
  --font-body:'Inter', sans-serif;
  --ease:     cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}
body.loading { overflow: hidden; }
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Custom cursor disabled — using default browser cursor */

/* ── Preloader ── */
.preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; width: 260px; }
.preloader__name {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.02em;
  display: block;
  margin-bottom: 24px;
  color: var(--white);
}
.preloader__bar {
  width: 100%; height: 2px;
  background: var(--dark3);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}
.preloader__fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width .05s linear;
  border-radius: 2px;
}
.preloader__pct {
  font-size: .8rem;
  color: var(--gray);
  letter-spacing: .1em;
}

/* ── Label ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--accent);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  transition: background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav__logo img {
  height: 64px;
  width: auto;
  transition: opacity .3s;
  object-fit: contain;
  filter: invert(1);
}
.nav__logo:hover img { opacity: .7; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-lt);
  border-radius: 100px;
  transition: color .3s, background .3s;
  letter-spacing: .01em;
}
.nav__link:hover { color: var(--white); }
.nav__link--cta {
  background: var(--accent);
  color: var(--black) !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}
.nav__link--cta:hover { background: #d4ff1a; }
.nav__arrow { font-size: 1rem; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: transform .4s var(--ease), opacity .3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  transform: translateY(-100%);
  transition: transform .7s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu__inner { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu__link {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: color .3s;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.mobile-menu.open .mobile-menu__link { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: .1s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: .18s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: .26s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: .34s; }
.mobile-menu__link[data-num]::before {
  content: attr(data-num);
  font-size: .75rem;
  font-family: var(--font-body);
  color: var(--gray);
  font-weight: 400;
}
.mobile-menu__link:hover { color: var(--accent); }
.mobile-menu__footer {
  margin-top: auto;
  display: flex;
  gap: 32px;
  font-size: .85rem;
  color: var(--gray);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero__bg img.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.4) 0%,
    rgba(10,10,10,.2) 40%,
    rgba(10,10,10,.85) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px 120px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.hero__dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .6; }
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.04em;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
}
.hero__title-line {
  overflow: hidden;
  display: block;
}
.hero__title-line span,
.hero__title-line em {
  display: inline-block;
  transform: translateY(110%);
  animation: slideUp .9s var(--ease-out) forwards;
}
.hero__title-line[data-line="1"] span,
.hero__title-line[data-line="1"] em { animation-delay: .2s; }
.hero__title-line[data-line="2"] span,
.hero__title-line[data-line="2"] { animation-delay: .35s; transform: translateY(110%); animation: slideUpLine .9s var(--ease-out) .35s forwards; }
@keyframes slideUp     { to { transform: translateY(0); } }
@keyframes slideUpLine { from { transform: translateY(110%); } to { transform: translateY(0); } }

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 340px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: gap .3s var(--ease);
}
.hero__cta:hover { gap: 24px; }
.hero__cta-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background .3s, border-color .3s;
}
.hero__cta:hover .hero__cta-icon {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

/* Marquee */
.hero__marquee-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: var(--accent);
  overflow: hidden;
  padding: 10px 0;
}
.hero__marquee {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.hero__marquee span {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black);
}
.hero__marquee .sep { color: var(--black); opacity: .4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   STATEMENT
   ============================================ */
.statement {
  padding: 120px 48px;
  background: var(--off-white);
  color: var(--black);
}
.statement__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.statement__text {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.02em;
  max-width: 900px;
}
.statement__highlight { color: var(--accent2); }
.statement__meta {
  display: flex;
  gap: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,.1);
}
.statement__stat {
  display: flex;
  flex-direction: column;
}
.statement__stat strong {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--black);
}
.statement__stat sup {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent2);
  vertical-align: super;
}
.statement__stat span {
  font-size: .85rem;
  color: #666;
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 120px 48px;
  max-width: 1300px;
  margin: 0 auto;
}
.services__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
}
.services__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.services__title em { font-style: italic; color: var(--accent); }
.services__list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 280px 1fr 60px;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  transition: background .3s;
  cursor: default;
}
.service-row:last-child { border-bottom: 1px solid var(--border); }
.service-row:hover { background: var(--dark2); padding-left: 20px; padding-right: 20px; margin: 0 -20px; border-radius: 12px; border-color: transparent; }
.service-row__left { display: flex; flex-direction: column; gap: 8px; }
.service-row__num {
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .1em;
}
.service-row__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
}
.service-row__right p {
  font-size: .95rem;
  color: var(--gray-lt);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-row__right ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-row__right ul li {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--dark3);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.service-row__arrow {
  font-size: 1.4rem;
  color: var(--gray);
  justify-self: end;
  align-self: center;
  transition: color .3s, transform .3s;
}
.service-row:hover .service-row__arrow { color: var(--accent); transform: translate(4px,-4px); }

/* ============================================
   WORK / PORTFOLIO
   ============================================ */
.work {
  padding: 0 48px 120px;
  max-width: 1300px;
  margin: 0 auto;
}
.work__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}
.work__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.work__title em { font-style: italic; color: var(--accent); }

.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.work-card {
  background: var(--dark2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .5s var(--ease);
}
.work-card:hover { transform: translateY(-6px); }
.work-card--large { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.work-card--wide  { grid-column: span 2; display: grid; grid-template-columns: 1.6fr 1fr; }
.work-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.work-card--large .work-card__img-wrap,
.work-card--wide  .work-card__img-wrap { aspect-ratio: auto; height: 100%; min-height: 320px; }
.work-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.work-card:hover .work-card__img { transform: scale(1.06); }
.work-card__info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}
.work-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work-card__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,255,0,.1);
  padding: 4px 12px;
  border-radius: 100px;
}
.work-card__year {
  font-size: .78rem;
  color: var(--gray);
}
.work-card__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.work-card__desc {
  font-size: .88rem;
  color: var(--gray-lt);
  line-height: 1.6;
}
.work-card__link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .04em;
  margin-top: 8px;
  transition: letter-spacing .3s;
}
.work-card:hover .work-card__link { letter-spacing: .1em; }

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--off-white);
  color: var(--black);
  padding: 120px 48px;
}
.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__left .label { color: #666; }
.about__left .label::before { background: var(--accent2); }
.about__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--black);
}
.about__title em { font-style: italic; color: var(--accent2); }
.about__text {
  font-size: .97rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}
.about__tags span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black);
  border: 1.5px solid rgba(0,0,0,.2);
  padding: 8px 18px;
  border-radius: 100px;
  transition: background .3s, border-color .3s;
}
.about__tags span:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
  border: 1.5px solid var(--black);
  padding: 14px 28px;
  border-radius: 100px;
  transition: background .3s, color .3s;
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.about__right { position: relative; }
.about__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about__img {
  width: 100%; height: 560px;
  object-fit: cover;
  display: block;
}
.about__badge {
  position: absolute;
  bottom: 28px; right: 28px;
  background: var(--accent2);
  color: var(--white);
  border-radius: 14px;
  padding: 20px 26px;
  text-align: center;
}
.about__badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.about__badge span {
  font-size: .78rem;
  opacity: .85;
  line-height: 1.4;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 120px 48px;
  max-width: 1300px;
  margin: 0 auto;
}
.process__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
}
.process__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.process__title em { font-style: italic; color: var(--accent); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process__step {
  padding: 40px 32px 40px 0;
  border-left: 1px solid var(--border);
  padding-left: 32px;
}
.process__step-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.process__num {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
}
.process__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.process__step h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.process__step p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--dark2);
  padding: 120px 48px;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.testimonials__track-wrap { overflow: hidden; }
.testimonials__track {
  display: flex;
  transition: transform .6s var(--ease);
}
.tcard {
  min-width: 100%;
  padding: 0 80px;
  text-align: center;
}
.tcard__stars {
  color: #F59E0B;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 28px;
}
.tcard__quote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 40px;
  font-style: italic;
}
.tcard__author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.tcard__avatar {
  width: 50px; height: 50px;
  background: var(--accent2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
}
.tcard__author strong { display: block; font-weight: 700; font-size: .95rem; }
.tcard__author span   { font-size: .82rem; color: var(--gray); }
.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.testimonials__nav button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s;
}
.testimonials__nav button:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }
.testimonials__dots { display: flex; gap: 8px; }
.tdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background .3s, width .3s;
  cursor: pointer;
}
.tdot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: var(--accent);
  padding: 80px 48px;
}
.cta-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-strip__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.03em;
  line-height: 1.1;
}
.cta-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background .3s, gap .3s;
}
.cta-strip__btn:hover { background: var(--dark2); gap: 20px; }
.cta-strip__btn span { font-size: 1.1rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 48px;
  max-width: 1300px;
  margin: 0 auto;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 48px;
}
.contact__title em { font-style: italic; color: var(--accent); }
.contact__details { display: flex; flex-direction: column; gap: 0; }
.contact__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .3s;
}
.contact__item:hover { padding-left: 12px; }
.contact__item-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
}
.contact__item-val {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: color .3s;
}
.contact__item:hover .contact__item-val { color: var(--accent); }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-field label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--white);
  outline: none;
  transition: border-color .3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray); }
.form-field select option { background: var(--dark2); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  color: var(--black);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: 10px;
  margin-top: 8px;
  transition: background .3s;
}
.form-submit:hover { background: #d4ff1a; }
.form-submit__arrow { font-size: 1.2rem; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(200,255,0,.1);
  border: 1px solid rgba(200,255,0,.3);
  border-radius: 10px;
  color: var(--accent);
  font-size: .9rem;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 80px 48px 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer__logo {
  height: 72px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
  filter: invert(1);
}
.footer__brand p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 340px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: .88rem;
  color: var(--gray);
  transition: color .3s;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom span,
.footer__bottom-links a {
  font-size: .82rem;
  color: var(--gray);
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a:hover { color: var(--white); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .work-card--large,
  .work-card--wide { grid-column: span 1; display: block; }
  .work-card--large .work-card__img-wrap,
  .work-card--wide  .work-card__img-wrap { height: 260px; }
  .process__steps { grid-template-columns: repeat(2,1fr); }
  .about__inner { grid-template-columns: 1fr; }
  .about__img { height: 400px; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__content { padding: 0 24px 100px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .statement { padding: 80px 24px; }
  .statement__meta { flex-direction: column; gap: 32px; }
  .services { padding: 80px 24px; }
  .service-row { grid-template-columns: 1fr; gap: 16px; }
  .service-row__arrow { display: none; }
  .work { padding: 0 24px 80px; }
  .work__grid { grid-template-columns: 1fr; }
  .about { padding: 80px 24px; }
  .process { padding: 80px 24px; }
  .process__steps { grid-template-columns: 1fr; }
  .testimonials { padding: 80px 24px; }
  .tcard { padding: 0 20px; }
  .cta-strip { padding: 60px 24px; }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .contact { padding: 80px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 60px 24px 32px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(3.5rem, 16vw, 5rem); }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}
