/* ==========================================================================
   Laura Hochmond — Tattoo, Wien
   Gestaltung angelehnt an die ruhige, erzählende Bildsprache von wmaiza.com
   ========================================================================== */

/* --------------------------------------------------------------- Schriften */
/*  Liegen auf dem eigenen Server. Dadurch wird beim Seitenaufruf keine        */
/*  Verbindung zu Google hergestellt und keine IP-Adresse uebertragen.         */

@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/baskerville-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+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/baskerville-400-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/baskerville-400i.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+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/baskerville-400i-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Almarai';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/almarai-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Almarai';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/almarai-700.woff2') format('woff2');
}

:root {
  /* Farben */
  --bone:      #F6F3EC;   /* Grundton, warmes Creme */
  --bone-dark: #EDE7DC;   /* abgesetzte Bänder */
  --ink:       #36302A;   /* Text, warmes Dunkelbraun */
  --muted:     #7C7266;   /* Sekundärtext */
  --line:      #DCD5C7;   /* Haarlinien */
  --sand:      #CFC2B4;   /* Button, Akzent */
  --sand-deep: #BFAE9D;
  --sage:      #3B4744;   /* dunkles Band, greift die Studiowand auf */
  --sage-soft: #566661;

  /* Typografie */
  --serif: "Libre Baskerville", "Iowan Old Style", Georgia, serif;
  --sans:  "Almarai", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Maße */
  --measure: 34rem;       /* Lesebreite */
  --wide:    72rem;
  --gap:     clamp(4.5rem, 11vw, 9.5rem);
  --tile-gap: clamp(.5rem, 1.2vw, .9rem);
}

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

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

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

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

/* --------------------------------------------------------------- Typografie */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}

.kicker {
  font-family: var(--sans);
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.display {                 /* große Serifen-Zeile, Herzstück des Stils */
  font-size: clamp(2.1rem, 6.2vw, 4rem);
  line-height: 1.14;
}
.display em { font-style: italic; }

.title   { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.subtitle{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  line-height: 1.6;
}

p { margin: 0 0 1.35em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.0625rem; }

/* ------------------------------------------------------------------ Layout */

.wrap {
  width: min(100% - 2.5rem, var(--wide));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2.5rem, var(--measure));
  margin-inline: auto;
}

section { padding-block: var(--gap); }

.band-soft { background: var(--bone-dark); }

.band-dark {
  background: var(--sage);
  color: var(--bone);
}
.band-dark .kicker,
.band-dark .subtitle,
.band-dark .muted { color: #BDC7C3; }

.center { text-align: center; }

.rule {
  width: 3rem;
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 2.75rem auto;
}
.band-dark .rule { background: var(--sage-soft); }

/* ------------------------------------------------------------------ Header */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem clamp(1.25rem, 4vw, 2.5rem);
  color: var(--bone);
  transition: background-color .4s ease, color .4s ease, box-shadow .4s ease;
}

.site-header.is-solid {
  background: rgba(246, 243, 236, .94);
  backdrop-filter: blur(10px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.wordmark,
.wordmark-text {
  font-family: var(--serif);
  font-size: clamp(.95rem, 1.7vw, 1.15rem);
  letter-spacing: .28em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: .8rem;
}

/* Kalligrafisches Monogramm: schwarz auf transparent.
   Über dem Hero wird es invertiert, damit es hell steht. */
.mark {
  height: 2.1rem;
  width: auto;
  flex: none;
  filter: invert(1);
  transition: filter .4s ease;
}
.site-header.is-solid .mark,
.site-header.is-menu-open .mark { filter: none; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.1rem);
}

.nav a {
  font-size: .875rem;
  letter-spacing: .04em;
  text-decoration: none;
  opacity: .85;
  transition: opacity .25s ease;
}
.nav a:hover { opacity: 1; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  font-size: .8125rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .4rem 0;
  cursor: pointer;
}

@media (max-width: 46rem) {
  .nav-toggle { display: block; position: relative; z-index: 2; }
  .wordmark { position: relative; z-index: 2; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    background: var(--bone);
    color: var(--ink);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav a { font-family: var(--serif); font-size: 1.35rem; opacity: 1; }
  .site-header.is-menu-open { color: var(--ink); }
}

/* -------------------------------------------------------------------- Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
  color: var(--bone);
  background: var(--sage);
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: slow-drift 24s ease-out forwards;
}
@keyframes slow-drift { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; transform: none; }
}

.hero-media::after {           /* Schleier, damit die Schrift ruhig sitzt */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,24,21,.58) 0%, rgba(26,24,21,.34) 45%, rgba(26,24,21,.75) 100%);
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 44rem;
  text-shadow: 0 1px 28px rgba(18, 16, 14, .6);
}
.hero-inner .btn { text-shadow: none; }
.hero .kicker { color: rgba(246,243,236,.82); }
.hero .subtitle { color: rgba(246,243,236,.86); margin-top: 1.5rem; }

.scroll-hint {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  translate: -50% 0;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(246,243,236,.7);
  text-decoration: none;
}
.scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 2.5rem;
  margin: .75rem auto 0;
  background: linear-gradient(rgba(246,243,236,.7), transparent);
}

