/* =========================================================================
   LAXARY.de — Das Luxusmagazin · "Noir Éditorial"
   Dark, cinematic, modern editorial. Bodoni Moda × Archivo.
   ========================================================================= */

/* ----------  1. TOKENS  ---------- */
:root {
  --obsidian:   #0a0a0c;
  --onyx:       #111013;
  --smoke:      #1a191e;
  --slate:      #232128;

  --porcelain:  #f4f0ea;
  --porcelain-2: rgba(244, 240, 234, 0.74);
  --ash:        #928d86;
  --ash-2:      rgba(146, 141, 134, 0.55);

  --champagne:  #c6a877;   /* single warm accent — used with restraint */
  --champagne-2: rgba(198, 168, 119, 0.42);

  --line:       rgba(244, 240, 234, 0.13);
  --line-soft:  rgba(244, 240, 234, 0.06);

  --display: 'Bodoni Moda', 'Times New Roman', Georgia, serif;
  --sans: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1400px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --header-h: 78px;

  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ----------  2. RESET  ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--obsidian);
  color: var(--porcelain);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--champagne); color: var(--obsidian); }
:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; }

/* thin "magazine spine" line at very top */
body::before {
  content: "";
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200;
  background: linear-gradient(90deg, var(--champagne), transparent 60%);
}

/* ----------  3. LAYOUT PRIMITIVES  ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 10vw, 9rem); position: relative; }
.section--hair { border-top: 1px solid var(--line-soft); }

/* eyebrow / kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--champagne);
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--champagne-2); }
.kicker--plain::before { display: none; }

/* section heading block */
.head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.head__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-top: 1.4rem;
}
.head__title em { font-style: italic; color: var(--champagne); }
.head__intro { max-width: 46ch; margin-top: 1.4rem; color: var(--porcelain-2); font-size: 1.02rem; }

/* ----------  4. BUTTONS / LINKS  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1.05rem 2rem;
  border: 1px solid var(--line);
  color: var(--porcelain);
  background: transparent;
  position: relative; overflow: hidden; z-index: 0;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--porcelain);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
}
.btn:hover { color: var(--obsidian); border-color: var(--porcelain); }
.btn:hover::after { transform: translateY(0); }

.btn--gold { border-color: var(--champagne); color: var(--champagne); }
.btn--gold::after { background: var(--champagne); }
.btn--gold:hover { color: var(--obsidian); border-color: var(--champagne); }

.btn--solid { background: var(--champagne); color: var(--obsidian); border-color: var(--champagne); }
.btn--solid::after { background: var(--porcelain); }
.btn--solid:hover { color: var(--obsidian); }

/* underlined text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--porcelain);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--champagne-2);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.tlink .arw { color: var(--champagne); transition: transform 0.4s var(--ease); }
.tlink:hover { color: var(--champagne); border-color: var(--champagne); }
.tlink:hover .arw { transform: translateX(6px); }

/* ----------  5. HEADER  ---------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease),
              border-color 0.5s var(--ease), height 0.4s var(--ease);
}
.hdr__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 1.5rem; }

.brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-left: 0.18em;
  color: var(--porcelain);
  white-space: nowrap;
}
.brand b { font-weight: 600; color: var(--champagne); }

.nav ul { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.nav a {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--porcelain-2); position: relative; padding-block: 0.5rem;
  transition: color 0.4s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--champagne); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav a:hover { color: var(--porcelain); }
.nav a:hover::after { transform: scaleX(1); }

.hdr__actions { display: flex; align-items: center; gap: 1rem; }
.iconbtn { display: grid; place-items: center; width: 38px; height: 38px; color: var(--porcelain-2); transition: color 0.4s var(--ease); }
.iconbtn:hover { color: var(--champagne); }
.iconbtn svg { width: 18px; height: 18px; }
.hdr__cta {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--champagne); border: 1px solid var(--champagne-2); padding: 0.62rem 1.2rem;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.hdr__cta:hover { background: var(--champagne); color: var(--obsidian); }

.hdr.is-scrolled {
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line-soft);
  height: 66px;
}

/* burger */
.burger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--porcelain); transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }

