/* ============================================================
   FORGE 2027 · Mainz — shared stylesheet
   Forschungsdaten in den Geisteswissenschaften
   Host: Akademie der Wissenschaften und der Literatur | Mainz
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;0,600;1,400&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* Color — warm peach base (#F2AA84), peachy cream paper, deep ink */
  --peach:      #F2AA84;                    /* requested base / signature color */
  --peach-tint: #F7C6AC;
  --peach-wash: #FBE6D8;
  --paper:      #FBF3EC;                    /* peachy cream */
  --paper-2:    #F7E6D9;                    /* peach wash for alt sections */
  --paper-3:    #F1D7C5;
  --card:       #FFFAF5;
  --ink:        #211B16;
  --ink-2:      #5a504595;
  --ink-soft:   #6A5C4F;
  --line:       rgba(33, 27, 22, 0.14);
  --line-soft:  rgba(33, 27, 22, 0.08);
  --accent:     #C56A3D;                    /* terracotta — buttons/links, same hue, accessible */
  --accent-ink: #A8542B;                    /* darker terracotta for text-on-paper */
  --accent-soft: rgba(242, 170, 132, 0.22); /* peach tint */
  --gold:       oklch(0.62 0.085 70);      /* muted ochre, used sparingly */

  /* Type */
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans:  'IBM Plex Sans', system-ui, sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, monospace;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 90px;
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: #ffffff;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1 0 auto; }
.site-footer { flex-shrink: 0; }

/* Wrapper-Kette mitstrecken, damit der Footer unten sitzt */
#dc-root, #dc-root > .sc-host {
  display: flex; flex-direction: column; flex: 1 0 auto; min-height: 0;
}
#dc-root > .sc-host > .sc-host { flex: 0 0 auto; }

img { max-width: 100%; display: block; }

a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

::selection { background: var(--accent); color: var(--paper); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
.serif { font-family: var(--serif); }
.mono  { font-family: var(--mono); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0;
}

.lede { font-size: clamp(19px, 2.1vw, 22px); line-height: 1.55; color: var(--ink); }
.muted { color: var(--ink-soft); }

p { text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); border-top: 1px solid var(--line); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

.bg-paper2 { background: var(--paper-2); }
.bg-ink { background: var(--ink); color: var(--paper); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--paper); }

/* ============================================================
   HEADER — integrated menu
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 28px -18px rgba(28,26,22,.5); background: color-mix(in srgb, var(--paper) 96%, transparent); }

.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter);
  height: var(--header-h);
  display: flex; align-items: center; gap: 28px;
}

/* Wordmark */
.brand { display: flex; align-items: baseline; gap: 12px; text-decoration: none; color: var(--ink); white-space: nowrap; }
.brand:hover { text-decoration: none; }

/* ---- Logo lockup (FORGE 27 + tagline) — site fonts ---- */
.brand--logo { align-self: center; flex-direction: column; align-items: flex-start; gap: 4px; line-height: 1; padding: 0; transform: none; }
.brand--logo:hover { text-decoration: none; }
.bl-row { display: flex; align-items: baseline; gap: 9px; }
.bl-forge {
  font-family: var(--serif); font-weight: 600;
  font-size: 38px; letter-spacing: -0.01em; line-height: 0.9;
  color: var(--accent-ink);
}
.bl-year {
  font-family: var(--serif); font-weight: 500;
  font-size: 38px; letter-spacing: -0.02em; line-height: 0.9;
  color: var(--accent);
}
.bl-tag {
  font-family: var(--mono); font-weight: 500;
  font-size: 10.5px; line-height: 1.2; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--ink-soft); white-space: nowrap;
}
@media (max-width: 520px) {
  .bl-forge, .bl-year { font-size: 30px; }
  .bl-tag { font-size: 8.5px; letter-spacing: 0.07em; }
}
@media (max-width: 380px) {
  .bl-tag { white-space: normal; max-width: 180px; }
}
.brand__mark {
  font-family: var(--serif); font-weight: 600; font-size: 25px; letter-spacing: -0.01em;
  line-height: 1;
}
.brand__mark .yr { color: var(--accent-ink); }
.brand__place {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); padding-left: 12px; border-left: 1px solid var(--line);
}

