/* ===== Bud Zero — Let It Pour =====================================
   Colour + type system. Tweak the variables below to re-skin the
   whole site in one place.
   ================================================================ */
:root {
  --bg:       #0a0a0a;   /* page background        */
  --bg-elev:  #151515;   /* cards / raised panels  */
  --red:      #e2231a;   /* Bud Zero red (accent)  */
  --red-deep: #b11217;   /* darker red (hover)     */
  --text:     #f5f5f5;   /* main text              */
  --muted:    #9b9b9b;   /* secondary text         */
  --maxw:     1180px;    /* content max width      */
  --display:  "Bebas Neue", "Inter", sans-serif;  /* headline font  */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 4vw, 40px);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.brand__mark {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.06em;
}
.brand__mark::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: middle;
}
.header-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.header-cta:hover { color: var(--text); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(10,10,10,.25) 0%,
              rgba(10,10,10,0)   30%,
              rgba(10,10,10,.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 6vw, 72px);
  max-width: 640px;
}
.hero__kicker {
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(48px, 11vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.01em;
}
.hero__sub {
  margin: 18px 0 28px;
  max-width: 30ch;
  font-size: clamp(15px, 2.2vw, 19px);
  color: rgba(245, 245, 245, .85);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .15s, background .2s;
}
.btn:hover { background: var(--red-deep); transform: translateY(-2px); }

/* ===== Films section ===== */
.films {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) clamp(16px, 4vw, 40px);
}
.section-head { margin-bottom: 40px; }
.section-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
}
.section-desc { margin-top: 10px; color: var(--muted); }

.grid {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 48px);
}

/* ===== Video card (full-width stacked rows, alternating sides) ===== */
.card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: stretch;
  background: var(--bg-elev);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); border-color: rgba(226, 35, 26, .5); }

/* Flip every other row so the video alternates left/right */
.card:nth-child(even) { grid-template-columns: 1fr 1.5fr; }
.card:nth-child(even) .card__player,
.card:nth-child(even) .card__embed { order: 2; }

.card__player,
.card__embed {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.card__thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s, opacity .2s;
}
.card__player:hover .card__thumb { transform: scale(1.04); opacity: .85; }

.card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
}
.card__play svg {
  width: 64px; height: 64px;
  padding: 16px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
  transition: transform .15s, background .2s;
}
.card__player:hover .card__play svg { transform: scale(1.08); background: var(--red-deep); }

.card__embed iframe { width: 100%; height: 100%; display: block; }

.card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 44px);
}
.card__num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--red);
}
.card__title {
  margin-top: 4px;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.02;
}
.card__blurb { margin-top: 10px; font-size: clamp(14px, 1.4vw, 16px); color: var(--muted); }

/* ===== Footer ===== */
.site-footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.site-footer__brand {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .1em;
}
.site-footer__tag {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== Tablet & mobile: stack each row into a single column ===== */
@media (max-width: 760px) {
  .card,
  .card:nth-child(even) { grid-template-columns: 1fr; }
  /* video always back on top when stacked vertically */
  .card:nth-child(even) .card__player,
  .card:nth-child(even) .card__embed { order: 0; }
  .card__body { padding: 20px 22px 26px; }
}

/* ===== Phones ===== */
@media (max-width: 600px) {
  .hero { min-height: 62vh; }
  .header-cta { display: none; }
  .films { padding-top: 48px; }
}
