/* ============================================================================
   ATELIER — editorial salon template
   All selectors scoped under .atelier. No global element styling.
   Fonts (self-hosted by platform): "Cormorant Garamond", "Manrope",
   "Inter", "JetBrains Mono".
   ============================================================================ */

.atelier {
  /* palette — warm editorial, Farbigkeit 3 */
  --ink: #17130d;
  --ink-soft: #4a4239;
  --paper: #f4eee4;
  --paper-2: #ece4d6;
  --paper-3: #e3d9c8;
  --muted: #8c8273;
  --line: rgba(23, 19, 13, 0.14);
  --line-strong: rgba(23, 19, 13, 0.30);
  --accent: #9a7b5f;          /* overridden inline by fields.accentColor */
  --accent-tint: rgba(154, 123, 95, 0.12);
  --on-cover: #f6f1e8;

  --ff-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ff-sans: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --ff-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --pad: clamp(20px, 5vw, 96px);
  --reveal-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  position: relative;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

.atelier a { color: inherit; text-decoration: none; }
.atelier button { font-family: inherit; cursor: pointer; }
.atelier img { display: block; max-width: 100%; }

/* ---- shared atoms -------------------------------------------------------- */
.atelier .mono {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.atelier .chapter-no {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 600;
}
.atelier .serif {
  font-family: var(--ff-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.atelier .placeholder {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background:
    repeating-linear-gradient(135deg, var(--paper-2) 0 14px, var(--paper-3) 14px 28px);
  color: var(--muted);
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px;
  overflow: hidden;
}

/* ---- buttons ------------------------------------------------------------- */
.atelier .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  position: relative;
}
.atelier .btn-line {
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  transition: color 0.4s var(--reveal-ease), gap 0.4s var(--reveal-ease);
}
.atelier .btn-line:hover { gap: 1.1em; color: var(--accent); }
.atelier .btn-solid {
  padding: 13px 22px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  transition: background 0.4s var(--reveal-ease), transform 0.4s var(--reveal-ease);
}
.atelier .btn-solid:hover { background: var(--accent); transform: translateY(-1px); }
.atelier .btn-accent {
  padding: 13px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  transition: transform 0.4s var(--reveal-ease), filter 0.4s var(--reveal-ease);
}
.atelier .btn-accent:hover { transform: translateY(-1px); filter: brightness(1.06); }

/* ============================================================================
   HEADER / NAVIGATION — luxury fashion bar
   ============================================================================ */
.atelier-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--pad);
  color: var(--on-cover);
  transition: background 0.5s var(--reveal-ease), color 0.5s var(--reveal-ease),
              padding 0.5s var(--reveal-ease), border-color 0.5s var(--reveal-ease);
  border-bottom: 1px solid transparent;
}
.atelier-bar.is-solid {
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-top: 13px;
  padding-bottom: 13px;
}
.atelier-bar.is-hidden { transform: translateY(-100%); }
.atelier-bar { will-change: transform; }

.atelier-bar__left { display: flex; align-items: center; gap: 26px; justify-self: start; }
.atelier-bar__right { display: flex; align-items: center; gap: 22px; justify-self: end; }

.atelier-menutoggle {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: none; border: 0; color: inherit;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.atelier-menutoggle__bars { display: inline-flex; flex-direction: column; gap: 4px; width: 22px; }
.atelier-menutoggle__bars i { height: 1px; background: currentColor; transition: transform 0.4s var(--reveal-ease); }
.atelier-menutoggle:hover .atelier-menutoggle__bars i:first-child { transform: translateX(4px); }

.atelier-bar__nav { display: flex; gap: 26px; }
.atelier-bar__nav a {
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.82;
  position: relative;
  padding-bottom: 3px;
  transition: opacity 0.3s var(--reveal-ease);
}
.atelier-bar__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width 0.4s var(--reveal-ease);
}
.atelier-bar__nav a:hover { opacity: 1; }
.atelier-bar__nav a:hover::after { width: 100%; }

.atelier-brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.atelier-brand img {
  max-height: 38px;
  width: auto;
  object-fit: contain;
}
.atelier-bar.is-solid .atelier-brand img { max-height: 32px; }
.atelier-brand__word {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.atelier-login {
  background: none; border: 0; color: inherit;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.82; transition: opacity 0.3s var(--reveal-ease);
}
.atelier-login:hover { opacity: 1; }

@media (max-width: 1180px) {
  .atelier-bar__nav { display: none; }
}
@media (max-width: 900px) {
  .atelier-bar__right .atelier-bar__book-label { display: none; }
}
@media (max-width: 560px) {
  .atelier-login { display: none; }
  .atelier-menutoggle__label { display: none; }
}

/* ---- full-screen menu takeover ------------------------------------------ */
.atelier-takeover {
  position: fixed; inset: 0; z-index: 80;
  background: var(--paper);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 18px var(--pad) var(--pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--reveal-ease), visibility 0.5s;
}
.atelier-takeover.is-open { opacity: 1; visibility: visible; }
.atelier-takeover__top { display: flex; align-items: center; justify-content: space-between; }
.atelier-takeover__close {
  background: none; border: 0; color: var(--ink);
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.atelier-takeover__list {
  align-self: center;
  display: flex; flex-direction: column;
  gap: clamp(4px, 1.4vh, 14px);
  padding: 4vh 0;
}
.atelier-takeover__item {
  display: flex; align-items: baseline; gap: 24px;
  font-family: var(--ff-display);
  font-size: clamp(38px, 8vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  transform: translateY(18px);
  opacity: 0;
  transition: color 0.4s var(--reveal-ease);
}
.atelier-takeover.is-open .atelier-takeover__item {
  animation: atelier-rise 0.6s var(--reveal-ease) forwards;
}
.atelier-takeover__item:hover { color: var(--accent); }
.atelier-takeover__item .num {
  font-family: var(--ff-mono);
  font-size: 12px; letter-spacing: 0.1em; color: var(--accent);
  align-self: flex-start; margin-top: 0.7em;
  flex: none;
}
.atelier-takeover__foot {
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.atelier-takeover__foot .mono a { transition: color 0.3s; }
.atelier-takeover__foot .mono a:hover { color: var(--accent); }
@keyframes atelier-rise { to { transform: translateY(0); opacity: 1; } }

/* ============================================================================
   COVER — full-bleed, taller than viewport, parallax
   ============================================================================ */
.atelier-cover {
  position: relative;
  height: 118vh;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
}
.atelier-cover__media {
  position: absolute;
  top: -8%; left: 0; right: 0;
  height: 124%;
  will-change: transform;
}
.atelier-cover__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.atelier-cover__media.placeholder {
  align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(135deg, #211c15 0 18px, #2a241b 18px 36px);
  color: #6f6552;
}
.atelier-cover__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,5,0.45) 0%, rgba(10,8,5,0) 28%),
    linear-gradient(0deg, rgba(10,8,5,0.55) 0%, rgba(10,8,5,0) 46%);
}
.atelier-cover__veil { position: absolute; inset: 0; background: #0a0805; }
.atelier-cover__content {
  position: absolute;
  left: var(--pad); right: var(--pad); bottom: clamp(64px, 12vh, 150px);
  color: var(--on-cover);
  max-width: 1100px;
}
.atelier-cover__eyebrow { color: rgba(246,241,232,0.78); margin: 0 0 22px; }
.atelier-cover__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(52px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.atelier-cover__title em { font-style: italic; color: var(--accent); }
.atelier-cover__desc {
  margin: 28px 0 34px;
  max-width: 46ch;
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(246,241,232,0.82);
  white-space: pre-line;
}
.atelier-cover__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.atelier-cover__caption {
  position: absolute; right: var(--pad); bottom: clamp(64px, 12vh, 150px);
  text-align: right; color: rgba(246,241,232,0.6);
}
.atelier-cover__scrollcue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  color: rgba(246,241,232,0.7);
}
.atelier-cover__scrollcue i {
  width: 1px; height: 40px; background: rgba(246,241,232,0.5);
  position: relative; overflow: hidden;
}
.atelier-cover__scrollcue i::after {
  content: ""; position: absolute; left: 0; top: -40px; width: 1px; height: 40px;
  background: var(--on-cover); animation: atelier-cue 2.4s var(--reveal-ease) infinite;
}
@keyframes atelier-cue { to { top: 40px; } }
@media (max-width: 760px) {
  .atelier-cover__caption { display: none; }
}

/* ============================================================================
   REVEAL primitives
   ============================================================================ */
.atelier [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--reveal-ease), transform 0.9s var(--reveal-ease);
}
.atelier [data-reveal].is-in { opacity: 1; transform: none; }
.atelier.no-reveal [data-reveal] { opacity: 1; transform: none; }

/* ============================================================================
   MANIFESTO band
   ============================================================================ */
.atelier-manifesto {
  padding: clamp(80px, 14vh, 180px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.atelier-manifesto__aside { display: flex; flex-direction: column; gap: 18px; }
.atelier-manifesto__aside .rule { height: 1px; background: var(--accent); width: 64px; }
.atelier-manifesto__text {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 50px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: pretty;
}
.atelier-manifesto__text strong { color: var(--accent); font-weight: 500; font-style: italic; }
.atelier-manifesto__body { margin-top: 20px; max-width: 60ch; color: var(--ink-soft); }
.atelier-manifesto__values {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
}
.atelier-manifesto__value { border-top: 1px solid var(--line); padding-top: 14px; }
.atelier-manifesto__value strong { display: block; font-family: var(--ff-display); font-size: 21px; font-weight: 600; margin-bottom: 4px; }
.atelier-manifesto__value p { margin: 0; font-size: 14px; color: var(--ink-soft); }
@media (max-width: 860px) {
  .atelier-manifesto { grid-template-columns: 1fr; }
}

/* ============================================================================
   SERVICES — editorial "Speisekarte" rows
   ============================================================================ */
.atelier-services { padding: clamp(70px, 11vh, 150px) var(--pad) clamp(40px, 8vh, 90px); }
.atelier-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  margin-bottom: clamp(34px, 6vh, 70px);
}
.atelier-section-head__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
}
.atelier-section-head__lead { max-width: 40ch; color: var(--ink-soft); }

.atelier-catgroup { margin-bottom: clamp(40px, 7vh, 86px); }
.atelier-catgroup__head {
  display: flex; align-items: baseline; gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 4px;
}
.atelier-catgroup__name {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.atelier-catgroup__count { margin-left: auto; }

.atelier-srow {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr) auto;
  align-items: center;
  gap: clamp(16px, 4vw, 56px);
  padding: clamp(20px, 2.6vh, 30px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.5s var(--reveal-ease);
}
.atelier-srow:hover { padding-left: 18px; }
.atelier-srow::before {
  content: ""; position: absolute; left: -2px; top: 0; bottom: 0; width: 2px;
  background: var(--accent); transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s var(--reveal-ease);
}
.atelier-srow:hover::before { transform: scaleY(1); }
.atelier-srow__name {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px;
}
.atelier-srow__tag {
  font-family: var(--ff-mono);
  font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 3px 9px;
  transform: translateY(-3px);
}
.atelier-srow__desc { color: var(--ink-soft); font-size: 15px; max-width: 46ch; }
.atelier-srow__end {
  display: flex; align-items: center; gap: clamp(14px, 2vw, 30px);
  justify-content: flex-end; white-space: nowrap;
}
.atelier-srow__price {
  font-family: var(--ff-display);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 600;
}
.atelier-srow__book {
  width: 42px; height: 42px; flex: none;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink);
  transition: background 0.4s var(--reveal-ease), color 0.4s var(--reveal-ease),
              border-color 0.4s var(--reveal-ease), transform 0.4s var(--reveal-ease);
}
.atelier-srow:hover .atelier-srow__book { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.atelier-srow__book:hover { background: var(--accent) !important; border-color: var(--accent) !important; transform: rotate(-45deg); }
.atelier-srow__thumb {
  position: absolute; right: 0; top: 50%;
  width: 130px; height: 160px;
  transform: translateY(-50%) scale(0.94);
  opacity: 0; pointer-events: none;
  z-index: 5;
  box-shadow: 0 24px 60px rgba(23,19,13,0.28);
  transition: opacity 0.4s var(--reveal-ease), transform 0.4s var(--reveal-ease);
  object-fit: cover;
}
.atelier-srow:hover .atelier-srow__thumb { opacity: 1; transform: translateY(-50%) scale(1) rotate(2deg); }
@media (max-width: 820px) {
  .atelier-srow { grid-template-columns: 1fr auto; }
  .atelier-srow__desc { grid-column: 1 / -1; order: 3; }
  .atelier-srow__thumb { display: none; }
}

/* ============================================================================
   TEAM — staggered editorial portraits
   ============================================================================ */
.atelier-team { padding: clamp(70px, 11vh, 150px) var(--pad); background: var(--paper-2); border-top: 1px solid var(--line); }
.atelier-team__grid {
  margin-top: clamp(34px, 6vh, 64px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 40px) clamp(16px, 3vw, 36px);
}
.atelier-member { grid-column: span 4; }
.atelier-member:nth-child(3n+1) { grid-column: 1 / span 4; transform: translateY(0); }
.atelier-member:nth-child(3n+2) { grid-column: 5 / span 4; transform: translateY(46px); }
.atelier-member:nth-child(3n+3) { grid-column: 9 / span 4; transform: translateY(16px); }
.atelier-member__frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-3);
}
.atelier-member__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--reveal-ease), filter 0.6s; filter: grayscale(0.18); }
.atelier-member:hover .atelier-member__frame img { transform: scale(1.05); filter: grayscale(0); }
.atelier-member__frame.placeholder { align-items: flex-end; }
.atelier-member__no {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--on-cover); mix-blend-mode: difference;
}
.atelier-member__meta { padding-top: 16px; border-top: 1px solid var(--line-strong); margin-top: 14px; }
.atelier-member__name { font-family: var(--ff-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; line-height: 1.05; }
.atelier-member__role { margin-top: 4px; }
.atelier-member__spec { margin-top: 10px; font-size: 14px; color: var(--ink-soft); }
@media (max-width: 820px) {
  .atelier-team__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .atelier-member,
  .atelier-member:nth-child(3n+1),
  .atelier-member:nth-child(3n+2),
  .atelier-member:nth-child(3n+3) { grid-column: auto; transform: none; }
}
@media (max-width: 520px) {
  .atelier-team__grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   ATELIER band — parallax split (about)
   ============================================================================ */
.atelier-about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 92vh;
  border-top: 1px solid var(--line);
}
.atelier-about__media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.atelier-about__media .layer {
  position: absolute; top: -12%; left: 0; right: 0; height: 124%;
  will-change: transform;
}
.atelier-about__media .layer img { width: 100%; height: 100%; object-fit: cover; }
.atelier-about__media.placeholder { background: repeating-linear-gradient(135deg,#211c15 0 18px,#2a241b 18px 36px); }
.atelier-about__media .stamp {
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  color: rgba(246,241,232,0.8);
}
.atelier-about__text {
  padding: clamp(64px, 10vh, 130px) var(--pad);
  display: flex; flex-direction: column; justify-content: center;
}
.atelier-about__head {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
}
.atelier-about__body { margin-top: 24px; max-width: 52ch; color: var(--ink-soft); }
.atelier-about__body p { margin: 0 0 1em; }
@media (max-width: 860px) {
  .atelier-about { grid-template-columns: 1fr; }
  .atelier-about__media { min-height: 64vh; }
}

/* ============================================================================
   GALLERY — horizontal lookbook track
   ============================================================================ */
.atelier-gallery { padding: clamp(70px, 11vh, 150px) 0; overflow: hidden; }
.atelier-gallery__head { padding: 0 var(--pad); margin-bottom: clamp(28px, 5vh, 52px); }
.atelier-gallery__track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  padding: 0 var(--pad);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.atelier-gallery__track::-webkit-scrollbar { display: none; }
.atelier-figure {
  flex: 0 0 auto;
  width: clamp(240px, 30vw, 420px);
  scroll-snap-align: center;
}
.atelier-figure:nth-child(even) { margin-top: 44px; }
.atelier-figure__frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-2);
}
.atelier-figure:nth-child(3n) .atelier-figure__frame { aspect-ratio: 3 / 4; }
.atelier-figure__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--reveal-ease); }
.atelier-figure:hover .atelier-figure__frame img { transform: scale(1.06); }
.atelier-figure figcaption {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line);
}
.atelier-gallery__hint { padding: 22px var(--pad) 0; }

