:root {
  --flama-orange: #ea542a;
  --flama-black: #000000;
  --flama-white: #ffffff;
  --flama-grey: #eaeaea;
  --soft-line: rgba(0, 0, 0, 0.16);
  --soft-white: rgba(255, 255, 255, 0.24);
  --pad: clamp(18px, 4vw, 56px);
  --font: "Chivo Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--flama-black);
  background: var(--flama-grey);
  font-family: var(--font);
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px var(--pad);
  background: color-mix(in srgb, var(--flama-grey) 92%, transparent);
  border-bottom: 1px solid var(--soft-line);
  backdrop-filter: blur(16px);
}

.wordmark {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 0.88;
  text-decoration: none;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 30px);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.language-switcher select,
select,
input,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 10px 12px;
  background: var(--flama-white);
  color: var(--flama-black);
  font: inherit;
}

textarea {
  resize: vertical;
}

.language-switcher select {
  width: auto;
  min-height: 36px;
  padding: 6px 24px 6px 8px;
}

.hero {
  min-height: calc(100svh - 90px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: clamp(28px, 7vw, 110px);
  padding: clamp(64px, 8vw, 120px) var(--pad) var(--pad);
  border-bottom: 1px solid var(--soft-line);
}

.hero__copy {
  max-width: 920px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(52px, 9vw, 128px);
  line-height: 0.9;
  font-weight: 700;
  text-transform: uppercase;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

h2 {
  max-width: 960px;
  margin-bottom: 18px;
  font-size: clamp(34px, 6vw, 82px);
  line-height: 0.96;
  font-weight: 700;
}

h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 38px);
}