/* Nav — integrated inline menu */
.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  display: block; font-size: 14px; font-weight: 500; color: var(--ink); white-space: nowrap;
  padding: 8px 11px; border-radius: var(--radius); letter-spacing: -0.005em;
  position: relative; transition: color .15s ease, background .15s ease;
}
.nav-list a:hover { text-decoration: none; background: var(--paper-2); }
.nav-list a[aria-current="page"] { color: var(--accent-ink); }
.nav-list a[aria-current="page"]::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 1px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.nav-cta {
  margin-left: 8px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  background: var(--accent); color: var(--paper) !important;
  padding: 9px 16px; border-radius: var(--radius);
  transition: background .15s ease, transform .15s ease;
}
.nav-cta:hover { background: var(--accent-ink); text-decoration: none; transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--line);
  border-radius: var(--radius); width: 42px; height: 42px; cursor: pointer;
  align-items: center; justify-content: center; color: var(--ink);
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; margin: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
    box-shadow: 0 18px 40px -24px rgba(28,26,22,.55);
  }
  .site-nav.is-open { max-height: 70vh; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 20px; }
  .nav-list a { padding: 14px 4px; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav-list a[aria-current="page"]::after { display: none; }
  .nav-list a[aria-current="page"] { border-left: 3px solid var(--accent); padding-left: 12px; }
  .nav-cta { margin: 14px 0 0; justify-content: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: #ffffff; }
.hero__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,7vw,96px) var(--gutter) clamp(40px,5vw,64px);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-bottom: 26px; }
.hero__edition {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: 10px;
}
.hero__edition .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--peach); box-shadow: 0 0 0 3px var(--accent-soft); }

.hero__title {
  font-size: clamp(48px, 8.5vw, 104px); font-weight: 400; line-height: 0.95; letter-spacing: -0.025em;
  margin: 0 0 8px;
}
.hero__title em { font-style: italic; color: var(--accent-ink); font-weight: 400; }
.hero__motto {
  font-family: var(--mono); font-size: clamp(13px, 1.6vw, 15px); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); margin: 22px 0 0;
}
.hero__meta { display: flex; flex-wrap: wrap; gap: 12px 32px; margin-top: 30px; }
.hero__meta .item { }
.hero__meta .label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 4px; }
.hero__meta .value { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--ink); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: -0.005em;
  padding: 13px 22px; border-radius: var(--radius); border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: var(--paper) !important; }
.btn--primary:hover { background: var(--accent-ink); }
.btn--ghost { background: transparent; color: var(--ink) !important; border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--card); }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Countdown ---------- */
.countdown { display: flex; gap: clamp(14px, 2.4vw, 30px); }
.cd-unit { text-align: left; }
.cd-num {
  font-family: var(--serif); font-size: clamp(34px, 4.5vw, 52px); font-weight: 500; line-height: 1;
  color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
}
.cd-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }
.countdown-bar { padding-block: 8px; }
.countdown-bar .wrap { }
.cd-box {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  padding: 30px 36px;
  background: linear-gradient(180deg, var(--peach-wash), var(--paper-2));
  border: 1px solid var(--line); border-radius: var(--radius);
}
.countdown-bar .cd-intro { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); max-width: 260px; }

