/* ==========================================================================
   EVERT – Nordische Zeremonien
   Eigenes Stylesheet – ersetzt den Tailwind-CDN (kein Runtime-JS mehr).
   Enthält exakt die Utilities, die im Markup verwendet werden.
   Breakpoints: sm 640px | md 768px | lg 1024px
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Selbst gehostete Schriften (DSGVO: keine Anfrage an Google-Server)
   Lege die .woff2-Dateien unter /assets/fonts/ ab. Fehlen sie, greift
   automatisch der Georgia-Fallback – die Seite bleibt funktionsfähig.
   Download: https://gwfh.mranftl.com/fonts  (Crimson Pro + PT Serif, latin)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Crimson Pro';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/assets/fonts/crimson-pro-latin-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
                 U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/pt-serif-latin-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
                 U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/pt-serif-latin-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
                 U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'PT Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/pt-serif-latin-400italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
                 U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   1. Design-Tokens
   -------------------------------------------------------------------------- */
:root {
  --beige: #d8c4b0;
  --beige-light: #e5d6c6;
  --dark: #1a1918;
  --card: #242220;
  --red: #8b262a;
  --red-hover: #a12d32;

  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #8a929e;
  --gray-600: #6b7280;
  --gray-700: #4b5563;
  --gray-800: #1f2937;

  --header-h: 6rem; /* 96px – für scroll-margin der Sprungziele */
}

/* --------------------------------------------------------------------------
   2. Reset / Basis
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; border: 0 solid rgba(255,255,255,.1); }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  tab-size: 4;
}
html.scroll-smooth { scroll-behavior: smooth; }
html { scroll-padding-top: calc(var(--header-h) + 1rem); }

body {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  background-color: var(--dark);
  color: #fff;
  overflow-x: hidden;
  line-height: inherit;
  min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: inherit;
  font-weight: inherit;
}

a { color: inherit; text-decoration: inherit; }
img, video { display: block; max-width: 100%; height: auto; }
svg { display: block; }
button, input, select, textarea { font: inherit; color: inherit; margin: 0; }
button { background: none; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; hyphens: auto; }
:target { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* Sichtbarer Fokus für Tastaturnutzung (überschreibt focus:outline-none) */
:focus-visible {
  outline: 3px solid var(--beige);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
html { scrollbar-color: var(--red) var(--dark); }

/* --------------------------------------------------------------------------
   3. Komponenten / Custom
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* Scroll-Reveal – Startzustand nur setzen, wenn JS aktiv ist (.js auf <html>) */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease-out, transform .8s ease-out;
  will-change: opacity, transform;
}
.js .reveal.active { opacity: 1; transform: none; }
.js .reveal-delay-1.active { transition-delay: .15s; }
.js .reveal-delay-2.active { transition-delay: .3s; }
.js .reveal-delay-3.active { transition-delay: .45s; }

.img-hero-filter { filter: brightness(.5) contrast(1.1); }

.grad-hero {
  background-image: linear-gradient(
    to top,
    var(--dark) 0%,
    rgba(26,25,24,.5) 50%,
    rgba(26,25,24,.3) 100%
  );
}

.rune { font-feature-settings: normal; }

/* Mobile Menü (Details/Summary) – funktioniert auch ohne JavaScript */
.nav-mobile-menu { position: relative; }
.nav-mobile-menu > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.1);
  background-color: rgba(255,255,255,.05);
  transition: background-color .3s;
}
.nav-mobile-menu > summary::-webkit-details-marker { display: none; }
.nav-mobile-menu > summary::marker { display: none; content: ""; }
.nav-mobile-menu > summary:hover,
.nav-mobile-menu[open] > summary { background-color: rgba(255,255,255,.1); }

.nav-mobile-panel {
  position: absolute;
  right: 0;
  top: calc(100% + .5rem);
  min-width: 200px;
  background-color: var(--dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.55);
  padding: .5rem;
  z-index: 60;
}
.nav-mobile-panel a {
  display: block;
  padding: .75rem 1rem;
  border-radius: .5rem;
  font-size: .875rem;
  transition: background-color .3s;
}
.nav-mobile-panel a:hover { background-color: rgba(255,255,255,.1); }

@media (min-width: 768px) {
  .nav-mobile-menu { display: none; }
}