/* ----------  6. MOBILE MENU  ---------- */
.mnav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--obsidian);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2.5rem;
  display: flex; flex-direction: column;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease), visibility 0.7s;
  overflow-y: auto;
}
.mnav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mnav ul { display: flex; flex-direction: column; }
.mnav a {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(1.9rem, 9vw, 2.8rem);
  color: var(--porcelain);
  padding: 0.5rem 0; border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: baseline; gap: 1rem;
  transition: color 0.4s var(--ease), padding-left 0.4s var(--ease);
}
.mnav a span { font-family: var(--sans); font-style: normal; font-size: 0.7rem; letter-spacing: 0.2em; color: var(--ash); }
.mnav a:hover { color: var(--champagne); padding-left: 0.6rem; }
.mnav__foot { margin-top: auto; padding-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ----------  7. HERO  ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background: linear-gradient(160deg, var(--onyx), var(--obsidian)); }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; filter: contrast(1.02) saturate(0.82) brightness(0.82); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0) 26%, rgba(10,10,12,0.35) 55%, rgba(10,10,12,0.94) 100%),
    linear-gradient(90deg, rgba(10,10,12,0.7) 0%, rgba(10,10,12,0.15) 55%, rgba(10,10,12,0) 100%);
}
.hero__inner { position: relative; width: 100%; padding-block: calc(var(--header-h) + 2.5rem) clamp(3rem, 7vw, 6rem); }
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.2rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 1.8rem;
}
.hero__meta b { color: var(--champagne); font-weight: 600; }
.hero__meta .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--champagne-2); }

.hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.9rem, 8.2vw, 7.3rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.hero__title em { font-style: italic; }
.hero__title .gold { color: var(--champagne); font-style: italic; }

.hero__lead { max-width: 52ch; margin-top: 1.8rem; color: var(--porcelain-2); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.hero__cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(3rem, 7vw, 6rem);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ash);
  writing-mode: vertical-rl;
}
.hero__scroll .ln { width: 1px; height: 54px; background: linear-gradient(var(--champagne), transparent); }
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ----------  8. RUBRIKEN INDEX (signature)  ---------- */
.index__inner { position: relative; }
.idxlist { border-top: 1px solid var(--line); }

.idx {
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.1rem, 2.4vw, 1.9rem) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.5s var(--ease);
}
.idx__no { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; color: var(--ash); }
.idx__name {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.7rem, 4.4vw, 3.1rem);
  line-height: 1; letter-spacing: -0.01em;
  color: var(--porcelain);
  transition: color 0.4s var(--ease);
}
.idx__name i { font-style: italic; color: var(--ash); font-size: 0.86em; }
.idx__tag { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); white-space: nowrap; }
.idx__arw { color: var(--champagne); opacity: 0; transform: translateX(-8px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }

.idx:hover { padding-left: clamp(0.6rem, 1.5vw, 1.4rem); }
.idx:hover .idx__name { color: var(--champagne); }
.idx:hover .idx__arw { opacity: 1; transform: translateX(0); }
.idx:hover .idx__tag { color: var(--porcelain-2); }

/* floating preview stage (desktop) */
.idx__thumb {
  position: absolute; top: 50%; right: 0; z-index: 5;
  width: min(33%, 380px); aspect-ratio: 3 / 4;
  transform: translateY(-50%) scale(1.03);
  opacity: 0; visibility: hidden; pointer-events: none;
  background: linear-gradient(160deg, var(--smoke), var(--onyx));
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8);
  transition: opacity 0.5s var(--ease), transform 0.7s var(--ease), visibility 0.5s;
}
.idx__thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(0.9); }
@media (min-width: 981px) {
  .idxlist { padding-right: min(46%, 520px); }
  .idx:hover .idx__thumb { opacity: 1; visibility: visible; transform: translateY(-50%) scale(1); }
  .idx__thumb::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--line); }
}

/* ----------  9. AKTUELL (story grid)  ---------- */
.stories { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.stories__side { display: flex; flex-direction: column; }

.story { display: block; position: relative; }
.story__media { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--smoke), var(--onyx)); }
.story__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.86) brightness(0.9); transition: transform 1.1s var(--ease); }
.story:hover .story__media img { transform: scale(1.05); }

.story--lead .story__media { aspect-ratio: 16 / 11; }
.story--lead .story__title { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }

