:root {
  color-scheme: light dark;
  --paper: #d9dddc;
  --panel: #e8ebea;
  --ink: #151817;
  --muted: #535a57;
  --line: rgb(21 24 23 / 32%);
  --acid: #b7f238;
  --acid-ink: #10130e;
  --page: min(100% - 40px, 1480px);
  --control: 72px;
  --snap: cubic-bezier(.16, 1, .3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #121514;
    --panel: #1d211f;
    --ink: #e8ecea;
    --muted: #a7aeaa;
    --line: rgb(232 236 234 / 30%);
    --acid: #b7f238;
    --acid-ink: #10130e;
  }
}

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

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  text-rendering: geometricPrecision;
}

body.index-open {
  overflow: hidden;
}

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

figure,
h1,
h2,
p,
blockquote {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

a:hover {
  text-decoration-thickness: 3px;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border-radius: 0;
  font: inherit;
}

button:active,
.block-action:active {
  transform: translateY(1px);
}

:focus-visible {
  outline: 4px solid var(--acid);
  outline-offset: 4px;
}

.skip {
  position: fixed;
  top: 8px;
  left: 50%;
  z-index: 120;
  padding: .75rem 1rem;
  background: var(--acid);
  color: var(--acid-ink);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translate(-50%, -180%);
}

.skip:focus {
  transform: translate(-50%, 0);
}

.site-sigil,
.index-button {
  position: fixed;
  top: 18px;
  z-index: 70;
  height: 54px;
  border: 2px solid var(--ink);
  background: var(--panel);
  color: var(--ink);
}

.site-sigil {
  left: 20px;
  display: grid;
  width: 92px;
  overflow: hidden;
  place-items: center;
}

.site-sigil img {
  width: 78px;
  height: 46px;
  object-fit: contain;
}

@media (prefers-color-scheme: dark) {
  .site-sigil img {
    filter: invert(1);
  }
}

.index-button {
  right: 20px;
  min-width: 92px;
  padding: 0 1rem;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s var(--snap);
}

.index-button:hover {
  transform: translate(-5px, 5px);
}

.site-index {
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--acid);
  color: var(--acid-ink);
}

.site-index::backdrop {
  background: rgb(16 19 14 / 78%);
}

.index-frame {
  display: grid;
  grid-template-rows: 76px minmax(0, 1fr);
  min-height: 100dvh;
  padding: 0 20px 20px;
}

