/* ============================================================
   Abbruzzis Kochstudio — Editorial Design System
   Warm-parchment fine-dining editorial language: sharp geometry,
   hairline dividers, whisper-weight serif display type, a single
   saffron accent, full-bleed dark atmospheric photography,
   ghost-outline buttons only, letter-by-letter reveal headlines.
   Scoped under body.editorial so a page opts in explicitly.
   ============================================================ */

body.editorial {
  --h-parchment: #ece2d3;
  --h-linen: #ddd0bc;
  --h-stone: #c7b9a3;
  --h-walnut: #8f8371;
  --h-espresso: #5c5346;
  --h-onyx: #2b2620;
  --h-midnight: #201c17;
  --h-saffron: #c98a44;

  --h-font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --h-font-sans: "Manrope", "Inter", sans-serif;
  --h-ease: cubic-bezier(0.16, 1, 0.3, 1);

  background: var(--h-parchment);
  color: var(--h-onyx);
  font-family: var(--h-font-sans);
}

body.editorial .container { max-width: 1320px; }
body.editorial p { color: var(--h-espresso); font-family: var(--h-font-sans); }

/* ---------- Header: floats transparent, solidifies on scroll ---------- */

body.editorial .site-header {
  position: fixed;
  width: 100%;
  background: transparent;
  border-bottom: none;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
body.editorial .site-header.is-scrolled {
  background: var(--h-onyx);
  border-bottom: 1px solid rgba(236, 226, 211, 0.15);
}
body.editorial .brand,
body.editorial .main-nav a { color: var(--h-parchment); font-family: var(--h-font-sans); }
body.editorial .main-nav a::after { background: var(--h-saffron); }
body.editorial .nav-toggle { color: var(--h-parchment); }
@media (max-width: 860px) {
  body.editorial .main-nav { background: var(--h-onyx); }
}
body.editorial .site-header .btn-primary {
  background: transparent;
  border: 1px solid var(--h-parchment);
  color: var(--h-parchment);
  border-radius: 3px;
}
body.editorial .site-header .btn-primary:hover {
  background: var(--h-parchment);
  color: var(--h-onyx);
}
body.editorial main { padding-top: 0; }

/* ---------- Full hero (homepage) ---------- */

.h-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--h-midnight);
}
.h-hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.h-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  animation: h-kenburns 30s ease-in-out infinite alternate;
}
@keyframes h-kenburns {
  from { transform: scale(1.03); }
  to { transform: scale(1.13); }
}
@media (prefers-reduced-motion: reduce) {
  .h-hero-media img { animation: none; }
}
.h-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(32, 28, 23, 0.62) 0%, rgba(32, 28, 23, 0.42) 26%, rgba(32, 28, 23, 0.78) 66%, rgba(32, 28, 23, 0.93) 100%);
}

/* ---------- Headline row: label — wordmark — label ---------- */

.h-hero-headline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(90px, 1fr) auto minmax(90px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 0 5vw 44px;
}
.h-hero-label {
  font-family: var(--h-font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--h-parchment);
  opacity: 0;
  transform: translateY(10px);
  animation: h-label-in 0.9s var(--h-ease) 0.15s forwards;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}
.h-hero-label:last-child { text-align: right; }
@keyframes h-label-in {
  to { opacity: 0.9; transform: translateY(0); }
}
@media (max-width: 900px) {
  .h-hero-headline {
    grid-template-columns: 1fr auto;
    grid-template-areas: "labelA labelB" "title title";
    row-gap: 20px;
    gap: 16px;
  }
  .h-hero-label:first-child { grid-area: labelA; }
  .h-hero-label:last-child { grid-area: labelB; }
  body.editorial .h-hero-wordmark { grid-area: title; text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  .h-hero-label { animation: none; opacity: 0.9; transform: none; }
}

/* Wordmark — scoped above the generic heading rules so it stays sans + parchment */

body.editorial .h-hero-wordmark {
  font-family: var(--h-font-sans);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--h-parchment);
  margin: 0;
  text-align: center;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.72), 0 2px 6px rgba(0, 0, 0, 0.6);
}
body.editorial [data-split-letters] .word {
  display: inline-block;
  white-space: nowrap;
}

/* Multi-word titles: each word flies in from its own side */
body.editorial [data-split-letters] .word.from-left,
body.editorial [data-split-letters] .word.from-right {
  animation: h-word-slide 1.25s var(--h-ease) 0.1s both;
}
body.editorial [data-split-letters] .word.from-left { --dir: -1; }
body.editorial [data-split-letters] .word.from-right { --dir: 1; }
@keyframes h-word-slide {
  from { transform: translateX(calc(var(--dir) * 55%)); }
  to { transform: translateX(0); }
}
body.editorial [data-split-letters] .word.from-left .letter,
body.editorial [data-split-letters] .word.from-right .letter {
  opacity: 0;
  filter: blur(12px);
  animation: h-letter-resolve 0.75s var(--h-ease) forwards;
  animation-delay: calc(var(--i) * 55ms + 240ms);
}
@keyframes h-letter-resolve {
  to { opacity: 1; filter: blur(0); }
}

/* Single-word titles keep the masked rise */
body.editorial [data-split-letters] .word.rise {
  overflow: hidden;
  padding-bottom: 0.08em;
  vertical-align: bottom;
}
body.editorial [data-split-letters] .word.rise .letter {
  opacity: 0;
  transform: translateY(105%);
  animation: h-letter-pop 0.85s var(--h-ease) forwards;
  animation-delay: calc(var(--i) * 42ms + 260ms);
}
@keyframes h-letter-pop {
  to { opacity: 1; transform: translateY(0); }
}

body.editorial [data-split-letters] .letter { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  body.editorial [data-split-letters] .word,
  body.editorial [data-split-letters] .letter {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.h-hero-sub {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding: 0 calc(5vw + 72px) 72px 5vw;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: h-sub-in 1s var(--h-ease) 0.9s forwards;
}
@keyframes h-sub-in {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .h-hero-sub { animation: none; opacity: 1; transform: none; }
}
.h-hero-sub p {
  font-family: var(--h-font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--h-parchment);
  max-width: 38ch;
  opacity: 0.92;
  margin: 0;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
}
.h-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.h-scroll-cue {
  position: absolute;
  z-index: 1;
  right: 5vw;
  bottom: 24px;
  writing-mode: vertical-rl;
  font-family: var(--h-font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--h-parchment);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 8px;
}
.h-scroll-cue::after {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--h-parchment);
  opacity: 0.5;
  animation: h-cue 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes h-cue {
  0%, 100% { transform: scaleY(0.35); opacity: 0.25; }
  50% { transform: scaleY(1); opacity: 0.6; }
}
@media (prefers-reduced-motion: reduce) {
  .h-scroll-cue::after { animation: none; }
}
@media (max-width: 900px) {
  .h-scroll-cue { display: none; }
  .h-hero-sub { padding-right: 5vw; }
}

/* ---------- Compact page-header band (inner pages) ---------- */

.h-page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--h-midnight);
}
.h-page-hero .h-hero-media img { animation: none; transform: scale(1.02); }
.h-page-hero .h-hero-media::after {
  background: linear-gradient(180deg, rgba(32, 28, 23, 0.6) 0%, rgba(32, 28, 23, 0.6) 40%, rgba(32, 28, 23, 0.9) 100%);
}
.h-page-hero .h-hero-headline { padding-bottom: 32px; }
.h-page-hero-plain { min-height: 40vh; background: var(--h-midnight); }
.h-page-hero .h-page-lede {
  position: relative;
  z-index: 1;
  padding: 0 5vw 56px;
  font-family: var(--h-font-sans);
  font-size: 15px;
  color: var(--h-parchment);
  opacity: 0;
  max-width: 56ch;
  transform: translateY(14px);
  animation: h-sub-in 1s var(--h-ease) 0.75s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .h-page-hero .h-page-lede { animation: none; opacity: 0.85; transform: none; }
}