.story__body { padding-top: 1.3rem; }
.story__cat { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--champagne); }
.story__title {
  font-family: var(--display); font-weight: 500;
  font-size: 1.35rem; line-height: 1.14; letter-spacing: -0.01em;
  margin-top: 0.7rem; transition: color 0.4s var(--ease);
}
.story:hover .story__title { color: var(--champagne); }
.story__teaser { color: var(--porcelain-2); font-size: 0.95rem; margin-top: 0.7rem; max-width: 52ch; }
.story__date { display: block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); margin-top: 0.9rem; }

/* compact list items in the side column */
.slist { display: flex; flex-direction: column; }
.sitem {
  display: grid; grid-template-columns: 92px 1fr; gap: 1.1rem; align-items: center;
  padding: 1.2rem 0; border-top: 1px solid var(--line);
}
.sitem:first-child { border-top: none; padding-top: 0; }
.sitem__media { aspect-ratio: 1 / 1; overflow: hidden; background: linear-gradient(160deg, var(--smoke), var(--onyx)); }
.sitem__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(0.9); transition: transform 1s var(--ease); }
.sitem:hover .sitem__media img { transform: scale(1.06); }
.sitem__cat { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); }
.sitem__title { font-family: var(--display); font-weight: 500; font-size: 1.15rem; line-height: 1.15; margin-top: 0.35rem; transition: color 0.4s var(--ease); }
.sitem:hover .sitem__title { color: var(--champagne); }

/* ----------  10. MANIFEST BAND  ---------- */
.manifest { background: var(--onyx); border-block: 1px solid var(--line-soft); text-align: center; }
.manifest__q {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  line-height: 1.18; letter-spacing: -0.01em;
  max-width: 20ch; margin-inline: auto; color: var(--porcelain);
}
.manifest__q b { font-style: normal; font-weight: 500; color: var(--champagne); }
.manifest__by { display: block; margin-top: 2rem; font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ash); }

/* ----------  11. WERBEN (advertising)  ---------- */
.ad__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.ad__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.ad__stat { background: var(--obsidian); padding: 2rem 1.7rem; }
.ad__stat b { display: block; font-family: var(--display); font-weight: 500; font-size: clamp(2.2rem, 4vw, 3.1rem); color: var(--champagne); line-height: 1; }
.ad__stat span { display: block; margin-top: 0.7rem; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--porcelain-2); }
.ad__cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ----------  12. NEWSLETTER  ---------- */
.nl { background: var(--onyx); text-align: center; }
.nl__inner { max-width: 760px; margin-inline: auto; }
.nl__form { display: flex; gap: 0.7rem; max-width: 540px; margin: 2.2rem auto 0; flex-wrap: wrap; }
.nl__form input[type="email"] {
  flex: 1 1 260px; font-family: var(--sans); font-size: 0.95rem;
  padding: 1.05rem 1.3rem; color: var(--porcelain);
  background: rgba(244,240,234,0.03); border: 1px solid var(--line);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.nl__form input[type="email"]::placeholder { color: var(--ash); letter-spacing: 0.04em; }
.nl__form input[type="email"]:focus { outline: none; border-color: var(--champagne); background: rgba(244,240,234,0.05); }
.nl__privacy { display: inline-flex; align-items: flex-start; gap: 0.6rem; margin-top: 1.3rem; font-size: 0.78rem; color: var(--ash); text-align: left; max-width: 480px; }
.nl__privacy input { accent-color: var(--champagne); width: 15px; height: 15px; margin-top: 0.2rem; flex: none; }
.nl__privacy a { color: var(--champagne); border-bottom: 1px solid var(--champagne-2); }

/* ----------  13. FOOTER  ---------- */
.ft { background: var(--obsidian); border-top: 1px solid var(--line); padding-top: clamp(3.5rem, 6vw, 5.5rem); }
.ft__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-soft); }
.ft__brand .brand { padding-left: 0; font-size: 1.1rem; display: inline-block; margin-bottom: 1.2rem; }
.ft__brand p { color: var(--porcelain-2); font-size: 0.92rem; max-width: 34ch; }
.ft__note { margin-top: 1.4rem; font-size: 0.76rem; color: var(--ash); max-width: 40ch; }
.ft__col h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--champagne); margin-bottom: 1.3rem; }
.ft__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.ft__col a { font-size: 0.9rem; color: var(--porcelain-2); transition: color 0.4s var(--ease), padding-left 0.4s var(--ease); }
.ft__col a:hover { color: var(--champagne); padding-left: 4px; }