/* ============================================================================
   TESTIMONIALS — single rotating pull-quote
   ============================================================================ */
.atelier-voices {
  padding: clamp(80px, 14vh, 180px) var(--pad);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
}
.atelier-voices__mark { color: var(--accent); font-family: var(--ff-display); font-size: 120px; line-height: 0.4; height: 40px; }
.atelier-voices__stage { max-width: 26ch; margin: 0 auto; min-height: 1.2em; }
.atelier-voices__quote {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 4.4vw, 60px);
  line-height: 1.16;
  letter-spacing: -0.015em;
  font-style: italic;
  margin: 0;
  text-wrap: balance;
  transition: opacity 0.6s var(--reveal-ease), transform 0.6s var(--reveal-ease);
}
.atelier-voices__cite { margin-top: 34px; color: rgba(244,238,228,0.7); }
.atelier-voices__cite b { color: var(--paper); font-weight: 500; }
.atelier-voices__dots { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.atelier-voices__dots button {
  width: 7px; height: 7px; border-radius: 999px; border: 0; padding: 0;
  background: rgba(244,238,228,0.3); transition: background 0.3s, transform 0.3s;
}
.atelier-voices__dots button.is-active { background: var(--accent); transform: scale(1.4); }

/* ============================================================================
   FAQ — minimal accordion
   ============================================================================ */
.atelier-faq {
  padding: clamp(70px, 11vh, 150px) var(--pad);
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: clamp(28px, 5vw, 80px);
  border-top: 1px solid var(--line);
}
.atelier-faq__list { border-top: 1px solid var(--line-strong); }
.atelier-faqitem { border-bottom: 1px solid var(--line); }
.atelier-faqitem__q {
  width: 100%; text-align: left; background: none; border: 0;
  display: flex; align-items: center; gap: 24px;
  padding: clamp(20px, 2.6vh, 28px) 0;
  font-family: var(--ff-display); font-size: clamp(20px, 2.2vw, 28px); font-weight: 500;
  color: var(--ink);
  transition: color 0.3s;
}
.atelier-faqitem__q:hover { color: var(--accent); }
.atelier-faqitem__sign { margin-left: auto; flex: none; font-family: var(--ff-mono); font-size: 20px; color: var(--accent); transition: transform 0.4s var(--reveal-ease); }
.atelier-faqitem.is-open .atelier-faqitem__sign { transform: rotate(45deg); }
.atelier-faqitem__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--reveal-ease); }
.atelier-faqitem__a-inner { padding-bottom: 26px; color: var(--ink-soft); max-width: 60ch; }
.atelier-faqitem__a-inner p { margin: 0 0 0.8em; }
@media (max-width: 760px) { .atelier-faq { grid-template-columns: 1fr; } }

