/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #0a0a0a;
  --ink: #111111;
  --white: #ffffff;
  --grey: #8a8a8a;
  --grey-2: #e5e5e5;
  --grey-bg: #f6f6f6;
  --accent: #ff5a1f;
  --radius: 14px;
  --maxw: 1280px;
  --ease: cubic-bezier(.16,1,.3,1);
  --font: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1; letter-spacing: -0.02em; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--grey-2);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 24px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.03em; }
.nav__mark {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--black); color: var(--white);
  font-weight: 900; font-size: 20px;
}
.nav__word { font-size: 20px; }
.nav__links {
  display: flex; gap: 28px; margin-left: 18px;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.nav__links a { color: var(--grey); transition: color .2s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__cta {
  margin-left: auto;
  background: var(--black); color: var(--white);
  padding: 11px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.nav__cta:hover { transform: translateY(-1px); background: var(--accent); }
.nav__burger {
  display: none; margin-left: auto;
  flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px;
}
.nav__burger span { width: 24px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none; flex-direction: column;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--grey-2);
}
.nav__mobile a {
  padding: 14px 0; font-weight: 800; font-size: 17px;
  text-transform: uppercase; letter-spacing: .02em;
  border-bottom: 1px solid var(--grey-2);
}
.nav__mobile.is-open { display: flex; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px; border-radius: 100px;
  font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .04em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  cursor: pointer; border: 2px solid transparent;
}
.btn--solid { background: var(--black); color: var(--white); }
.btn--solid:hover { background: var(--accent); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: var(--white); color: var(--black); }
.btn--lg { padding: 18px 40px; font-size: 15px; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  max-width: var(--maxw); margin: 20px auto 0; border-radius: 24px;
  min-height: 78vh; display: flex; flex-direction: column; justify-content: center;
  padding: 56px 48px;
  color: var(--white);
  background: var(--black);
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 120% at 80% 10%, var(--g1) 0%, transparent 45%),
    radial-gradient(120% 120% at 10% 100%, var(--g2) 0%, transparent 50%),
    #0a0a0a;
  opacity: .92;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, transparent 40%, rgba(0,0,0,.55) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 720px; }
.hero__title {
  font-size: clamp(52px, 11vw, 132px); font-weight: 900; text-transform: uppercase;
  margin: 18px 0 20px; letter-spacing: -.04em;
}
.hero__sub { font-size: clamp(16px, 2vw, 20px); max-width: 560px; color: rgba(255,255,255,.82); }
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__meta {
  position: relative; z-index: 2; display: flex; gap: 48px; margin-top: 56px; flex-wrap: wrap;
}
.hero__meta strong { display: block; font-size: 30px; font-weight: 900; }
.hero__meta span { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  padding: 8px 14px; border-radius: 100px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
}
.tag--live { color: #fff; }
.tag--live::first-letter { color: var(--accent); }

/* ============ TICKER ============ */
.ticker {
  overflow: hidden; white-space: nowrap;
  background: var(--black); color: var(--white);
  padding: 16px 0; margin: 24px 0;
}
.ticker__track { display: inline-flex; gap: 40px; animation: marquee 26s linear infinite; }
.ticker__track span {
  font-weight: 900; font-size: 22px; text-transform: uppercase; letter-spacing: .04em;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { max-width: var(--maxw); margin: 0 auto; padding: 72px 24px; }
.section--dark { max-width: none; background: var(--black); color: var(--white); }
.section--dark .section__head { max-width: var(--maxw); margin-inline: auto; }
.section__head { margin-bottom: 40px; }
.section__title {
  font-size: clamp(34px, 6vw, 64px); font-weight: 900; text-transform: uppercase;
}
.section__lead { margin-top: 12px; color: var(--grey); font-size: 17px; max-width: 560px; }
.section--dark .section__lead { color: rgba(255,255,255,.6); }

/* ============ DROPS GRID ============ */
.grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: var(--grey-bg); border-radius: var(--radius); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -24px rgba(0,0,0,.35); }
.card__media {
  position: relative; aspect-ratio: 4 / 3;
  background:
    radial-gradient(120% 120% at 75% 20%, var(--g1) 0%, transparent 55%),
    radial-gradient(120% 120% at 20% 90%, var(--g2) 0%, transparent 55%),
    #1a1a1a;
  display: flex; align-items: flex-start; justify-content: space-between; padding: 16px;
}
.card:hover .card__media { filter: saturate(1.15); }
.card__badge {
  background: var(--white); color: var(--black);
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em;
  padding: 6px 10px; border-radius: 100px;
}
.card__badge--hot { background: var(--accent); color: var(--white); }
.card__badge--soon { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.4); }
.card__price {
  background: rgba(0,0,0,.55); color: #fff; backdrop-filter: blur(4px);
  font-size: 13px; font-weight: 900; padding: 6px 11px; border-radius: 100px;
}
.card__price-unit { font-size: 11px; font-weight: 700; opacity: .8; }
.card__body { padding: 20px; }
.card__cat { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--grey); }
.card__name { font-size: 24px; font-weight: 900; margin: 6px 0 8px; }
.card__desc { font-size: 14.5px; color: #444; }
.card__cta {
  display: inline-block; margin-top: 16px;
  font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .04em;
  transition: color .2s var(--ease);
}
.card__cta:hover { color: var(--accent); }

/* ============ WORK ============ */
.work {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr);
}
.work__item {
  position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  background:
    radial-gradient(120% 120% at 80% 15%, var(--g1) 0%, transparent 55%),
    radial-gradient(120% 120% at 15% 95%, var(--g2) 0%, transparent 55%),
    #1a1a1a;
  transition: transform .4s var(--ease);
}
.work__item::after { content:""; position:absolute; inset:0; background: linear-gradient(transparent 40%, rgba(0,0,0,.5)); }
.work__item:hover { transform: scale(.99); }
.work__cat { position: relative; z-index: 2; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }
.work__name { position: relative; z-index: 2; font-size: clamp(28px, 5vw, 48px); font-weight: 900; text-transform: uppercase; }