/* ---------- Ghost buttons ---------- */

.h-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--h-parchment);
  color: var(--h-parchment);
  border-radius: 3px;
  padding: 16px 26px;
  font-family: var(--h-font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.h-btn:hover { background: var(--h-parchment); color: var(--h-onyx); transform: translateY(-2px); }
.h-btn-dark { border-color: var(--h-onyx); color: var(--h-onyx); }
.h-btn-dark:hover { background: var(--h-onyx); color: var(--h-parchment); }

body.editorial .btn {
  border-radius: 3px;
  font-family: var(--h-font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--h-onyx);
  background: transparent;
  color: var(--h-onyx);
}
body.editorial .btn:hover { background: var(--h-onyx); color: var(--h-parchment); }
body.editorial .btn-primary { background: transparent; border-color: var(--h-onyx); color: var(--h-onyx); }
body.editorial .btn-primary:hover { background: var(--h-onyx); color: var(--h-parchment); }
body.editorial .btn-ghost { border-color: var(--h-stone); color: var(--h-onyx); }
body.editorial .btn-ghost:hover { background: var(--h-onyx); border-color: var(--h-onyx); color: var(--h-parchment); }
body.editorial .btn-on-dark { border-color: var(--h-parchment); color: var(--h-parchment); background: transparent; }
body.editorial .btn-on-dark:hover { background: var(--h-parchment); color: var(--h-onyx); }

/* ---------- Editorial sections on the parchment canvas ---------- */

.h-section { padding: 100px 5vw; }
.h-section-tight { padding: 64px 5vw; }
.h-divider { border: none; border-top: 1px solid var(--h-stone); margin: 0; }

.h-eyebrow,
body.editorial .eyebrow {
  display: block;
  font-family: var(--h-font-sans) !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--h-walnut) !important;
  margin-bottom: 18px;
}

body.editorial .h-heading,
body.editorial h1:not(.h-hero-wordmark),
body.editorial h2,
body.editorial h3 {
  font-family: var(--h-font-display);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--h-onyx);
}
body.editorial h1:not(.h-hero-wordmark) { font-size: clamp(2.6rem, 6vw, 4.6rem); }
body.editorial h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
body.editorial h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); letter-spacing: -0.01em; }
body.editorial .h-heading-xl { font-size: clamp(2.6rem, 6vw, 4.8rem); margin: 0; }
body.editorial .h-heading-lg { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0; }

.h-lede,
body.editorial .lede p {
  font-family: var(--h-font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--h-espresso);
  max-width: 62ch;
}

.h-intro-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
@media (max-width: 860px) {
  .h-intro-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Theme list ---------- */

.h-theme-list { margin-top: 56px; }
.h-theme-row {
  display: grid;
  grid-template-columns: 64px 1fr 2fr;
  gap: 32px;
  align-items: baseline;
  padding: 30px 0;
  border-top: 1px solid var(--h-stone);
  transition: padding-left 0.4s var(--h-ease), background-color 0.4s var(--h-ease);
}
.h-theme-list .h-theme-row:last-child { border-bottom: 1px solid var(--h-stone); }
.h-theme-row:hover { padding-left: 16px; background: rgba(221, 208, 188, 0.4); }
.h-theme-num { font-family: var(--h-font-sans); font-size: 13px; color: var(--h-saffron); font-weight: 700; }
.h-theme-title {
  font-family: var(--h-font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--h-onyx);
  margin: 0;
  transition: color 0.3s var(--h-ease);
}
.h-theme-row:hover .h-theme-title { color: var(--h-saffron); }
.h-theme-desc { font-family: var(--h-font-sans); font-size: 14px; color: var(--h-espresso); max-width: 48ch; }
@media (max-width: 700px) {
  .h-theme-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- Ticker ---------- */

.h-ticker, body.editorial .ticker {
  border-top: 1px solid var(--h-stone);
  border-bottom: 1px solid var(--h-stone);
  overflow: hidden;
  padding: 22px 0;
  background: var(--h-linen) !important;
}
.h-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: h-ticker-scroll 30s linear infinite;
}
.h-ticker:hover .h-ticker-track { animation-play-state: paused; }
.h-ticker-item, body.editorial .ticker-item {
  font-family: var(--h-font-sans) !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--h-onyx) !important;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.h-ticker-item .dot, body.editorial .ticker-item .dot { color: var(--h-saffron) !important; }
@keyframes h-ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .h-ticker-track { animation: none; overflow-x: auto; }
}

/* ---------- Editorial spread (image + text) ---------- */

.h-spread { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.h-spread.h-reverse { direction: rtl; }
.h-spread.h-reverse > * { direction: ltr; }
.h-spread-media { overflow: hidden; }
.h-spread-media img { width: 100%; display: block; }
@media (max-width: 860px) {
  .h-spread { grid-template-columns: 1fr; gap: 28px; direction: ltr !important; }
}

/* ---------- Testimonial / quote card ---------- */

.h-quote, body.editorial .quote-block {
  max-width: 74ch;
  padding-top: 52px;
  border-top: 1px solid var(--h-stone);
  margin: 0 auto;
  text-align: left !important;
}
.h-quote-stars {
  color: var(--h-saffron);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.6s var(--h-ease) 0.2s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}
.h-quote.is-visible .h-quote-stars { opacity: 1; transform: scale(1); }
.h-quote blockquote, body.editorial .quote-block blockquote {
  font-family: var(--h-font-display) !important;
  font-weight: 300 !important;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem) !important;
  line-height: 1.25 !important;
  color: var(--h-onyx) !important;
  margin: 0 0 20px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.h-quote cite, body.editorial .quote-block cite {
  font-family: var(--h-font-sans) !important;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--h-walnut) !important;
}

/* ---------- Dark atmospheric CTA / bands ---------- */

.h-cta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--h-midnight);
}
.h-cta-media { position: absolute; inset: 0; overflow: hidden; }
.h-cta-media img { width: 100%; height: 100%; object-fit: cover; }
.h-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 28, 23, 0.92) 0%, rgba(32, 28, 23, 0.8) 45%, rgba(32, 28, 23, 0.62) 100%);
}
.h-cta-content { position: relative; z-index: 1; padding: 0 5vw; text-align: left; }
.h-cta .h-eyebrow { color: var(--h-saffron) !important; }
body.editorial .h-cta .h-heading,
body.editorial .h-cta h2 {
  color: var(--h-parchment);
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.6);
}
body.editorial .h-cta p {
  font-family: var(--h-font-sans);
  color: var(--h-parchment);
  opacity: 0.9;
  max-width: 46ch;
  margin: 20px 0 32px;
  font-size: 15px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
}