/* ------------------------------------------------------------------ Button */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.35rem;
  border-radius: 2rem;
  background: var(--sand);
  color: var(--ink);
  border: 1px solid transparent;
  transition: background-color .3s ease, transform .3s ease;
}
.btn:hover { background: var(--sand-deep); }

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-ghost:hover { background: rgba(207,194,180,.16); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ------------------------------------------------------- Textblock-Strecke */

.stack > * + * { margin-top: 2.5rem; }

.statement {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.5;
  text-align: center;
}

.verse p {                     /* kurze, gesetzte Zeilen wie im Vorbild */
  margin: 0 0 .55em;
}

/* ----------------------------------------------------------------- Galerie */
/*  Justiertes Raster: jede Kachel wächst proportional zu ihrem Seitenverhält-
    nis, dadurch sind alle Kacheln einer Zeile exakt gleich hoch und kein Bild
    muss beschnitten werden.                                                  */

.rows {
  display: grid;
  gap: var(--tile-gap);
}

.row {
  display: flex;
  gap: var(--tile-gap);
}

.tile {
  --ar: 1.5;
  flex: var(--ar) 1 0;
  min-width: 0;
  aspect-ratio: var(--ar);

  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--sage);
  cursor: zoom-in;
  font: inherit;
  color: inherit;
}

.tile.land { --ar: 1.5; }      /* 3 : 2 */
.tile.port { --ar: .6667; }    /* 2 : 3 */

.tile img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.tile:hover img,
.tile:focus-visible img { transform: scale(1.045); }

/* Schleier plus Lupe, damit die Kachel als anklickbar zu erkennen ist */
.tile::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(26,24,21,0);
  transition: background .55s ease;
}
.tile:hover::after,
.tile:focus-visible::after { background: rgba(26,24,21,.22); }

.tile .zoom {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(246,243,236,.92);
  color: var(--ink);
  opacity: 0;
  transform: translateY(.5rem);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.tile:hover .zoom,
.tile:focus-visible .zoom { opacity: 1; transform: none; }

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

/* Platzhalter, falls ein Foto fehlt */
.tile::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(246,243,236,.55);
}

@media (max-width: 40rem) {
  .row  { flex-direction: column; }
  .tile { flex: none; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .tile img { transition: none; }
  .tile:hover img { transform: none; }
}

/* --------------------------------------------------------------- Lightbox */

.lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #161412;
  color: var(--bone);
  opacity: 0;
  transition: opacity .35s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem clamp(1rem, 4vw, 2.25rem);
}

.lb-count {
  font-size: .8125rem;
  letter-spacing: .2em;
  color: rgba(246,243,236,.6);
}

.lb-stage {
  position: relative;
  margin: 0 clamp(1rem, 4vw, 2.25rem);
  padding: 0;
  min-height: 0;
}

.lb-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .3s ease;
}
.lb-stage img.is-ready { opacity: 1; }

.lb-caption {
  padding: 1.25rem clamp(1rem, 4vw, 2.25rem) 2rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: .9375rem;
  line-height: 1.6;
  color: rgba(246,243,236,.75);
}

.lb-btn {
  background: none;
  border: 0;
  padding: .5rem;
  color: var(--bone);
  font: inherit;
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: .75;
  transition: opacity .25s ease;
}
.lb-btn:hover { opacity: 1; }
.lb-btn:focus-visible { outline: 1px solid var(--bone); outline-offset: 4px; opacity: 1; }

.lb-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(246,243,236,.1);
  padding: 0;
}
.lb-nav:hover { background: rgba(246,243,236,.2); }
.lb-prev { left: clamp(.5rem, 2vw, 1.5rem); }
.lb-next { right: clamp(.5rem, 2vw, 1.5rem); }

@media (max-width: 40rem) {
  .lb-nav { width: 2.75rem; height: 2.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox, .lb-stage img { transition: none; }
}

/* Volle Breite, ruhiger Bildeinschub zwischen zwei Textstrecken */
.interlude {
  position: relative;
  height: clamp(20rem, 62vh, 34rem);
  background: var(--sage);
  overflow: hidden;
}
.interlude img { width: 100%; height: 100%; object-fit: cover; }

/* -------------------------------------------------------------- Ablauf 1–5 */

.steps {
  counter-reset: step;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.band-dark .steps,
.band-dark .steps li { border-color: var(--sage-soft); }

.steps li {
  list-style: none;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--line);
}
.steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--serif);
  font-size: .9375rem;
  color: var(--muted);
  padding-top: .2rem;
}
.band-dark .steps li::before { color: #A9B5B1; }

.steps h3 { font-size: 1.1875rem; margin-bottom: .35rem; }
.steps p  { color: var(--muted); margin: 0; }
.band-dark .steps p { color: #BDC7C3; }

/* --------------------------------------------------------------- Zwei Listen */

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .85rem;
  color: var(--muted);
}
.check-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sand-deep);
}

/* ------------------------------------------------------------------ Preise */

