/* ═══════════════════════════════════════════════════════════════════
   Schreinerei Senn · Mannheim-Seckenheim
   Preset: minimalist-editorial · Kundennah Level 3
   Brand: #653108 Saddle Brown · Cinzel + Inter
   ═══════════════════════════════════════════════════════════════════ */

/* ───────── self-hosted fonts (zero-tracking) ───────── */
@font-face { font-family: "Inter"; font-weight: 400; font-display: swap; src: url("../fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 600; font-display: swap; src: url("../fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "Cinzel"; font-weight: 400; font-display: swap; src: url("../fonts/cinzel-400.woff2") format("woff2"); }
@font-face { font-family: "Cinzel"; font-weight: 600; font-display: swap; src: url("../fonts/cinzel-600.woff2") format("woff2"); }
@font-face { font-family: "Cinzel"; font-weight: 700; font-display: swap; src: url("../fonts/cinzel-700.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-weight: 400; font-display: swap; src: url("../fonts/cormorant-400.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-weight: 700; font-display: swap; src: url("../fonts/cormorant-700.woff2") format("woff2"); }

:root {
  --brand-primary: #653108;
  --brand-primary-dark: #4a2406;
  --brand-primary-warm: #8a4a1f;
  --brand-primary-light: #c79a78;
  --brand-ink: #1a1614;
  --brand-graphite: #3a322a;
  --brand-mute: #8a7e72;
  --brand-line: #ebe2d3;
  --brand-cream: #f8f4ed;
  --brand-cream-2: #efe6d6;
  --brand-cream-3: #e6dac1;
  --brand-white: #fdfaf4;
  --shadow-soft: 0 18px 40px -20px rgba(26,22,20,0.18);
  --shadow-pop:  0 28px 60px -24px rgba(26,22,20,0.35);
  --display: "Cinzel", "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.18, 0.9, 0.32, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); font-weight: 400; color: var(--brand-ink);
  background: var(--brand-white); line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1480px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-primary);
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--brand-primary); }

.headline {
  font-family: var(--display); font-weight: 700;
  line-height: 1.04; letter-spacing: 0.01em; color: var(--brand-ink);
}
.headline em { font-style: italic; color: var(--brand-primary); font-family: var(--serif); }
.lede { font-size: clamp(15px, 1.1vw, 17px); color: var(--brand-graphite); line-height: 1.7; max-width: 56ch; }

/* ───────── NAV ───────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,250,244,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px; max-width: 1480px; margin: 0 auto;
}
.nav-brand { display: inline-flex; align-items: center; gap: 14px; }
.nav-logo {
  height: 52px; flex-shrink: 0;
  display: flex; align-items: center;
}
.nav-logo img {
  height: 100%; width: auto; object-fit: contain;
  transition: transform .4s var(--ease), filter .4s var(--ease);
}
.nav-brand:hover .nav-logo img { transform: scale(1.04); }
.nav-wordmark {
  font-family: var(--sans); font-weight: 600; font-size: 9.5px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-mute);
  line-height: 1.4; padding-left: 14px; border-left: 1px solid var(--brand-line);
}
.nav-wordmark .sub {
  display: block; font-family: var(--serif); font-style: italic;
  font-size: 12px; letter-spacing: 0.04em; text-transform: none;
  color: var(--brand-graphite); font-weight: 400; margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 13.5px; color: var(--brand-graphite); position: relative;
  padding: 4px 0; transition: color .25s var(--ease);
  font-weight: 500; letter-spacing: 0.04em;
}
.nav-links a:hover, .nav-links a.is-current { color: var(--brand-primary); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--brand-primary);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.is-current::after { width: 100%; }
.nav-links .has-sub { position: relative; }
.nav-links .submenu {
  position: absolute; top: 100%; left: -16px; min-width: 240px;
  background: var(--brand-white); border: 1px solid var(--brand-line);
  padding: 12px 0; box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s var(--ease);
}
.nav-links .has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-links .submenu li { list-style: none; }
.nav-links .submenu a { display: block; padding: 9px 22px; font-size: 13px; letter-spacing: 0.02em; }
.nav-links .submenu a:hover { background: var(--brand-cream); color: var(--brand-primary); }
.nav-links .submenu a::after { display: none; }

/* CTA buttons */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand-ink); color: var(--brand-cream);
  padding: 14px 26px; font-family: var(--sans);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s var(--ease);
  border: none; cursor: pointer;
}
.cta:hover { background: var(--brand-primary); transform: translateY(-1px); }
.cta-ghost { background: transparent; color: var(--brand-ink); border: 1px solid var(--brand-ink); }
.cta-ghost:hover { background: var(--brand-ink); color: var(--brand-cream); }
.cta-brand { background: var(--brand-primary); color: var(--brand-cream); }
.cta-brand:hover { background: var(--brand-primary-dark); }

