@font-face {
  font-family: "Trajan Quest";
  src: url("assets/fonts/trajan-pro-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Trajan Quest";
  src: url("assets/fonts/trajan-pro-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --dq-bg: #0c0d0b;
  --dq-surface: #151713;
  --dq-surface-2: #1d1e19;
  --dq-text: #f0ede4;
  --dq-muted: #b2b4aa;
  --dq-moss: #8d9b77;
  --dq-gold: #c7a965;
  --dq-burgundy: #844c43;
  --dq-line: rgba(235, 231, 215, 0.17);
  --dq-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--dq-bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--dq-text);
  background: var(--dq-bg);
  font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

a {
  color: inherit;
}

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

h1,
h2 {
  font-family: "Trajan Quest", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.dq-wrap {
  width: min(calc(100% - 48px), var(--dq-max));
  margin: 0 auto;
}

.dq-skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 20;
  padding: 10px 16px;
  color: #10110f;
  background: var(--dq-text);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.dq-skip-link:focus {
  top: 18px;
}

.dq-hero {
  position: relative;
  display: flex;
  height: 72svh;
  min-height: min(520px, 82svh);
  max-height: 780px;
  overflow: hidden;
  align-items: flex-end;
  isolation: isolate;
}

.dq-hero-image,
.dq-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dq-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center 54%;
}

.dq-hero-shade {
  z-index: -1;
  background: rgba(5, 7, 5, 0.32);
  box-shadow: inset 0 -180px 150px rgba(5, 6, 4, 0.56);
}

.dq-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: min(calc(100% - 48px), var(--dq-max));
  margin: 0 auto;
  padding: 26px 0;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.dq-brand {
  display: inline-block;
  width: 210px;
}

.dq-brand img {
  width: 100%;
  height: auto;
}

.dq-nav-actions,
.dq-language-switch {
  display: flex;
  align-items: center;
}

.dq-nav-actions {
  gap: 26px;
}

.dq-back {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.dq-back span {
  display: inline-block;
  margin-right: 6px;
  transition: transform 180ms ease;
}

.dq-back:hover span {
  transform: translateX(-3px);
}

.dq-language-switch {
  gap: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
}

.dq-language-switch button {
  padding: 7px 3px;
  color: rgba(255, 255, 255, 0.65);
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0;
}

.dq-language-switch button:hover,
.dq-language-switch button:focus-visible,
.dq-language-switch button[aria-pressed="true"] {
  color: #fff;
  border-color: var(--dq-gold);
  outline: none;
}

.dq-hero-content {
  width: min(calc(100% - 48px), var(--dq-max));
  margin: 0 auto;
  padding: 0 0 58px;
}

.dq-kicker,
.dq-section-label {
  margin-bottom: 14px;
  color: var(--dq-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.dq-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 68px;
  line-height: 1.02;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.66);
}

.dq-hero-copy {
  max-width: 690px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 19px;
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75);
}

.dq-scroll-link {
  display: inline-flex;
  padding: 8px 0;
  border-bottom: 1px solid var(--dq-gold);
  align-items: center;
  gap: 10px;
  color: var(--dq-text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.dq-scroll-link span {
  color: var(--dq-gold);
}

.dq-intro {
  padding: 104px 0 112px;
  background: var(--dq-surface);
  border-bottom: 1px solid var(--dq-line);
}

.dq-intro-layout,
.dq-making-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 90px;
  align-items: start;
}

.dq-intro h2,
.dq-gallery h2,
.dq-making h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.22;
}

.dq-intro-copy,
.dq-making-copy {
  padding-top: 30px;
  border-top: 1px solid var(--dq-line);
}

.dq-intro-copy p,
.dq-making-copy > p {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--dq-muted);
  font-size: 17px;
}

.dq-intro-copy p:last-child,
.dq-making-copy > p:last-child {
  margin-bottom: 0;
}

.dq-intro-copy em,
.dq-making-copy em {
  color: var(--dq-text);
}

.dq-gallery {
  padding: 112px 0 124px;
  background: var(--dq-bg);
}

.dq-gallery-heading {
  display: flex;
  margin-bottom: 42px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid var(--dq-line);
  padding-bottom: 24px;
}

.dq-gallery-heading .dq-section-label {
  margin: 0;
  order: 2;
}

.dq-scene-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 48px 24px;
}

.dq-scene {
  grid-column: span 4;
  margin: 0;
  min-width: 0;
}

.dq-scene-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--dq-surface-2);
}

.dq-scene-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
}

