/* ═══════════════════════════════════════════════════════════
   STRINGS OF FIRE — style.css
   Palette: Deep black / charcoal + fire amber + white
   Fonts: Clash Display (display) + Satoshi (body)
═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(2.2rem,   1rem    + 3.6vw,  4.6rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Palette — dark by default */
  --color-bg:              #0a0908;
  --color-surface:         #111010;
  --color-surface-2:       #161514;
  --color-surface-offset:  #1c1b1a;
  --color-border:          #2a2826;
  --color-divider:         #222020;
  --color-text:            #e8e6e3;
  --color-text-muted:      #8a8885;
  --color-text-faint:      #4a4845;
  --color-text-inverse:    #0a0908;

  /* Fire amber — the one accent */
  --color-accent:          #e8830a;
  --color-accent-hover:    #f5950f;
  --color-accent-glow:     rgba(232, 131, 10, 0.25);

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.6);
  --shadow-accent: 0 0 40px rgba(232,131,10,0.3);

  /* Fonts */
  --font-display: 'Clash Display', 'Impact', sans-serif;
  --font-body:    'Satoshi', 'Inter', sans-serif;

  /* Layout */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.1; font-family: var(--font-display); }
p, li { text-wrap: pretty; max-width: 68ch; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

button { cursor: pointer; background: none; border: none; }

::selection {
  background: var(--color-accent-glow);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── UTILITIES ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-10); }
}

.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-4);
  display: block;
}

.label--light {
  color: #fff;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: #0a0908;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  transform: translateY(-1px);
}

.btn--large {
  padding: var(--space-4) var(--space-12);
  font-size: var(--text-base);
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-8);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(10, 9, 8, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-4) var(--space-8);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-svg {
  height: 22px;
  width: auto;
  overflow: visible;
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.nav__links a:hover { color: #fff; }

.nav__cta {
  background: var(--color-accent) !important;
  color: #0a0908 !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}

.nav__cta:hover {
  background: var(--color-accent-hover) !important;
  box-shadow: var(--shadow-accent) !important;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

@media (min-width: 768px) {
  .nav__burger { display: none; }
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10,9,8,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.mobile-nav__link:hover { color: var(--color-accent); }

.mobile-nav__cta {
  color: var(--color-accent) !important;
}

/* ─── VIDEO INTRO ───────────────────────────────────────── */
.video-intro {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background: #000;
}

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

.video-intro__scroll {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.video-intro__arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(255,255,255,0));
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(var(--space-20), 10vw, var(--space-32));
  padding-top: 60vh; /* push content below the performers' faces */
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 20%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,9,8,0.15) 0%,
    rgba(10,9,8,0.1)  30%,
    rgba(10,9,8,0.5)  60%,
    rgba(10,9,8,0.9)  85%,
    rgba(10,9,8,1)    100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 768px) {
  .hero__content { padding: 0 var(--space-10); }
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-4);
  text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.7);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin-bottom: var(--space-10);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
}

.about__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.about__body {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
  line-height: 1.7;
}

.about__body:last-of-type { margin-bottom: var(--space-10); }

.about__stats {
  display: flex;
  gap: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.about__images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3);
  align-items: end;
}

.about__images--single {
  display: block;
}

.about__img-full {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.about__img-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about__img-main img,
.about__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about__img-main {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__img-secondary {
  aspect-ratio: 3/4;
  margin-bottom: var(--space-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ─── REPERTOIRE ─────────────────────────────────────────── */
.repertoire {
  position: relative;
  padding: clamp(var(--space-16), 10vw, var(--space-32)) 0;
  overflow: hidden;
}

.repertoire__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.repertoire__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3) saturate(0.8);
}

.repertoire__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,8,0.75);
}

.repertoire__inner {
  position: relative;
  z-index: 1;
}

.repertoire__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.repertoire__sub {
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  margin-bottom: var(--space-12);
  font-size: var(--text-base);
}

.soundcloud-tracks {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 700px;
}

.sc-track {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color var(--transition);
}

.sc-track:hover {
  border-color: rgba(232,131,10,0.4);
}

