/* ============================================================
   Redline Events — styles.css
   Brand: black-dominant, hard rectangles, red accent.
   ============================================================ */

:root {
  --black:        #111010;
  --black-2:      #1a1818;
  --white:        #FFFFFF;
  --red:          #FF2242;
  --red-deep:     #d61833;
  --grey-light:   #B3B6B8;
  --grey-dark:    #726F6F;
  --green:        #77FF94;

  --font-head:    'Archivo Narrow', 'Arial Narrow', Impact, sans-serif;
  --font-body:    'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --max:          1280px;
  --gutter:       24px;
  --gutter-lg:    48px;

  --pad-y:        64px;
  --pad-y-lg:     96px;

  --header-h:     72px;

  --ease:         cubic-bezier(.2,.7,.2,1);
}

@media (min-width: 900px) {
  :root { --pad-y: 96px; }
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--red); }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin: 0 0 0.4em;
}

p { margin: 0 0 1em; }

::selection { background: var(--red); color: var(--white); }

/* ---------- focus ---------- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (min-width: 900px) {
  .container { padding-left: var(--gutter-lg); padding-right: var(--gutter-lg); }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: var(--white);
  padding: 12px 16px;
  z-index: 1000;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 15px;
  border: 1px solid transparent;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  cursor: pointer;
  user-select: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-ghost:hover { background: var(--white); color: var(--black); }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  background: var(--black);
  border-bottom: 1px solid #1f1d1d;
  z-index: 90;
  height: var(--header-h);
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(0,0,0,0.55);
  border-bottom-color: #2a2828;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }

.primary-nav ul { display: flex; gap: 36px; }
.primary-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
  padding: 8px 0;
  position: relative;
  color: var(--white);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.primary-nav a:hover { color: var(--white); }
.primary-nav a:hover::after,
.primary-nav a.is-active::after { transform: scaleX(1); }
.primary-nav a.is-active { color: var(--white); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transform-origin: center;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .brand img { height: 34px; }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.mobile-nav[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  min-height: 56px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 32px;
  color: var(--white);
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s var(--ease);
}
.mobile-nav-close:hover { color: var(--red); }

body.menu-open { overflow: hidden; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 32px) 0 64px;
  overflow: hidden;
  background: var(--black);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 30%, #2a1518 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, #1a1010 0%, transparent 60%),
    linear-gradient(135deg, #161313 0%, #0d0c0c 100%);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.9);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(17,16,16,0.55);
}
/* Brand 3-bar accent — straight bars with a distressed/grunge edge to echo the logo */
.hero-overlay::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 18%;
  width: 320px;
  height: 78px;
  opacity: 0.9;
  background:
    linear-gradient(to bottom,
      var(--red) 0 18px,
      transparent 18px 30px,
      var(--red) 30px 48px,
      transparent 48px 60px,
      var(--red) 60px 78px);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 78' preserveAspectRatio='none'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9 0.55' numOctaves='2' seed='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  1 0 0 0 -0.18'/></filter><rect width='320' height='78' filter='url(%23n)'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 78' preserveAspectRatio='none'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9 0.55' numOctaves='2' seed='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  1 0 0 0 -0.18'/></filter><rect width='320' height='78' filter='url(%23n)'/></svg>");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
@media (max-width: 700px) {
  .hero-overlay::after {
    width: 220px;
    right: -50px;
    height: 52px;
    background:
      linear-gradient(to bottom,
        var(--red) 0 12px,
        transparent 12px 20px,
        var(--red) 20px 32px,
        transparent 32px 40px,
        var(--red) 40px 52px);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 14px;
  margin: 0 0 22px;
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 64px);
  letter-spacing: 0.005em;
  line-height: 1.05;
  margin: 0 0 24px;
}
@media (min-width: 1100px) {
  .hero h1 { font-size: 64px; }
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  z-index: 2;
}
.scroll-cue-line {
  width: 2px;
  height: 36px;
  background: var(--red);
  display: block;
}
.scroll-cue:hover { color: var(--red); }

/* ---------- shared section heading ---------- */
.section-head { margin-bottom: 56px; }
.section-head-center { text-align: center; }
.section-head-center .rule { display: block; margin: 0 auto; }

.section-head h2,
.who-head h2,
.contact-info h2 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: 0.03em;
  margin: 0 0 18px;
}
.rule {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--red);
}
.section-sub {
  margin: 22px 0 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  color: var(--grey-light);
}
.section-head-center .section-sub { max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- who ---------- */
.who { padding: var(--pad-y) 0; }
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .who-grid {
    grid-template-columns: 40fr 60fr;
    gap: 80px;
    align-items: start;
  }
}
.who-body p {
  color: var(--grey-light);
  font-size: 17px;
  line-height: 1.65;
}
.who-body .lede {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: 0.02em;
  line-height: 1.25;
  border-left: 3px solid var(--red);
  padding-left: 20px;
  margin: 28px 0;
}

