/* ============================================================
   Archwoods Productions — coded recreation of archwoods.com
   Dark theme drawn from the original Wix palette:
   bg #141416 / #1b1c1e, borders #3f4349, accent #fd6262
   Type: Poppins (display) + Barlow (body)
   ============================================================ */

:root {
  --bg: #141416;
  --bg-alt: #1b1c1e;
  --line: #3f4349;
  --text: #ffffff;
  --text-dim: #b0b0b0;
  --accent: #fd6262;
  --accent-deep: #be4a4a;
  --font-display: "Poppins", sans-serif;
  --font-body: "Barlow", sans-serif;
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  padding: 14px 34px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn--primary {
  background: var(--accent);
  color: #160909;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(253, 98, 98, .35);
}
.btn--ghost {
  border: 1px solid rgba(255, 255, 255, .45);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(20, 20, 22, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(63, 67, 73, .5);
}
.nav__inner {
  width: min(1240px, 94%);
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
}
.nav__mark { width: 26px; height: 26px; color: var(--accent); flex: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}
.nav__links > a { color: var(--text-dim); transition: color .2s ease; }
.nav__links > a:hover, .nav__links > a.is-active { color: var(--text); }

.nav__cta {
  background: var(--accent);
  color: #160909 !important;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 999px;
  transition: box-shadow .2s ease;
}
.nav__cta:hover { box-shadow: 0 6px 22px rgba(253, 98, 98, .4); }

/* dropdown */
.nav__drop { position: relative; }
.nav__droptoggle {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  color: var(--text-dim);
  font: inherit;
  cursor: pointer;
  transition: color .2s ease;
}
.nav__droptoggle svg { width: 10px; height: 6px; transition: transform .2s ease; }
.nav__drop:hover .nav__droptoggle,
.nav__drop.is-open .nav__droptoggle { color: var(--text); }
.nav__drop:hover .nav__droptoggle svg,
.nav__drop.is-open .nav__droptoggle svg { transform: rotate(180deg); }

.nav__dropmenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  translate: -50% 0;
  min-width: 230px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  display: grid;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav__drop:hover .nav__dropmenu,
.nav__drop.is-open .nav__dropmenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav__dropmenu a {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-dim);
  transition: background .15s ease, color .15s ease;
}
.nav__dropmenu a:hover { background: rgba(253, 98, 98, .12); color: var(--text); }

/* burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform .25s ease, opacity .25s 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); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("assets/hero-1.jpg") center / cover no-repeat;
  animation: heroDrift 24s ease-in-out infinite alternate;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(20, 20, 22, .1) 0%, rgba(20, 20, 22, .78) 100%),
    linear-gradient(180deg, rgba(20, 20, 22, .55), rgba(20, 20, 22, .2) 40%, var(--bg) 98%);
}
@keyframes heroDrift {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .hero__bg { animation: none; } }

.hero__content { position: relative; z-index: 1; width: min(880px, 92%); }
.hero__kicker {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(44px, 7.4vw, 84px);
  line-height: 1.06;
  letter-spacing: .01em;
}
.hero__tagline {
  margin: 26px auto 40px;
  max-width: 620px;
  font-size: clamp(17px, 2.1vw, 21px);
  color: var(--text-dim);
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  translate: -50% 0;
  color: var(--text-dim);
  animation: bob 2.2s ease-in-out infinite;
}
.hero__scroll svg { width: 22px; height: 30px; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 110px 0; }

.section__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(32px, 4.6vw, 48px);
  text-align: center;
  margin-bottom: 18px;
}
.section__title::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  background: var(--accent);
  margin: 22px auto 0;
  border-radius: 2px;
}
.section__lead {
  text-align: center;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 60px;
}

/* ============================================================
   CREDITS
   ============================================================ */
.credits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.credits__card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  transition: transform .3s ease, box-shadow .3s ease;
}
.credits__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.credits__card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0, 0, 0, .5); }
.credits__card:hover img { transform: scale(1.05); }

/* ============================================================
   STORY
   ============================================================ */
