/* ─────────────────────────────────────────
   Lil Bro Sticker Co — Landing Page
   All rules scoped to .lbs-* to avoid
   conflicts with the active WordPress theme.
   ───────────────────────────────────────── */

/* ── RESET (landing page only) ── */
.lbs-landing *,
.lbs-landing *::before,
.lbs-landing *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── TOKENS ── */
:root {
  --lbs-white:   #FFFDF7;
  --lbs-cream:   #F5EDD8;
  --lbs-black:   #1A1208;
  --lbs-orange:  #F07D00;
  --lbs-teal:    #80E8E0;
  --lbs-teal-dk: #1A6B65;
  --lbs-peach:   #FFDAB5;
  --lbs-rule:    rgba(26, 18, 8, 0.10);
}

.lbs-landing {
  background: #D8D2C6;
  color: var(--lbs-black);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 40px;
}

.lbs-page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.22), 0 2px 12px rgba(0, 0, 0, 0.12);
}

/* ── SHARED UTILS ── */
.lbs-orange      { color: var(--lbs-orange); }
.lbs-beige       { color: var(--lbs-cream); }
.lbs-teal-color  { color: var(--lbs-teal); }
.lbs-handwritten { font-family: 'Caveat', cursive; font-size: 17px; }

.lbs-stamp {
  display: inline-block;
  border: 2px solid var(--lbs-teal);
  color: var(--lbs-teal);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  opacity: 0.7;
}
.lbs-stamp-orange {
  border-color: var(--lbs-orange);
  color: var(--lbs-orange);
}

.lbs-tag {
  display: inline-block;
  background: var(--lbs-teal);
  color: var(--lbs-black);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.lbs-handwritten {
  font-family: 'Caveat', cursive;
  font-size: 17px;
  color: var(--lbs-orange);
  display: inline-block;
  transform: rotate(-1deg);
}

/* ── BUTTONS ── */
.lbs-btn-primary {
  display: inline-block;
  background: var(--lbs-orange);
  color: var(--lbs-black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  padding: 13px 30px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: filter 0.15s, transform 0.15s;
}
.lbs-btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: var(--lbs-black);
  text-decoration: none;
}

.lbs-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--lbs-white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  padding: 12px 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: border-color 0.15s, color 0.15s;
}
.lbs-btn-outline:hover {
  border-color: var(--lbs-teal);
  color: var(--lbs-teal);
  text-decoration: none;
}

/* ── ANNOUNCEMENT BAR ── */
.lbs-bar {
  background: var(--lbs-orange);
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--lbs-black);
}
.lbs-bar-dot  { margin: 0 8px; opacity: 0.5; }
.lbs-bar-bolt { margin: 0 6px; opacity: 0.6; }

/* ── NAV ── */
.lbs-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lbs-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 75px;
  border-bottom: 3px solid var(--lbs-orange);
}

.lbs-nav-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.lbs-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lbs-nav-icon {
  color: rgba(26, 18, 8, 0.4);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.15s;
}
.lbs-nav-icon:hover { color: var(--lbs-teal-dk); }

.lbs-nav-shop {
  font-size: 16px !important;
  padding: 10px 22px !important;
}

/* ── HERO ── */
.lbs-hero {
  background: var(--lbs-black);
  position: relative;
  overflow: hidden;
  min-height: 72vh;
}

.lbs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(128, 232, 224, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 232, 224, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.lbs-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
  position: relative;
  z-index: 1;
}

.lbs-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}

.lbs-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.lbs-hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 7.5vw, 88px);
  line-height: 0.92;
  color: var(--lbs-white);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  white-space: nowrap;
}

.lbs-hero-mobile-stickers {
  display: none;
}

.lbs-hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--lbs-white);
  opacity: 0.5;
  max-width: 360px;
  margin-bottom: 36px;
}

.lbs-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── STICKER SCATTER ── */
.lbs-hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.lbs-scatter {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 600px;
}

.lbs-sc {
  position: absolute;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.55));
}
.lbs-sc img { display: block; width: 100%; }

.lbs-sc1 { width: 260px; top: 10px;    left: 20px;   transform: rotate(-7deg); }
.lbs-sc2 { width: 255px; top: 20px;    right: 10px;  transform: rotate(5deg);  }
.lbs-sc3 { width: 258px; bottom: 40px; left: 60px;   transform: rotate(2deg);  }
.lbs-sc4 { width: 252px; bottom: 10px; right: 10px;  transform: rotate(-4deg); }

.lbs-bolt {
  position: absolute;
  color: var(--lbs-orange);
  opacity: 0.7;
}
.lbs-bolt1 { width: 28px; top: 30%;  left: 12%;  transform: rotate(15deg); }
.lbs-bolt2 { width: 22px; bottom: 28%; right: 10%; transform: rotate(-10deg); color: var(--lbs-teal); }

.lbs-star {
  position: absolute;
  color: var(--lbs-teal);
  opacity: 0.5;
}
.lbs-star1 { width: 32px; top: 14%; right: 14%; }