.ft__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; padding-block: 1.8rem; }
.ft__bottom p { font-size: 0.8rem; color: var(--ash); }
.social { display: flex; gap: 0.6rem; }
.social a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); color: var(--porcelain-2); transition: color 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease); }
.social a:hover { color: var(--obsidian); background: var(--champagne); border-color: var(--champagne); }
.social svg { width: 16px; height: 16px; }

/* ----------  14. REVEAL  ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ----------  15. RESPONSIVE  ---------- */
@media (max-width: 980px) {
  .nav, .hdr__cta { display: none; }
  .burger { display: flex; }
  .stories { grid-template-columns: 1fr; }
  .stories__side { margin-top: 1rem; }
  .ad__grid { grid-template-columns: 1fr; }
  .ft__top { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .ft__brand { grid-column: 1 / -1; }

  /* index becomes an inline-thumb list */
  .idxlist { padding-right: 0; }
  .idx { grid-template-columns: 64px 1fr auto; }
  .idx__thumb {
    position: static; width: 100%; aspect-ratio: 16 / 9;
    opacity: 1; visibility: visible; transform: none;
    grid-column: 1 / -1; margin-top: 1rem; box-shadow: none;
  }
  .idx { grid-template-areas: "no name tag" "thumb thumb thumb"; }
  .idx__no { grid-area: no; }
  .idx__name { grid-area: name; }
  .idx__tag { grid-area: tag; }
  .idx__arw { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .ft__top { grid-template-columns: 1fr; }
  .ad__stats { grid-template-columns: 1fr; }
  .hero__cta .btn, .nl__form input[type="email"], .nl__form .btn { flex: 1 1 100%; }
  .idx { grid-template-columns: 44px 1fr; }
  .idx__tag { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .idx__thumb { transition: opacity 0.01ms !important; }
}

/* =========================================================================
   17. SUBPAGES — city hubs & long-form articles
   ========================================================================= */

/* page hero (city hub + article) */
.phero { position: relative; min-height: clamp(440px, 60vh, 660px); display: flex; align-items: flex-end; overflow: hidden; }
.phero .hero__bg { position: absolute; inset: 0; z-index: -2; background: linear-gradient(160deg, var(--onyx), var(--obsidian)); }
.phero .hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; filter: contrast(1.02) saturate(0.82) brightness(0.8); }
.phero .hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.5) 0%, rgba(10,10,12,0) 30%, rgba(10,10,12,0.4) 58%, rgba(10,10,12,0.95) 100%),
    linear-gradient(90deg, rgba(10,10,12,0.68) 0%, rgba(10,10,12,0.12) 60%, rgba(10,10,12,0) 100%);
}
.phero__inner { position: relative; width: 100%; padding-block: calc(var(--header-h) + 2.4rem) clamp(2.5rem, 5vw, 4.5rem); }
.phero__title { font-family: var(--display); font-weight: 500; font-size: clamp(2.5rem, 6.6vw, 5.4rem); line-height: 0.98; letter-spacing: -0.02em; max-width: 20ch; }
.phero__title em { font-style: italic; color: var(--champagne); }
.phero__lead { max-width: 60ch; margin-top: 1.5rem; color: var(--porcelain-2); font-size: clamp(1rem, 1.4vw, 1.16rem); }

/* breadcrumb */
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash); margin-bottom: 1.6rem; }
.crumb a { color: var(--ash); transition: color 0.3s var(--ease); }
.crumb a:hover { color: var(--champagne); }
.crumb .sep { color: var(--ash-2); }
.crumb [aria-current] { color: var(--porcelain-2); }

/* meta line (reading time / rubric) */
.pmeta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1rem; margin-top: 1.6rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ash); }
.pmeta b { color: var(--champagne); font-weight: 600; }
.pmeta .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--champagne-2); }

