/** Shopify CDN: Minification failed

Line 26:39 Unexpected "*"
Line 40:19 Unexpected "*"

**/
/* ============================================
   TWWTS Hero Section
   Sharp edges, no border-radius, brutalist tattoo aesthetic
   ============================================ */

html {
  scroll-behavior: smooth;
}

/* ── Dawn theme overrides for full-bleed hero ── */
.twwts-hero-section,
.twwts-hero-section .shopify-section,
.twwts-hero-section.shopify-section {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  border-radius: 0 !important;
}

.twwts-hero-section .section-template--*,
.twwts-hero-section [class*="section-"] {
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Kill any Dawn page-width constraints on hero */
.twwts-hero-section .page-width {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Remove Dawn's default section spacing/rounding */
.section-template--*:has(.twwts-hero),
.shopify-section:has(.twwts-hero) {
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Nuclear option: target the section wrapper by content */
.content-for-layout .shopify-section:first-child {
  padding: 0 !important;
  margin: 0 !important;
}

.twwts-hero {
  position: relative;
  width: 100%;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #0a0a0a;
  border-radius: 0 !important;
}

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

.twwts-hero__video,
.twwts-hero__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.twwts-hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.1) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.92) 100%
  );
}

/* Content */
.twwts-hero__content {
  position: relative;
  z-index: 5;
  padding: 0 40px 60px;
  max-width: 600px;
}

.twwts-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 14px;
}

.twwts-hero__heading {
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: -1px;
}

.twwts-hero__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 28px;
  line-height: 1.6;
  max-width: 460px;
}

/* CTAs — sharp, no radius */
.twwts-hero__ctas {
  display: flex;
  gap: 10px;
}

.twwts-hero__btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  border: 1px solid;
  transition: all 0.25s;
  cursor: pointer;
}

.twwts-hero__btn--primary {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

.twwts-hero__btn--primary:hover {
  background: transparent;
  color: #fff;
}

.twwts-hero__btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.twwts-hero__btn--secondary:hover {
  border-color: #fff;
}

/* Scroll indicator */
.twwts-hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.4;
}

.twwts-hero__scroll span {
  font-size: 10px;
  color: #fff;
  letter-spacing: 2px;
}

.twwts-hero__scroll svg {
  color: #fff;
  animation: twwts-bobble 2s ease-in-out infinite;
}

@keyframes twwts-bobble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Stats bar */
.twwts-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #222;
  border: 1px solid #222;
}

.twwts-hero-stats__cell {
  background: #0e0e0e;
  padding: 20px 24px;
}

.twwts-hero-stats__label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin: 0 0 4px;
}

.twwts-hero-stats__value {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

/* ============================================
   Tablet (≤ 960px)
   ============================================ */
@media (max-width: 960px) {
  .twwts-hero__content {
    padding: 0 28px 50px;
  }

  .twwts-hero__heading {
    font-size: 36px;
  }
}

/* ============================================
   Mobile (≤ 600px)
   ============================================ */
@media (max-width: 600px) {
  .twwts-hero {
    min-height: 90vh;
    min-height: 90dvh;
  }

  .twwts-hero__content {
    padding: 0 16px 40px;
    max-width: 100%;
  }

  .twwts-hero__eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .twwts-hero__heading {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .twwts-hero__sub {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .twwts-hero__ctas {
    flex-direction: column;
    gap: 8px;
  }

  .twwts-hero__btn {
    text-align: center;
    width: 100%;
    padding: 14px 24px;
    font-size: 11px;
  }

  .twwts-hero__scroll {
    display: none;
  }

  .twwts-hero-stats {
    grid-template-columns: 1fr;
  }

  .twwts-hero-stats__cell {
    padding: 16px 18px;
  }

  .twwts-hero-stats__value {
    font-size: 14px;
  }
}

/* ============================================
   Small mobile (≤ 380px)
   ============================================ */
@media (max-width: 380px) {
  .twwts-hero__heading {
    font-size: 24px;
  }

  .twwts-hero__sub {
    font-size: 12px;
  }

  .twwts-hero__btn {
    font-size: 10px;
    padding: 12px 20px;
  }
}