/* ============================================================================
   CUSTOM SECTIONS wrapper + NEWSLETTER
   ============================================================================ */
.atelier-custom { padding: clamp(20px, 4vh, 60px) var(--pad); }
.atelier-newsletter {
  padding: clamp(70px, 11vh, 140px) var(--pad);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 80px);
  align-items: center;
}
.atelier-newsletter__head { font-family: var(--ff-display); font-size: clamp(30px, 4vw, 54px); font-weight: 500; line-height: 1.05; margin: 14px 0 0; letter-spacing: -0.015em; }
.atelier-newsletter__form { display: flex; gap: 12px; flex-wrap: wrap; }
.atelier-newsletter__form input {
  flex: 1 1 220px; min-width: 0;
  background: transparent; border: 0; border-bottom: 1px solid var(--line-strong);
  padding: 14px 2px; font-family: inherit; font-size: 16px; color: var(--ink);
}
.atelier-newsletter__form input:focus { outline: none; border-color: var(--accent); }
.atelier-newsletter__form button { white-space: nowrap; }
@media (max-width: 760px) { .atelier-newsletter { grid-template-columns: 1fr; } }

/* ============================================================================
   CAREER
   ============================================================================ */
.atelier-career { padding: clamp(60px, 10vh, 130px) var(--pad); border-top: 1px solid var(--line); }
.atelier-career__list { margin-top: clamp(28px, 5vh, 50px); border-top: 1px solid var(--line-strong); }
.atelier-job {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--reveal-ease);
}
.atelier-job:hover { padding-left: 14px; }
.atelier-job__title { font-family: var(--ff-display); font-size: clamp(22px, 2.4vw, 32px); font-weight: 500; }
.atelier-job__meta { color: var(--ink-soft); font-size: 14px; }
@media (max-width: 700px) { .atelier-job { grid-template-columns: 1fr; gap: 8px; } }

