@import url('https://fonts.googleapis.com/css2?family=Anton&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  --void: #0a0908;
  --charcoal: #141311;
  --charcoal-2: #1c1a17;
  --line: #2a2724;
  --line-soft: #201e1b;
  --fire-1: #ff7a1a;
  --fire-2: #ffcf5c;
  --ember: #b8271f;
  --text: #f3f1ec;
  --text-dim: #a8a29a;
  --text-faint: #6f6a63;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--text);
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.05;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fire-1);
  margin-bottom: 14px;
}

.fire-text {
  background: linear-gradient(100deg, var(--fire-2), var(--fire-1) 55%, var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-color: var(--line-soft);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mark {
  display: flex;
  align-items: center;
}

.logo-mark img {
  height: 116px;
  width: auto;
  display: block;
  transition: height 0.25s ease;
}

.site-header.scrolled .logo-mark img { height: 52px; }

@media (max-width: 880px) {
  .logo-mark img { height: 72px; }
  .site-header.scrolled .logo-mark img { height: 40px; }
}

.site-header .wrap { align-items: center; }

.video-feature {
  position: relative;
  height: 92vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-feature video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.5);
}

.video-feature .vf-content {
  position: relative;
  z-index: 2;
}

.video-feature h2 {
  font-size: clamp(38px, 6.5vw, 76px);
}

.video-feature .btn { margin-top: 32px; }

.feature-band {
  position: relative;
  height: 78vh;
  min-height: 520px;
  overflow: hidden;
}

.feature-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.15) 0%, rgba(10,9,8,0.85) 100%);
}

.feature-band .band-label {
  position: absolute;
  bottom: 28px;
  left: 32px;
  z-index: 2;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text-dim);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 11px 22px;
  border: 1px solid var(--fire-1);
  border-radius: 3px;
  color: var(--fire-2);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--fire-1); color: var(--void); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 99;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
}

.mobile-menu .nav-cta {
  margin-top: 24px;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
}

@media (max-width: 880px) {
  .nav-links, .nav-cta.desktop-only { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-fire {
  background: linear-gradient(100deg, var(--fire-1), var(--ember));
  color: #1a0a04;
}

.btn-fire:hover { filter: brightness(1.12); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover { border-color: var(--fire-1); color: var(--fire-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero video, .hero .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.35) 0%, rgba(10,9,8,0.55) 55%, rgba(10,9,8,0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px 90px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 92px);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Sections ---------- */
section { padding: 110px 0; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-head h2 { font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 18px; }
.section-head p { color: var(--text-dim); font-size: 16px; }

.alt-bg { background: var(--charcoal); }

.media-section {
  position: relative;
  overflow: hidden;
}

.media-section .bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.media-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.72);
  z-index: 1;
}

.media-section .wrap {
  position: relative;
  z-index: 2;
}

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--charcoal);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 40px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: var(--fire-1);
  transform: translateY(-3px);
}

.service-card .num {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  color: var(--fire-1);
  letter-spacing: 1px;
  margin-bottom: 18px;
  display: block;
}

.service-card h3 { font-size: 24px; margin-bottom: 14px; }
.service-card p { color: var(--text-dim); font-size: 15px; margin-bottom: 18px; }

.service-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card .tag {
  font-size: 11.5px;
  color: var(--text-faint);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 20px;
}

/* ---------- Gallery ---------- */
.gallery-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.g-row {
  display: grid;
  gap: 16px;
}

.g-row.full { grid-template-columns: 1fr; }
.g-row.split { grid-template-columns: 1fr 1fr; }

.g-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal-2);
}

.g-tile.landscape { aspect-ratio: 16 / 9; }
.g-tile.portrait { aspect-ratio: 3 / 4; }

.g-tile img, .g-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.g-tile:hover img, .g-tile:hover video { transform: scale(1.03); }

@media (max-width: 720px) {
  .g-row.split { grid-template-columns: 1fr; }
}

/* ---------- Client strip ---------- */
.client-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}

.client-strip img {
  max-height: 42px;
  max-width: 100%;
  margin: 0 auto;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.client-strip img:hover { opacity: 1; }

.venue-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
  align-items: center;
  justify-items: center;
  margin-top: 40px;
}

.venue-strip img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.venue-strip img:hover { opacity: 1; }

@media (max-width: 880px) {
  .venue-strip { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .venue-strip img { height: 34px; }
}

@media (max-width: 880px) {
  .client-strip { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--charcoal);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 36px;
}

.testimonial-card p.quote {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-card p.quote::before { content: '\201C'; color: var(--fire-1); }
.testimonial-card p.quote::after { content: '\201D'; color: var(--fire-1); }

.testimonial-card .attr {
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 60px 0 32px;
  background: var(--charcoal);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col a:hover { color: var(--fire-2); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-faint);
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field { margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  color: var(--text-dim);
}

.field label .req { color: var(--fire-1); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--text);
  font-family: 'Work Sans', sans-serif;
  font-size: 14.5px;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--fire-1);
}

.field textarea { resize: vertical; min-height: 120px; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }

.checkbox-pill {
  position: relative;
}

.checkbox-pill input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  cursor: pointer;
}

.checkbox-pill span {
  display: block;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 13.5px;
  color: var(--text-dim);
  transition: all 0.15s ease;
}

.checkbox-pill input:checked + span {
  border-color: var(--fire-1);
  background: rgba(255, 122, 26, 0.1);
  color: var(--fire-2);
}

.field-error {
  color: #ff6b6b;
  font-size: 12.5px;
  margin-top: 6px;
  display: none;
}

.field.error input,
.field.error select,
.field.error textarea { border-color: #ff6b6b; }

.field.error .field-error { display: block; }

.form-note {
  font-size: 13.5px;
  color: var(--text-faint);
  margin-top: -6px;
  margin-bottom: 28px;
}

.form-success {
  display: none;
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid var(--fire-1);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.form-success.show { display: block; }

.form-error {
  display: none;
  background: rgba(184, 39, 31, 0.1);
  border: 1px solid #b8271f;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-dim);
}

.form-error.show { display: block; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 190px 0 70px;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero h1 { font-size: clamp(36px, 6vw, 64px); }
.page-hero p { color: var(--text-dim); font-size: 17px; max-width: 620px; margin-top: 18px; }

/* ---------- About ---------- */
.about-body p {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 22px;
  max-width: 760px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.stat {
  border-top: 2px solid var(--fire-1);
  padding-top: 16px;
}

.stat .num {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  color: var(--text);
}

.stat .label {
  font-size: 13px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.region-list span {
  font-size: 14px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text-dim);
}

@media (max-width: 880px) {
  .service-grid, .testimonial-grid, .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  section { padding: 70px 0; }
  .page-hero { padding: 130px 0 50px; }
}
