:root {
  --ink: #121214;
  --ink-soft: #2a2a2e;
  --paper: #f4f2ec;
  --paper-2: #ebe8e0;
  --lime: #c8ff3c;
  --coral: #ff4d6a;
  --cyan: #3de0ff;
  --muted: #6a6a72;
  --white: #ffffff;
  --radius: 4px;
  --shadow: 0 18px 50px rgba(18, 18, 20, 0.12);
  --header-h: 72px;
  --font-display: "Archivo Black", Impact, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(200, 255, 60, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 77, 106, 0.12), transparent 50%),
    linear-gradient(180deg, #f7f5ef 0%, var(--paper) 40%, #efece4 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.full-bleed { width: 100%; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  background: var(--lime);
  border: 2px solid var(--ink);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38rem;
}

.section-head { margin-bottom: 2.5rem; }
.section-head.light .section-title,
.section-head.light .eyebrow { color: var(--white); }
.section-head.light .eyebrow { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 2px solid var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-primary:hover {
  background: #d8ff70;
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: 4px 4px 0 transparent;
}

.btn-ghost:hover {
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(244, 242, 236, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--ink);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.logo span {
  color: var(--coral);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover { color: var(--coral); }

.nav-cta {
  padding: 0.55rem 1rem;
  background: var(--ink);
  color: var(--lime) !important;
  border: 2px solid var(--ink);
}

.nav-cta:hover {
  background: var(--lime) !important;
  color: var(--ink) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  background: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(18, 18, 20, 0.82) 0%, rgba(18, 18, 20, 0.45) 48%, rgba(18, 18, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(18, 18, 20, 0.55) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  color: var(--white);
  max-width: 720px;
  margin-left: max(1.25rem, calc((100% - 1180px) / 2));
  margin-right: 1.25rem;
  animation: rise 0.8s ease both;
}

.hero .eyebrow { color: var(--ink); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.15rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero .btn-ghost {
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 100px;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--lime);
}

.trust-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Drops */
.drops {
  padding: 5rem 0;
  border-bottom: 2px solid var(--ink);
}

.drops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.drop-card {
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.drop-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--coral);
}

.drop-card img {
  width: 100%;
  aspect-ratio: 700 / 520;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
}

.drop-card-body { padding: 1rem 1.05rem 1.2rem; }

.drop-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.drop-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.drop-price {
  font-weight: 700;
  color: var(--coral);
}

/* Fluxo */
.fluxo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-bottom: 2px solid var(--ink);
}

.fluxo-media {
  min-height: 420px;
  border-right: 2px solid var(--ink);
}

.fluxo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fluxo-content {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(200, 255, 60, 0.18), transparent 50%),
    var(--paper);
}

.fluxo-list {
  margin: 1.5rem 0;
  display: grid;
  gap: 0.85rem;
}

.fluxo-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 600;
  font-size: 1.02rem;
}

.fluxo-list span {
  flex: 0 0 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.85rem;
  border: 2px solid var(--ink);
}

.fluxo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.fluxo-stat {
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 0.9rem;
}

.fluxo-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.fluxo-stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Packs */
.packs {
  padding: 5rem 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(18, 18, 20, 0.03) 12px,
      rgba(18, 18, 20, 0.03) 13px
    ),
    var(--paper-2);
  border-bottom: 2px solid var(--ink);
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.pack-card {
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 1.6rem 1.4rem 1.5rem;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
}

.pack-card.featured {
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--lime);
  transform: translateY(-8px);
}

.pack-badge {
  position: absolute;
  top: -12px;
  right: 14px;
  background: var(--coral);
  color: var(--white);
  border: 2px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
}

.pack-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.pack-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--coral);
  line-height: 1;
}

.pack-card.featured .pack-price { color: var(--lime); }

.pack-price small {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.7;
}

.pack-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.25rem 0 0.5rem;
  flex: 1;
}

.pack-card li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
}

.pack-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--lime);
  border: 1.5px solid var(--ink);
}

.pack-card.featured li::before {
  border-color: var(--lime);
}

.pack-card .btn { width: 100%; margin-top: auto; }

.pack-card.featured .btn-primary {
  background: var(--lime);
  color: var(--ink);
}

.pack-card.featured .btn-ghost {
  color: var(--white);
  border-color: var(--white);
}

.pack-card.featured .btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
}

/* Crew */
.crew {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

.crew-bg {
  position: absolute;
  inset: 0;
}

.crew-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.1);
}

.crew .container { position: relative; z-index: 1; }

.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.crew-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  padding: 1.4rem;
  color: var(--white);
}

.crew-card p {
  font-size: 1.02rem;
  margin-bottom: 1.1rem;
  line-height: 1.5;
}

.crew-card strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--lime);
  margin-bottom: 0.2rem;
}

.crew-card span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Contact */
.contact {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.contact-block {
  border-left: 4px solid var(--lime);
  padding-left: 1rem;
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.contact-block a:hover { color: var(--coral); }

.contact-form {
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-field { display: grid; gap: 0.35rem; }

.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 0.75rem 0.85rem;
  outline: none;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  box-shadow: 3px 3px 0 var(--lime);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-note a {
  color: var(--coral);
  text-decoration: underline;
}

.form-success {
  display: none;
  padding: 0.75rem 0.9rem;
  background: var(--lime);
  border: 2px solid var(--ink);
  font-weight: 700;
}

.form-success.show { display: block; }

.contact-form .btn { width: 100%; }

/* Footer */
.site-footer {
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover { color: var(--lime); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 1rem 1.15rem;
  max-width: 860px;
  margin-inline: auto;
}

.cookie-banner.show { display: flex; }

.cookie-banner p {
  flex: 1;
  min-width: 220px;
  font-size: 0.92rem;
}

.cookie-banner a {
  color: var(--coral);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Legal pages */
.legal-page {
  padding: 4rem 0 5rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.legal-page .meta {
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin: 1.75rem 0 0.6rem;
}

.legal-page p, .legal-page li {
  color: var(--ink-soft);
  margin-bottom: 0.65rem;
  max-width: 46rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 700;
  border-bottom: 2px solid var(--lime);
}

.back-link:hover { color: var(--coral); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .drops-grid,
  .packs-grid,
  .crew-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fluxo {
    grid-template-columns: 1fr;
  }

  .fluxo-media {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
    min-height: 320px;
  }

  .pack-card.featured { transform: none; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .menu-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    padding: 0.5rem 1.25rem 1rem;
  }

  .nav.open { display: flex; }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(18, 18, 20, 0.1);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .drops-grid,
  .packs-grid,
  .crew-grid,
  .form-row,
  .fluxo-stats {
    grid-template-columns: 1fr;
  }

  .hero-content { padding-top: 3.5rem; }

  .hero h1 { font-size: clamp(2.5rem, 12vw, 3.6rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-content { animation: none; }
}