.index-close {
  align-self: center;
  justify-self: end;
  min-width: 116px;
  min-height: 48px;
  border: 2px solid var(--acid-ink);
  background: transparent;
  color: var(--acid-ink);
  cursor: pointer;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.index-close:hover {
  background: var(--acid-ink);
  color: var(--acid);
}

.index-navigation {
  display: grid;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  min-height: 0;
  border-top: 3px solid var(--acid-ink);
  overflow-y: auto;
}

.index-entry {
  display: flex;
  align-items: center;
  min-height: 64px;
  border-bottom: 2px solid var(--acid-ink);
  font-size: clamp(2rem, 7.2vh, 5.8rem);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .88;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .32s var(--snap), opacity .32s var(--snap);
}

.index-entry:hover,
.index-entry:focus-visible,
.index-entry[aria-current="page"] {
  transform: translateX(1.2rem);
}

.index-entry[aria-current="page"]::after {
  width: clamp(48px, 10vw, 180px);
  height: .16em;
  margin-left: auto;
  background: currentColor;
  content: "";
}

.site-index[open] .index-entry {
  animation: index-in .58s var(--snap) both;
}

.site-index[open] .index-entry:nth-child(2) { animation-delay: .035s; }
.site-index[open] .index-entry:nth-child(3) { animation-delay: .07s; }
.site-index[open] .index-entry:nth-child(4) { animation-delay: .105s; }
.site-index[open] .index-entry:nth-child(5) { animation-delay: .14s; }
.site-index[open] .index-entry:nth-child(6) { animation-delay: .175s; }

@keyframes index-in {
  from { opacity: 0; transform: translateX(-4rem); }
  to { opacity: 1; transform: translateX(0); }
}

main {
  width: var(--page);
  margin: 0 auto;
}

main:not(.home-poster) {
  min-height: 100dvh;
  padding-top: clamp(8rem, 13vw, 12rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

h1,
h2,
summary,
.missing-code {
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .88;
  text-wrap: balance;
}

h1 {
  font-size: clamp(4rem, 11vw, 11rem);
  text-transform: uppercase;
}

.block-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 48px;
  padding: .8rem 1rem;
  border: 2px solid currentColor;
  background: var(--acid);
  color: var(--acid-ink);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s var(--snap);
}

.block-action:hover {
  transform: translate(-5px, 5px);
  text-decoration: none;
}

.object-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(22rem, .7fr);
  width: var(--page);
  margin: 0 auto 2rem;
  border: 2px solid var(--ink);
}

.object-footer-poster {
  display: grid;
  min-height: clamp(230px, 26vw, 390px);
  padding: clamp(1.5rem, 4vw, 4rem);
  border-right: 2px solid var(--ink);
  background: var(--acid);
  color: var(--acid-ink);
  align-content: space-between;
  gap: 3rem;
}

.object-footer-brand {
  display: block;
  width: clamp(170px, 27vw, 400px);
  height: clamp(90px, 14vw, 190px);
  overflow: hidden;
}

.object-footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.object-footer-poster p {
  max-width: 30ch;
  font-size: clamp(1.25rem, 2.25vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
}

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

.object-footer-nav a {
  display: flex;
  min-width: 0;
  min-height: 50%;
  padding: clamp(1rem, 2vw, 1.8rem);
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  align-items: flex-end;
  color: var(--ink);
  font-size: clamp(.72rem, 1vw, .92rem);
  font-weight: 900;
  letter-spacing: -.015em;
  line-height: 1.1;
  overflow-wrap: anywhere;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s var(--snap), color .2s var(--snap);
}

.object-footer-nav a:nth-child(2n) { border-right: 0; }
.object-footer-nav a:nth-last-child(-n + 2) { border-bottom: 0; }
.object-footer-nav a:hover {
  background: var(--ink);
  color: var(--paper);
}

.object-footer-base {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr auto auto auto;
  gap: clamp(1rem, 3vw, 3rem);
  padding: 1rem clamp(1rem, 2vw, 1.8rem);
  border-top: 2px solid var(--ink);
  align-items: center;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.object-footer-base a { color: var(--ink); }
}

.motion-ready .kinetic {
  opacity: 0;
  transform: translateY(44px);
  transition: transform .72s var(--snap), opacity .72s var(--snap);
}

.motion-ready .kinetic.in-view {
  opacity: 1;
  transform: translateY(0);
}

.home-poster {
  width: 100%;
}

.poster-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: 100dvh;
  padding: 96px 20px 20px;
  overflow: hidden;
}

.poster-type {
  z-index: 2;
  grid-column: 1 / 8;
  grid-row: 1;
  align-self: end;
  padding: clamp(1.25rem, 3.2vw, 3.6rem);
  background: var(--acid);
  color: var(--acid-ink);
}

.poster-type h1 {
  font-size: clamp(4.2rem, 10.8vw, 11rem);
  white-space: nowrap;
}

.poster-type h2 {
  margin-top: .7rem;
  font-size: clamp(2rem, 4.7vw, 5.2rem);
  text-transform: uppercase;
}

.poster-type p {
  max-width: 34ch;
  margin: 1.25rem 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 700;
}

.poster-type .block-action {
  background: transparent;
}

.poster-object {
  grid-column: 5 / 13;
  grid-row: 1;
  min-height: calc(100dvh - 116px);
  border: 2px solid var(--ink);
  overflow: hidden;
}

.poster-object img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--snap);
}