/* ---- city hub ---- */
.hub-intro { max-width: 68ch; }
.hub-intro p { color: var(--porcelain-2); font-size: 1.08rem; line-height: 1.75; margin-bottom: 1.2rem; }
.hub-intro p + p { margin-top: 0; }

.cgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 2.6vw, 2.6rem) clamp(1.3rem, 2.2vw, 2.1rem); margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.ccard { display: flex; flex-direction: column; }
.ccard__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: linear-gradient(160deg, var(--smoke), var(--onyx)); }
.ccard__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.86) brightness(0.9); transition: transform 1.1s var(--ease); }
.ccard:hover .ccard__media img { transform: scale(1.05); }
.ccard__no { position: absolute; top: 0.9rem; left: 1.1rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; color: var(--porcelain); text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.ccard__body { padding-top: 1.2rem; display: flex; flex-direction: column; flex: 1; }
.ccard__cat { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--champagne); }
.ccard__title { font-family: var(--display); font-weight: 500; font-size: 1.4rem; line-height: 1.14; margin-top: 0.6rem; letter-spacing: -0.01em; transition: color 0.4s var(--ease); }
.ccard:hover .ccard__title { color: var(--champagne); }
.ccard__teaser { color: var(--porcelain-2); font-size: 0.92rem; margin-top: 0.6rem; flex: 1; }
.ccard__more { margin-top: 1rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash); display: inline-flex; gap: 0.5rem; }
.ccard:hover .ccard__more { color: var(--champagne); }

/* planned topics ("in Kürze") */
.soon { margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.soon h3 { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ash); margin-bottom: 1.2rem; }
.soon ul { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.soon li { border: 1px solid var(--line); padding: 0.6rem 1.1rem; font-size: 0.84rem; color: var(--porcelain-2); letter-spacing: 0.02em; }
.soon li b { color: var(--ash); font-weight: 500; }

/* ---- long-form article ---- */
.wrap--read { max-width: 820px; }
.article__body { max-width: 720px; margin-inline: auto; }

.toc { background: var(--onyx); border: 1px solid var(--line); padding: 1.5rem 1.7rem; margin-bottom: 2.6rem; }
.toc h4 { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--champagne); margin-bottom: 1rem; }
.toc ol { list-style: none; counter-reset: toc; display: flex; flex-direction: column; gap: 0.6rem; }
.toc li { counter-increment: toc; }
.toc a { display: flex; gap: 0.8rem; color: var(--porcelain-2); font-size: 0.98rem; transition: color 0.3s var(--ease); }
.toc a::before { content: counter(toc, decimal-leading-zero); color: var(--champagne); font-weight: 600; font-size: 0.8rem; }
.toc a:hover { color: var(--champagne); }

.prose { font-size: 1.08rem; line-height: 1.78; color: var(--porcelain-2); }
.prose > p { margin-bottom: 1.25rem; }
.prose h2 { font-family: var(--display); font-weight: 500; color: var(--porcelain); font-size: clamp(1.6rem, 3.2vw, 2.15rem); line-height: 1.14; letter-spacing: -0.01em; margin: 2.8rem 0 1rem; scroll-margin-top: 90px; }
.prose h3 { font-family: var(--display); font-weight: 500; color: var(--porcelain); font-size: 1.32rem; line-height: 1.2; margin: 2rem 0 0.6rem; }
.prose a { color: var(--champagne); border-bottom: 1px solid var(--champagne-2); transition: border-color 0.3s var(--ease); }
.prose a:hover { border-bottom-color: var(--champagne); }
.prose strong { color: var(--porcelain); font-weight: 600; }
.prose ul { margin: 0 0 1.35rem; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before { content: "—"; position: absolute; left: 0; color: var(--champagne); }

.pull { font-family: var(--display); font-style: italic; font-weight: 400; font-size: clamp(1.5rem, 3.2vw, 2.2rem); line-height: 1.32; color: var(--porcelain); border-left: 2px solid var(--champagne); padding-left: 1.5rem; margin: 2.6rem 0; }

.callout { background: var(--onyx); border: 1px solid var(--line); border-left: 2px solid var(--champagne); padding: 1.7rem 1.9rem; margin: 2.4rem 0; }
.callout h4 { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--champagne); margin-bottom: 0.9rem; }
.callout p { color: var(--porcelain-2); font-size: 0.98rem; margin-bottom: 0.6rem; }
.callout p:last-child { margin-bottom: 0; }

