/* =========================
   RESET / VARIABLES
   ========================= */

* { box-sizing: border-box; }

:root{
  --ink: #3C3641;
  --ink-soft: rgba(60,54,65,0.55);
  --rule: rgba(60,54,65,0.12);
}

html, body { height: 100%; }

body{
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.2px;
}

/* Robust layout: footer bleibt unten (nur wenn body.site gesetzt ist) */
body.site{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main{ flex: 1; }

/* =========================
   HEADER
   ========================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  padding: 48px 56px 18px;
  border-bottom: 1px solid var(--rule);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hides on scroll-down, reappears on scroll-up (see script.js) */
.site-header.is-hidden{
  transform: translateY(-100%);
}

/* =========================
   SCROLL PROGRESS BAR
   ========================= */

.scroll-progress{
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--ink);
  z-index: 300;
  transform-origin: left;
  pointer-events: none;
}

.brand__name{
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(40px, 4.8vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand__role{
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

.nav{
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
}

.nav__link{
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav__link.is-active,
.nav__link:hover{
  color: var(--ink);
}

/* =========================
   PAGE
   ========================= */

.page{
  padding: 34px 56px 72px;
}

/* =========================
   GRID / IMAGES
   ========================= */

.grid{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

/* Album-Seiten: horizontal scrollen */
.grid--horizontal{
  max-width: none;
  grid-template-columns: unset;
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  grid-auto-columns: 420px;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 40px;
  cursor: grab;
}

.grid--horizontal:active{
  cursor: grabbing;
}

.grid--horizontal::-webkit-scrollbar{
  height: 2px;
}

.grid--horizontal::-webkit-scrollbar-track{
  background: var(--rule);
}

.grid--horizontal::-webkit-scrollbar-thumb{
  background: var(--ink-soft);
}

.grid--horizontal .tile img{
  height: 64vh;
}

/* Archive page: grid startet unter dem Fold */
.grid--horizontal{
  margin-top: 5vh;
  padding-bottom: 25px;
}

.page--album{
  padding-bottom: 45px;
}

.page--album .album-head{
  margin-left: 0;
}



.tile{
  margin: 0;
  position: relative;
}

/* Bild-Container: schneidet den Hover-Zoom sauber ab */
.tile__media,
.grid--horizontal .tile{
  overflow: hidden;
  border: 1px solid var(--rule);
}

.tile img{
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  scale: 1;
  clip-path: inset(0% 0% 0% 0%);
  transition:
    scale 1.2s cubic-bezier(0.22, 0.61, 0.21, 1),
    clip-path 1.15s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.9s ease;
}

/* Sanfter Zoom beim Hover (uses the standalone `scale` property so JS can
   drive `translate` on the same element for parallax without fighting
   this transition — see script.js) */
.tile:hover img{
  scale: 1.035;
}

/* Bilder faden erst ein, wenn sie geladen sind (nur mit JS) */
.js .tile img{ opacity: 0; }
.js .tile img.is-loaded{ opacity: 1; }

/* Latest mit Porträt-Serie: nicht beschneiden, echtes Seitenverhältnis.
   Masonry-Spalten, damit unterschiedlich hohe Bilder keine Lücken reissen. */
.grid--uncropped{
  display: block;
  columns: 2;
  column-gap: 26px;
}

.grid--uncropped .tile{
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 26px;
}

.grid--uncropped .tile img{
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

/* Optional focus tweaks */
.tile img.focus-balcony { object-position: 20% 90%; }
.tile img.focus-sky     { object-position: 50% 95%; }
.tile img.focus-tent    { object-position: 50% 75%; }
.tile img.focus-cup     { object-position: 25% 90%; }

/* =========================
   OVERVIEW CAPTION (FIX: links/rechts wie vorher)
   ========================= */

.caption{
  margin-top: 10px;
  display: flex;
  justify-content: space-between; /* links Titel, rechts Jahr */
  align-items: baseline;
  gap: 14px;
  font-size: 12px;
}

.caption__title{
  letter-spacing: 0.14em;
  text-transform: uppercase;  /* CAPS wie vorher */
  color: var(--ink);
}

.caption__year{
  color: var(--ink-soft);     /* helleres Grau */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Wenn deine Overview-Tiles Links sind, verhindert das “Link-Blau” */
.tile a{
  color: inherit;
  text-decoration: none;
}

/* =========================
   PORTRAITS: NAME BEIM HOVER
   ========================= */

/* Portraits werden NICHT beschnitten: volle Bildhöhe, echtes Seitenverhältnis.
   Masonry-Spalten, damit bei gemischten Formaten keine Lücken entstehen. */
.grid--portraits{
  display: block;
  columns: 2;
  column-gap: 26px;
}

.grid--portraits .tile{
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 26px;
}

.grid--portraits .tile__media{
  position: relative;
}

.grid--portraits .tile img{
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

/* Transparenter Schleier + Name, faded beim Hover ein */
.tile__name{
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(24, 21, 26, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.tile__name span{
  display: block;
  transform: translateY(8px);
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.21, 1);
}

/* Jahr unter dem Namen */
.tile__year{
  display: block;
  margin-top: 9px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.tile:hover .tile__name{
  opacity: 1;
}

.tile:hover .tile__name span{
  transform: none;
}

/* Touch-Geräte: kein Hover → Name als Bildunterschrift */
@media (hover: none){
  .tile__name{
    position: static;
    opacity: 1;
    padding: 10px 0 0;
    justify-content: flex-start;
    text-align: left;
    color: var(--ink);
    background: none;
    letter-spacing: 0.14em;
  }
  .tile__name span{ transform: none; }
  .tile__year{ margin-top: 4px; opacity: 0.6; }
}

/* =========================
   ARCHIVE LIST (hell, nicht schwarz)
   ========================= */

.archive-list{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.archive-item{
  text-decoration: none;
  color: var(--ink-soft);
  border-top: 1px solid var(--rule);
  padding: 12px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.archive-item:last-child{
  border-bottom: 1px solid var(--rule);
}

.archive-item__title{
  font-size: clamp(16px, 1.7vw, 24px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

.archive-item__meta{
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.archive-item:hover{
  color: var(--ink);
}
.archive-item:hover .archive-item__meta{
  color: var(--ink-soft);
}

/* =========================
   ALBUM HEAD
   ========================= */

.album-head{
  max-width: 1180px;
  margin: 0 auto 22px;
}

.album-back{
  display: inline-block;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.album-back:hover{
  color: var(--ink);
}

.album-title{
  margin: 0;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 800;
}

.album-meta{
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* =========================
   CENTERED PAGES (COMING SOON)
   ========================= */

.page--center{
  min-height: calc(100vh - 160px);
  display: grid;
  place-items: center;
}

.coming{
  text-align: center;
}

.coming__title{
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.coming__sub{
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =========================
   ABOUT (Marco Grob inspired)
   ========================= */

.about-mg{
  max-width: 1180px;
  margin: 0 auto;
}

.about-mg__hero{
  margin: 0;
  border: 1px solid var(--rule);
}

.about-mg__hero img{
  width: 100%;
  height: auto;
  display: block;
}

.about-mg__text{
  margin-top: 26px;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 60px;
  align-items: start;
}

.about-mg__meta{
  padding-top: 2px;
}

.about-mg__name{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: 0.02em;
  font-weight: 200;
  text-transform: uppercase;
  color: var(--ink);
  font-style: serif;
  margin-left: -0.1vh;
}

.about-mg__credit{
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.about-mg__copy{
  font-family: Georgia, 'Times New Roman', Times, sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 620px;
}

.about-mg__copy p{
  margin: 0 0 16px;
}

@media (max-width: 860px){
  .about-mg__text{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-mg__copy{
    font-size: 16px;
    line-height: 1.75;
    max-width: 100%;
  }
}

/* =========================
   CONTACT (split like reference)
   ========================= */

.contact-split{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.contact-form{ margin: 0; }

.form-block{ margin-bottom: 22px; }

.form-label{
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field{ display: block; }

.field__label{
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.field__label span{ color: var(--ink-soft); }

.contact-form input,
.contact-form textarea{
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  padding: 8px 0;
  font-size: 13px;
  font-family: inherit;
  color: var(--ink);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 180ms ease;
}

.contact-form textarea{
  resize: none;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-bottom-color: var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: var(--ink-soft);
}

.submit-btn{
  border: none;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 0;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.submit-btn:hover{
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.contact-info{
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.info-title{
  font-size: 14px;
  margin-bottom: 18px;
}

.info-group{ margin-top: 26px; }

.info-country{
  margin-top: 22px;
  font-style: italic;
  letter-spacing: 0.08em;
}

.info-name{
  margin-top: 8px;
  font-style: italic;
}

.info-link{
  display: inline-block;
  margin-top: 10px;
  color: var(--ink-soft);
  text-decoration: underline;
}

.info-line{ margin-top: 8px; }

.hidden{ display: none; }

@media (max-width: 860px){
  .contact-split{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .form-row{ grid-template-columns: 1fr; }
}

/* =========================
   LIGHTBOX
   ========================= */

.lightbox{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.is-open{
  display: flex;
}

.lightbox__img{
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: default;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lightbox__img.is-shown{
  opacity: 1;
}

.lightbox__count{
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next{
  position: absolute;
  background: none;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 180ms ease, opacity 180ms ease;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover{
  color: var(--ink);
}

.lightbox__close{
  top: 24px;
  right: 32px;
  font-size: 28px;
}

.lightbox__prev,
.lightbox__next{
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  letter-spacing: 0.1em;
}

.lightbox__prev{ left: 80px; }
.lightbox__next{ right: 80px; }

/* =========================
   FOOTER
   ========================= */

.site-footer{
  padding-bottom: 10px;
  max-width: 1180px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
}

.footer-link{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-link:hover{
  color: var(--ink);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 860px){
  /* Kompakter Header, mehr Platz für die Bilder */
  .site-header{
    padding: 18px 18px 10px;
  }

  .brand__name{
    font-size: clamp(30px, 9.5vw, 44px);
  }

  .brand__role{
    margin-top: 4px;
    font-size: 10px;
  }

  .nav{
    margin-top: 12px;
    gap: 2px 20px;
  }

  .nav__link{
    padding: 8px 0; /* grössere Tap-Flächen */
  }

  .page{
    padding: 22px 18px 60px;
  }

  /* Latest: eine Spalte, Hochformat-freundlicher Zuschnitt */
  .grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .grid .tile img{
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .grid--uncropped{
    columns: 1;
  }

  .grid--uncropped .tile{
    margin-bottom: 34px;
  }

  .grid--uncropped .tile img{
    aspect-ratio: auto;
  }

  /* Portraits auf Mobile: ungeschnitten, eine Spalte */
  .grid--portraits{
    columns: 1;
  }

  .grid--portraits .tile{
    margin-bottom: 34px;
  }

  .grid--portraits .tile img{
    aspect-ratio: auto;
  }

  /* Alben: Swipe-Galerie mit Einrasten
     (grid-template-columns: none nötig, sonst greift die 1fr-Regel von .grid
      und die erste Spalte kollabiert) */
  .grid--horizontal{
    grid-template-columns: none;
    grid-auto-columns: 82vw;
    gap: 12px;
    margin-top: 2vh;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 18px;
  }

  .grid--horizontal .tile{
    scroll-snap-align: start;
  }

  .grid--horizontal .tile img{
    height: min(62vh, 125vw);
    aspect-ratio: auto;
  }

  /* Transform würde das Einrasten stören → auf Mobile nur Fade */
  .js .grid--horizontal .tile{
    transform: none;
  }

  /* Lightbox: Bedienelemente in Daumen-Reichweite */
  .lightbox__img{
    max-width: 94vw;
    max-height: 82vh;
  }

  .lightbox__close{
    top: 14px;
    right: 18px;
    padding: 10px;
  }

  .lightbox__prev{ left: 12px; }
  .lightbox__next{ right: 12px; }

  .lightbox__prev,
  .lightbox__next{
    font-size: 26px;
    padding: 14px 6px;
  }

  .lightbox__count{
    bottom: 16px;
  }

  .site-footer{
    margin: 0 auto 30px;
    padding-top: 16px;
  }
}

.tile img.tent02{
  object-position: 50% 30%;
}
/* =========================
   INTRO LOADER (Overview)
   ========================= */

.loader{
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #ffffff;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.js .loader{ display: flex; }

.loader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__name{
  font-weight: 800;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--ink);
  animation: loader-name-in 1.1s cubic-bezier(0.22, 0.61, 0.21, 1) both;
}

.loader__bar{
  width: min(220px, 56vw);
  height: 1px;
  background: var(--rule);
  overflow: hidden;
}

.loader__bar span{
  display: block;
  height: 100%;
  width: 0%;
  background: var(--ink);
  transition: width 0.35s ease;
}

@keyframes loader-name-in{
  from{ opacity: 0; letter-spacing: 0.35em; }
  to{ opacity: 1; letter-spacing: -0.02em; }
}

/* =========================
   PAGE FADE (Enter / Exit)
   ========================= */

.js .site-header,
.js .site-footer{
  opacity: 0;
  transition: opacity 0.55s ease;
}

.js .site-main{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.is-ready .site-header,
html.is-ready .site-footer{
  opacity: 1;
}

html.is-ready .site-main{
  opacity: 1;
  transform: none;
}

html.is-exiting .site-header,
html.is-exiting .site-footer,
html.is-exiting .site-main{
  opacity: 0;
  transition: opacity 0.26s ease;
}

/* =========================
   SCROLL REVEAL — cinematic curtain wipe

   IMPORTANT: the element that IntersectionObserver *watches* (.tile,
   .archive-item, .about-mg__hero) must never be fully clip-path-hidden
   itself — a fully clipped element has zero visible area, so the
   browser reports it as never-intersecting and the reveal can never
   fire. The curtain-wipe (clip-path) therefore always lives on an
   unobserved *child* (the <img>), while the observed parent only ever
   uses opacity/transform, which don't affect intersection geometry.
   ========================= */

.js .tile{
  opacity: 0;
  transform: translateY(36px) scale(1.04);
  transition:
    opacity 0.7s ease,
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .archive-item{
  opacity: 0;
  transform: translateX(-18px);
  transition:
    opacity 0.7s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Album-Seiten: von rechts reinschieben (horizontales Grid) */
.js .grid--horizontal .tile{
  transform: translateX(48px) scale(1.04);
}

.js .tile.is-visible,
.js .archive-item.is-visible{
  opacity: 1;
  transform: none;
}

/* Curtain wipe lives on the image itself (safe for IntersectionObserver —
   see note above). Reveals once the ancestor .tile gets .is-visible. */
.js .tile img{
  clip-path: inset(0% 0% 100% 0%);
}

.js .tile.is-visible img{
  clip-path: inset(0% 0% 0% 0%);
}

/* About hero image: same curtain wipe, applied to the <img> child so the
   observed .about-mg__hero figure itself stays unclipped. */
.js .about-mg__hero{
  opacity: 0;
  transition: opacity 0.8s ease;
}

.js .about-mg__hero.is-visible{
  opacity: 1;
}

.js .about-mg__hero img{
  clip-path: inset(0% 0% 100% 0%);
  scale: 1.06;
  transition:
    clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    scale 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .about-mg__hero.is-visible img{
  clip-path: inset(0% 0% 0% 0%);
  scale: 1;
}

/* About paragraphs / contact form fields: soft cascading fade-up */
.js .about-mg__copy p,
.js .form-block{
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.75s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .about-mg__copy p.is-visible,
.js .form-block.is-visible{
  opacity: 1;
  transform: none;
}

/* =========================
   KLEINIGKEITEN
   ========================= */

::selection{
  background: var(--ink);
  color: #ffffff;
}

/* =========================
   REDUCED MOTION
   ========================= */

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }

  .js .tile,
  .js .archive-item,
  .js .site-header,
  .js .site-main,
  .js .site-footer,
  .js .about-mg__hero,
  .js .about-mg__copy p,
  .js .form-block{
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .site-header.is-hidden{ transform: none !important; }

  .tile{ rotate: none !important; }

  .js .tile img,
  .js .about-mg__hero img{
    clip-path: none !important;
    scale: 1 !important;
    translate: none !important;
  }

  .js .tile img{ opacity: 1 !important; }

  .tile__name span{ transform: none !important; }

  .loader{ display: none !important; }

  .scroll-progress{ display: none !important; }
}

/* =========================
   ACCESSIBILITY / SEO HELPERS
   ========================= */

/* Ueberschrift nur fuer Screenreader und Suchmaschinen */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Wortmarke auf der Startseite ist das <h1> — Optik bleibt gleich */
.brand__h1{
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}
