/* ─────────────────────────────────────────────────────
   HEVISION — styles.css
   Cinematic Reel direction · warm black + amber
   ───────────────────────────────────────────────────── */

/* Fonts (self-hosted, DSGVO-safe) */
@font-face {
  font-family: 'Fraunces';
  src: url('fonts/fraunces.woff2') format('woff2-variations');
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter.woff2') format('woff2-variations');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/jetbrains-mono.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Tokens */
:root {
  --bg: #0B0B0C;
  --bg-elevated: #131315;
  --text: #F1ECE4;
  --text-soft: #C9C2B7;
  --muted: #6B6660;
  --line: rgba(241, 236, 228, 0.10);
  --line-soft: rgba(241, 236, 228, 0.05);
  --accent: #E8A04A;
  --accent-deep: #C7842F;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --content-max: 1280px;
  --gutter: clamp(20px, 4vw, 64px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; transition: color 200ms var(--ease-out); }
a:hover { color: var(--accent); }
img, video { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }

/* Selection */
::selection { background: var(--accent); color: var(--bg); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Subtle film grain (very light, only on dark backgrounds) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ─── Utility ─── */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.mono {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.hairline {
  height: 1px;
  background: var(--line);
  border: 0;
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Header / Nav ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background 400ms var(--ease-out), backdrop-filter 400ms var(--ease-out), border-color 400ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.brand img {
  width: 32px; height: 32px;
  object-fit: contain;
}
.brand span { display: none; }
@media (min-width: 720px) {
  .brand span { display: inline; }
}
.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease-out);
}
.nav a:hover::after { transform: scaleX(1); }
@media (max-width: 640px) {
  .nav { gap: 18px; }
  .nav a { font-size: 11px; }
}

/* ─── Hero (split: copy + vertical video) ─── */
.hero {
  min-height: min(100vh, 860px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 96px var(--gutter) 56px;
  overflow: hidden;
}
@media (min-width: 980px) {
  .hero {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    padding: 0 var(--gutter);
  }
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}
.hero h1 {
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-sub {
  margin-top: 24px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-soft);
  max-width: 44ch;
  line-height: 1.55;
}
.hero-meta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.hero-meta .mono { color: var(--muted); }

.hero-video {
  position: relative;
  aspect-ratio: 4 / 5;
  height: 100vh;
  max-height: 100vh;
  margin-top: 32px;
  margin-right: calc(var(--gutter) * -1);
  overflow: hidden;
  border-radius: 0;
}
@media (min-width: 980px) {
  .hero-video {
    margin-top: 0;
    aspect-ratio: auto;
    height: min(100vh, 860px);
    max-height: 860px;
  }
}
.hero-video video,
.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,11,12,0.5) 100%);
  pointer-events: none;
}
.hero-video-label {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 2;
  color: var(--text);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.scroll-cue {
  position: absolute;
  bottom: 32px; right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.4); }
}

/* ─── Section base ─── */
.section {
  padding: clamp(56px, 7vw, 96px) var(--gutter);
  position: relative;
}
.section--narrow { padding-left: var(--gutter); padding-right: var(--gutter); }
.section h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 0.5em;
  max-width: 18ch;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}

/* ─── Manifesto ─── */
.manifesto {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}
.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 22ch;
  margin: 0 auto;
}
.manifesto-pillars {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
  flex-wrap: wrap;
}
.manifesto-pillars span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.manifesto-pillars span:not(:last-child)::after {
  content: '·';
  margin-left: clamp(20px, 4vw, 64px);
  color: var(--line);
}

/* ─── Work ribbon ─── */
.work {
  padding-bottom: 0;
}
.work-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.work-header h2 { margin: 0; }
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 720px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.work-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--text);
}
.work-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-elevated);
}
.work-card-media img,
.work-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out), filter 600ms var(--ease-out);
  filter: brightness(0.92);
}
.work-card:hover .work-card-media img,
.work-card:hover .work-card-media video {
  transform: scale(1.04);
  filter: brightness(1);
}
.work-card-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.work-card-meta .num { color: var(--accent); }
.work-card-title {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.work-card-tag {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

/* ─── Duo (about teaser) ─── */
.duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 880px) {
  .duo {
    grid-template-columns: 1.1fr 1fr;
    gap: 96px;
  }
}
.duo-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-elevated);
}
.duo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05);
}
.duo-text h2 {
  font-size: clamp(36px, 4.4vw, 64px);
}
.duo-text p {
  margin-top: 20px;
  font-size: 17px;
  color: var(--text-soft);
  max-width: 42ch;
  line-height: 1.65;
}
.button-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: color 300ms var(--ease-out), border-color 300ms var(--ease-out), padding 300ms var(--ease-out);
}
.button-link::after {
  content: '→';
  transition: transform 400ms var(--ease-out);
}
.button-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.button-link:hover::after { transform: translateX(6px); }

/* ─── Cinematic break (BBQ video) ─── */
.cinematic-break {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  padding: 0;
}
.cinematic-break video,
.cinematic-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.cinematic-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.4) 0%, transparent 30%, transparent 70%, rgba(11,11,12,0.85) 100%);
  pointer-events: none;
}
.cinematic-quote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: var(--gutter) var(--gutter) calc(var(--gutter) * 1.5);
}
.cinematic-quote q {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.15;
  max-width: 22ch;
  quotes: '„' '"';
}
.cinematic-quote q::before { content: open-quote; color: var(--accent); }
.cinematic-quote q::after { content: close-quote; color: var(--accent); }
.cinematic-quote cite {
  display: block;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Process ─── */
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.process-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: 24px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.process-item:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 720px) {
  .process-item { grid-template-columns: 140px 1fr 2fr; }
}
.process-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.process-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.01em;
}
.process-desc {
  color: var(--text-soft);
  max-width: 40ch;
}