/* ============================================================================
   CONTACT — "Türschild" + form
   ============================================================================ */
.atelier-contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border-top: 1px solid var(--line);
}
.atelier-contact__info {
  padding: clamp(64px, 10vh, 130px) var(--pad);
  background: var(--ink);
  color: var(--paper);
}
.atelier-contact__head { font-family: var(--ff-display); font-size: clamp(38px, 5vw, 74px); font-weight: 500; line-height: 0.98; letter-spacing: -0.02em; margin: 16px 0 0; }
.atelier-contact__head em { font-style: italic; color: var(--accent); }
.atelier-contact__block { margin-top: 38px; }
.atelier-contact__block .label { color: rgba(244,238,228,0.55); margin-bottom: 12px; }
.atelier-contact__address p { margin: 0 0 2px; font-size: 17px; }
.atelier-contact__lines a { font-size: 17px; transition: color 0.3s; }
.atelier-contact__lines a:hover { color: var(--accent); }
.atelier-hours { display: grid; gap: 0; }
.atelier-hours__row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0; border-bottom: 1px solid rgba(244,238,228,0.14);
  font-family: var(--ff-mono); font-size: 12.5px; letter-spacing: 0.04em;
}
.atelier-hours__row:last-child { border-bottom: 0; }
.atelier-contact__break { margin-top: 12px; color: rgba(244,238,228,0.5); }