/* ───────── HERO-BANNER-STRIP (Senn signature + parallax) ───────── */
.hero { position: relative; isolation: isolate; }
.hero-photo {
  position: relative;
  height: clamp(480px, 70vh, 820px);
  overflow: hidden;
  background: var(--brand-graphite);
}
.hero-photo img {
  width: 100%; height: 115%; object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1.04);
  transition: opacity .8s ease-out;
  will-change: transform;
  opacity: 0;
}
.hero-photo.is-loaded img { opacity: 1; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(26,22,20,0.22) 0%,
    rgba(26,22,20,0.08) 35%,
    rgba(26,22,20,0.38) 100%);
  pointer-events: none;
}
/* Floating eyebrow overlaid on hero photo */
.hero-overlay-eyebrow {
  position: absolute; left: 0; right: 0; top: 36px;
  z-index: 2; text-align: center;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 1s ease-out .4s, transform 1s ease-out .4s;
}
.hero-photo.is-loaded ~ .hero-overlay-eyebrow,
.hero.is-loaded .hero-overlay-eyebrow { opacity: 1; transform: translateY(0); }
.hero-overlay-eyebrow span {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(253,250,244,0.92);
  backdrop-filter: blur(8px);
  padding: 10px 22px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brand-primary);
}
.hero-overlay-eyebrow span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-primary);
}
/* Scroll-indicator chevron at bottom of hero photo */
.hero-scroll {
  position: absolute; left: 50%; bottom: 28px; z-index: 2;
  transform: translateX(-50%);
  color: var(--brand-cream); opacity: 0.7;
  font-family: var(--sans); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  pointer-events: none;
}
.hero-scroll::after {
  content: ""; display: block; width: 1px; height: 36px;
  background: var(--brand-cream); margin: 12px auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}
.hero-banner-strip {
  position: relative; z-index: 3;
  background: var(--brand-cream);
  padding: 60px 0 64px;
  border-top: 1px solid var(--brand-line);
  text-align: center;
  box-shadow: 0 -4px 20px -8px rgba(26,22,20,0.06);
}
/* Next section "rises up" over the banner */
.hero + section {
  position: relative; z-index: 4;
  margin-top: -36px;
  padding-top: 110px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -30px 60px -22px rgba(26,22,20,0.18);
}
.hero-banner-strip .hero-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 6.6vw, 88px);
  line-height: 1.0; letter-spacing: 0.04em;
  color: var(--brand-ink);
  text-transform: uppercase;
}
.hero-banner-strip .hero-title em {
  font-style: italic; color: var(--brand-primary);
  font-family: var(--serif); letter-spacing: 0;
  text-transform: none; font-weight: 700;
}
.hero-banner-strip .hero-sub {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(15px, 1.5vw, 21px); color: var(--brand-graphite);
  margin-top: 18px; letter-spacing: 0.01em;
}
.hero-banner-strip .hero-meta {
  display: inline-flex; gap: 24px; margin-top: 28px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-mute);
}
.hero-banner-strip .hero-meta span { display: flex; align-items: center; gap: 10px; }
.hero-banner-strip .hero-meta span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--brand-primary);
}