/* ─── Service area ─── */
.service-area {
  text-align: center;
}
.service-area p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300;
  line-height: 1.4;
  max-width: 28ch;
  margin: 0 auto;
  color: var(--text-soft);
}
.service-area .pin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.service-area .pin::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 160, 74, 0.18);
}

/* ─── Contact CTA ─── */
.contact {
  text-align: center;
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--line);
}
.contact h2 {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.98;
  max-width: 14ch;
  margin: 0 auto 36px;
}
.contact-email {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 36px);
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: opacity 300ms var(--ease-out);
}
.contact-email:hover { opacity: 0.75; color: var(--accent); }
.contact-info {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.contact-info a:hover { color: var(--text); }

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px var(--gutter) 28px;
  font-size: 14px;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: var(--content-max);
  margin: 0 auto;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}
.footer-grid h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-grid p, .footer-grid a {
  color: var(--muted);
  display: block;
  margin: 4px 0;
}
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--content-max);
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── Page hero (about + case study shared) ─── */
.page-hero {
  padding: 120px var(--gutter) 56px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
  max-width: 14ch;
}
.page-hero .lead {
  margin-top: 24px;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-soft);
  max-width: 56ch;
  line-height: 1.55;
}

/* ─── Case study specifics ─── */
.case-meta {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.case-meta span { color: var(--text); }
.case-hero-media {
  width: 100%;
  height: 70vh;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.case-hero-media img,
.case-hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,11,12,0.6) 100%);
  pointer-events: none;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.case-grid > * {
  overflow: hidden;
  background: var(--bg-elevated);
}
.case-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-grid .span-2 { grid-column: span 2; }
.case-grid .span-3 { grid-column: span 3; }
.case-grid .span-4 { grid-column: span 4; }
.case-grid .span-6 { grid-column: span 6; }
.case-grid .tall { aspect-ratio: 3 / 4; }
.case-grid .wide { aspect-ratio: 16 / 9; }
.case-grid .square { aspect-ratio: 1 / 1; }
@media (max-width: 720px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
  .case-grid > * { grid-column: span 1 !important; }
}

.case-pull-quote {
  text-align: center;
  padding: clamp(56px, 8vw, 110px) var(--gutter);
}
.case-pull-quote q {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.2;
  max-width: 22ch;
  margin: 0 auto;
  display: block;
  quotes: '„' '"';
}
.case-pull-quote q::before { content: open-quote; color: var(--accent); }
.case-pull-quote q::after { content: close-quote; color: var(--accent); }

.case-next {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 56px var(--gutter);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 16px;
}
.case-next-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.case-next a {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  color: var(--text);
}
.case-next a:hover { color: var(--accent); }
.case-next a::after {
  content: ' →';
  color: var(--accent);
  display: inline-block;
  transition: transform 400ms var(--ease-out);
}
.case-next a:hover::after { transform: translateX(8px); }

/* ─── About specifics ─── */
.bio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 880px) {
  .bio {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
  }
  .bio--right {
    direction: rtl;
  }
  .bio--right > * { direction: ltr; }
}
.bio-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.bio-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
}
.bio-text .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.bio-text h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 20px;
}
.bio-text p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
  max-width: 50ch;
}
.bio-text p + p { margin-top: 18px; }
.bio-text ul {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}
.bio-text li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 40px;
}
@media (min-width: 720px) {
  .principles { grid-template-columns: repeat(2, 1fr); gap: 48px 64px; }
}
.principle .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 16px;
}
.principle h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.principle p {
  color: var(--text-soft);
  max-width: 38ch;
  line-height: 1.65;
}

/* Stilles Werk gallery (masonry-ish) */
.stilles-werk {
  columns: 2;
  column-gap: 12px;
  margin-top: 40px;
}
@media (min-width: 880px) { .stilles-werk { columns: 3; } }
.stilles-werk figure {
  break-inside: avoid;
  margin: 0 0 12px;
  overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
}
.stilles-werk img {
  width: 100%;
  display: block;
  transition: transform 1200ms var(--ease-out), filter 600ms var(--ease-out);
  filter: brightness(0.92);
}
.stilles-werk figure:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}

/* FAQ */
.faq { margin-top: 40px; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.01em;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--mono);
  font-size: 24px;
  color: var(--accent);
  transition: transform 300ms var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 18px;
  color: var(--text-soft);
  max-width: 60ch;
  line-height: 1.65;
}

/* Studio info card */
.studio-info {
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 720px) {
  .studio-info { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.studio-info h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 400;
}
.studio-info p { color: var(--text-soft); line-height: 1.7; }

/* Legal pages */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px var(--gutter) 80px;
}
.legal h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  margin-bottom: 32px;
}
.legal h2 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  font-family: var(--serif);
  margin: 36px 0 12px;
  color: var(--accent);
}
.legal p, .legal li {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.legal ul { padding-left: 20px; }