/* dot pattern on cream sections */
.lbs-dots {
  background-image: radial-gradient(var(--lbs-black) 1px, transparent 1px);
  background-size: 22px 22px;
  background-color: var(--lbs-cream);
  opacity: 0.04;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ── TRUST BAND ── */
.lbs-band {
  background: var(--lbs-teal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.lbs-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--lbs-black) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.04;
  pointer-events: none;
}

.lbs-band-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 52px 48px;
  position: relative;
  z-index: 1;
}

.lbs-band-item:nth-child(odd)  { border-right:  1px solid rgba(26, 18, 8, 0.12); }
.lbs-band-item:nth-child(-n+2) { border-bottom: 1px solid rgba(26, 18, 8, 0.12); }

.lbs-band-item .lbs-band-icon {
  font-size: 72px;
  line-height: 1;
}

.lbs-band-item strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--lbs-black);
  line-height: 1;
}

.lbs-band-item span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--lbs-black);
  opacity: 0.65;
}

.lbs-band-rule { display: none; }

/* ── ABOUT ── */
.lbs-about {
  background: var(--lbs-cream);
  padding: 88px 64px;
  border-top: 1px solid var(--lbs-rule);
}

.lbs-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.lbs-about-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--lbs-black);
  margin-bottom: 20px;
}
.lbs-about-headline em { color: var(--lbs-orange); font-style: normal; }

.lbs-about-body {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.7;
  max-width: 440px;
}
.lbs-about-body p + p { margin-top: 16px; }

.lbs-sig {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--lbs-black);
  opacity: 0.5;
  transform: rotate(-1.5deg);
  margin-top: 24px;
}

.lbs-about-cta { margin-top: 32px; }

/* sticker wall */
.lbs-sticker-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lbs-sw-card {
  background: var(--lbs-white);
  border: 1px solid var(--lbs-rule);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  border-radius: 2px;
}
.lbs-sw-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.08));
}

.lbs-tape {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
  width: 50px;
  height: 14px;
  background: rgba(240, 125, 0, 0.28);
  border-radius: 1px;
}

.lbs-sw1 { transform: rotate(-2.5deg); }
.lbs-sw2 { transform: rotate(1.8deg);  margin-top: 20px; }
.lbs-sw3 { transform: rotate(1.2deg);  }
.lbs-sw4 { transform: rotate(-1.5deg); margin-top: -10px; }

/* ── SOCIAL STRIP ── */
.lbs-social {
  background: var(--lbs-black);
  padding: 52px 40px;
  text-align: center;
  border-top: 3px solid var(--lbs-orange);
}

.lbs-social-label {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: var(--lbs-white);
  opacity: 0.35;
  margin-bottom: 24px;
  transform: rotate(-0.5deg);
  display: inline-block;
}

.lbs-social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lbs-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 253, 247, 0.06);
  color: var(--lbs-white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  border-radius: 2px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.lbs-social-link:hover {
  border-color: var(--lbs-teal);
  color: var(--lbs-teal);
  text-decoration: none;
}
.lbs-social-etsy {
  border-color: rgba(240, 125, 0, 0.35);
  color: var(--lbs-orange);
}
.lbs-social-etsy:hover {
  border-color: var(--lbs-orange);
  background: rgba(240, 125, 0, 0.08);
  color: var(--lbs-orange);
}

/* ── FOOTER ── */
.lbs-footer {
  background: var(--lbs-black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 36px 40px;
}

.lbs-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.lbs-footer-logo {
  height: 36px;
  width: auto;
  opacity: 0.7;
}

.lbs-footer-tagline {
  font-family: 'Caveat', cursive;
  font-size: 16px;
  color: var(--lbs-white);
  opacity: 0.3;
}

.lbs-footer-copy {
  font-size: 11px;
  color: var(--lbs-white);
  opacity: 0.18;
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════
   RESPONSIVE — Mobile-first adjustments
   ════════════════════════════════════════ */

@media (max-width: 900px) {
  .lbs-nav {
    padding: 0 20px;
    height: 72px;
  }

  .lbs-hero-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .lbs-hero-left {
    padding: 48px 28px 52px;
    order: 1;
  }

  .lbs-hero-right {
    display: none;
  }

  .lbs-hero-eyebrow {
    display: none;
  }

  .lbs-hero-mobile-stickers {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 0 24px;
  }

  .lbs-band {
    padding: 24px 20px;
    gap: 16px;
  }
  .lbs-band-rule { display: none; }

  .lbs-about {
    padding: 60px 24px;
  }
  .lbs-about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .lbs-about-headline {
    font-size: clamp(36px, 9vw, 52px);
  }

  .lbs-social { padding: 40px 20px; }
  .lbs-social-links { gap: 10px; }
  .lbs-social-link {
    font-size: 16px;
    padding: 10px 18px;
  }
}

@media (max-width: 540px) {
  .lbs-bar { font-size: 11px; }

  .lbs-nav-actions { gap: 12px; }
  .lbs-nav-shop { font-size: 14px !important; padding: 8px 14px !important; }

  .lbs-hero-left { padding: 36px 20px 40px; }

  .lbs-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .lbs-band-item span { display: none; }

  .lbs-about { padding: 48px 20px; }
  .lbs-sticker-wall { gap: 10px; }

  .lbs-footer { padding: 28px 20px; }
}