.atelier-contact__form {
  padding: clamp(64px, 10vh, 130px) var(--pad);
  display: flex; flex-direction: column;
}
.atelier-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; }
.atelier-field { display: flex; flex-direction: column; gap: 8px; }
.atelier-field.is-wide { grid-column: 1 / -1; }
.atelier-field label { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.atelier-field input,
.atelier-field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--line-strong);
  padding: 10px 2px; font-family: inherit; font-size: 16px; color: var(--ink); resize: vertical;
}
.atelier-field input:focus,
.atelier-field textarea:focus { outline: none; border-color: var(--accent); }
.atelier-field textarea { min-height: 96px; }
.atelier-field.is-error input,
.atelier-field.is-error textarea { border-color: #b4533f; }
.atelier-field__err { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.08em; color: #b4533f; }
.atelier-check { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--ink-soft); }
.atelier-check input { margin-top: 3px; accent-color: var(--accent); }
.atelier-check a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.atelier-form__foot { grid-column: 1 / -1; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 6px; }
.atelier-form__status { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.08em; }
.atelier-form__status.is-success { color: var(--accent); }
.atelier-form__status.is-error { color: #b4533f; }
@media (max-width: 880px) {
  .atelier-contact { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .atelier-form { grid-template-columns: 1fr; }
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.atelier-foot { background: var(--paper); border-top: 1px solid var(--line); }
.atelier-foot__top {
  padding: clamp(50px, 8vh, 90px) var(--pad) clamp(30px, 5vh, 50px);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
}
.atelier-foot__brand .atelier-brand__word { font-size: clamp(22px, 2.6vw, 34px); color: var(--ink); }
.atelier-foot__brand img { max-height: 46px; object-fit: contain; }
.atelier-foot__desc { margin-top: 16px; max-width: 38ch; color: var(--ink-soft); font-size: 14px; }
.atelier-foot__col h4 { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; font-weight: 500; }
.atelier-foot__col a { display: block; padding: 5px 0; font-size: 14px; transition: color 0.3s, padding-left 0.3s; }
.atelier-foot__col a:hover { color: var(--accent); padding-left: 6px; }
.atelier-foot__word {
  font-family: var(--ff-display);
  font-size: clamp(54px, 17vw, 240px);
  font-weight: 500; line-height: 0.86; letter-spacing: -0.03em;
  padding: 0 var(--pad); color: var(--ink);
  white-space: nowrap; overflow: hidden;
  border-top: 1px solid var(--line);
  padding-top: clamp(20px, 4vh, 50px);
  opacity: 0.96;
}
.atelier-foot__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding: 26px var(--pad); border-top: 1px solid var(--line);
}
@media (max-width: 760px) { .atelier-foot__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .atelier-foot__top { grid-template-columns: 1fr; } }

/* ============================================================================
   LEGAL / custom page
   ============================================================================ */
.atelier-legal { padding: clamp(120px, 20vh, 220px) var(--pad) clamp(70px, 12vh, 140px); max-width: 860px; }
.atelier-legal__title { font-family: var(--ff-display); font-size: clamp(36px, 6vw, 72px); font-weight: 500; letter-spacing: -0.02em; margin: 12px 0 30px; line-height: 1; }
.atelier-legal__body { color: var(--ink-soft); line-height: 1.8; }
.atelier-legal__body h2 { font-family: var(--ff-display); color: var(--ink); font-size: 26px; font-weight: 600; margin: 1.6em 0 0.5em; }
.atelier-legal__body h3 { font-family: var(--ff-display); color: var(--ink); font-size: 21px; font-weight: 600; margin: 1.4em 0 0.4em; }
.atelier-legal__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.atelier-legal__body p { margin: 0 0 1em; }

/* ============================================================================
   reduced motion
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  .atelier [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .atelier-cover__media,
  .atelier-about__media .layer { transform: none !important; }
  .atelier-cover__scrollcue i::after { animation: none; }
}