.dq-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.dq-scene:hover img {
  transform: scale(1.018);
  filter: brightness(1.05);
}

.dq-making {
  padding: 112px 0;
  background: var(--dq-surface-2);
  border-top: 1px solid var(--dq-line);
  border-bottom: 1px solid var(--dq-line);
}

.dq-making .dq-section-label {
  color: var(--dq-moss);
}

.dq-status {
  display: flex;
  margin-top: 32px;
  align-items: center;
  gap: 10px;
  color: var(--dq-text) !important;
  font-size: 13px !important;
  font-weight: 700;
}

.dq-status > span:first-child {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--dq-moss);
  box-shadow: 0 0 14px rgba(141, 155, 119, 0.55);
}

.dq-footer {
  padding: 40px 0;
  color: #92958b;
  background: #080907;
  font-size: 12px;
}

.dq-footer-layout {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 36px;
  align-items: center;
}

.dq-footer-brand {
  display: block;
  width: 190px;
  opacity: 0.72;
}

.dq-footer-brand img {
  width: 100%;
  height: auto;
}

.dq-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.dq-legal-links a {
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.dq-legal-links a:hover {
  color: var(--dq-text);
  text-decoration-color: currentColor;
}

.dq-footer p {
  margin: 0;
  white-space: nowrap;
}

.dq-back:focus-visible,
.dq-scroll-link:focus-visible,
.dq-brand:focus-visible,
.dq-footer-brand:focus-visible,
.dq-legal-links a:focus-visible {
  outline: 2px solid var(--dq-gold);
  outline-offset: 5px;
}

.lang-en {
  display: none !important;
}

html[data-language="en"] .lang-de {
  display: none !important;
}

html[data-language="en"] .lang-en {
  display: revert !important;
}

@media (max-width: 860px) {
  .dq-intro-layout,
  .dq-making-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .dq-intro-copy,
  .dq-making-copy {
    padding-top: 26px;
  }

  .dq-scene {
    grid-column: span 6;
  }

  .dq-footer-layout {
    grid-template-columns: 190px 1fr;
  }

  .dq-footer p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .dq-wrap,
  .dq-nav,
  .dq-hero-content {
    width: min(calc(100% - 32px), var(--dq-max));
  }

  .dq-hero {
    height: 78svh;
    min-height: min(500px, 84svh);
  }

  .dq-hero-image {
    object-position: 64% 50%;
  }

  .dq-hero-shade {
    background: rgba(4, 6, 4, 0.42);
    box-shadow: inset 0 -170px 125px rgba(4, 5, 3, 0.66);
  }

  .dq-nav {
    padding-top: 18px;
    align-items: flex-start;
    gap: 18px;
  }

  .dq-brand {
    width: 152px;
  }

  .dq-nav-actions {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 8px;
  }

  .dq-back {
    font-size: 12px;
  }

  .dq-language-switch button {
    padding-top: 2px;
    padding-bottom: 3px;
  }

  .dq-hero-content {
    padding-bottom: 34px;
  }

  .dq-hero h1 {
    margin-bottom: 14px;
    font-size: 44px;
    line-height: 1.06;
  }

  .dq-kicker {
    margin-bottom: 9px;
  }

  .dq-hero-copy {
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 1.48;
  }

  .dq-scroll-link {
    font-size: 12px;
  }

  .dq-intro,
  .dq-making {
    padding: 76px 0;
  }

  .dq-gallery {
    padding: 78px 0 88px;
  }

  .dq-intro h2,
  .dq-gallery h2,
  .dq-making h2 {
    font-size: 32px;
  }

  .dq-intro-copy p,
  .dq-making-copy > p {
    font-size: 16px;
  }

  .dq-gallery-heading {
    display: block;
    margin-bottom: 30px;
  }

  .dq-gallery-heading .dq-section-label {
    margin-bottom: 12px;
  }

  .dq-scene-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .dq-scene {
    grid-column: 1 / -1;
  }

  .dq-footer-layout {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .dq-footer p {
    white-space: normal;
  }
}

@media (max-height: 470px) and (orientation: landscape) {
  .dq-hero {
    height: 88svh;
    min-height: 0;
  }

  .dq-nav {
    padding-top: 12px;
  }

  .dq-brand {
    width: 140px;
  }

  .dq-hero-content {
    padding-bottom: 16px;
  }

  .dq-kicker,
  .dq-scroll-link {
    display: none;
  }

  .dq-hero h1 {
    margin-bottom: 8px;
    font-size: 38px;
  }

  .dq-hero-copy {
    max-width: 620px;
    margin-bottom: 0;
    font-size: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