.story { position: relative; overflow: hidden; }
.story__bg {
  position: absolute;
  inset: 0;
  background: url("assets/story.jpg") center / cover no-repeat;
  opacity: .5;
}
.story__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(20, 20, 22, .55) 30%, rgba(20, 20, 22, .55) 70%, var(--bg) 100%);
}
.story__inner { position: relative; z-index: 1; }
.story__cols {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  color: var(--text-dim);
}
.story__cols p:first-child { color: var(--text); }

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 30px;
  transition: transform .25s ease, border-color .25s ease;
}
.service:hover { transform: translateY(-5px); border-color: var(--accent-deep); }
.service h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 12px;
}
.service p { color: var(--text-dim); font-size: 16px; }
.services__grid .service:nth-last-child(-n+2):nth-child(3n+1) { grid-column: span 1; }

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers { background: var(--bg-alt); border-block: 1px solid var(--line); }
.numbers__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.numbers__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(64px, 9vw, 110px);
  line-height: 1;
  color: var(--accent);
}
.numbers__label {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px 50px;
  align-items: center;
  justify-items: center;
}
.partners__grid img {
  max-height: 46px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.6);
  opacity: .7;
  transition: filter .25s ease, opacity .25s ease;
}
.partners__grid img:hover { filter: none; opacity: 1; }

/* ============================================================
   WORLDWIDE BAND
   ============================================================ */
.worldwide {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  text-align: center;
}
.worldwide__bg {
  position: absolute;
  inset: 0;
  background: url("assets/worldwide.jpg") center / cover no-repeat;
}
.worldwide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg), rgba(20, 20, 22, .45) 35%, rgba(20, 20, 22, .45) 65%, var(--bg));
}
.worldwide__inner { position: relative; z-index: 1; }
.worldwide h2 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(30px, 4.4vw, 46px);
  margin-bottom: 18px;
}
.worldwide p {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-alt); border-top: 1px solid var(--line); }
.footer__grid {
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}
.footer__brand { margin-bottom: 26px; }
.footer h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer p { color: var(--text-dim); margin-bottom: 18px; }
.footer__label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 2px;
}
.footer__contact a, .footer__links a { color: var(--text); transition: color .2s ease; }
.footer__contact a:hover, .footer__links a:hover { color: var(--accent); }

.footer__bar {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  text-align: center;
  font-size: 14px;
  color: #8a8a8a;
}
.footer__bar a { color: var(--text-dim); }
.footer__bar a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .credits__grid { grid-template-columns: repeat(2, 1fr); }
  .story__cols { grid-template-columns: 1fr; gap: 20px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   SUBPAGE SHARED
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 90px) 0 90px;
  text-align: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: url("assets/wavy-bg.jpg") center / cover no-repeat;
  opacity: .45;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,22,.72), rgba(20,20,22,.5) 55%, var(--bg));
}
.page-hero__inner { position: relative; z-index: 1; width: min(820px, 92%); margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
}
.page-hero p { margin-top: 20px; color: var(--text-dim); font-size: clamp(16px, 2vw, 19px); }

.prose { max-width: 760px; margin: 0 auto; color: var(--text-dim); }
.prose p + p { margin-top: 18px; }
.prose strong { color: var(--text); }
.prose a { color: var(--accent); }
.prose ul { margin: 18px 0 0 20px; }
.prose li + li { margin-top: 8px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img { border-radius: 16px; border: 1px solid var(--line); width: 100%; }
.split h2, .split h3 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 18px;
}
.split p { color: var(--text-dim); }
.split p + p { margin-top: 14px; }
.split .btn { margin-top: 26px; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* steps (licensing) */
.steps { display: grid; gap: 22px; margin-top: 60px; }
.step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 26px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  align-items: start;
}
.step__num {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 52px;
  line-height: 1;
  color: var(--accent);
}
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--text-dim); }
.step p + p { margin-top: 10px; }
.step a { color: var(--accent); }

/* catalog */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 26px;
}
.album {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.album:hover { transform: translateY(-5px); border-color: var(--accent-deep); }
.album img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.album figcaption { padding: 18px 20px 22px; }
.album strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.album span { display: block; margin-top: 6px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }

/* poster wall (credits) */
.posters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.posters img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  transition: transform .3s ease;
}
.posters img:hover { transform: scale(1.04); }

/* videos */
.videos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.video-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.video-card iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }
.video-card figcaption { padding: 16px 20px 20px; font-family: var(--font-display); font-size: 15px; }

/* team */
.team__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.member {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.member img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 25%; }
.member div { padding: 26px 28px 30px; }
.member h2 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-bottom: 4px; }
.member em { display: block; font-style: normal; color: var(--accent); font-size: 14px; margin-bottom: 14px; font-family: var(--font-display); }
.member p { color: var(--text-dim); font-size: 16px; }

