/* ============================================================
   MK-MESSER — Schneidwerkzeug aus dem Westerwald · seit 2006
   Design inspiriert von cineastischen Game-Landingpages:
   Vollbild-Kapitel, Schreibschrift-Namen, Gold-Verlauf, Filmkorn.
   ============================================================ */

:root {
  --bg: #0a0908;
  --bg-2: #131009;
  --ink: #f4ede0;
  --ink-dim: #b9ad9a;
  --gold: #d9ab5e;
  --gold-soft: #f3dfae;
  --line: rgba(217, 171, 94, .22);
  --grad: linear-gradient(98deg, #f8e9c0 0%, #eec472 26%, #dd9d48 52%, #b56d2e 78%, #8f4d26 100%);
  --ease: cubic-bezier(.22, .61, .2, 1);
  --font-display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --font-script: 'Great Vibes', 'Segoe Script', cursive;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(221, 157, 72, .85); color: #1b1206; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #0c0a08; }
::-webkit-scrollbar-thumb { background: #2c241a; border-radius: 6px; border: 2px solid #0c0a08; }
::-webkit-scrollbar-thumb:hover { background: #4a3a26; }

a { color: inherit; }

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

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Filmkorn ---------- */
.grain {
  position: fixed;
  inset: -60%;
  width: 220%;
  height: 220%;
  pointer-events: none;
  z-index: 90;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- Typo-Bausteine ---------- */
.grad {
  background: var(--grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 7s ease-in-out infinite alternate;
  filter: drop-shadow(0 4px 26px rgba(221, 157, 72, .22));
}
@keyframes sheen {
  from { background-position: 0% center; }
  to { background-position: 100% center; }
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  text-transform: none;
  color: var(--gold-soft);
  text-shadow: 0 0 34px rgba(238, 196, 114, .38), 0 2px 14px rgba(0, 0, 0, .65);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.15;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
  vertical-align: middle;
  margin-right: 14px;
}
.eyebrow--center::before { display: none; }

h1, h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-color .35s var(--ease), border-color .35s var(--ease);
}
.btn--primary {
  background: var(--grad);
  background-size: 160% auto;
  color: #1b1206;
  box-shadow: 0 12px 32px -12px rgba(221, 157, 72, .55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px rgba(221, 157, 72, .75);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(20, 16, 11, .35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(217, 171, 94, .1);
  transform: translateY(-2px);
}
.btn--small { padding: 11px 22px; font-size: 11px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  padding: 16px 0;
  transition: background-color .45s var(--ease), padding .45s var(--ease),
              border-color .45s var(--ease), backdrop-filter .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 9px 0;
  background: rgba(10, 9, 8, .82);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(217, 171, 94, .16);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav__brand img { height: 48px; width: auto; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .6)); }
.nav__brand-text {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav__brand-text small {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .32em;
  color: var(--gold);
  opacity: .85;
}
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-dim);
  padding: 6px 0;
  background: linear-gradient(var(--gold), var(--gold)) no-repeat left bottom / 0% 1px;
  transition: color .35s var(--ease), background-size .35s var(--ease);
}
.nav__links a:hover { color: var(--gold-soft); background-size: 100% 1px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: -6% 0; z-index: -2; will-change: transform; }
.hero__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 42%;
  filter: saturate(.9) brightness(.85);
  animation: heroZoom 3s var(--ease) both;
}
@keyframes heroZoom {
  from { transform: scale(1.14); }
  to { transform: scale(1.03); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 18%, transparent 0%, rgba(10, 9, 8, .5) 68%, rgba(10, 9, 8, .9) 100%),
    linear-gradient(180deg, rgba(10, 9, 8, .66) 0%, rgba(10, 9, 8, .28) 30%, rgba(10, 9, 8, .34) 62%, var(--bg) 100%);
}
.hero__content {
  text-align: center;
  padding: 150px 24px 140px;
  max-width: 980px;
}
.hero__badge {
  height: clamp(110px, 15vw, 168px);
  width: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 20px 44px rgba(0, 0, 0, .65)) drop-shadow(0 0 30px rgba(238, 196, 114, .22));
}
.hero__script { margin-bottom: 4px; }
.hero__title {
  font-size: clamp(3.6rem, 11vw, 9rem);
  line-height: .98;
  letter-spacing: .015em;
}
.hero__sub {
  max-width: 580px;
  margin: 22px auto 0;
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.hero__footer {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, .55);
}
.scroll-cue {
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(244, 237, 224, .4);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-cue span {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--gold);
  animation: wheel 1.9s var(--ease) infinite;
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(13px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Statement ---------- */
.statement {
  position: relative;
  text-align: center;
  padding: clamp(120px, 17vh, 190px) 24px;
  background:
    radial-gradient(56% 48% at 50% 52%, rgba(221, 157, 72, .09) 0%, transparent 100%),
    var(--bg);
}
.statement h2 {
  font-size: clamp(2.7rem, 7.2vw, 5.6rem);
  line-height: 1.04;
  margin-top: 14px;
}
.statement__copy {
  max-width: 620px;
  margin: 26px auto 0;
  color: var(--ink-dim);
  font-size: 1.04rem;
  line-height: 1.85;
}

/* ---------- Kapitel ---------- */
.chapter {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(150px, 21vh, 230px) 0;
  border-top: 1px solid rgba(255, 255, 255, .04);
}
.chapter__bg {
  position: absolute;
  inset: -9% 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
  transform: scale(1.12);
  filter: saturate(.95) brightness(.9);
}
.chapter__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, .9) 0%, rgba(10, 9, 8, .52) 40%, rgba(10, 9, 8, .08) 68%),
    linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 72%, var(--bg) 100%);
}
.chapter--flip .chapter__scrim {
  background:
    linear-gradient(270deg, rgba(10, 9, 8, .9) 0%, rgba(10, 9, 8, .52) 40%, rgba(10, 9, 8, .08) 68%),
    linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 72%, var(--bg) 100%);
}
.chapter__numeral {
  position: absolute;
  top: 4%;
  right: 3%;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(9rem, 24vw, 21rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 196, 114, .26);
  pointer-events: none;
  user-select: none;
}
.chapter--flip .chapter__numeral { right: auto; left: 3%; }
.chapter__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.chapter__content { max-width: 540px; }
.chapter--flip .chapter__content { margin-left: auto; }
.chapter__name {
  font-size: clamp(4.2rem, 10.5vw, 8.4rem);
  line-height: 1.05;
  margin: 8px 0 2px;
  white-space: nowrap;
}
.chapter__name--md { font-size: clamp(3.6rem, 9vw, 7.2rem); }
.chapter__name--long { font-size: clamp(3rem, 7.5vw, 6.2rem); }
/* Bei gespiegelten Kapiteln laeuft der Schriftzug nach links ueber das Bild statt aus dem Viewport */
.chapter--flip .chapter__name { direction: rtl; text-align: right; }
.chapter__claim {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.95rem);
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 1.3;
  margin-bottom: 18px;
}
.chapter__copy {
  color: var(--ink-dim);
  line-height: 1.8;
  margin-bottom: 28px;
}
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chips li {
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #e8d9b6;
  background: rgba(18, 14, 10, .55);
  backdrop-filter: blur(6px);
}
.chapter__card {
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: 11%;
  width: clamp(280px, 26vw, 400px);
  padding: 10px 10px 14px;
  background: #0e0c0a;
  border: 1px solid rgba(238, 196, 114, .28);
  box-shadow: 0 44px 90px -30px rgba(0, 0, 0, .9);
  will-change: transform;
  transform: rotate(-2.4deg);
}
.chapter--flip .chapter__card { right: auto; left: 5%; transform: rotate(2.4deg); }
.chapter__card img { width: 100%; cursor: zoom-in; }
.chapter__card figcaption {
  padding-top: 11px;
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(232, 217, 182, .62);
}