/* ---------- Image placeholder ---------- */
.ph {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 9px, rgba(28,26,22,0.045) 9px, rgba(28,26,22,0.045) 10px);
  display: flex; align-items: flex-end; overflow: hidden; color: var(--ink-soft);
}
.ph__tag {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.05em; color: var(--ink-soft);
  background: var(--card); border: 1px solid var(--line); border-radius: 3px;
  padding: 5px 9px; margin: 14px;
}
.hero__media { aspect-ratio: 4 / 5; }
.hero__portrait {
  height: 100%; width: 100%; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(165deg, var(--peach-wash) 0%, var(--paper-2) 100%);
  border: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: center;
}
.hero__portrait-fig { margin: 0; display: flex; flex-direction: column; height: 100%; }
.hero__portrait-fig .hero__portrait { flex: 1; min-height: 0; }
.hero__caption { font-family: var(--mono); font-size: 12px; line-height: 1.5; letter-spacing: 0.02em; color: var(--ink-soft); margin-top: 12px; max-width: 42ch; }

/* ============================================================
   GENERIC SECTION BLOCKS
   ============================================================ */
.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 400; }
.section-head p { margin: 18px 0 0; color: var(--ink-soft); }

.prose { max-width: 720px; }
.prose p { margin: 0 0 1.15em; }
.prose h3 { font-size: clamp(22px,2.6vw,28px); margin: 1.8em 0 0.5em; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.prose li { margin-bottom: 0.5em; }
.prose li::marker { color: var(--accent); }
.prose a { text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--line); }
.prose strong { font-weight: 600; }

.lead-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
@media (max-width: 860px) { .lead-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Side card */
.aside-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; position: sticky; top: calc(var(--header-h) + 24px);
}
.aside-card h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 16px; font-weight: 500; }
.aside-card .row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid var(--line-soft); font-size: 15px; }
.aside-card .row:first-of-type { border-top: 0; }
.aside-card .row .k { color: var(--ink-soft); }
.aside-card .row .v { font-weight: 600; text-align: right; white-space: nowrap; }

/* ============================================================
   TIMELINE (modern stepper)
   ============================================================ */
.timeline { display: grid; gap: 0; margin-top: 8px; }
.tl-row {
  display: grid; grid-template-columns: 150px 1fr auto; gap: 24px; align-items: baseline;
  padding: 20px 0; border-top: 1px solid var(--line);
  transition: padding-left .2s ease;
}
.tl-row:last-child { border-bottom: 1px solid var(--line); }
.tl-date { font-family: var(--mono); font-size: 14px; color: var(--accent-ink); font-weight: 500; letter-spacing: 0.02em; }
.tl-event { font-family: var(--serif); font-size: clamp(18px, 2.2vw, 22px); color: var(--ink); }
.tl-row .tl-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.tl-row.is-done .tl-event { color: var(--ink-soft); }
.tl-row.is-now { background: linear-gradient(90deg, var(--accent-soft), transparent 60%); padding-left: 16px; margin-left: -16px; }
.tl-row.is-now .tl-tag { color: var(--accent-ink); }
@media (max-width: 720px) {
  .tl-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
}