body.editorial .band-olive { background: var(--h-midnight) !important; }
body.editorial .band-olive h2,
body.editorial .band-olive h3 { color: var(--h-parchment); }
body.editorial .band-olive p { color: rgba(236, 226, 211, 0.8) !important; }
body.editorial .band-olive .eyebrow { color: var(--h-saffron) !important; }
body.editorial .band-cream-deep { background: var(--h-linen) !important; }

/* ---------- Cards, tags, sharp geometry ---------- */

body.editorial .category-card,
body.editorial .course-row,
body.editorial .recipe-card,
body.editorial .note-card {
  border-radius: 0;
  border: 1px solid var(--h-stone);
  background: transparent;
  box-shadow: none;
}
body.editorial .category-card:hover,
body.editorial .recipe-card:hover {
  background: var(--h-linen);
  border-color: var(--h-onyx);
  transform: translateY(-4px);
}
body.editorial .course-row:hover,
body.editorial .course-row.is-open { border-color: var(--h-onyx); }
body.editorial .course-toggle { color: var(--h-onyx); font-family: var(--h-font-sans); }
body.editorial .course-toggle:hover { color: var(--h-saffron); }
body.editorial .course-details-inner > div { border-top-color: var(--h-stone); }
body.editorial .course-signoff { color: var(--h-saffron); font-family: var(--h-font-display); }

body.editorial .tag { border-radius: 3px; font-family: var(--h-font-sans); border-color: var(--h-stone); }
body.editorial .tag-olive,
body.editorial .tag-gold,
body.editorial .tag-terracotta { color: var(--h-saffron); }
body.editorial .price { font-family: var(--h-font-display); color: var(--h-onyx); font-weight: 500; }

body.editorial .gallery-grid figure,
body.editorial .gallery-grid img,
body.editorial .split-image,
body.editorial .split-image img,
body.editorial .hero-image,
body.editorial .g-fill { border-radius: 0 !important; }
body.editorial .g-fill { background: var(--h-midnight); color: var(--h-parchment); font-family: var(--h-font-display); font-weight: 300; }

/* ---------- Forms ---------- */

body.editorial .field input,
body.editorial .field textarea {
  border-radius: 3px;
  border-color: var(--h-stone);
  background: transparent;
  font-family: var(--h-font-sans);
  color: var(--h-onyx);
}
body.editorial .field input:focus,
body.editorial .field textarea:focus { outline-color: var(--h-saffron); border-color: var(--h-saffron); }
body.editorial .field label { font-family: var(--h-font-sans); color: var(--h-onyx); }
body.editorial .map-embed { border-radius: 0; border-color: var(--h-stone); }
body.editorial .form-status.ok { background: rgba(201, 138, 68, 0.15); color: var(--h-espresso); }
body.editorial .form-status.error { background: rgba(193, 80, 44, 0.12); color: #a5471f; }

/* ---------- Modal ---------- */

body.editorial .modal { border-radius: 0; border: 1px solid var(--h-stone); background: var(--h-parchment); }
body.editorial .modal-close:hover { background: var(--h-linen); }
body.editorial .modal-price { font-family: var(--h-font-display); color: var(--h-saffron); }
body.editorial .success-icon { background: var(--h-onyx); border-radius: 3px; }

/* ---------- Stats / count-up ---------- */

body.editorial .count-up { font-family: var(--h-font-display); font-weight: 300; }

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

body.editorial .site-footer { background: var(--h-onyx); }
body.editorial .footer-grid { border-bottom-color: rgba(236, 226, 211, 0.15); }
body.editorial .footer-bottom { color: rgba(236, 226, 211, 0.55); }
body.editorial .footer-grid h4 { font-family: var(--h-font-sans); }

/* ============================================================
   STORY PAGE (Über mich) — light parchment hero variant
   ============================================================ */

/* Dark nav text while the transparent header sits over a light hero */
body.editorial.hero-light .site-header:not(.is-scrolled) .brand,
body.editorial.hero-light .site-header:not(.is-scrolled) .nav-toggle { color: var(--h-onyx); }
@media (min-width: 861px) {
  body.editorial.hero-light .site-header:not(.is-scrolled) .main-nav a { color: var(--h-onyx); }
  body.editorial.hero-light .site-header:not(.is-scrolled) .btn-primary {
    border-color: var(--h-onyx);
    color: var(--h-onyx);
  }
  body.editorial.hero-light .site-header:not(.is-scrolled) .btn-primary:hover {
    background: var(--h-onyx);
    color: var(--h-parchment);
  }
}

.h-story-hero {
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 150px 5vw 90px;
  text-align: center;
  background: var(--h-parchment);
}
.h-story-headline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: clamp(16px, 3vw, 44px);
  width: 100%;
  max-width: 1200px;
}
.h-story-label {
  font-family: var(--h-font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--h-espresso);
  padding-bottom: 0.55em;
  opacity: 0;
  animation: h-label-in 0.9s var(--h-ease) 0.9s forwards;
}
.h-story-label:first-child { text-align: right; }
.h-story-label:last-child { text-align: left; }
body.editorial .h-story-hero .h-story-title {
  font-family: var(--h-font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 12.4vw, 8.75rem);
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--h-onyx);
  margin: 0;
}
body.editorial .h-story-hero .h-story-title .word { display: block; }
.h-story-headline { max-width: 1260px; }
.h-story-figure {
  width: min(380px, 62vw);
  margin: clamp(40px, 7vh, 72px) auto 0;
  aspect-ratio: 4 / 3;
}
.h-story-figure img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
.h-story-tagline {
  font-family: var(--h-font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--h-espresso);
  max-width: 48ch;
  margin: 40px auto 0;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .h-story-headline { grid-template-columns: 1fr 1fr; grid-template-areas: "title title" "la lb"; row-gap: 22px; }
  body.editorial .h-story-title { grid-area: title; }
  .h-story-label:first-child { grid-area: la; text-align: left; padding-bottom: 0; }
  .h-story-label:last-child { grid-area: lb; text-align: right; padding-bottom: 0; }
}

/* Timeline with a scroll-driven progress line */
.h-timeline-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.h-timeline-head { position: sticky; top: 130px; }
.h-timeline { list-style: none; margin: 0; padding: 0 0 0 44px; position: relative; }
.h-timeline-line {
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--h-stone);
}
.h-timeline-progress {
  position: absolute;
  inset: 0;
  background: var(--h-saffron);
  transform-origin: top;
  transform: scaleY(0);
}
.h-tl-item { position: relative; padding: 0 0 56px; }
.h-tl-item:last-child { padding-bottom: 0; }
.h-tl-dot {
  position: absolute;
  left: -40px;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--h-parchment);
  border: 1px solid var(--h-stone);
  transition: background-color 0.5s var(--h-ease), border-color 0.5s var(--h-ease), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.h-tl-item.is-visible .h-tl-dot { background: var(--h-saffron); border-color: var(--h-saffron); transform: scale(1.35); }