/* ---------- Kollektion ---------- */
.gallery {
  padding: clamp(110px, 15vh, 170px) 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow { display: block; }
.section-head h2 {
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  line-height: 1.05;
  margin-top: 14px;
}
.section-head__sub {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--ink-dim);
  line-height: 1.8;
}
.gallery__grid {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.gallery__col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1 1 0;
  min-width: 0;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .06);
  cursor: zoom-in;
  display: block;
}
.tile img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
}
.tile:hover img { transform: scale(1.06); filter: brightness(1.06); }
.tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 42px 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(8, 7, 6, .88));
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.tile:hover figcaption { opacity: 1; transform: none; }
.tile figcaption b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.tile figcaption span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Manufaktur ---------- */
.craft {
  border-top: 1px solid rgba(255, 255, 255, .05);
  background:
    radial-gradient(48% 60% at 82% 40%, rgba(221, 157, 72, .07) 0%, transparent 100%),
    var(--bg-2);
}
.craft__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(110px, 15vh, 170px) 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 90px);
  align-items: center;
}
.craft__text h2 {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  line-height: 1.05;
  margin: 6px 0 24px;
}
.craft__script { margin-top: 10px; }
.craft__text p:not(.eyebrow):not(.script) {
  color: var(--ink-dim);
  line-height: 1.85;
  margin-bottom: 18px;
}
.craft__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.craft__figure { position: relative; }
.craft__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  transform: translate(20px, 20px);
  pointer-events: none;
}
.craft__figure img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .08);
  cursor: zoom-in;
}
.craft__figure figcaption {
  margin-top: 16px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(232, 217, 182, .55);
}

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  padding: clamp(130px, 18vh, 210px) 24px;
  background:
    radial-gradient(60% 55% at 50% 45%, rgba(221, 157, 72, .12) 0%, transparent 100%),
    var(--bg);
}
.cta h2 {
  font-size: clamp(2.9rem, 8.6vw, 6.6rem);
  line-height: 1;
  margin-top: 12px;
}
.cta__date {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  letter-spacing: .34em;
  text-transform: uppercase;
  margin-top: 18px;
  color: var(--ink);
  text-shadow: 0 0 40px rgba(238, 196, 114, .3);
}
.cta__sub {
  color: var(--ink-dim);
  margin-top: 20px;
  font-size: 1rem;
}
.cta .hero__actions { margin-top: 32px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(217, 171, 94, .16);
  padding: 72px 24px 44px;
  text-align: center;
  background: #080706;
}
.footer__badge { height: 96px; width: auto; margin: 0 auto 30px; opacity: .95; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-bottom: 36px;
}
.footer__links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-dim);
  transition: color .3s var(--ease);
}
.footer__links a:hover { color: var(--gold-soft); }
.footer__rule {
  width: min(560px, 80%);
  height: 1px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.footer__legal { font-size: 11.5px; color: rgba(185, 173, 154, .6); letter-spacing: .04em; }
.footer__legal--links { margin-top: 8px; }
.footer__legal--links a { color: rgba(185, 173, 154, .75); text-decoration: none; }
.footer__legal--links a:hover { color: var(--gold-soft); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 44px 24px;
  background: rgba(6, 5, 4, .93);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox figure { text-align: center; max-width: min(1100px, 94vw); }
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  margin: 0 auto;
  border: 1px solid var(--line);
  box-shadow: 0 60px 140px -40px rgba(0, 0, 0, .95);
}
.lightbox figcaption {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.lightbox figcaption span { display: block; }
.lightbox__specs {
  margin-top: 8px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  color: rgba(185, 173, 154, .8);
}
.lightbox__specs[hidden] { display: none; }
.lightbox__close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(20, 16, 11, .5);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: transform .4s var(--ease), border-color .3s;
}
.lightbox__close:hover { transform: rotate(90deg); border-color: var(--gold); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(20, 16, 11, .5);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  padding-bottom: 4px;
  cursor: pointer;
  z-index: 2;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.lightbox__nav:hover { border-color: var(--gold); background: rgba(20, 16, 11, .8); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav[hidden] { display: none; }
@media (max-width: 700px) {
  .lightbox__nav { width: 42px; height: 42px; font-size: 22px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
}
body.no-scroll { overflow: hidden; }

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .grain, .hero__bg-img, .scroll-cue span, .grad { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .chapter { display: block; }
  .chapter__card {
    position: static;
    width: 100%;
    max-width: 470px;
    margin: 48px auto 0;
    transform: none !important;
  }
  .chapter__inner { display: flex; flex-direction: column; }
  .chapter { padding: clamp(110px, 14vh, 160px) 0; }
  .chapter__content, .chapter--flip .chapter__content { margin: 0; }
  .chapter--flip .chapter__name { direction: ltr; text-align: left; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__brand img { height: 42px; }
  .craft__inner { grid-template-columns: 1fr; }
  .craft__figure { order: -1; }
}

@media (max-width: 620px) {
  .nav__brand-text small { display: none; }
  .eyebrow::before { display: none; }
  .chapter__name { font-size: 16vw; }
  .chapter__name--md { font-size: 14vw; }
  .chapter__name--long { font-size: 11.5vw; }
  .hero__content { padding: 130px 20px 120px; }
  .hero__footer .tag { display: none; }
  .gallery__grid { flex-direction: column; }
  .tile figcaption { opacity: 1; transform: none; }
  .craft__stats { grid-template-columns: 1fr 1fr; }
  .chapter__numeral { opacity: .55; }
}