.poster-object:hover img {
  transform: scale(1.025);
}

.poster-texture {
  position: absolute;
  top: 0;
  right: 13%;
  bottom: 0;
  width: 9%;
  opacity: .12;
  background-image: url("/assets/images/background.webp");
  background-position: center;
  background-size: cover;
  filter: grayscale(1) contrast(1.3);
  pointer-events: none;
}

.discover-stage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: calc(100dvh - clamp(8rem, 13vw, 12rem));
  align-items: end;
}

.discover-image {
  grid-column: 1 / 10;
  grid-row: 1 / 3;
  align-self: stretch;
  min-height: 66dvh;
  border: 2px solid var(--ink);
  overflow: hidden;
}

.discover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover-copy {
  z-index: 2;
  grid-column: 6 / 13;
  grid-row: 2 / 4;
  padding: clamp(1.5rem, 4vw, 4.5rem);
  background: var(--acid);
  color: var(--acid-ink);
}

.discover-copy h1 {
  font-size: clamp(4rem, 9vw, 9.5rem);
}

.discover-copy p {
  max-width: 34ch;
  margin: 1.5rem 0;
  font-weight: 700;
}

.discover-copy .block-action {
  background: transparent;
}

.discover-vessel {
  z-index: 3;
  grid-column: 1 / 4;
  grid-row: 2 / 5;
  max-height: 54dvh;
  border: 2px solid var(--ink);
  overflow: hidden;
}

.discover-vessel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 6rem) 0;
}

.about-heading {
  display: grid;
  grid-column: 1 / 13;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding-bottom: clamp(2rem, 5vw, 5rem);
  border-bottom: 6px solid var(--ink);
}

.about-heading h1 {
  grid-column: 1 / 8;
}

.about-heading > p {
  grid-column: 8 / 13;
  align-self: end;
  max-width: 56ch;
  font-size: clamp(1rem, 1.28vw, 1.22rem);
}

.about-declaration {
  grid-column: 3 / 13;
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--acid);
  color: var(--acid-ink);
}

.about-declaration p {
  font-size: clamp(1.8rem, 4.4vw, 5rem);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .98;
}

.about-declaration p + p {
  margin-top: .28em;
}

.about-object {
  grid-column: 1 / 7;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--ink);
  overflow: hidden;
}

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

.about-future {
  grid-column: 8 / 13;
  align-self: center;
  max-width: 52ch;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 700;
}

.collection-index-page {
  width: 100%;
}

.index-title {
  width: var(--page);
  margin: 0 auto clamp(4rem, 8vw, 8rem);
  padding-bottom: 1.5rem;
  border-bottom: 6px solid var(--ink);
  font-size: clamp(3.8rem, 10.5vw, 10.5rem);
}

.collection-posters {
  display: grid;
  gap: clamp(6rem, 12vw, 13rem);
}

.collection-poster {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: var(--page);
  margin: 0 auto;
  align-items: end;
}

.collection-visual {
  display: block;
  grid-row: 1 / 3;
  border: 2px solid var(--ink);
  overflow: hidden;
}

.collection-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--snap);
}

.collection-visual:hover img {
  transform: scale(1.025);
}

.collection-copy {
  z-index: 2;
  grid-row: 2 / 4;
  padding: clamp(1.5rem, 3.5vw, 3.5rem);
  background: var(--acid);
  color: var(--acid-ink);
}

.collection-copy h2 {
  font-size: clamp(3.2rem, 7.8vw, 8.5rem);
  white-space: nowrap;
}

.collection-copy h2 a {
  text-decoration: none;
}

.collection-copy p {
  max-width: 52ch;
  margin-top: 1.25rem;
  font-weight: 700;
}

.collection-poster-plain .collection-visual {
  grid-column: 1 / 10;
}

.collection-poster-plain .collection-copy {
  grid-column: 7 / 13;
}

.collection-poster-earth .collection-visual {
  grid-column: 4 / 13;
}