.h-tl-label {
  display: block;
  font-family: var(--h-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--h-saffron);
  margin-bottom: 10px;
}
body.editorial .h-tl-item h3 { margin: 0 0 12px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.h-tl-item p { font-family: var(--h-font-sans); font-size: 15px; line-height: 1.6; max-width: 52ch; margin: 0; }
@media (max-width: 900px) {
  .h-timeline-wrap { grid-template-columns: 1fr; gap: 40px; }
  .h-timeline-head { position: static; }
}

/* Philosophy — three numbered columns */
.h-pillars { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--h-stone); margin-top: 56px; }
.h-pillar { padding: 40px 32px 40px 0; border-right: 1px solid var(--h-stone); }
.h-pillar + .h-pillar { padding-left: 32px; }
.h-pillar:last-child { border-right: none; }
.h-pillar-num { font-family: var(--h-font-sans); font-size: 13px; font-weight: 700; color: var(--h-saffron); display: block; margin-bottom: 22px; }
body.editorial .h-pillar h3 { margin: 0 0 14px; font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
.h-pillar p { font-family: var(--h-font-sans); font-size: 14px; line-height: 1.65; margin: 0; }
@media (max-width: 860px) {
  .h-pillars { grid-template-columns: 1fr; }
  .h-pillar { border-right: none; border-bottom: 1px solid var(--h-stone); padding: 32px 0; }
  .h-pillar + .h-pillar { padding-left: 0; }
  .h-pillar:last-child { border-bottom: none; }
}

/* Mosaic with a giant word drifting behind it */
.h-mosaic-section { position: relative; overflow: hidden; padding: 120px 5vw; }
.h-drift {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--h-font-display);
  font-weight: 300;
  font-size: clamp(6rem, 22vw, 20rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--h-stone);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.h-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: start;
}
.h-mosaic figure { margin: 0; overflow: hidden; }
.h-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.h-mosaic .m1 { grid-column: 1 / span 4; aspect-ratio: 3 / 4; margin-top: 80px; }
.h-mosaic .m2 { grid-column: 5 / span 5; aspect-ratio: 4 / 3; }
.h-mosaic .m3 { grid-column: 10 / span 3; aspect-ratio: 3 / 4; margin-top: 140px; }
.h-mosaic .m4 { grid-column: 3 / span 4; aspect-ratio: 4 / 3; margin-top: -40px; }
.h-mosaic .m5 { grid-column: 8 / span 4; aspect-ratio: 3 / 4; margin-top: 40px; }
@media (max-width: 860px) {
  .h-mosaic { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .h-mosaic figure { grid-column: auto !important; margin-top: 0 !important; }
}

/* Pull quote — large, centered, whisper weight */
.h-pullquote { text-align: center; max-width: 30ch; margin: 0 auto; }
body.editorial .h-pullquote blockquote {
  font-family: var(--h-font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--h-onyx);
}
.h-pullquote cite { font-family: var(--h-font-sans); font-style: normal; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--h-walnut); }

/* ============================================================
   KURSE — menu-card index
   ============================================================ */

.h-menu-section { position: relative; }
.h-menu-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.h-menu-head { position: sticky; top: 130px; }
.h-menu-count {
  margin-top: 28px;
  font-family: var(--h-font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--h-walnut);
}
.h-menu-count span { font-family: var(--h-font-display); font-size: 2.2rem; font-weight: 300; color: var(--h-onyx); letter-spacing: 0; margin-right: 6px; vertical-align: -6px; }

/* Filter chips */
.h-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.h-filter-btn {
  background: transparent;
  border: 1px solid var(--h-stone);
  border-radius: 3px;
  color: var(--h-espresso);
  font-family: var(--h-font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
  transition: color 0.3s var(--h-ease), border-color 0.3s var(--h-ease), background-color 0.3s var(--h-ease), transform 0.3s var(--h-ease);
}
.h-filter-btn:hover { border-color: var(--h-onyx); color: var(--h-onyx); transform: translateY(-2px); }
.h-filter-btn.is-active { background: var(--h-onyx); border-color: var(--h-onyx); color: var(--h-parchment); }

/* Rows: open hairline "menu" instead of boxed cards */
.h-menu { border-top: 1px solid var(--h-stone); }
body.editorial .h-course {
  border: none;
  border-bottom: 1px solid var(--h-stone);
  border-radius: 0;
  padding: 0;
  background: transparent;
  transition: opacity 0.5s var(--h-ease), transform 0.9s var(--h-ease), background-color 0.4s var(--h-ease);
}
body.editorial .h-course.is-hidden { display: none; }
body.editorial .h-course:hover,
body.editorial .h-course.is-open { border-color: var(--h-stone); background: rgba(221, 208, 188, 0.35); }

body.editorial .h-course .course-main {
  grid-template-columns: 56px 1fr auto;
  grid-template-areas: "num body price" "num cta cta";
  gap: 10px 28px;
  align-items: start;
  padding: 34px 20px 30px 0;
  transition: padding-left 0.45s var(--h-ease);
}
body.editorial .h-course:hover .course-main,
body.editorial .h-course.is-open .course-main { padding-left: 16px; }

.h-course-num {
  grid-area: num;
  font-family: var(--h-font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--h-saffron);
  padding-top: 8px;
}
body.editorial .h-course .course-body { grid-area: body; }
.h-course-tag {
  display: block;
  font-family: var(--h-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--h-walnut);
  margin-bottom: 10px;
}
.h-course-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -2px 0 12px;
  font-family: var(--h-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--h-saffron);
}
.h-course-date::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--h-saffron); flex: 0 0 auto; }
.h-course-date em { font-style: italic; font-weight: 500; color: var(--h-walnut); margin: 0 2px; }
body.editorial .modal-date { font-family: var(--h-font-sans); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--h-saffron); margin: -6px 0 18px; }
body.editorial .field select {
  width: 100%;
  border: 1px solid var(--h-stone);
  border-radius: 3px;
  background: transparent;
  padding: 12px 14px;
  font-family: var(--h-font-sans);
  font-size: 15px;
  color: var(--h-onyx);
}
body.editorial .field select:focus { outline-color: var(--h-saffron); border-color: var(--h-saffron); }
body.editorial .h-course .h-course-title {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.05;
  margin: 0 0 12px;
  transition: color 0.35s var(--h-ease), transform 0.45s var(--h-ease);
}
body.editorial .h-course:hover .h-course-title,
body.editorial .h-course.is-open .h-course-title { color: var(--h-saffron); }
body.editorial .h-course .course-body p {
  font-family: var(--h-font-sans);
  font-size: 14px;
  color: var(--h-espresso);
  max-width: 52ch;
  margin: 0;
}
.h-course-price { grid-area: price; text-align: right; padding-top: 4px; white-space: nowrap; }
body.editorial .h-course .price {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 300;
  color: var(--h-onyx);
}
body.editorial .h-course .course-cta { grid-area: cta; margin-top: 6px; }
body.editorial .h-course .course-toggle { padding-left: 0; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

/* Expanded details: image + text */
body.editorial .h-course .course-details-inner > .h-course-detail {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
  max-width: none;
  margin: 0 20px 0 0;
  padding: 0 0 40px 84px;
  border-top: none;
}
.h-course-fig { margin: 0; overflow: hidden; aspect-ratio: 4 / 5; }
.h-course-fig img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.12);
  clip-path: inset(0 0 100% 0);
  transition: transform 1.2s var(--h-ease) 0.1s, clip-path 1s var(--h-ease) 0.1s;
}
body.editorial .h-course.is-open .h-course-fig img { transform: scale(1); clip-path: inset(0 0 0 0); }
body.editorial .h-course .course-details-inner p { font-family: var(--h-font-sans); font-size: 14px; color: var(--h-espresso); }
.h-menu-empty { padding: 40px 0; font-family: var(--h-font-sans); font-size: 14px; color: var(--h-espresso); }