/* Sichtbarer Systemkontrast im Windows-Hochkontrastmodus (forced-colors) */
@media (forced-colors: active) {
  .bg-nordic-red,
  .bg-nordic-card,
  .nav-mobile-panel,
  input, textarea, select {
    border: 1px solid CanvasText;
  }
  :focus-visible { outline: 3px solid CanvasText; }
}

/* View Transitions: weichere Übergänge zwischen den Seiten (Chromium; andere Browser ignorieren es) */
@view-transition {
  navigation: auto;
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  html.scroll-smooth { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   4. Utilities – Layout
   -------------------------------------------------------------------------- */
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.left-1\/2 { left: 50%; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.order-1 { order: 1; }
.order-2 { order: 2; }

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

.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.overflow-hidden { overflow: hidden; }

/* space-* */
.space-x-2 > * + * { margin-left: .5rem; }
.space-x-3 > * + * { margin-left: .75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-y-0 > * + * { margin-top: 0; }
.space-y-1 > * + * { margin-top: .25rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }

/* --------------------------------------------------------------------------
   5. Utilities – Größen
   -------------------------------------------------------------------------- */
.w-4 { width: 1rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-24 { width: 6rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }

.h-4 { height: 1rem; }
.h-12 { height: 3rem; }
.h-24 { height: 6rem; }
.h-full { height: 100%; }
.h-\[1px\] { height: 1px; }

.min-h-screen { min-height: 100vh; min-height: 100dvh; }
.min-h-\[320px\] { min-height: 320px; }
.min-h-\[90vh\] { min-height: 90vh; min-height: 90svh; }

.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* --------------------------------------------------------------------------
   6. Utilities – Abstände
   -------------------------------------------------------------------------- */
.mx-auto { margin-left: auto; margin-right: auto; }
.my-1 { margin-top: .25rem; margin-bottom: .25rem; }
.my-3 { margin-top: .75rem; margin-bottom: .75rem; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-2\.5 { padding-top: .625rem; padding-bottom: .625rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-3\.5 { padding-top: .875rem; padding-bottom: .875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pl-2 { padding-left: .5rem; }
.pt-1 { padding-top: .25rem; }
.pt-2 { padding-top: .5rem; }
.pt-4 { padding-top: 1rem; }
.pt-24 { padding-top: 6rem; }
.pt-32 { padding-top: 8rem; }
.pb-2 { padding-bottom: .5rem; }
.pb-20 { padding-bottom: 5rem; }

/* --------------------------------------------------------------------------
   7. Utilities – Typografie
   -------------------------------------------------------------------------- */
.font-heading { font-family: 'Crimson Pro', Georgia, serif; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.uppercase { text-transform: uppercase; }
.underline { text-decoration-line: underline; }
.underline-offset-4 { text-underline-offset: 4px; }
.decoration-nordic-red { text-decoration-color: var(--red); }
.text-center { text-align: center; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }

.text-\[11px\] { font-size: 11px; line-height: 1.45; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1.05; }
.text-7xl { font-size: 4.5rem; line-height: 1.05; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.7; }

.tracking-wide { letter-spacing: .025em; }
.tracking-wider { letter-spacing: .05em; }
.tracking-widest { letter-spacing: .1em; }
.tracking-\[0\.3em\] { letter-spacing: .3em; }

/* --------------------------------------------------------------------------
   8. Utilities – Farben
   -------------------------------------------------------------------------- */
.text-white { color: #fff; }
.text-nordic-beige { color: var(--beige); }
.text-nordic-beige-light { color: var(--beige-light); }
.text-nordic-dark { color: var(--dark); }
.text-nordic-red { color: var(--red); }
.text-gray-100 { color: var(--gray-100); }
.text-gray-200 { color: var(--gray-200); }
.text-gray-300 { color: var(--gray-300); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-800 { color: var(--gray-800); }
.fill-current { fill: currentColor; }

.bg-black { background-color: #000; }
.bg-nordic-dark { background-color: var(--dark); }
.bg-nordic-dark\/60 { background-color: rgba(26,25,24,.6); }
.bg-nordic-dark\/80 { background-color: rgba(26,25,24,.8); }
.bg-nordic-dark\/95 { background-color: rgba(26,25,24,.95); }
.bg-nordic-card { background-color: var(--card); }
.bg-nordic-beige { background-color: var(--beige); }
.bg-nordic-red { background-color: var(--red); }
.bg-white\/5 { background-color: rgba(255,255,255,.05); }
.bg-white\/10 { background-color: rgba(255,255,255,.1); }

.placeholder-gray-500::placeholder { color: #9099a6; opacity: 1; }
.accent-nordic-red { accent-color: var(--red); }

/* Verläufe (Zwei-Stopp) */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--g-from, transparent), var(--g-to, transparent)); }
.bg-gradient-to-l { background-image: linear-gradient(to left,  var(--g-from, transparent), var(--g-to, transparent)); }
.from-transparent { --g-from: transparent; }
.to-nordic-beige\/60 { --g-to: rgba(216,196,176,.6); }
.to-nordic-red\/60 { --g-to: rgba(139,38,42,.6); }
.to-white\/60 { --g-to: rgba(255,255,255,.6); }

/* --------------------------------------------------------------------------
   9. Utilities – Rahmen, Radien, Schatten
   -------------------------------------------------------------------------- */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-transparent { border-color: transparent; }
.border-white\/5 { border-color: rgba(255,255,255,.05); }
.border-white\/10 { border-color: rgba(255,255,255,.1); }
.border-white\/20 { border-color: rgba(255,255,255,.2); }
.border-nordic-dark\/10 { border-color: rgba(26,25,24,.1); }
.border-nordic-beige\/40 { border-color: rgba(216,196,176,.4); }

.rounded { border-radius: .25rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,.3), 0 2px 4px -2px rgba(0,0,0,.3); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,.35), 0 4px 6px -4px rgba(0,0,0,.35); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,.4), 0 8px 10px -6px rgba(0,0,0,.4); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,.55); }

/* --------------------------------------------------------------------------
   10. Utilities – Effekte, Objekt, Transitions
   -------------------------------------------------------------------------- */
.opacity-60 { opacity: .6; }
.opacity-80 { opacity: .8; }
.backdrop-blur-sm { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.backdrop-blur-md { -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }
.object-top { object-position: top; }

.cursor-pointer { cursor: pointer; }

.transform { transform: translate(var(--tx, 0), 0); }
.-translate-x-1\/2 { --tx: -50%; }

.transition-all { transition: all .3s cubic-bezier(.4,0,.2,1); }
.transition-colors { transition: color .3s, background-color .3s, border-color .3s, fill .3s; }
.transition-opacity { transition: opacity .3s; }
.transition-transform { transition: transform .3s cubic-bezier(.4,0,.2,1); }
.duration-300 { transition-duration: .3s; }
.duration-700 { transition-duration: .7s; }

/* --------------------------------------------------------------------------
   11. Interaktionszustände
   -------------------------------------------------------------------------- */
.hover\:text-white:hover { color: #fff; }
.hover\:text-nordic-beige:hover { color: var(--beige); }
.hover\:bg-nordic-red-hover:hover { background-color: var(--red-hover); }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,.1); }
.hover\:bg-white\/15:hover { background-color: rgba(255,255,255,.15); }
.hover\:bg-nordic-beige\/10:hover { background-color: rgba(216,196,176,.1); }
.hover\:border-nordic-beige:hover { border-color: var(--beige); }
.hover\:opacity-90:hover { opacity: .9; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-\[1\.01\]:hover { transform: scale(1.01); }

.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:outline-none:focus-visible { outline: 3px solid var(--beige); outline-offset: 3px; }
.focus\:border-nordic-beige:focus { border-color: var(--beige); }

@media (hover: none) {
  .hover\:scale-105:hover,
  .hover\:scale-\[1\.01\]:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   12. Responsive – sm (≥640px)
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:h-16 { height: 4rem; }
  .sm\:w-12 { width: 3rem; }
  .sm\:w-20 { width: 5rem; }
  .sm\:w-auto { width: auto; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:p-10 { padding: 2.5rem; }
  .sm\:p-12 { padding: 3rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .sm\:pt-40 { padding-top: 10rem; }
  .sm\:text-sm { font-size: .875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1.05; }
}

/* --------------------------------------------------------------------------
   13. Responsive – md (≥768px)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .md\:inline { display: inline; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:min-h-full { min-height: 100%; }
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1.05; }
}

/* --------------------------------------------------------------------------
   14. Responsive – lg (≥1024px)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
}

/* --------------------------------------------------------------------------
   15. Druck
   -------------------------------------------------------------------------- */
@media print {
  header, .skip-link, footer a[href^="http"] { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  main { padding-top: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