/* ============ SERVICES ============ */
.services { list-style: none; display: grid; gap: 2px; grid-template-columns: repeat(3, 1fr); }
.services li {
  padding: 32px 26px; background: var(--grey-bg); border-radius: var(--radius);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.services li:hover { background: var(--black); color: var(--white); }
.services__num { font-size: 13px; font-weight: 900; color: var(--accent); }
.services li h3 { font-size: 21px; font-weight: 900; margin: 14px 0 8px; }
.services li p { font-size: 14.5px; color: var(--grey); }
.services li:hover p { color: rgba(255,255,255,.7); }

/* ============ CTA ============ */
.cta {
  max-width: var(--maxw); margin: 0 auto 40px; border-radius: 24px;
  background: var(--accent); color: var(--white);
  text-align: center; padding: 90px 24px;
}
.cta__title { font-size: clamp(44px, 9vw, 104px); font-weight: 900; text-transform: uppercase; }
.cta__sub { margin: 18px auto 34px; max-width: 460px; font-size: 18px; opacity: .9; }
.cta .btn--solid { background: var(--white); color: var(--black); }
.cta .btn--solid:hover { background: var(--black); color: var(--white); }

/* ============ FOOTER ============ */
.footer { background: var(--black); color: var(--white); padding: 64px 24px 28px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: flex; gap: 48px; flex-wrap: wrap; justify-content: space-between; }
.footer__brand { display: flex; flex-direction: column; gap: 10px; max-width: 280px; font-weight: 900; }
.footer__brand .nav__mark { margin-bottom: 4px; }
.footer__brand p { font-weight: 400; color: rgba(255,255,255,.55); font-size: 14px; }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__cols h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--grey); margin-bottom: 14px; }
.footer__cols a { display: block; padding: 6px 0; font-size: 15px; color: rgba(255,255,255,.85); transition: color .2s var(--ease); }
.footer__cols a:hover { color: var(--accent); }
.footer__base {
  max-width: var(--maxw); margin: 48px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.5);
}

/* ============ REVEAL ANIM ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { padding: 40px 26px; min-height: 70vh; border-radius: 18px; }
  .hero__meta { gap: 32px; }
  .grid, .work, .services { grid-template-columns: 1fr; }
  .section { padding: 56px 20px; }
  .footer__inner { flex-direction: column; gap: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