@media (max-width: 1023px) {
  .h-menu-wrap { grid-template-columns: 1fr; gap: 40px; }
  .h-menu-head { position: static; }
}
@media (max-width: 700px) {
  body.editorial .h-course .course-main {
    grid-template-columns: 1fr;
    grid-template-areas: "num" "body" "price" "cta";
    gap: 8px;
    padding: 26px 0;
  }
  body.editorial .h-course:hover .course-main,
  body.editorial .h-course.is-open .course-main { padding-left: 0; }
  .h-course-price { text-align: left; padding-top: 0; }
  body.editorial .h-course .course-details-inner > .h-course-detail { grid-template-columns: 1fr; gap: 20px; padding: 0 0 28px; margin: 0; }
  .h-course-fig { aspect-ratio: 4 / 3; }
}

/* Steps list (how an evening unfolds) */
.h-steps { list-style: none; margin: 40px 0 0; padding: 0; }
.h-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--h-stone);
}
.h-step:last-child { border-bottom: 1px solid var(--h-stone); }
.h-step-num { font-family: var(--h-font-sans); font-size: 13px; font-weight: 700; color: var(--h-saffron); padding-top: 6px; }
body.editorial .h-step h3 { margin: 0 0 8px; font-size: clamp(1.3rem, 2vw, 1.7rem); }
.h-step p { font-family: var(--h-font-sans); font-size: 14px; line-height: 1.65; color: var(--h-espresso); margin: 0; }

/* ============================================================
   KONTAKT
   ============================================================ */

.h-contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.h-contact-head { position: sticky; top: 130px; }
.h-contact-sign { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--h-stone); display: flex; flex-direction: column; gap: 4px; }
.h-contact-sign-name { font-family: var(--h-font-display); font-size: 1.9rem; font-weight: 400; font-style: italic; color: var(--h-onyx); line-height: 1; }
.h-contact-sign-role { font-family: var(--h-font-sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--h-walnut); }

.h-contact-rows { border-top: 1px solid var(--h-stone); }
.h-contact-row {
  display: grid;
  grid-template-columns: 48px 120px 1fr 40px;
  gap: 24px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--h-stone);
  text-decoration: none;
  color: var(--h-onyx);
  transition: padding-left 0.45s var(--h-ease), background-color 0.4s var(--h-ease);
}
.h-contact-row:hover { padding-left: 16px; background: rgba(221, 208, 188, 0.35); }
.h-contact-num { font-family: var(--h-font-sans); font-size: 13px; font-weight: 700; color: var(--h-saffron); }
.h-contact-label { font-family: var(--h-font-sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--h-walnut); }
.h-contact-value {
  font-family: var(--h-font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  transition: color 0.35s var(--h-ease);
}
.h-contact-value small { display: block; font-size: 0.55em; color: var(--h-espresso); margin-top: 6px; letter-spacing: 0; }
.h-contact-row:hover .h-contact-value { color: var(--h-saffron); }
.h-contact-arrow {
  font-family: var(--h-font-sans);
  font-size: 22px;
  color: var(--h-onyx);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s var(--h-ease), transform 0.5s var(--h-ease);
}
.h-contact-row:hover .h-contact-arrow { opacity: 1; transform: translateX(0); }

/* Dark form stage */
.h-form-stage { position: relative; overflow: hidden; background: var(--h-midnight); padding: 120px 5vw; }
.h-drift-dark { -webkit-text-stroke: 1px rgba(236, 226, 211, 0.12); }
.h-form-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; }
body.editorial .h-form-stage .h-heading,
body.editorial .h-form-stage h2 { color: var(--h-parchment); }
.h-form-stage .h-eyebrow { color: var(--h-saffron) !important; }
.h-form-intro p { font-family: var(--h-font-sans); font-size: 14px; color: rgba(236, 226, 211, 0.7); margin-top: 22px; max-width: 40ch; }

.h-form { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 36px; }
.h-field { position: relative; padding-left: 36px; }
.h-field-full { grid-column: 1 / -1; }
.h-field-num { position: absolute; left: 0; top: 2px; font-family: var(--h-font-sans); font-size: 12px; font-weight: 700; color: var(--h-saffron); }
.h-field label {
  display: block;
  font-family: var(--h-font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 226, 211, 0.6);
  margin-bottom: 6px;
  transition: color 0.3s var(--h-ease);
}
.h-field:focus-within label { color: var(--h-saffron); }
.h-field input,
.h-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(236, 226, 211, 0.25);
  border-radius: 0;
  padding: 10px 0 12px;
  font-family: var(--h-font-display);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--h-parchment);
  outline: none;
  resize: vertical;
  transition: border-color 0.3s var(--h-ease);
}
.h-field input::placeholder,
.h-field textarea::placeholder { color: rgba(236, 226, 211, 0.3); font-size: 1.1rem; font-style: italic; }
.h-field::after {
  content: "";
  position: absolute;
  left: 36px; right: 0; bottom: 0;
  height: 1px;
  background: var(--h-saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--h-ease);
}
.h-field:focus-within::after { transform: scaleX(1); }
.h-field textarea { min-height: 120px; }