.collection-poster-earth .collection-copy {
  grid-column: 1 / 8;
}

.earth-page,
.plain-page {
  width: 100%;
  padding-bottom: 0 !important;
}

.earth-intro,
.earth-material,
.plain-horizon,
.plain-planes {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: var(--page);
  margin: 0 auto;
}

.earth-intro {
  min-height: 78dvh;
  align-items: end;
}

.earth-title {
  z-index: 2;
  grid-column: 1 / 9;
  grid-row: 1;
  align-self: end;
  padding: 0 0 clamp(2rem, 5vw, 5rem);
}

.earth-title h1 {
  white-space: nowrap;
}

.earth-title p {
  max-width: 58ch;
  margin-top: 2rem;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  font-weight: 700;
}

.earth-vessel {
  grid-column: 8 / 13;
  grid-row: 1;
  height: 74dvh;
  border: 2px solid var(--ink);
  overflow: hidden;
}

.earth-vessel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.earth-material {
  padding-top: clamp(5rem, 10vw, 11rem);
  align-items: start;
}

.earth-description {
  z-index: 2;
  grid-column: 1 / 7;
  grid-row: 1;
  padding: clamp(2rem, 4.8vw, 5rem);
  background: var(--acid);
  color: var(--acid-ink);
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  font-weight: 800;
}

.earth-detail-wide {
  grid-column: 5 / 13;
  grid-row: 1 / 3;
  margin-top: clamp(8rem, 16vw, 16rem);
  border: 2px solid var(--ink);
  overflow: hidden;
}

.earth-detail-close {
  z-index: 3;
  grid-column: 1 / 6;
  grid-row: 2 / 4;
  margin-top: clamp(3rem, 8vw, 8rem);
  border: 2px solid var(--ink);
  overflow: hidden;
}

.earth-detail-wide img,
.earth-detail-close img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--snap);
}

.earth-detail-wide:hover img,
.earth-detail-close:hover img {
  transform: scale(1.025);
}

.plain-horizon {
  align-items: end;
}

.plain-horizon-image {
  grid-column: 1 / 13;
  grid-row: 1;
  min-height: 66dvh;
  border: 2px solid var(--ink);
  overflow: hidden;
}

.plain-horizon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plain-horizon h1 {
  z-index: 2;
  grid-column: 1 / 10;
  grid-row: 1;
  padding: .08em .12em;
  background: var(--acid);
  color: var(--acid-ink);
  white-space: nowrap;
}

.plain-opening {
  grid-column: 7 / 13;
  padding: clamp(2rem, 4vw, 4rem) 0 0 clamp(2rem, 4vw, 4rem);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 700;
}

.plain-planes {
  padding-top: clamp(5rem, 10vw, 11rem);
  align-items: start;
}

.plain-description {
  grid-column: 1 / 8;
  padding: clamp(2rem, 4.5vw, 4.8rem);
  border: 2px solid var(--ink);
  background: var(--panel);
  font-size: clamp(1.1rem, 1.85vw, 1.7rem);
  font-weight: 800;
}

.plain-vessel {
  grid-column: 8 / 13;
  grid-row: 1 / 3;
  margin-top: clamp(5rem, 10vw, 10rem);
  border: 2px solid var(--ink);
  overflow: hidden;
}

.plain-detail-vertical {
  grid-column: 2 / 7;
  grid-row: 2 / 4;
  margin-top: clamp(4rem, 9vw, 9rem);
  border: 2px solid var(--ink);
  overflow: hidden;
}

.plain-vessel img,
.plain-detail-vertical img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--snap);
}

.plain-vessel:hover img,
.plain-detail-vertical:hover img {
  transform: scale(1.025);
}

.products-heading,
.sales-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding-bottom: clamp(3rem, 7vw, 7rem);
  border-bottom: 6px solid var(--ink);
}

.products-heading h1 {
  grid-column: 1 / 10;
  font-size: clamp(3.2rem, 8.6vw, 9rem);
  overflow-wrap: anywhere;
}