.price-list { border-top: 1px solid var(--line); margin-top: 2.5rem; }

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.price-row dt { font-family: var(--serif); font-size: 1.0625rem; margin: 0; }
.price-row dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.0625rem;
  white-space: nowrap;
}
.price-row .note {
  flex-basis: 100%;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------- FAQ */

.faq { border-top: 1px solid var(--line); margin-top: 3rem; }

.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.5;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.25rem;
  color: var(--muted);
  transition: transform .3s ease;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer {
  padding-bottom: 1.75rem;
  color: var(--muted);
  max-width: 44rem;
}

/* -------------------------------------------------------------- Zitate */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: clamp(1.75rem, 4vw, 3.25rem);
  margin-top: 3rem;
}
.quotes blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.65;
}
.quotes cite {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ------------------------------------------------------------------ Status */

.notice {
  border: 1px solid var(--line);
  border-radius: .25rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
  background: var(--bone);
}
.band-dark .notice { border-color: var(--sage-soft); background: transparent; }

.notice .kicker { margin-bottom: 1rem; }

/* ------------------------------------------------------------------ Footer */

.site-footer {
  background: var(--sage);
  color: var(--bone);
  padding: clamp(4rem, 9vw, 6.5rem) 0 3rem;
}

.footer-mark {
  height: clamp(3.5rem, 7vw, 5rem);
  width: auto;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  filter: invert(1);
  opacity: .9;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 2.75rem;
}

.site-footer h4 {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #A9B5B1;
  margin-bottom: 1.1rem;
}
.site-footer a { text-decoration: none; opacity: .9; }
.site-footer a:hover { opacity: 1; text-decoration: underline; text-underline-offset: .25em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }

.footer-base {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--sage-soft);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  justify-content: space-between;
  font-size: .8125rem;
  color: #A9B5B1;
}

/* -------------------------------------------------------------- Rechtsseiten */

.legal {
  padding-top: clamp(7rem, 13vw, 9.5rem);
  padding-bottom: 0;
}
.legal .doc { width: min(100% - 2.5rem, 44rem); margin-inline: auto; }
.legal h2 {
  font-size: 1.375rem;
  margin-top: 3rem;
  margin-bottom: .9rem;
}
.legal h2:first-of-type { margin-top: 2.5rem; }
.legal ul { padding-left: 1.2rem; color: var(--muted); }
.legal li { margin-bottom: .5rem; }
.legal .doc > p { color: var(--muted); }
.back-link {
  display: inline-block;
  margin-bottom: 2.5rem;
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}
.back-link:hover { color: var(--ink); }

/* --------------------------------------------------------------- Animation */

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bone);
  padding: .75rem 1.25rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* Sehr schmale Geräte: Wortmarke etwas enger setzen */
@media (max-width: 24rem) {
  .wordmark { letter-spacing: .18em; font-size: .875rem; }
}


/* ------------------------------------------------------- Bild neben Text */

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.split-text .rule { margin-left: 0; margin-right: 0; }

@media (max-width: 52rem) {
  .split { grid-template-columns: 1fr; }
  .split-media { max-width: 26rem; margin-inline: auto; }
}

/* Hinweis auf den Rechtsseiten, dass der Text auf Deutsch gehalten ist */
.lang-note {
  margin-top: 1rem;
  font-size: .875rem;
  color: var(--muted);
  font-style: italic;
}

/* -------------------------------------------------------- Instagram-Hinweis */

.gallery-note {
  margin-top: 1.75rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--muted);
}
.gallery-note a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--sand-deep);
  padding-bottom: .1em;
}
.gallery-note a:hover { border-bottom-color: var(--ink); }

/* ------------------------------------------------------------- Formular */
/*  Steht auf dem dunklen Band, deshalb helle Linien statt Kaesten.        */

.form {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  text-align: left;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}
@media (max-width: 40rem) {
  .field-row { grid-template-columns: 1fr; }
}

.field { margin: 0 0 1.75rem; }

.field label {
  display: block;
  margin-bottom: .5rem;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #A9B5B1;
}

.field .opt {
  letter-spacing: .04em;
  text-transform: none;
  font-style: italic;
  opacity: .7;
}

.field input[type="text"],
.field input[type="email"],
.field textarea {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--sage-soft);
  border-radius: 0;
  padding: .6rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--bone);
  transition: border-color .3s ease;
}
.field textarea { resize: vertical; line-height: 1.7; }

.field input::placeholder,
.field textarea::placeholder { color: #7E8D89; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--sand);
}

/* Browser-Autofill faerbt Felder sonst weiss ein */
.field input:-webkit-autofill {
  -webkit-text-fill-color: var(--bone);
  transition: background-color 9999s;
}

.field.check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: start;
}
.field.check input { margin-top: .3rem; accent-color: var(--sand); }
.field.check label {
  margin: 0;
  font-size: .875rem;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.6;
  color: #BDC7C3;
}

/* Honigtopf: nur fuer automatische Eintraege sichtbar */
.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form .btn { border: 0; cursor: pointer; font-family: var(--sans); }

/* Rueckmeldung nach dem Absenden */
.form-note {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--sand);
  font-size: .9375rem;
  color: #BDC7C3;
}
.form-note.is-error { border-left-color: #C98B7A; }