/* Hero variant: with CTA */
.hero-banner-strip .hero-ctas { display: inline-flex; gap: 14px; margin-top: 32px; }

/* Sub-line for service-pages overlaid on the photo */
.hero-photo .hero-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 36px 40px;
}
.hero-photo .hero-overlay .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(253,250,244,0.95); color: var(--brand-primary);
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 8px 16px;
}

/* ───────── BRAND STATEMENT (Wappen feature) ───────── */
.brand-statement {
  position: relative; z-index: 5;
  padding: 110px 0 120px;
  background: var(--brand-white);
  text-align: center;
  border-radius: 18px 18px 0 0;
  margin-top: -40px;
  box-shadow: 0 -34px 70px -28px rgba(26,22,20,0.22);
  overflow: hidden;
}
/* Subtle wood-grain accent inside brand-statement (single off-color tint behind wappen) */
.brand-statement::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 520px; height: 520px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(101,49,8,0.04) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.brand-statement > * { position: relative; z-index: 1; }
.brand-statement::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; max-width: 1000px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-line) 18%, var(--brand-line) 82%, transparent 100%);
  z-index: 0;
}
.brand-statement .wappen-wrap {
  display: inline-block; position: relative;
}
.brand-statement .wappen {
  max-width: 230px; height: auto; display: block;
  transition: transform .6s var(--ease);
}
.brand-statement .wappen-wrap:hover .wappen { transform: scale(1.04); }
.brand-statement .brand-tagline {
  margin-top: 28px;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brand-graphite);
}
.brand-statement .brand-tagline span { color: var(--brand-primary); margin: 0 14px; font-weight: 700; }
.brand-statement .brand-sub {
  margin-top: 16px;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--brand-mute);
  max-width: 480px; margin-left: auto; margin-right: auto;
}

/* When brand-statement directly follows the hero, drop the previous overlap rule */
.hero + .brand-statement { /* uses its own overlap above */ }

/* ───────── SECTIONS ───────── */
.section-cream { padding: 110px 0; background: var(--brand-cream); }
.section-white { padding: 110px 0; background: var(--brand-white); }
.section-dark { padding: 110px 0; background: var(--brand-ink); color: var(--brand-cream); }
.section-dark h2, .section-dark h3 { color: var(--brand-cream); }
.section-dark h2 em, .section-dark h3 em { color: var(--brand-primary-light); }

.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.05;
  margin-top: 16px; letter-spacing: 0.02em;
}
.section-head h2 em { color: var(--brand-primary); font-style: italic; font-family: var(--serif); letter-spacing: 0; }
.section-head p { margin-top: 18px; color: var(--brand-graphite); line-height: 1.7; max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ───────── SERVICE GRID (5 services on index) ───────── */
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  position: relative; background: var(--brand-cream); overflow: hidden;
  transition: transform .35s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-card .service-photo { aspect-ratio: 4/3; overflow: hidden; background: var(--brand-cream-2); }
.service-card .service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.service-card:hover .service-photo img { transform: scale(1.06); }
.service-card .service-body { padding: 28px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.service-card .service-num {
  display: inline-block; font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 22px; color: var(--brand-primary); line-height: 1; margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--display); font-weight: 700; font-size: 22px;
  letter-spacing: 0.04em; line-height: 1.15; color: var(--brand-ink); margin-bottom: 12px;
  text-transform: uppercase;
}
.service-card p { font-size: 14px; line-height: 1.7; color: var(--brand-graphite); flex: 1; }
.service-card .service-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-primary);
  border-bottom: 1px solid currentColor; padding-bottom: 2px; align-self: flex-start;
  transition: color .25s, border-color .25s;
}
.service-card .service-link:hover { color: var(--brand-primary-dark); }

