/* Original A2RB design, palette swapped to the die-cut sticker colors */
:root {
  --bg: #3d1210;
  --bg-alt: #4d1a16;
  --panel: #5e2620;
  --text: #f0ead2;
  --text-dim: #cfc0a4;
  --rust: #a8492a;
  --rust-bright: #c05a2f;
  --sand: #f0e6c4;
  --line: #5f2a22;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--sand); }

h1, h2, h3, .brand {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.05;
  font-weight: 400;
}
h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 0.75rem; color: var(--sand); }
h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--sand); }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-sub { color: var(--text-dim); margin-bottom: 2rem; }
.center { text-align: center; margin-top: 2.5rem; }

/* Nav */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(61, 18, 16, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0.7rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { font-size: 1.5rem; color: var(--sand); text-decoration: none; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 1.2rem; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover { color: var(--sand); }

/* Buttons */
.btn {
  display: inline-block; padding: 0.7rem 1.4rem; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: transform 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary, .btn-sub { background: var(--rust); color: #fff !important; }
.btn-primary:hover, .btn-sub:hover { background: var(--rust-bright); }
.btn-sub { padding: 0.45rem 1rem; font-size: 0.9rem; }
.btn-ghost { border: 2px solid var(--sand); color: var(--sand); }
.btn-ghost:hover { background: rgba(240, 230, 196, 0.12); }

/* Hero */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 40%, rgba(22, 16, 14, 0.72) 100%);
}
.hero-sticker {
  position: absolute; top: 24%; left: 2.5rem; z-index: 5;
  width: clamp(130px, 16vw, 240px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
  transform: rotate(-20deg);
}
.hero-content { position: relative; max-width: 1100px; margin: 0 auto; padding: 0 1.25rem 5.5rem; width: 100%; }
.kicker {
  text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.8rem;
  color: var(--sand); font-weight: 600; margin-bottom: 0.5rem;
}
h1 { font-size: clamp(3.5rem, 10vw, 7rem); color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.tagline { font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: var(--text); margin: 0.75rem 0 1.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Two column */
.two-col { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center; }
.two-col p { margin-bottom: 1rem; }
.cta-line { font-weight: 600; color: var(--sand); }
.badge-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.25rem; }
.badge {
  background: var(--panel); border: 1px solid var(--line);
  padding: 0.35rem 0.8rem; border-radius: 999px; font-size: 0.85rem;
}
.about-photos, .sucia-photos { display: grid; gap: 1rem; }
.about-photos img, .sucia-photos img { border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.about-photos .sticker-img {
  border-radius: 0; box-shadow: none;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
  justify-self: center; max-width: 82%;
}

/* Videos */
.video-feature { margin-bottom: 1rem; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.yt {
  position: relative; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden;
  background: #000 center/cover no-repeat; cursor: pointer;
}
.yt-short { aspect-ratio: 9 / 16; }
.yt::after {
  content: '▶'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; color: #fff; background: rgba(0,0,0,0.25);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8); transition: background 0.15s;
}
.yt:hover::after { background: rgba(168, 73, 42, 0.35); }
.yt.playing::after { display: none; }
.yt .yt-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.5rem 0.75rem 0.6rem; font-size: 0.85rem; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  pointer-events: none;
}
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.shorts-head { margin: 3rem 0 0.5rem; }
.shorts-row {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(160px, 1fr);
  gap: 1rem; overflow-x: auto; padding: 1rem 0; scroll-snap-type: x mandatory;
}
.shorts-row .yt { scroll-snap-align: start; }

/* Gallery */
.gallery { columns: 3 280px; column-gap: 1rem; }
.gallery a { display: block; margin-bottom: 1rem; border-radius: 10px; overflow: hidden; }
.gallery img { transition: transform 0.25s; width: 100%; }
.gallery a:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(26, 8, 7, 0.94);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 92vh; border-radius: 8px; }
.lb-close {
  position: absolute; top: 1rem; right: 1.5rem; background: none; border: none;
  color: #fff; font-size: 3rem; cursor: pointer; line-height: 1;
}

/* Footer */
footer { border-top: 1px solid var(--line); padding: 3rem 0 1.5rem; background: var(--bg-alt); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-tag { color: var(--text-dim); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { text-decoration: none; font-weight: 600; }
.copyright { text-align: center; color: var(--text-dim); font-size: 0.85rem; margin-top: 2rem; }

@media (max-width: 800px) {
  .two-col, .two-col-rev { grid-template-columns: 1fr; }
  .two-col-rev figure { order: 2; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-full { display: none; }
  .nav-links a:not(.btn-sub) { display: none; }
  .hero { min-height: 88vh; }
  .hero-sticker { width: 110px; top: 76px; left: 1rem; }
  .gallery { columns: 2 160px; }
}