/* FAQ */
.faq { margin-top: 2.8rem; }
.faq > h2 { font-family: var(--display); font-weight: 500; color: var(--porcelain); font-size: clamp(1.6rem, 3.2vw, 2.15rem); margin-bottom: 0.6rem; }
.faq details { border-top: 1px solid var(--line); padding: 1.15rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { font-family: var(--display); font-weight: 500; font-size: 1.22rem; color: var(--porcelain); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.3s var(--ease); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--champagne); font-family: var(--sans); font-weight: 400; font-size: 1.4rem; transition: transform 0.3s var(--ease); }
.faq details[open] summary { color: var(--champagne); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--porcelain-2); font-size: 1rem; line-height: 1.7; margin-top: 0.9rem; }

/* article byline + share row */
.byline { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem 1.2rem; margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); font-size: 0.76rem; letter-spacing: 0.06em; color: var(--ash); }
.byline b { color: var(--porcelain-2); font-weight: 600; }
.ad-note { margin-top: 1.2rem; font-size: 0.78rem; color: var(--ash); font-style: italic; }

/* related */
.related { margin-top: clamp(3rem, 5vw, 4.5rem); }

@media (max-width: 980px) {
  .cgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cgrid { grid-template-columns: 1fr; }
}


/* ===== 18. Article footer: author box · AI note · in-article ad ===== */
.authorbox {
  display: flex; gap: 1.2rem; align-items: flex-start;
  margin-top: 3rem; padding: 1.6rem 1.8rem;
  border: 1px solid rgba(244, 240, 234, 0.12); border-radius: 2px;
  background: rgba(244, 240, 234, 0.03);
}
.authorbox__ava {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; border: 1px solid var(--champagne-2);
  font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--champagne);
}
.authorbox__body { display: flex; flex-direction: column; gap: 0.28rem; min-width: 0; }
.authorbox__role {
  font-family: var(--sans); font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ash);
}
.authorbox__name {
  font-family: var(--display); font-size: 1.14rem; font-weight: 600;
  color: var(--porcelain); text-decoration: none; width: max-content;
}
.authorbox__name:hover { color: var(--champagne); }
.authorbox__bio { color: var(--porcelain-2); font-size: 0.92rem; line-height: 1.65; max-width: 62ch; }

.ai-note {
  margin-top: 0.9rem; font-family: var(--sans); font-size: 0.78rem; color: var(--ash);
}

.adbanner {
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  margin: 3.2rem 0; padding: 2rem 2.1rem;
  border: 1px solid var(--champagne); border-radius: 3px;
  background: linear-gradient(135deg, rgba(198, 168, 119, 0.12), rgba(198, 168, 119, 0.02) 55%), #14110b;
  box-shadow: 0 26px 60px -34px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(244, 240, 234, 0.05);
  position: relative;
}
.adbanner__tag {
  position: absolute; top: -0.66rem; left: 1.7rem;
  font-family: var(--sans); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--obsidian); background: var(--champagne);
  padding: 0.22rem 0.6rem; border-radius: 2px;
}
.adbanner__body { flex: 1 1 320px; min-width: 0; }
.adbanner__eyebrow {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne);
}
.adbanner__title {
  font-family: var(--display); font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 600;
  color: var(--porcelain); margin-top: 0.45rem; line-height: 1.15;
}
.adbanner__title em { font-style: italic; color: var(--champagne); }
.adbanner__text { margin-top: 0.6rem; color: var(--porcelain-2); font-size: 0.92rem; line-height: 1.6; max-width: 54ch; }
.adbanner__cta {
  flex: none; display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.86rem; font-weight: 600;
  color: var(--obsidian); background: var(--champagne); border: 1px solid var(--champagne);
  padding: 0.8rem 1.4rem; border-radius: 2px; text-decoration: none;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.adbanner__cta:hover { background: var(--porcelain); border-color: var(--porcelain); }
.adbanner__cta .arw { transition: transform 0.4s var(--ease); }
.adbanner__cta:hover .arw { transform: translateX(5px); }
@media (max-width: 560px) { .adbanner__cta { width: 100%; justify-content: center; } }