/* ---------- what ---------- */
.what {
  padding: var(--pad-y) 0;
  background: var(--black-2);
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .cards { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1100px) { .cards { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative;
  background: var(--black);
  border: 1px solid #FFFFFF;
  padding: 32px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  display: block;
}
.card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 18px 0 14px;
}
.card p {
  color: var(--grey-light);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

/* ---------- gallery ---------- */
.gallery {
  padding: var(--pad-y) 0;
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 240px;
  gap: 12px;
}
@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (min-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
  }
  .gi-1 { grid-column: span 2; grid-row: span 2; }
  .gi-2, .gi-3, .gi-4, .gi-5 { grid-column: span 1; grid-row: span 1; }
  .gi-4 { grid-column: span 2; }
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #1a1818;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .3s var(--ease);
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17,16,16,0);
  transition: background .3s var(--ease);
  z-index: 1;
}
.gallery-item:hover::before { background: rgba(17,16,16,0.4); }
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 0;
  background: var(--red);
  transition: height .3s var(--ease);
  z-index: 2;
}
.gallery-item:hover::after { height: 4px; }

.gi-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: monospace;
  font-size: 13px;
  color: var(--grey-dark);
  padding: 16px;
}
.gallery-item.placeholder { background: #161414; border: 1px dashed #3a3838; cursor: default; }
.gallery-item.placeholder .gi-fallback { display: flex; }
.gallery-item.placeholder::before,
.gallery-item.placeholder::after { content: none; }
.gallery-item.placeholder .gi-fallback::before {
  content: "DROP IMAGE";
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- contact ---------- */
.contact {
  padding: var(--pad-y) 0;
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.contact-blurb {
  color: var(--grey-light);
  margin: 24px 0 32px;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.6;
}
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-meta li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--white);
}
.contact-meta svg { color: var(--white); flex: 0 0 auto; }
.contact-meta a { color: var(--white); }
.contact-meta a:hover { color: var(--red); }

.contact-form {
  display: grid;
  gap: 18px;
  background: var(--black-2);
  padding: 32px;
  border: 1px solid #2a2828;
}
@media (min-width: 900px) { .contact-form { padding: 40px; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
  color: var(--grey-light);
}
.field .muted { color: var(--grey-dark); font-weight: 500; letter-spacing: 0.04em; }

.field input,
.field select,
.field textarea {
  font: inherit;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--white);
  padding: 14px;
  border-radius: 0;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--grey-light); opacity: 0.7; }
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--white) 50%),
                    linear-gradient(135deg, var(--white) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 12px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
  color: var(--white);
}
.field select:invalid { color: var(--grey-light); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  border-width: 2px;
  padding: 13px;
  outline: none;
}

.contact-form .btn {
  align-self: start;
  margin-top: 4px;
}
@media (max-width: 700px) {
  .contact-form .btn { width: 100%; }
}

.form-status {
  margin: 0;
  font-size: 14px;
  font-family: var(--font-body);
  padding: 12px 14px;
  border: 1px solid currentColor;
}
.form-status.is-error { color: var(--red); }
.form-status.is-ok { color: var(--green); }
.form-status.is-pending { color: var(--muted, currentColor); opacity: .85; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--red);
  padding-top: 64px;
  color: var(--grey-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; }
}
.footer-brand img { height: 80px; width: auto; margin-bottom: 18px; }
.footer-tagline {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--green);
  margin: 0;
}

.site-footer h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white);
  margin: 0 0 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  color: var(--white);
}
.footer-nav a:hover { color: var(--red); }

.footer-social ul { display: flex; gap: 16px; }
.footer-social a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: color .2s var(--ease);
}
.footer-social a:hover { color: var(--red); }

.footer-strip {
  border-top: 1px solid #1f1d1d;
  padding: 24px 0;
}
.footer-strip-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 700px) {
  .footer-strip-row { flex-direction: row; align-items: center; }
}
.footer-strip p { margin: 0; font-size: 13px; color: var(--grey-dark); }
.footer-strip a { color: var(--grey-light); }
.footer-strip a:hover { color: var(--red); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17,16,16,0.95);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease);
}
.lightbox[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.lightbox figure {
  margin: 0;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid #2a2828;
}
.lightbox figcaption {
  margin-top: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--grey-light);
  text-align: center;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 52px;
  height: 52px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  border: 1px solid transparent;
}
.lightbox-close { top: 18px; right: 18px; border-color: #2a2828; }
.lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-nav:hover { color: var(--red); border-color: var(--red); }
@media (max-width: 700px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