.products-heading p,
.sales-heading p {
  grid-column: 8 / 13;
  margin-top: 2rem;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 700;
}

.product-field {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.product-fact {
  min-height: 260px;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--panel);
}

.product-fact h2 {
  max-width: 14ch;
  font-size: clamp(1.8rem, 3.4vw, 3.8rem);
}

.product-fact p {
  max-width: 60ch;
  margin-top: 1.4rem;
}

.product-fact ul {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
}

.product-fact li + li {
  margin-top: .75rem;
}

.product-fact-1 { grid-column: span 7; }
.product-fact-2 { grid-column: span 5; background: var(--acid); color: var(--acid-ink); }
.product-fact-3 { grid-column: span 8; }
.product-fact-4 { grid-column: span 4; }
.product-fact-5 { grid-column: span 5; background: var(--acid); color: var(--acid-ink); }
.product-fact-6 { grid-column: span 7; }

.faq-page {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.faq-title {
  position: sticky;
  top: 110px;
  grid-column: 1 / 5;
}

.question-field {
  grid-column: 5 / 13;
  border-top: 4px solid var(--ink);
}

.question {
  border-bottom: 2px solid var(--ink);
}

.question summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 2rem 4rem 2rem 0;
  font-size: clamp(1.5rem, 3.2vw, 3.4rem);
}

.question summary::-webkit-details-marker {
  display: none;
}

.question summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 2.5rem;
  content: "+";
  color: var(--acid);
  font-size: 2rem;
  text-align: center;
  transform: translateY(-50%);
}

.question[open] summary::after {
  content: "−";
}

.question p {
  max-width: 67ch;
  padding: 0 4rem 2.5rem 0;
  font-size: 1.05rem;
}

.sales-heading h1 {
  grid-column: 1 / 8;
}

.sales-field {
  display: grid;
  gap: clamp(6rem, 12vw, 13rem);
  margin-top: clamp(5rem, 10vw, 10rem);
}

.sale-poster {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
}

.sale-visual {
  display: grid;
  grid-column: 1 / 9;
  grid-row: 1;
  min-height: 420px;
  padding: clamp(2rem, 5vw, 5rem);
  border: 2px solid var(--ink);
  background: var(--panel);
  overflow: hidden;
  place-items: center;
}

.sale-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .7s var(--snap);
}

.sale-visual:hover img {
  transform: scale(1.035);
}

.sale-copy {
  z-index: 2;
  grid-column: 7 / 13;
  grid-row: 1;
  padding: clamp(2rem, 4.5vw, 4.5rem);
  background: var(--acid);
  color: var(--acid-ink);
}

.sale-copy h2 {
  font-size: clamp(2.7rem, 6vw, 6.5rem);
}

.sale-copy h2 a {
  text-decoration: none;
}

.sale-copy p {
  max-width: 54ch;
  margin-top: 1.5rem;
  font-weight: 700;
}

.sale-poster:nth-child(even) .sale-visual {
  grid-column: 5 / 13;
}

.sale-poster:nth-child(even) .sale-copy {
  grid-column: 1 / 7;
}

.store-page {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.store-title {
  z-index: 2;
  grid-column: 1 / 11;
  grid-row: 1;
  margin-bottom: clamp(3rem, 7vw, 7rem);
  font-size: clamp(3.5rem, 9.2vw, 9.5rem);
}

.store-poster {
  display: grid;
  border: 2px solid var(--ink);
  background: var(--panel);
  place-items: center;
}

.store-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-information {
  background: var(--acid);
  color: var(--acid-ink);
}

.store-description {
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 800;
}

.store-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid currentColor;
}

.store-contact p + p,
.store-contact address,
.opening-hours {
  margin-top: 1rem;
}

.store-contact address {
  font-style: normal;
}

.opening-hours {
  font-variant-numeric: tabular-nums;
}

