@font-face {
  font-family: Barlow Condensed;
  src: url("assets/BarlowCondensed-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Barlow Condensed;
  src: url("assets/BarlowCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url("assets/Barlow-BoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #111111;
  --accent: #e4ff00;
  --paper: #ffffff;
  --video-shadow: var(--accent);
  --gutter: clamp(24px,4vw,96px);
  --video-offset: 18px;
  font-family: Barlow Condensed,Arial,sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: inherit;
  text-underline-offset: .2em;
}

button {
  font: inherit;
  cursor: pointer;
}

button,a,summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 5px;
}

[hidden] {
  display: none!important;
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--paper);
  min-height: 72px;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: grid;
  align-items: center;
  width: 176px;
  min-height: 44px;
  flex-shrink: 0;
}

/* Hide only the supplied PNG's transparent margins; retain the original art. */
.wordmark-crop {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1878 / 303;
  overflow: hidden;
}

.wordmark img {
  position: absolute;
  width: 115.655%;
  height: auto;
  max-width: none;
  left: -7.827%;
  top: -68.317%;
}

.hero-banner {
  position: relative;
  height: clamp(440px,35vw,560px);
  overflow: hidden;
  background: #000000;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 22%);
  pointer-events: none;
}

.hero-statement {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 40px var(--gutter);
  font-family: Barlow,Arial,sans-serif;
  font-size: clamp(64px,8.3vw,156px);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.8px var(--accent);
  z-index: 1;
  pointer-events: none;
}

.hero-statement span {
  display: block;
}

.hero-statement span:last-child {
  align-self: flex-end;
}

.brand-row {
  padding: 80px var(--gutter);
  scroll-margin-top: 96px;
}

.brand-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.brand-copy h2, .product-copy h2 {
  font-family: Barlow,Arial,sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(32px,3.2vw,48px);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 28px;
}

.brand-copy p, .product-description {
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
  text-wrap: pretty;
}

.brand-copy p + p {
  margin-top: 20px;
}

.product-section {
  border-top: 1px solid #11111126;
  scroll-margin-top: 96px;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.7fr);
  align-items: center;
  gap: 40px;
  width: calc(100% - 2 * var(--gutter));
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 0 80px;
}

.product-copy {
  width: 100%;
  max-width: 640px;
  text-align: left;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: left;
}

.product-details > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 16px;
}

.icon {
  width: 22px;
  height: 22px;
  flex: none;
  display: block;
}

.product-details .icon {
  width: 32px;
  height: 32px;
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 24px;
  padding: 7px 12px;
  background: var(--ink);
  color: var(--accent);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.product-media {
  min-width: 0;
  padding: 0 var(--video-offset) var(--video-offset);
}

.product-film {
  box-shadow: calc(-1 * var(--video-offset)) var(--video-offset) 0 var(--video-shadow);
  display: block;
  margin: auto;
  width: 290px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  object-fit: contain;
  background: #dedede;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.film-status {
  max-width: 330px;
  margin: 18px auto 0;
  font-size: 19px;
  line-height: 1.4;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid #11111133;
  padding: 28px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  white-space: nowrap;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.site-footer a, .site-footer button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  text-decoration: none;
}

.site-footer a:hover, .site-footer button:hover {
  color: var(--accent);
  text-decoration: underline;
}

.site-footer .icon {
  width: 18px;
  height: 18px;
}

.site-footer button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
}

.cookie-notice {
  position: fixed;
  z-index: 10;
  bottom: 22px;
  left: 22px;
  width: min(600px,calc(100% - 44px));
  max-height: calc(100svh - 44px);
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 0 8px 30px #0002;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-notice h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 24px;
  text-transform: uppercase;
}