.h-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 14px; }
.h-chip {
  background: transparent;
  border: 1px solid rgba(236, 226, 211, 0.3);
  border-radius: 3px;
  color: rgba(236, 226, 211, 0.85);
  font-family: var(--h-font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
  transition: color 0.3s var(--h-ease), border-color 0.3s var(--h-ease), background-color 0.3s var(--h-ease), transform 0.3s var(--h-ease);
}
.h-chip:hover { border-color: var(--h-parchment); color: var(--h-parchment); transform: translateY(-2px); }
.h-chip.is-active { background: var(--h-saffron); border-color: var(--h-saffron); color: var(--h-midnight); }

.h-form-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; padding-left: 36px; }
.h-btn-submit { cursor: pointer; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.h-btn-submit.is-loading { opacity: 0.7; cursor: progress; }
.h-form-stage .form-status { margin: 0; flex: 1; min-width: 240px; }
.h-form-stage .form-status.ok { background: rgba(201, 138, 68, 0.18); color: var(--h-parchment); }
.h-form-stage .form-status.error { background: rgba(193, 80, 44, 0.2); color: #f1c9b8; }
.h-form-stage .form-status a { color: var(--h-saffron); }

/* Full-bleed map with floating card */
.h-map-section { position: relative; }
.h-map-frame { height: min(70vh, 640px); overflow: hidden; }
.h-map-frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(1) sepia(0.35) contrast(0.95) brightness(0.98);
  clip-path: inset(0 0 100% 0);
  transform: scale(1.08);
  transition: clip-path 1.2s var(--h-ease), transform 1.6s var(--h-ease);
}
.h-map-frame.is-visible iframe { clip-path: inset(0 0 0 0); transform: scale(1); }
.h-map-card {
  position: absolute;
  left: 5vw;
  bottom: 48px;
  z-index: 2;
  background: var(--h-parchment);
  border: 1px solid var(--h-stone);
  padding: 32px 36px;
  max-width: 320px;
}
body.editorial .h-map-card h3 { margin: 0 0 8px; font-size: 1.7rem; }
.h-map-card p { font-family: var(--h-font-sans); font-size: 14px; color: var(--h-espresso); margin: 0 0 22px; }

/* FAQ */
.h-faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; }
.h-faq { border-top: 1px solid var(--h-stone); }
.h-faq-item { border-bottom: 1px solid var(--h-stone); }
.h-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: var(--h-font-display);
  font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  color: var(--h-onyx);
  transition: color 0.3s var(--h-ease), padding-left 0.4s var(--h-ease);
}
.h-faq-item summary::-webkit-details-marker { display: none; }
.h-faq-item summary:hover,
.h-faq-item[open] summary { color: var(--h-saffron); padding-left: 12px; }
.h-faq-icon { position: relative; flex: 0 0 18px; height: 18px; }
.h-faq-icon::before,
.h-faq-icon::after { content: ""; position: absolute; left: 0; top: 50%; width: 18px; height: 1px; background: currentColor; transition: transform 0.45s var(--h-ease); }
.h-faq-icon::after { transform: rotate(90deg); }
.h-faq-item[open] .h-faq-icon::after { transform: rotate(0deg); }
.h-faq-body { padding: 0 12px 28px; }
.h-faq-body p { font-family: var(--h-font-sans); font-size: 14px; line-height: 1.65; color: var(--h-espresso); max-width: 58ch; margin: 0; animation: h-faq-in 0.6s var(--h-ease) both; }
@keyframes h-faq-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1023px) {
  .h-contact-wrap, .h-form-wrap, .h-faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .h-contact-head { position: static; }
}
@media (max-width: 700px) {
  .h-contact-row { grid-template-columns: 32px 1fr 24px; grid-template-areas: "num label arrow" "num value arrow"; gap: 6px 16px; padding: 26px 0; }
  .h-contact-num { grid-area: num; }
  .h-contact-label { grid-area: label; }
  .h-contact-value { grid-area: value; }
  .h-contact-arrow { grid-area: arrow; }
  .h-contact-row:hover { padding-left: 0; }
  .h-form-stage { padding: 80px 5vw; }
  .h-form { grid-template-columns: 1fr; gap: 32px; }
  .h-field input, .h-field textarea { font-size: 1.3rem; }
  .h-map-frame { height: 60vh; }
  .h-map-card { position: static; max-width: none; border-top: none; padding: 28px 5vw; }
}

/* ============================================================
   REZEPTE
   ============================================================ */

/* Sticky course index under the fixed header */
.h-course-index {
  position: sticky;
  top: var(--header-h, 72px);
  z-index: 20;
  background: rgba(236, 226, 211, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--h-stone);
  border-bottom: 1px solid var(--h-stone);
}
.h-course-index-inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.h-course-index-inner::-webkit-scrollbar { display: none; }
.h-course-index a {
  position: relative;
  flex: 1 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 24px 18px 0;
  margin-right: 32px;
  font-family: var(--h-font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--h-walnut);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s var(--h-ease);
}
.h-course-index a span { font-family: var(--h-font-display); font-size: 1.3rem; font-weight: 400; color: var(--h-stone); letter-spacing: 0; transition: color 0.3s var(--h-ease); }
.h-course-index a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--h-saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--h-ease);
}
.h-course-index a:hover,
.h-course-index a.is-active { color: var(--h-onyx); }
.h-course-index a:hover span,
.h-course-index a.is-active span { color: var(--h-saffron); }
.h-course-index a.is-active::after { transform: scaleX(1); }

/* One course = one spread with a giant roman numeral behind it */
.h-recipe-course {
  position: relative;
  overflow: hidden;
  padding: 120px 5vw;
  scroll-margin-top: 140px;
}
.h-recipe-alt { background: var(--h-linen); }
.h-recipe-roman {
  position: absolute;
  right: 2vw;
  top: 40px;
  font-family: var(--h-font-display);
  font-weight: 300;
  font-size: clamp(9rem, 26vw, 24rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--h-stone);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--h-ease), transform 1.4s var(--h-ease);
}
.h-recipe-course.is-visible .h-recipe-roman { opacity: 1; transform: translateY(0); }
.h-recipe-course .h-spread { position: relative; z-index: 1; }
.h-recipe-course .h-spread-media { aspect-ratio: 4 / 5; max-height: 640px; }
.h-recipe-course .h-spread-media img { height: 100%; object-fit: cover; }
.h-recipe-text .h-btn small { font-size: 11px; opacity: 0.7; letter-spacing: 0.06em; margin-left: 2px; }

/* Spec sheet for the featured recipe */
.h-spec { margin: 32px 0 36px; border-top: 1px solid var(--h-stone); }
.h-spec > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--h-stone);
  transition: padding-left 0.4s var(--h-ease);
}
.h-spec > div:hover { padding-left: 8px; }
.h-spec dt { font-family: var(--h-font-sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--h-walnut); padding-top: 4px; }
.h-spec dd { margin: 0; font-family: var(--h-font-display); font-size: 1.3rem; font-weight: 400; color: var(--h-onyx); line-height: 1.15; }
.h-spec dd small { display: block; font-family: var(--h-font-sans); font-size: 12px; color: var(--h-espresso); margin-top: 4px; }

/* Dark pillars section */
.h-dark-section { background: var(--h-midnight); }
body.editorial .h-dark-section .h-heading,
body.editorial .h-dark-section h2,
body.editorial .h-dark-section h3 { color: var(--h-parchment); }
.h-dark-section .h-eyebrow { color: var(--h-saffron) !important; }
.h-pillars-dark { border-top-color: rgba(236, 226, 211, 0.18); }
.h-pillars-dark .h-pillar { border-right-color: rgba(236, 226, 211, 0.18); }
.h-pillars-dark .h-pillar p { color: rgba(236, 226, 211, 0.72); }

@media (max-width: 860px) {
  .h-recipe-course { padding: 80px 5vw; scroll-margin-top: 120px; }
  .h-recipe-roman { top: 12px; right: 4vw; font-size: 9rem; }
  .h-recipe-course .h-spread-media { aspect-ratio: 4 / 3; }
  .h-pillars-dark .h-pillar { border-right: none; border-bottom-color: rgba(236, 226, 211, 0.18); }
  .h-course-index a { margin-right: 20px; padding: 14px 16px 14px 0; }
  .h-spec > div { grid-template-columns: 100px 1fr; }
}

/* ============================================================
   GALERIE
   ============================================================ */