p {
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.hero__copy > p:not(.eyebrow),
.section-heading p,
.two-col > p,
.two-col > div > p:not(.eyebrow) {
  max-width: 760px;
  font-size: clamp(15px, 1.7vw, 20px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.surprise-cta {
  display: inline-block;
  margin: 18px 0 0;
  padding: 10px 12px;
  border-left: 3px solid var(--flama-orange);
  background: color-mix(in srgb, var(--flama-orange) 10%, transparent);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.bridge-line {
  margin: -12px 0 22px;
  color: var(--flama-orange);
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.surprise-cta--inline {
  margin-top: 22px;
  max-width: 620px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid currentColor;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.button--dark {
  color: var(--flama-white);
  background: var(--flama-black);
}

.button--light {
  color: var(--flama-black);
  background: var(--flama-white);
}

.hero__visual {
  align-self: center;
  margin: 0;
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--flama-white);
}

.hero__visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.marquee {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: clamp(26px, 8vw, 120px);
  overflow: hidden;
  padding: 15px var(--pad);
  color: var(--flama-black);
  background: var(--flama-orange);
  border-bottom: 1px solid var(--flama-black);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: clamp(72px, 10vw, 142px) var(--pad);
  border-bottom: 1px solid var(--soft-line);
}

.section--quiet {
  background: var(--flama-white);
}

.section--black {
  color: var(--flama-white);
  background: var(--flama-black);
  border-bottom-color: var(--soft-white);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: start;
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(40px, 7vw, 96px);
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -58px 0 18px;
}

.carousel-controls .button {
  width: 48px;
  min-height: 48px;
  padding: 0;
  font-size: 18px;
}

.product-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  background: var(--soft-line);
  border: 1px solid var(--soft-line);
  scrollbar-width: none;
}

.product-carousel::-webkit-scrollbar {
  display: none;
}

.product-slide {
  flex: 0 0 100%;
  min-width: 0;
  min-height: clamp(520px, 66vw, 720px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 1px;
  color: var(--flama-black);
  background: var(--soft-line);
  scroll-snap-align: start;
  text-decoration: none;
}

.product-slide__image,
.product-slide__meta,
.product-slide--cta > div,
.product-slide--cta > span {
  background: var(--flama-white);
}

.product-slide__image {
  display: grid;
  place-items: center;
  padding: clamp(22px, 6vw, 72px);
}

.product-slide__image img {
  width: min(100%, 640px);
  max-height: 520px;
  object-fit: contain;
}

.product-slide__meta {
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 5vw, 56px);
}

.product-slide__meta strong,
.product-slide--cta strong {
  display: block;
  max-width: 9ch;
  margin: 12px 0 18px;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.86;
  text-transform: uppercase;
}

.product-slide__meta span,
.product-slide__meta small,
.product-slide--cta small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-slide__meta div:last-child {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--flama-orange);
}

.product-slide--cta {
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.22fr);
}

.product-slide--cta > div {
  display: grid;
  align-content: space-between;
  padding: clamp(24px, 6vw, 72px);
}

.product-slide--cta > span {
  display: grid;
  place-items: center;
  color: var(--flama-orange);
  font-size: clamp(86px, 18vw, 180px);
  line-height: 1;
}

.product-join {
  margin-top: 18px;
}

.venue-box,
.signup-form {
  color: var(--flama-black);
  background: var(--flama-grey);
  padding: clamp(20px, 4vw, 42px);
}

.section--black .venue-box {
  background: var(--flama-white);
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.venue-note,
.form-status {
  min-height: 22px;
  margin: 16px 0 0;
  font-size: 12px;
}

.draw-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--soft-line);
  border: 1px solid var(--soft-line);
}

.draw-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.draw-grid article,
.steps div {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  padding: clamp(20px, 4vw, 40px);
  background: var(--flama-white);
}

.draw-grid span,
.steps span {
  color: var(--flama-orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.draw-grid strong {
  display: block;
  font-size: clamp(58px, 9vw, 120px);
  line-height: 0.86;
}

.steps strong {
  display: block;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.warning {
  color: var(--flama-orange);
  font-weight: 700;
}

.signup-form {
  display: grid;
  gap: 16px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  text-transform: none;
  line-height: 1.35;
}

.check input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px var(--pad);
  color: var(--flama-white);
  background: var(--flama-black);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

.footer p:last-child {
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: min(520px, calc(100% - 36px));
  padding: 16px;
  color: var(--flama-white);
  background: var(--flama-black);
  border: 1px solid var(--flama-white);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin-bottom: 12px;
  font-size: 11px;
}

.cookie-banner div {
  display: flex;
  gap: 10px;
}

.cookie-banner .button {
  flex: 1;
  min-height: 40px;
  padding: 9px 12px;
}

.legal-page {
  min-height: 100svh;
  padding: 120px var(--pad) 80px;
  background: var(--flama-grey);
}

.legal-page article {
  max-width: 980px;
}

.legal-page h1 {
  font-size: clamp(42px, 7vw, 92px);
}

.legal-page h2 {
  margin-top: 42px;
  font-size: clamp(22px, 3vw, 36px);
}

.legal-page li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.draft-warning {
  padding: 18px;
  color: var(--flama-white);
  background: var(--flama-black);
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1;
  }

  .hero__actions .button {
    width: 100%;
    white-space: normal;
  }

  .hero__visual {
    width: min(100%, 520px);
  }

  .marquee {
    grid-template-columns: repeat(2, max-content);
  }

  .draw-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .carousel-controls {
    justify-content: flex-start;
    margin: 0 0 16px;
  }

  .product-slide,
  .product-slide--cta {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .product-slide__image {
    min-height: 360px;
  }

  .product-slide__image img {
    max-height: 320px;
  }

  .product-slide__meta {
    min-height: 260px;
  }

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

  .footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .language-switcher span {
    display: none;
  }

  h1 {
    font-size: clamp(34px, 10vw, 40px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .button {
    width: 100%;
  }

  .carousel-controls .button {
    width: 56px;
    flex: 0 0 56px;
  }

  .product-slide__image {
    min-height: 300px;
  }

  .product-slide__meta strong,
  .product-slide--cta strong {
    font-size: clamp(54px, 18vw, 82px);
  }

  .cookie-banner {
    top: auto;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 12px;
  }

  .cookie-banner div {
    display: flex;
  }

  .cookie-banner .button {
    width: auto;
  }
}