/* ───────── EDITORIAL ROW (2-col text + photo) ───────── */
.editorial-row {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}
.editorial-row.reverse { grid-template-columns: 1.2fr 1fr; }
.editorial-row.reverse .editorial-text { order: 2; }
.editorial-row.reverse .editorial-figure { order: 1; }
.editorial-figure { aspect-ratio: 4/5; overflow: hidden; background: var(--brand-cream-2); }
.editorial-figure img { width: 100%; height: 100%; object-fit: cover; }
.editorial-text h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 3.8vw, 50px); line-height: 1.08;
  letter-spacing: 0.02em; margin: 14px 0 22px;
}
.editorial-text h2 em { color: var(--brand-primary); font-style: italic; font-family: var(--serif); letter-spacing: 0; }
.editorial-text p { font-size: 16px; line-height: 1.75; color: var(--brand-graphite); margin-bottom: 16px; }
.editorial-text ul { list-style: none; margin-top: 22px; }
.editorial-text ul li {
  padding: 12px 0; font-size: 14px; color: var(--brand-graphite);
  border-bottom: 1px solid var(--brand-line);
  display: flex; gap: 14px;
}
.editorial-text ul li::before {
  content: ""; width: 18px; height: 1px; background: var(--brand-primary);
  flex-shrink: 0; margin-top: 11px;
}

/* ───────── PULL-QUOTE ───────── */
.pullquote-band {
  padding: 130px 0; background: var(--brand-cream);
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}
.pullquote {
  max-width: 880px; margin: 0 auto; text-align: center;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.35;
  color: var(--brand-ink); letter-spacing: -0.005em;
}
.pullquote::before, .pullquote::after {
  content: "—"; display: block; color: var(--brand-primary);
  font-size: 22px; font-style: normal; letter-spacing: 0.4em;
  margin: 0 auto 24px;
}
.pullquote::after { margin: 24px auto 0; }

/* ───────── GALLERY MOSAIC (galerie.html) ───────── */
.mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
.mosaic-tile { aspect-ratio: 1/1; overflow: hidden; position: relative; background: var(--brand-cream-2); }
.mosaic-tile.tall { aspect-ratio: 1/1.4; grid-row: span 1; }
.mosaic-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.mosaic-tile:hover img { transform: scale(1.08); }
.mosaic-tile .tile-label {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(253,250,244,0.95); color: var(--brand-ink);
  padding: 7px 14px; font-family: var(--sans);
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px); transition: all .35s var(--ease);
}
.mosaic-tile:hover .tile-label { opacity: 1; transform: translateY(0); }

/* ───────── PARTNER LOGOS BAND ───────── */
.partner-band {
  padding: 90px 0; background: var(--brand-white);
  border-top: 1px solid var(--brand-line); border-bottom: 1px solid var(--brand-line);
}
.partner-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; align-items: center;
  max-width: 960px; margin: 0 auto;
}
.partner-grid img {
  max-width: 140px; height: auto; margin: 0 auto;
  filter: grayscale(1) opacity(0.55); transition: filter .35s var(--ease);
}
.partner-grid img:hover { filter: grayscale(0) opacity(1); }

/* ───────── CONTACT GRID ───────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info-block { padding: 24px 0; }
.contact-info-block h3 {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-primary);
  margin-bottom: 16px;
}
.contact-info-block p, .contact-info-block a {
  font-family: var(--serif); font-size: 22px; line-height: 1.4;
  color: var(--brand-ink); display: block;
}
.contact-info-block a:hover { color: var(--brand-primary); }
.contact-info-block .small { font-family: var(--sans); font-size: 14px; color: var(--brand-graphite); }

/* ───────── FORM ───────── */
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-mute); margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--brand-line); background: var(--brand-white);
  padding: 14px 16px; font: inherit; color: var(--brand-ink);
  transition: border-color .25s var(--ease);
  font-family: var(--sans);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand-primary);
}
.field textarea { min-height: 140px; resize: vertical; }