.cookie-notice p {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.cookie-notice button {
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  background: var(--accent);
  color: var(--ink);
  padding: 12px 22px;
  min-height: 44px;
  font-size: 20px;
}

.legal-page {
  max-width: 880px;
  padding: 60px 32px 90px;
  margin: auto;
  font-size: 21px;
  line-height: 1.5;
}

.legal-page h1 {
  font-size: clamp(42px,6vw,72px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 26px 0 10px;
}

.legal-page h2 {
  font-size: 30px;
  line-height: 1.2;
  margin: 38px 0 14px;
}

.legal-page p {
  margin: 0 0 18px;
}

.legal-page .review-date {
  font-size: 17px;
  margin-bottom: 32px;
}

.legal-note {
  background: #f4f4f4;
  border-left: 3px solid var(--ink);
  padding: 22px 26px;
  margin-bottom: 32px;
}

.legal-details {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 8px 20px;
  margin: 24px 0;
}

.legal-details dt {
  font-weight: 700;
}

.legal-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.incomplete {
  color: #555555;
}

.table-scroll {
  overflow-x: auto;
  margin: 24px 0;
}

table {
  min-width: 560px;
  border-collapse: collapse;
  width: 100%;
  font-size: 18px;
}

th,td {
  padding: 12px;
  border: 1px solid #b5b5b5;
  text-align: left;
  vertical-align: top;
}

code {
  font-size: 13px;
  overflow-wrap: anywhere;
}

.sr-only,.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 30;
  background: var(--paper);
  padding: 14px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 280px;
  max-width: calc(100vw - 40px);
  padding: 12px;
  background: var(--paper);
  box-shadow: 0 14px 40px #11111126;
  max-height: calc(100dvh - 104px);
  overflow-y: auto;
}

.nav-panel a {
  display: block;
  padding: 12px 16px;
  font-size: 21px;
  line-height: 1.2;
  text-decoration: none;
}

.nav-panel a:hover, .nav-panel a:focus-visible {
  background: var(--ink);
  color: var(--accent);
  outline-color: var(--ink);
}

.nav-group-label {
  display: block;
  border-top: 1px solid #11111126;
  margin: 8px 16px 0;
  padding: 16px 0 4px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.landing-page {
  user-select: none;
  -webkit-user-select: none;
}

.landing-page input, .landing-page textarea, .landing-page [contenteditable="true"] {
  user-select: text;
  -webkit-user-select: text;
}

@media(max-width:800px) {
  .nav-panel {
    top: calc(100% + 10px);
  }
  :root {
    --gutter: clamp(20px,6vw,48px);
    --video-offset: 14px;
  }
  .site-header {
    min-height: 64px;
    padding: 10px var(--gutter);
    gap: 18px;
  }
  .wordmark {
    width: 144px;
  }
  .hero-banner {
    height: clamp(270px,66vw,420px);
  }
  .hero-statement {
    padding: 28px var(--gutter);
    font-size: clamp(32px,9.6vw,72px);
    -webkit-text-stroke-width: 1.2px;
  }
  .brand-row {
    padding: 48px var(--gutter);
    scroll-margin-top: 84px;
  }
  .brand-copy h2, .product-copy h2 {
    font-size: 34px;
  }
  .brand-copy p, .product-description {
    font-size: 21px;
  }
  .product-section {
    scroll-margin-top: 84px;
  }
  .product-row {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0 56px;
  }
  .product-details > div {
    grid-template-columns: 28px 1fr;
    gap: 14px;
  }
  .product-details .icon {
    width: 28px;
    height: 28px;
  }
  .product-film {
    width: 250px;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .site-footer nav {
    gap: 16px 22px;
  }
  .cookie-notice {
    left: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 18px;
    gap: 16px;
  }
  .cookie-notice button {
    padding: 10px 16px;
  }
  .legal-page {
    padding: 40px var(--gutter) 64px;
  }
  .legal-details {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .legal-details dd {
    margin-bottom: 12px;
  }
}

@media(max-width:520px) {
  .product-details {
    gap: 20px;
  }
  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
  }
  .cookie-notice {
    flex-direction: column;
    align-items: stretch;
  }
}