.store-nischwitz .store-poster {
  grid-column: 1 / 10;
  grid-row: 2 / 4;
  min-height: 58dvh;
  padding: clamp(2rem, 5vw, 5rem);
}

.store-nischwitz .store-information {
  z-index: 2;
  grid-column: 8 / 13;
  grid-row: 3 / 5;
  padding: clamp(2rem, 4vw, 4rem);
}

.store-elsterwerda .store-title {
  grid-column: 1 / 13;
}

.store-elsterwerda .store-poster {
  grid-column: 1 / 13;
  grid-row: 2;
  min-height: 48dvh;
  padding: clamp(2rem, 7vw, 7rem);
}

.store-elsterwerda .store-information {
  display: grid;
  grid-column: 3 / 13;
  grid-row: 3;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(2rem, 4.5vw, 5rem);
}

.store-elsterwerda .store-contact {
  margin-top: 0;
  padding-top: 0;
  padding-left: clamp(2rem, 4vw, 4rem);
  border-top: 0;
  border-left: 2px solid currentColor;
}

.legal-title {
  padding-bottom: 2rem;
  border-bottom: 6px solid var(--ink);
}

.legal-field {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.legal-block {
  padding: clamp(1.5rem, 3.5vw, 3.5rem);
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--panel);
}

.legal-block h2 {
  max-width: 19ch;
  font-size: clamp(1.5rem, 3vw, 3.25rem);
}

.legal-block p {
  margin-top: 1.5rem;
}

.legal-provider { grid-column: span 7; }
.legal-contact { grid-column: span 5; background: var(--acid); color: var(--acid-ink); }
.legal-owner { grid-column: span 5; }
.legal-sale { grid-column: span 7; }

.missing-page {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
}

.missing-code {
  grid-column: 1 / 9;
  grid-row: 1;
  color: var(--acid);
  font-size: clamp(10rem, 31vw, 34rem);
  line-height: .7;
}

.missing-copy {
  z-index: 2;
  grid-column: 7 / 13;
  grid-row: 1;
  padding: clamp(2rem, 4vw, 4rem);
  border: 2px solid var(--ink);
  background: var(--panel);
}

.missing-copy h1 {
  font-size: clamp(2.6rem, 5.6vw, 6rem);
}

.missing-copy h2 {
  margin-top: .8rem;
  font-size: clamp(1.5rem, 2.4vw, 2.6rem);
}

.missing-copy p {
  margin: 1.5rem 0;
}

@media (max-width: 960px) {
  .poster-type h1,
  .plain-horizon h1,
  .earth-title h1,
  .collection-copy h2 {
    white-space: normal;
  }

  .about-heading h1,
  .about-heading > p,
  .products-heading h1,
  .products-heading p,
  .sales-heading h1,
  .sales-heading p {
    grid-column: 1 / 13;
  }

  .about-heading > p,
  .products-heading p,
  .sales-heading p {
    max-width: 68ch;
  }

  .faq-title {
    position: static;
    grid-column: 1 / 13;
    margin-bottom: 3rem;
  }

  .question-field {
    grid-column: 1 / 13;
  }

  .store-title {
    grid-column: 1 / 13;
  }
}