/* FORGE history — horizontal timeline (Zeitstrahl) */
.fzt-section { padding-block: clamp(40px, 5vw, 64px); }
.fzt-section .section-head { margin-bottom: clamp(20px, 3vw, 32px); }
.fzt-section .section-head h2 { font-size: clamp(26px, 3.4vw, 36px); }
.fzt-scroll { overflow-x: auto; margin-top: 12px; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
.fzt {
  display: grid; grid-template-columns: repeat(6, 1fr); column-gap: clamp(20px, 2.5vw, 36px);
  position: relative; min-width: 0;
}
@media (max-width: 780px) { .fzt { min-width: 680px; } }
.fzt::before {
  content: ""; position: absolute; left: 0; right: 0; top: 7px; height: 2px;
  background: var(--line); z-index: 0;
}
.fzt-item { position: relative; z-index: 1; padding: 0 4px; text-align: left; }
.fzt-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--accent);
  border: 2px solid var(--accent); margin-bottom: 14px;
}
.fzt-year { font-family: var(--serif); font-size: 23px; font-weight: 500; color: var(--accent); line-height: 1; letter-spacing: -0.01em; }
.fzt-place { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin: 8px 0 6px; }
.fzt-theme { font-family: var(--serif); font-size: 14.5px; color: var(--ink); line-height: 1.3; hyphens: manual; overflow-wrap: break-word; }
.fzt-item.is-current .fzt-dot { background: #fff; box-shadow: 0 0 0 5px var(--accent-soft); }
.fzt-item.is-current .fzt-year,
.fzt-item.is-current .fzt-place { color: var(--accent-ink); }
.fzt-item.is-current .fzt-theme { font-weight: 600; }
@media (max-width: 620px) {
  .fzt-scroll::after { content: "→ scrollen"; display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); text-align: right; margin-top: 6px; }
}

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.feat {
  background: var(--card); padding: 30px 28px; display: flex; flex-direction: column; gap: 12px;
}
.feat__num { font-family: var(--mono); font-size: 12px; color: var(--accent-ink); letter-spacing: 0.1em; }
.feat h3 { font-size: 21px; }
.feat p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* Committee */
.committee { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1px 28px; }
.committee li { list-style: none; padding: 11px 0; border-top: 1px solid var(--line-soft); font-size: 15.5px; }
.committee { padding: 0; margin: 0; }

/* Speakers */
.speakers { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 28px; }
.speaker { }
.speaker .ph { aspect-ratio: 1; margin-bottom: 14px; }
.speaker h3 { font-size: 20px; margin-bottom: 4px; }
.speaker .role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-soft); text-transform: uppercase; }
.speaker p { font-size: 14.5px; color: var(--ink-soft); margin: 10px 0 0; }

/* ============================================================
   PROGRAM
   ============================================================ */