.h-gallery-hint { font-family: var(--h-font-sans); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--h-walnut); margin-top: 22px; }
.h-gallery-section { position: relative; overflow: hidden; padding: 40px 5vw 120px; }
.h-gallery-section .h-drift { top: 38%; }
.h-gallery {
  position: relative;
  z-index: 1;
  columns: 3;
  column-gap: 28px;
}
.h-gallery-item {
  position: relative;
  margin: 0 0 28px;
  break-inside: avoid;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--h-linen);
}
.h-gallery-item img { width: 100%; height: auto; display: block; }
.h-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32, 28, 23, 0.72) 0%, rgba(32, 28, 23, 0) 45%);
  opacity: 0;
  transition: opacity 0.5s var(--h-ease);
  pointer-events: none;
}
.h-gallery-item figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--h-font-display);
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--h-parchment);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--h-ease) 0.05s, transform 0.6s var(--h-ease) 0.05s;
  pointer-events: none;
}
.h-gallery-item figcaption span { font-family: var(--h-font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--h-saffron); }
.h-gallery-item:hover::after,
.h-gallery-item:focus-visible::after { opacity: 1; }
.h-gallery-item:hover figcaption,
.h-gallery-item:focus-visible figcaption { opacity: 1; transform: translateY(0); }
/* gentle zoom on hover, on top of the reveal transform once visible */
body.editorial .h-gallery-item.is-visible img { transition: transform 1.1s var(--h-ease), clip-path 1s var(--h-ease); }
body.editorial .h-gallery-item.is-visible:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .h-gallery { columns: 2; column-gap: 18px; } .h-gallery-item { margin-bottom: 18px; } }
@media (max-width: 560px) { .h-gallery { columns: 1; } .h-gallery-section { padding-bottom: 80px; } }

/* Lightbox */
.h-lightbox { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; }
.h-lightbox[hidden] { display: none; }
.h-lightbox-backdrop { position: absolute; inset: 0; background: rgba(32, 28, 23, 0.94); opacity: 0; transition: opacity 0.45s var(--h-ease); }
.h-lightbox.is-open .h-lightbox-backdrop { opacity: 1; }
.h-lightbox-dialog { position: relative; z-index: 1; width: 100%; height: 100%; display: grid; grid-template-columns: 72px 1fr 72px; align-items: center; padding: 72px 0; }
.h-lightbox-figure { margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; min-height: 0; }
.h-lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 200px);
  width: auto;
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.96) translateY(14px);
  transition: opacity 0.5s var(--h-ease), transform 0.7s var(--h-ease);
}
.h-lightbox.is-open .h-lightbox-figure img.is-in { opacity: 1; transform: scale(1) translateY(0); }
.h-lightbox-figure figcaption { display: flex; gap: 18px; align-items: baseline; margin-top: 20px; color: var(--h-parchment); font-family: var(--h-font-display); font-weight: 300; font-size: 1.3rem; }
.h-lightbox-counter { font-family: var(--h-font-sans); font-size: 11px; letter-spacing: 0.14em; color: var(--h-saffron); font-weight: 700; }
.h-lightbox-close,
.h-lightbox-nav {
  background: transparent;
  border: 1px solid rgba(236, 226, 211, 0.3);
  border-radius: 3px;
  color: var(--h-parchment);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s var(--h-ease), color 0.3s var(--h-ease), border-color 0.3s var(--h-ease), transform 0.3s var(--h-ease);
}
.h-lightbox-close svg, .h-lightbox-nav svg { width: 22px; height: 22px; }
.h-lightbox-close:hover, .h-lightbox-nav:hover { background: var(--h-parchment); color: var(--h-onyx); border-color: var(--h-parchment); }
.h-lightbox-close { position: absolute; top: 20px; right: 20px; }
.h-lightbox-nav { justify-self: center; }
.h-lightbox-prev:hover { transform: translateX(-3px); }
.h-lightbox-next:hover { transform: translateX(3px); }
body.h-lightbox-open { overflow: hidden; }
@media (max-width: 700px) {
  .h-lightbox-dialog { grid-template-columns: 1fr; padding: 72px 16px 90px; }
  .h-lightbox-figure img { max-height: calc(100vh - 220px); }
  .h-lightbox-nav { position: absolute; bottom: 20px; }
  .h-lightbox-prev { left: 16px; }
  .h-lightbox-next { right: 16px; }
}

/* ============================================================
   HOME — welcome + theme list
   ============================================================ */

.h-welcome { padding-top: 110px; }
.h-welcome-host { display: flex; align-items: center; gap: 18px; margin-top: 36px; }
.h-welcome-avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; border: 1px solid var(--h-stone); }
.h-welcome-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.h-welcome-sign { display: flex; flex-direction: column; gap: 2px; }
.h-welcome-sign em { font-family: var(--h-font-display); font-size: 1.6rem; font-weight: 400; color: var(--h-onyx); line-height: 1; }
.h-welcome-sign small { font-family: var(--h-font-sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--h-walnut); }
.h-welcome-facts { list-style: none; margin: 32px 0 0; padding: 0; border-top: 1px solid var(--h-stone); }
.h-welcome-facts li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--h-stone);
  transition: padding-left 0.4s var(--h-ease);
}
.h-welcome-facts li:hover { padding-left: 10px; }
.h-welcome-facts strong { font-family: var(--h-font-display); font-weight: 400; font-size: 1.35rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--h-onyx); }
.h-welcome-facts span { font-family: var(--h-font-sans); font-size: 13px; color: var(--h-espresso); }

.h-themes { position: relative; overflow: hidden; }
.h-themes .h-drift { top: 62%; }
.h-themes .container { position: relative; z-index: 1; }
.h-themes-head { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; align-items: end; }
.h-themes-note { font-family: var(--h-font-sans); font-size: 14px; line-height: 1.6; color: var(--h-espresso); max-width: 34ch; margin: 0 0 8px; }

/* Rows become links with a thumbnail that unfolds on hover */
body.editorial .h-theme-list .h-theme-row {
  grid-template-columns: 64px 1fr 2fr auto 28px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.h-theme-thumb {
  width: 0;
  height: 76px;
  overflow: hidden;
  border-radius: 0;
  transition: width 0.7s var(--h-ease);
}
.h-theme-thumb img { width: 120px; height: 100%; object-fit: cover; display: block; transform: scale(1.15); transition: transform 1s var(--h-ease); }
.h-theme-row:hover .h-theme-thumb { width: 120px; }
.h-theme-row:hover .h-theme-thumb img { transform: scale(1); }
.h-theme-arrow {
  font-family: var(--h-font-sans);
  font-size: 20px;
  color: var(--h-saffron);
  justify-self: end;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s var(--h-ease), transform 0.5s var(--h-ease);
}
.h-theme-row:hover .h-theme-arrow { opacity: 1; transform: translateX(0); }
.h-themes-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; margin-top: 48px; }
.h-themes-count { font-family: var(--h-font-sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--h-walnut); }
.h-themes-count strong { font-family: var(--h-font-display); font-size: 2rem; font-weight: 300; color: var(--h-onyx); letter-spacing: 0; margin-right: 8px; vertical-align: -5px; }

@media (max-width: 960px) {
  .h-themes-head { grid-template-columns: 1fr; gap: 20px; }
  .h-welcome { padding-top: 80px; }
}
@media (max-width: 700px) {
  body.editorial .h-theme-list .h-theme-row { grid-template-columns: 1fr 96px; grid-template-areas: "num thumb" "title thumb" "desc thumb"; gap: 6px 18px; }
  .h-theme-num { grid-area: num; }
  .h-theme-title { grid-area: title; }
  .h-theme-desc { grid-area: desc; }
  .h-theme-thumb { grid-area: thumb; width: 96px; height: 96px; align-self: center; }
  .h-theme-thumb img { width: 100%; transform: none; }
  .h-theme-arrow { display: none; }
  .h-welcome-facts li { grid-template-columns: 1fr; gap: 4px; }
}
@media (hover: none) {
  .h-theme-thumb { width: 96px; }
  .h-theme-thumb img { transform: none; }
  .h-themes-note { display: none; }
}