@media (max-width: 767px) {
  :root {
    --page: calc(100% - 32px);
    --control: 64px;
  }

  .site-sigil,
  .index-button {
    top: 12px;
    height: 48px;
  }

  .site-sigil {
    left: 16px;
    width: 78px;
  }

  .site-sigil img {
    width: 66px;
    height: 40px;
  }

  .index-button {
    right: 16px;
    min-width: 82px;
  }

  .index-frame {
    grid-template-rows: 68px minmax(0, 1fr);
    padding: 0 16px 16px;
  }

  .index-navigation {
    overflow-x: hidden;
  }

  .index-entry {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-right: .2rem;
    font-size: clamp(1.55rem, 8.2vw, 2.35rem);
    letter-spacing: -.065em;
    overflow-wrap: anywhere;
  }

  .index-entry > span {
    min-width: 0;
    max-width: 100%;
  }

  .index-entry[href="/produktinformationen/"] {
    font-size: clamp(1.4rem, 6.4vw, 1.75rem);
    letter-spacing: -.055em;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .index-entry:hover,
  .index-entry:focus-visible,
  .index-entry[aria-current="page"] {
    transform: none;
  }

  .index-entry[aria-current="page"]::after {
    width: clamp(28px, 9vw, 42px);
    flex: 0 0 auto;
  }

  main:not(.home-poster) {
    padding-top: 7.5rem;
    padding-bottom: 5rem;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5.6rem);
  }

  .object-footer {
    grid-template-columns: 1fr;
    margin-bottom: 1rem;
  }

  .object-footer-poster {
    min-height: 270px;
    padding: 1.5rem;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }
  .object-footer-brand { width: min(74vw, 250px); height: 118px; }
  .object-footer-poster p { font-size: clamp(1.4rem, 7vw, 2.05rem); }
  .object-footer-nav {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .object-footer-nav a,
  .object-footer-nav a:nth-child(2n),
  .object-footer-nav a:nth-last-child(-n + 2) {
    min-height: 58px;
    padding: .9rem 1rem;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
    align-items: center;
    overflow-wrap: normal;
  }
  .object-footer-nav a:last-child { border-bottom: 0; }
  .object-footer-base { grid-template-columns: 1fr 1fr; gap: .75rem 1.25rem; }
  .object-footer-base a:nth-of-type(1),
  .object-footer-base a:nth-of-type(3) { text-align: right; }

  .poster-stage {
    display: flex;
    min-height: 100dvh;
    padding: 76px 16px 16px;
    flex-direction: column;
  }

  .poster-object {
    order: 1;
    width: 100%;
    min-height: 50dvh;
    flex: 1 1 50dvh;
  }

  .poster-type {
    order: 2;
    width: 100%;
    margin-top: -1px;
    padding: 1.4rem;
  }

  .poster-type h1 {
    font-size: clamp(2.75rem, 13vw, 3.5rem);
    letter-spacing: -.075em;
  }

  .poster-type h2 {
    font-size: 2rem;
  }

  .poster-type p {
    margin: .85rem 0;
  }

  .poster-texture {
    display: none;
  }

  .discover-stage,
  .about-page,
  .about-heading,
  .collection-poster,
  .earth-intro,
  .earth-material,
  .plain-horizon,
  .plain-planes,
  .products-heading,
  .sales-heading,
  .product-field,
  .faq-page,
  .sale-poster,
  .store-page,
  .legal-field,
  .missing-page {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .discover-stage > *,
  .collection-poster > *,
  .store-page > * {
    min-width: 0;
    max-width: 100%;
  }

  .discover-image,
  .discover-copy,
  .discover-vessel,
  .about-heading,
  .about-heading h1,
  .about-heading > p,
  .about-declaration,
  .about-object,
  .about-future,
  .collection-poster-plain .collection-visual,
  .collection-poster-plain .collection-copy,
  .collection-poster-earth .collection-visual,
  .collection-poster-earth .collection-copy,
  .earth-title,
  .earth-vessel,
  .earth-description,
  .earth-detail-wide,
  .earth-detail-close,
  .plain-horizon-image,
  .plain-horizon h1,
  .plain-opening,
  .plain-description,
  .plain-vessel,
  .plain-detail-vertical,
  .products-heading h1,
  .products-heading p,
  .sales-heading h1,
  .sales-heading p,
  .product-fact-1,
  .product-fact-2,
  .product-fact-3,
  .product-fact-4,
  .product-fact-5,
  .product-fact-6,
  .faq-title,
  .question-field,
  .sale-visual,
  .sale-copy,
  .sale-poster:nth-child(even) .sale-visual,
  .sale-poster:nth-child(even) .sale-copy,
  .store-title,
  .store-nischwitz .store-poster,
  .store-nischwitz .store-information,
  .store-elsterwerda .store-title,
  .store-elsterwerda .store-poster,
  .store-elsterwerda .store-information,
  .legal-provider,
  .legal-contact,
  .legal-owner,
  .legal-sale,
  .missing-code,
  .missing-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .discover-stage {
    min-height: 0;
  }

  .discover-image {
    min-height: 48dvh;
  }

  .discover-copy {
    margin-top: -1px;
  }

  .discover-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
    letter-spacing: -.075em;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .discover-vessel {
    width: 58%;
    max-height: none;
    margin: 2rem 0 0 auto;
    aspect-ratio: 2 / 3;
  }

  .about-heading {
    gap: 2rem;
  }

  .about-declaration {
    padding: 2rem 1.35rem;
  }

  .about-declaration p {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .about-object {
    width: 82%;
  }

  .collection-index-page {
    padding-top: 7.5rem !important;
  }

  .index-title {
    margin-bottom: 4rem;
    font-size: clamp(2.9rem, 12.3vw, 4rem);
    overflow-wrap: anywhere;
  }

  .collection-posters {
    gap: 6rem;
  }

  .collection-poster {
    gap: 0;
  }

  .collection-visual {
    aspect-ratio: 4 / 3;
  }

  .collection-copy {
    margin-top: -1px;
  }

  .collection-copy h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .earth-intro {
    min-height: 0;
  }

  .earth-title {
    padding-bottom: 3rem;
  }

  .earth-vessel {
    width: 78%;
    height: auto;
    margin-left: auto;
    aspect-ratio: 2 / 3;
  }

  .earth-material,
  .plain-planes {
    gap: 2rem;
    padding-top: 5rem;
  }

  .earth-detail-wide,
  .earth-detail-close,
  .plain-vessel,
  .plain-detail-vertical {
    margin-top: 0;
  }

  .earth-detail-close {
    width: 72%;
  }

  .plain-horizon {
    display: flex;
    flex-direction: column;
  }

  .plain-horizon-image {
    order: 1;
    min-height: 48dvh;
  }

  .plain-horizon h1 {
    order: 2;
    width: 100%;
    margin-top: -1px;
    padding: .2em .12em;
  }

  .plain-opening {
    order: 3;
    padding: 2rem 0 0;
  }

  .plain-vessel {
    width: 72%;
    margin-left: auto;
  }

  .plain-detail-vertical {
    width: 76%;
  }

  .products-heading,
  .sales-heading {
    gap: 1rem;
  }

  .products-heading h1 {
    font-size: clamp(3rem, 13vw, 5.2rem);
  }

  .product-fact {
    min-height: 0;
  }

  .question summary {
    padding-right: 3rem;
  }

  .question p {
    padding-right: 0;
  }

  .sales-field {
    gap: 6rem;
  }

  .sale-visual {
    min-height: 300px;
  }

  .sale-copy {
    margin-top: -1px;
  }

  .store-title {
    margin-bottom: 3rem;
    font-size: clamp(2.7rem, 12vw, 4rem);
    overflow-wrap: anywhere;
  }

  .store-nischwitz .store-poster,
  .store-elsterwerda .store-poster {
    min-height: 300px;
    padding: 1.5rem;
  }

  .store-nischwitz .store-information,
  .store-elsterwerda .store-information {
    display: block;
    margin-top: -1px;
    padding: 1.5rem;
  }

  .store-elsterwerda .store-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    padding-left: 0;
    border-top: 2px solid currentColor;
    border-left: 0;
  }

  .legal-field {
    border-top: 2px solid var(--ink);
    border-left: 2px solid var(--ink);
  }

  .missing-code {
    font-size: clamp(9rem, 48vw, 15rem);
  }

  .missing-copy {
    margin-top: -1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .motion-ready .kinetic {
    opacity: 1;
    transform: none;
  }
}