/* ───────── FOOTER ───────── */
.footer { background: var(--brand-ink); color: rgba(248,244,237,0.7); padding: 80px 0 36px; font-size: 13px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-grid h4 {
  font-family: var(--sans); font-weight: 600; color: var(--brand-cream);
  margin-bottom: 18px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.footer-grid a, .footer-grid p {
  display: block; padding: 4px 0; transition: color .2s;
  font-size: 13px; line-height: 1.7;
}
.footer-grid a:hover { color: var(--brand-primary-light); }
.footer-brand .footer-wordmark {
  font-family: var(--display); font-weight: 700; font-size: 18px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-cream);
  margin-bottom: 12px;
}
.footer-brand p { line-height: 1.7; max-width: 36ch; opacity: 0.72; margin-top: 10px; }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(248,244,237,0.1); padding-top: 28px;
  font-size: 11px; letter-spacing: 0.06em;
}
.footer-bot a { color: rgba(248,244,237,0.8); transition: color .2s; }
.footer-bot a:hover { color: var(--brand-primary-light); }
.footer-note { font-style: italic; font-family: var(--serif); opacity: 0.7; }

/* ───────── DEMO NOTICE (pflicht) ───────── */
.demo-notice {
  position: fixed; left: 24px; bottom: 24px; z-index: 100;
  background: var(--brand-ink); color: var(--brand-cream);
  padding: 12px 18px; font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.06em; line-height: 1.4;
  box-shadow: var(--shadow-soft); max-width: 360px;
}
.demo-notice strong { font-weight: 600; color: var(--brand-primary-light); }
.demo-notice a { color: var(--brand-cream); text-decoration: underline; text-underline-offset: 2px; }
.demo-notice .close {
  position: absolute; top: 6px; right: 10px; background: none; border: none;
  color: var(--brand-cream); cursor: pointer; font-size: 14px; opacity: 0.5;
}
.demo-notice .close:hover { opacity: 1; }
.demo-notice.is-hidden { display: none; }

/* ───────── REVEAL ANIMATIONS ───────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }

/* ───────── PROSE (legal pages) ───────── */
.prose { max-width: 760px; margin: 0 auto; font-size: 15px; line-height: 1.75; color: var(--brand-graphite); }
.prose h2 { font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: 0.03em; color: var(--brand-ink); margin: 42px 0 16px; }
.prose h3 { font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: 0.04em; color: var(--brand-ink); margin: 32px 0 12px; text-transform: uppercase; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 14px 0 22px 22px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--brand-primary); border-bottom: 1px solid currentColor; }
.prose a:hover { color: var(--brand-primary-dark); }
.prose .lead { font-size: 17px; color: var(--brand-ink); margin-bottom: 28px; }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 900px) {
  .wrap { padding: 0 22px; }
  .wrap-wide { padding: 0 22px; }
  .nav-inner { padding: 14px 22px; }
  .nav-links { display: none; }
  .nav-wordmark { display: none; }
  .nav-logo { height: 40px; }
  .hero-photo { height: clamp(360px, 60vh, 540px); }
  .hero + section { margin-top: -24px; padding-top: 84px; }
  .brand-statement { margin-top: -24px; padding: 70px 0 80px; }
  .brand-statement::before, .brand-statement::after { display: none; }
  .brand-statement .wappen { max-width: 160px; }
  .hero-banner-strip { padding: 40px 0 44px; }
  .service-grid { grid-template-columns: 1fr; gap: 22px; }
  .editorial-row, .editorial-row.reverse { grid-template-columns: 1fr; gap: 40px; }
  .editorial-row.reverse .editorial-text { order: 1; }
  .editorial-row.reverse .editorial-figure { order: 2; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bot { flex-direction: column; gap: 12px; align-items: flex-start; }
  .demo-notice { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .section-cream, .section-white, .section-dark { padding: 72px 0; }
  .pullquote-band { padding: 80px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-photo img { transform: scale(1) !important; }
}