/* blog */
.blog__filters { display: flex; gap: 12px; justify-content: center; margin-bottom: 50px; flex-wrap: wrap; }
.blog__filters button {
  background: none;
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 14px;
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.blog__filters button:hover { color: var(--text); border-color: var(--text-dim); }
.blog__filters button.is-active { background: var(--accent); border-color: var(--accent); color: #160909; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}
.post-card:hover { transform: translateY(-5px); border-color: var(--accent-deep); }
.post-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post-card div { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .meta { font-size: 13px; color: #8a8a8a; font-family: var(--font-display); }
.post-card .meta b { color: var(--accent); font-weight: 400; }
.post-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.4; }
.post-card p { color: var(--text-dim); font-size: 15px; flex: 1; }
.post-card .more { color: var(--accent); font-family: var(--font-display); font-size: 14px; }

/* article */
.article { width: min(760px, 92%); margin: 0 auto; }
.article__meta { text-align: center; color: #8a8a8a; font-family: var(--font-display); font-size: 14px; margin-bottom: 14px; }
.article__meta b { color: var(--accent); font-weight: 400; }
.article h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(30px, 4.6vw, 46px);
  line-height: 1.15;
  text-align: center;
  margin-bottom: 34px;
}
.article__cover { border-radius: 16px; border: 1px solid var(--line); margin-bottom: 40px; width: 100%; max-height: 480px; object-fit: cover; }
.article p { color: var(--text-dim); }
.article p + p { margin-top: 18px; }
.article .backlink { display: inline-block; margin-top: 40px; color: var(--accent); font-family: var(--font-display); font-size: 15px; }

/* shop */
.shop__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 26px; }
.product {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.product:hover { transform: translateY(-5px); border-color: var(--accent-deep); }
.product img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #fff; }
.product div { padding: 18px 20px 22px; }
.product strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15px; line-height: 1.4; }
.product span { display: block; margin-top: 8px; color: var(--accent); font-family: var(--font-display); }

/* gallery (taxie photos) */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  transition: transform .3s ease;
}
.gallery img:hover { transform: scale(1.03); }

/* streaming pills */
.stream-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 44px; }
.stream-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-dim);
  transition: all .2s ease;
}
.stream-links a:hover { border-color: var(--accent); color: var(--accent); }

/* forms */
.form { max-width: 640px; margin: 50px auto 0; display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form input, .form textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--accent); }
.form textarea { min-height: 140px; resize: vertical; }
.form .btn { justify-self: center; border: none; cursor: pointer; }
.form__note { text-align: center; font-size: 14px; color: #8a8a8a; }

/* contact info cards */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 640px; margin: 0 auto; }
.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}
.contact-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.contact-card a { color: var(--text); }
.contact-card a:hover { color: var(--accent); }

/* taxie band page */
.taxie-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 0 80px;
}
.taxie-hero__bg { position: absolute; inset: 0; background: url("assets/taxie/audio-equipment.jpg") center / cover no-repeat; }
.taxie-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,22,.8), rgba(20,20,22,.55) 50%, var(--bg)); }
.taxie-hero__inner { position: relative; z-index: 1; width: min(760px, 92%); }
.taxie-hero__inner img { max-width: 320px; margin: 0 auto 30px; }
.taxie-hero__inner h1 { font-family: var(--font-display); font-weight: 200; font-size: clamp(26px, 4vw, 40px); letter-spacing: .08em; }
.subnav { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; margin-top: 34px; font-family: var(--font-display); font-size: 14px; }
.subnav a { color: var(--text-dim); }
.subnav a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 34px; }
  .videos__grid, .team__grid, .contact-cards { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .blog__grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 10px; }
  .form .row { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(20, 20, 22, .97);
    border-bottom: 1px solid var(--line);
    padding: 12px 6vw 26px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links > a, .nav__droptoggle { padding: 14px 0; font-size: 16px; width: 100%; }
  .nav__drop { width: 100%; }
  .nav__dropmenu {
    position: static;
    translate: none;
    transform: none;
    opacity: 1;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    padding: 0 0 0 16px;
    border: none;
    background: none;
  }
  .nav__drop.is-open .nav__dropmenu { visibility: visible; height: auto; }
  .nav__cta { text-align: center; margin-top: 14px; padding: 13px 22px; }
  .nav__burger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .credits__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .services__grid { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: 1fr; gap: 48px; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}