/* ============================================================
   HOME — layered features, statement, film strip
   ============================================================ */

.h-feature { position: relative; overflow: hidden; padding: 140px 5vw; }
.h-feature .h-drift { top: 50%; }
.h-feature-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 96px; align-items: center; position: relative; z-index: 1; }
.h-feature-reverse .h-feature-grid { direction: rtl; }
.h-feature-reverse .h-feature-grid > * { direction: ltr; }
.h-feature-media { position: relative; padding: 0 12% 12% 0; }
.h-feature-reverse .h-feature-media { padding: 0 0 12% 12%; }
.h-feature-main { aspect-ratio: 4 / 5; overflow: hidden; }
.h-feature-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.h-feature-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 10px solid var(--h-parchment);
  box-shadow: 0 30px 60px -30px rgba(32, 28, 23, 0.45);
  z-index: 2;
}
.h-feature-sub-left { right: auto; left: 0; }
.h-feature-sub img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Pop-in: fade + rise + slight tilt straightening */
body.editorial .h-pop {
  opacity: 0;
  transform: translateY(40px) rotate(-3deg);
  transition: opacity 0.9s var(--h-ease) 0.25s, transform 1.2s var(--h-ease) 0.25s;
}
body.editorial .h-pop.is-visible { opacity: 1; transform: translateY(0) rotate(0deg); }

/* Rotating stamp */
.h-stamp {
  position: absolute;
  top: -34px;
  left: -34px;
  width: 132px;
  height: 132px;
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.h-stamp-right { left: auto; right: -34px; }
.h-stamp svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(var(--rot, 0deg)); }
.h-stamp text { font-family: var(--h-font-sans); font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; fill: var(--h-onyx); }
.h-stamp-core {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--h-saffron);
  color: var(--h-midnight);
  display: grid; place-items: center;
  font-family: var(--h-font-display); font-size: 1.5rem; font-weight: 400;
}

.h-feature-text { position: relative; }
.h-feature-num {
  display: block;
  font-family: var(--h-font-display);
  font-weight: 300;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--h-stone);
  margin-bottom: 28px;
}
.h-feature-list { list-style: none; margin: 32px 0 0; padding: 0; border-top: 1px solid var(--h-stone); }
.h-feature-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--h-stone);
  font-family: var(--h-font-sans);
  font-size: 14px;
  color: var(--h-espresso);
}
.h-feature-list li::before { content: ""; position: absolute; left: 0; top: 50%; width: 14px; height: 1px; background: var(--h-saffron); }
.h-feature-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--h-stone); }
.h-feature-stats strong { display: block; font-family: var(--h-font-display); font-weight: 300; font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1; color: var(--h-onyx); }
.h-feature-stats > div > span { display: block; margin-top: 8px; font-family: var(--h-font-sans); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--h-walnut); }

/* Statement: words light up as you scroll */
.h-statement { padding: 60px 5vw 120px; }
body.editorial .h-statement-text {
  max-width: 24ch;
  margin: 0 auto;
  text-align: center;
  font-family: var(--h-font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.6vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--h-stone);
}
.h-statement-text .sw { transition: color 0.35s var(--h-ease); }
.h-statement-text .sw.is-lit { color: var(--h-onyx); }
@media (prefers-reduced-motion: reduce) {
  body.editorial .h-statement-text { color: var(--h-onyx); }
  body.editorial .h-pop { opacity: 1; transform: none; transition: none; }
}

/* Film strip */
.h-strip { overflow: hidden; padding: 20px 0 110px; }
.h-strip-track { display: flex; gap: 22px; width: max-content; padding-left: 5vw; will-change: transform; }
.h-strip figure { margin: 0; flex: 0 0 auto; width: clamp(200px, 22vw, 320px); aspect-ratio: 4 / 5; overflow: hidden; }
.h-strip figure:nth-child(even) { margin-top: 44px; aspect-ratio: 4 / 3; align-self: flex-start; }
.h-strip figure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--h-ease); }
.h-strip figure:hover img { transform: scale(1.05); }
.h-strip .h-pop:nth-child(2) { transition-delay: 0.35s; }
.h-strip .h-pop:nth-child(3) { transition-delay: 0.45s; }
.h-strip .h-pop:nth-child(4) { transition-delay: 0.55s; }
.h-strip .h-pop:nth-child(5) { transition-delay: 0.65s; }
.h-strip .h-pop:nth-child(6) { transition-delay: 0.75s; }

@media (max-width: 960px) {
  .h-feature { padding: 90px 5vw; }
  .h-feature-grid { grid-template-columns: 1fr; gap: 56px; direction: ltr !important; }
  .h-feature-media { padding: 0 14% 14% 0; }
  .h-feature-reverse .h-feature-media { padding: 0 0 14% 14%; }
  .h-stamp { width: 104px; height: 104px; top: -22px; left: -12px; }
  .h-stamp-right { left: auto; right: -12px; }
  .h-stamp-core { width: 50px; height: 50px; font-size: 1.2rem; }
  .h-feature-num { margin-bottom: 18px; }
  .h-statement { padding: 30px 5vw 80px; }
  .h-strip { padding-bottom: 70px; }
}
@media (max-width: 560px) {
  .h-feature-stats { gap: 14px; }
  .h-feature-sub { border-width: 6px; }
}

/* ============================================================
   SCROLL MOTION
   ============================================================ */

/* Base fade-up reveal — the is-visible rule must out-specify the base */
body.editorial .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--h-ease), transform 0.9s var(--h-ease);
  transition-delay: var(--d, 0s);
}
body.editorial .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Slide in from the side */
body.editorial .reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--h-ease), transform 0.9s var(--h-ease);
  transition-delay: var(--d, 0s);
}
body.editorial .reveal-left.is-visible { opacity: 1; transform: translateX(0); }

/* Word-by-word masked rise for section headings */
body.editorial [data-split-words] .w-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
body.editorial [data-split-words] .w-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--h-ease);
  transition-delay: calc(var(--w) * 85ms);
}
body.editorial [data-split-words].is-visible .w-inner { transform: translateY(0); }

/* Cinematic image wipe + settle */
body.editorial .h-img-reveal { overflow: hidden; }
body.editorial .h-img-reveal img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.18);
  transition: clip-path 1.2s var(--h-ease), transform 1.8s var(--h-ease);
  will-change: clip-path, transform;
}
body.editorial .h-img-reveal.is-visible img { clip-path: inset(0 0 0 0); transform: scale(1); }

/* Hairline that draws itself in */
body.editorial .h-line {
  border: none;
  border-top: 1px solid var(--h-stone);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--h-ease);
}
body.editorial .h-line.is-visible { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  body.editorial .reveal,
  body.editorial .reveal-left,
  body.editorial [data-split-words] .w-inner,
  body.editorial .h-img-reveal img,
  body.editorial .h-line,
  body.editorial .h-quote-stars {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}