.sc-track iframe {
  display: block;
  border-radius: var(--radius-lg);
}

/* ─── SHOWREEL ───────────────────────────────────────────── */
.showreel {
  padding: clamp(var(--space-16), 10vw, var(--space-24)) 0;
  background: var(--color-surface);
  text-align: center;
}

.showreel__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-10);
}

.showreel__embed {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  position: relative;
}

.showreel__embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.showreel__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  background: linear-gradient(135deg, #111010 0%, #1c1b1a 100%);
}

.showreel__play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0908;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.showreel__play:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-accent);
}

.showreel__placeholder-text {
  color: var(--color-text-faint);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── FORMATS ────────────────────────────────────────────── */
.formats {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.formats__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.formats__sub {
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
}

.formats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .formats__grid { grid-template-columns: repeat(3, 1fr); }
}

.format-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.format-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(232,131,10,0.12);
}

.format-card--featured {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(232,131,10,0.06) 100%);
}

.format-card__badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--color-accent);
  color: #0a0908;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.format-card__icon {
  color: var(--color-accent);
  margin-bottom: var(--space-5);
}

.format-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-3);
}

.format-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 100%;
}

/* ─── VIRTUAL PYRO ──────────────────────────────────────── */
.vpyro {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.vpyro__img-wrap {
  position: absolute;
  inset: 0;
}

.vpyro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.vpyro__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,9,8,0.92) 0%,
    rgba(10,9,8,0.75) 45%,
    rgba(10,9,8,0.2)  100%
  );
}

.vpyro__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.vpyro__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}

.vpyro__body {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  max-width: 46ch;
}

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery {
  background: var(--color-bg);
  padding-bottom: clamp(var(--space-16), 10vw, var(--space-32));
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-3);
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 0 var(--space-10);
    height: 600px;
  }
}

.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery__item--large {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  aspect-ratio: 3/4;
}

.gallery__item--large img {
  object-position: center 20%;
}

@media (min-width: 768px) {
  .gallery__item img { aspect-ratio: auto; }
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* ─── CLIENTS ────────────────────────────────────────────── */
.clients {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) 0;
  background: var(--color-surface);
  text-align: center;
}

.clients__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-12);
  letter-spacing: -0.02em;
}

.clients__title--accent {
  color: var(--color-accent);
}

.clients__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-8) var(--space-16);
  margin-bottom: var(--space-16);
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-4);
}

.client-logo img {
  height: 90px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity var(--transition), transform var(--transition);
  border-radius: var(--radius-sm);
}

.client-logo:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.clients__agencies {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-10);
}

.clients__agency-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-5);
  max-width: none;
}

.clients__agency-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3) var(--space-8);
}

.clients__agency-list span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ─── ENQUIRE ────────────────────────────────────────────── */
.enquire {
  position: relative;
  padding: clamp(var(--space-16), 10vw, var(--space-32)) 0;
  overflow: hidden;
}

.enquire__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.enquire__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.6);
}

.enquire__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,8,0.7);
}

.enquire__inner {
  position: relative;
  z-index: 1;
}

.enquire__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.enquire__sub {
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-10);
  max-width: 50ch;
}

.enquire__form {
  max-width: 680px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

@media (min-width: 600px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.form__group--full { grid-column: 1 / -1; margin-bottom: var(--space-4); }

.form__group label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.form__group input,
.form__group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  color: #fff;
  font-size: var(--text-base);
  transition: border-color var(--transition), background var(--transition);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.08);
}

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

.form__submit { margin-top: var(--space-4); }

.form__success {
  background: rgba(232,131,10,0.15);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-8);
  color: #fff;
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  text-align: center;
}

.form__error-global {
  background: rgba(220,50,50,0.15);
  border: 1px solid rgba(220,50,50,0.6);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  color: #ff6b6b;
  margin-bottom: var(--space-4);
}

.form__field-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: var(--space-1);
  display: block;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #050504;
  padding: var(--space-10) 0;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__name {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: var(--space-1);
}

.footer__tagline {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__contact a {
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__contact a:hover { color: var(--color-accent-hover); }

.footer__copy span {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