.day-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.day-tab {
  font-family: var(--sans); font-size: 14.5px; font-weight: 600; cursor: pointer;
  background: var(--card); border: 1px solid var(--line); color: var(--ink);
  padding: 11px 18px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 2px; min-width: 150px;
  transition: border-color .15s, background .15s, color .15s;
}
.day-tab .d-date { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.day-tab[aria-selected="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.day-tab[aria-selected="true"] .d-date { color: color-mix(in srgb, var(--paper) 70%, transparent); }
.day-tab:hover:not([aria-selected="true"]) { border-color: var(--ink); }

.day-panel { display: none; }
.day-panel.is-active { display: block; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.sched-row {
  display: grid; grid-template-columns: 130px 1fr; gap: 28px; padding: 22px 0; border-top: 1px solid var(--line);
}
.sched-row:last-child { border-bottom: 1px solid var(--line); }
.sched-time { font-family: var(--mono); font-size: 14px; color: var(--accent-ink); font-weight: 500; }
.sched-body h3 { font-size: 20px; margin-bottom: 6px; }
.sched-body .who { font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.04em; }
.sched-body p { margin: 8px 0 0; color: var(--ink-soft); font-size: 15px; max-width: 64ch; }
.sched-row.is-break { background: var(--paper-2); margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); border-color: transparent; }
.sched-row.is-break .sched-body h3 { font-family: var(--mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.sched-tag { display: inline-block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; border: 1px solid var(--line); color: var(--ink-soft); margin-bottom: 10px; }
.sched-tag.keynote { background: var(--accent); color: var(--paper); border-color: var(--accent); }
@media (max-width: 720px) { .sched-row { grid-template-columns: 1fr; gap: 6px; } }

/* ============================================================
   FORMS (Anmeldung)
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.price-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); padding: 26px;
  display: flex; flex-direction: column; gap: 8px;
}
.price-card.is-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.price-card .tier { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.price-card .amount { font-family: var(--serif); font-size: 40px; font-weight: 500; line-height: 1; }
.price-card .amount small { font-size: 16px; color: var(--ink-soft); font-family: var(--sans); }
.price-card .note { font-size: 14px; color: var(--ink-soft); margin: 0; }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.field label { font-size: 13.5px; font-weight: 600; }
.field .req { color: var(--accent-ink); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 14px; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); flex: none; }
.form-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }
.form-success { display: none; padding: 18px 20px; border: 1px solid var(--accent); background: var(--accent-soft); border-radius: var(--radius); font-size: 15px; margin-top: 18px; }
.form-success.show { display: block; }

/* ============================================================
   TRAVEL / VENUE (Anreise)
   ============================================================ */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; }
.info-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); padding: 26px; }
.info-card .ic-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink); margin: 0 0 12px; }
.info-card h3 { font-size: 20px; margin-bottom: 10px; }
.info-card p { margin: 0 0 6px; font-size: 15px; color: var(--ink-soft); }
.map-ph { aspect-ratio: 16/9; }
.photo-figure { margin: 0; }
.photo-figure img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line); border-radius: var(--radius); display: block; }
.photo-figure figcaption { font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; color: var(--ink-soft); margin-top: 10px; }
.photo-figure figcaption a { color: var(--accent-ink); }
.map-embed { aspect-ratio: 4/3; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper-2); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.9); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { background: var(--ink); color: var(--paper); }
.cta-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; padding-block: clamp(48px,6vw,72px); }
.cta-strip h2 { color: var(--paper); font-size: clamp(28px,3.6vw,40px); font-weight: 400; max-width: 18ch; }
.cta-strip p { color: color-mix(in srgb, var(--paper) 72%, transparent); margin: 12px 0 0; max-width: 46ch; }
.cta-strip .btn--ghost { color: var(--paper) !important; border-color: rgba(244,240,231,.4); }
.cta-strip .btn--ghost:hover { background: rgba(244,240,231,.1); border-color: var(--paper); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--paper-2); border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-block: clamp(48px,6vw,72px); }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 7px; width: fit-content; height: 100%; }
.footer-brand .brand--logo { align-self: flex-start; }
.footer-guten { flex: none; width: 118px; height: auto; opacity: 0.92; order: 2; margin-top: auto; }
.footer-brand p { color: var(--ink-soft); font-size: 14.5px; margin: 18px 0 0; max-width: 34ch; }
.footer-col h4 { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--ink); font-size: 14.5px; }
.footer-col a:hover { color: var(--accent-ink); }
.footer-logos { padding-block: 32px; border-top: 1px solid var(--line); }
.footer-logos h4 { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; margin: 0 0 18px; }
.logo-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 12px; }
.logo-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  height: 84px; display: flex; align-items: center; justify-content: center; padding: 8px 11px;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.logo-tile:hover { box-shadow: 0 8px 22px -14px rgba(28,26,22,.5); transform: translateY(-2px); border-color: rgba(28,26,22,.28); }
.logo-tile.logo-tile--wide { grid-column: span 2; }
.logo-tile img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-block: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); font-family: var(--mono); letter-spacing: 0.02em; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Notice / disclaimer badge */
.notice {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--card); border: 1px solid var(--accent);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 15px 20px; margin: 22px 0 26px; max-width: 58ch;
}
.notice__dot {
  flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  margin-top: 7px; box-shadow: 0 0 0 4px var(--accent-soft);
}
.notice__text { font-size: 15px; color: var(--ink); line-height: 1.5; }
.notice__text strong { color: var(--accent-ink); }

/* Page hero (subpages) — white top, matching the Start page hero */
.page-hero { background: #ffffff; }
.page-hero .wrap { padding-block: clamp(48px, 6vw, 88px); }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 400; letter-spacing: -0.02em; max-width: 16ch; }
.page-hero p { margin: 22px 0 0; max-width: 56ch; color: var(--ink-soft); font-size: clamp(17px,1.9vw,19px); }
.breadcrumb { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 22px; }
.breadcrumb a { color: var(--ink-soft); }
.imp-label { font-family: var(--mono); font-size: 12.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-ink); margin: 2.4em 0 0.4em; }
.prose .imp-label:first-of-type { margin-top: 0.6em; }
