/* ============================================================
   DIGIPULSE CONSULTING
   Elegant. Schlicht. Nicht steril.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Farben — warme, zurückhaltende Palette */
  --ink:       #1a1815;
  --ink-soft:  #3d3935;
  --ink-mute:  #6b6660;
  --stone:     #8a8478;
  --line:      rgba(26, 24, 21, 0.12);
  --line-soft: rgba(26, 24, 21, 0.06);

  --paper:      #faf8f4;
  --paper-warm: #f4efe4;
  --cream:      #ffffff;

  --accent:    #a0642c;   /* warmes Bronze */
  --accent-dk: #7d4c1f;
  --accent-lt: #c88a52;

  /* Typografie */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max:        1240px;
  --max-narrow: 880px;
  --gutter:     clamp(20px, 4vw, 56px);
  --section-y:  clamp(72px, 10vh, 140px);

  --ease: cubic-bezier(.22, .8, .26, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--paper);
  overflow-x: hidden;
  font-weight: 400;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.8rem); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); line-height: 1.1;  }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.2;  }
h4 { font-size: 1.2rem; font-weight: 500; line-height: 1.3; }

.italic { font-style: italic; font-weight: 400; }

p {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 68ch;
}
p.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  max-width: 62ch;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.eyebrow.light { color: var(--accent-lt); }
.eyebrow.light::before { background: var(--accent-lt); }

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

/* ============================================================
   LAYOUT
   ============================================================ */

.wrap        { max-width: var(--max);        margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--gutter); }

section { padding: var(--section-y) 0; position: relative; }
section.tight { padding: calc(var(--section-y) * 0.55) 0; }

.bg-warm  { background: var(--paper-warm); }
.bg-cream { background: var(--cream); }
.bg-ink   { background: var(--ink); color: #cfc9bd; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #f5f0e4; }
.bg-ink p { color: rgba(245, 240, 228, 0.72); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--accent); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
}

.nav-cta {
  padding: 11px 22px !important;
  background: var(--ink);
  color: #f5f0e4 !important;
  border-radius: 100px;
  transition: background .35s var(--ease);
}
.nav-cta:hover { background: var(--accent); }
.nav-cta::after { display: none !important; }

.menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: transform .3s var(--ease);
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-btn span::before { top: -5px; }
.menu-btn span::after  { top:  5px; }
.menu-btn.active span { background: transparent; }
.menu-btn.active span::before { transform: translateY(5px) rotate(45deg); }
.menu-btn.active span::after  { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 24px var(--gutter) 36px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 14px 0; font-size: 1.1rem; border-bottom: 1px solid var(--line-soft); }
  .nav a:last-of-type { border-bottom: none; }
  .nav-cta { margin-top: 12px; align-self: flex-start; }
  .menu-btn { display: flex; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .4s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn .arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary {
  background: var(--ink);
  color: #f5f0e4;
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -16px rgba(160, 100, 44, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #f5f0e4;
}

.btn-light {
  background: transparent;
  color: #f5f0e4;
  border-color: rgba(245, 240, 228, 0.4);
}
.btn-light:hover {
  background: #f5f0e4;
  color: var(--ink);
  border-color: #f5f0e4;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: clamp(70px, 11vh, 140px) 0 clamp(80px, 12vh, 160px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(160, 100, 44, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }

.hero-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
}
.hero h1 {
  margin: 28px 0 36px;
  max-width: 16ch;
}
.hero h1 .accent-word {
  color: var(--accent);
  font-style: italic;
}
.hero .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}
.hero-meta-item {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.hero-meta-item .k {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--stone);
  margin-bottom: 8px;
}
.hero-meta-item .v {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; gap: 60px; }
}

/* ============================================================
   SECTION HEAD
   ============================================================ */

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 72px;
  align-items: start;
}
.section-head > div:first-child { padding-top: 10px; }
.section-head h2 { margin-top: 22px; margin-bottom: 22px; }

@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
}

/* ============================================================
   SERVICES / GRID
   ============================================================ */

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  background: var(--paper);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 340px;
  transition: background .5s var(--ease);
  position: relative;
}
.bg-warm .service { background: var(--paper-warm); }
.service:hover { background: var(--cream); }
.service::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .55s var(--ease);
}
.service:hover::before { width: 100%; }
.service .num {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.service h3 { margin-top: 4px; }
.service p { font-size: 0.96rem; flex-grow: 1; }
.service .more {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services.two { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 960px) {
  .services, .services.two { grid-template-columns: 1fr; }
  .service { min-height: 0; padding: 38px 30px; }
}

/* ============================================================
   SPLIT
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse .split-visual { order: 2; }
.split-visual {
  aspect-ratio: 4/5;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.split-visual svg { width: 100%; height: 100%; }

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split.reverse .split-visual { order: 0; }
  .split-visual { aspect-ratio: 3/4; max-width: 500px; margin: 0 auto; }
}

/* ============================================================
   STATS
   ============================================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat .num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat .num sup {
  font-size: 0.5em;
  color: var(--accent);
  vertical-align: super;
  font-style: italic;
  font-weight: 400;
}
.stat .label {
  margin-top: 14px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--stone);
  max-width: 22ch;
}
@media (max-width: 820px) { .stats { grid-template-columns: 1fr 1fr; gap: 30px; padding: 50px 0; } }

/* ============================================================
   PRINCIPLES / VALUE LIST
   ============================================================ */

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.principle {
  padding-top: 28px;
  border-top: 2px solid var(--ink);
  position: relative;
}
.principle .mark {
  position: absolute;
  top: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}
.principle h4 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.principle p { font-size: 0.98rem; }
@media (max-width: 820px) { .principles { grid-template-columns: 1fr; gap: 38px; } }

/* ============================================================
   QUOTE
   ============================================================ */

.quote {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
  position: relative;
}
.quote::before {
  content: "\201E";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 9rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.28;
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}
.quote cite {
  display: block;
  margin-top: 32px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ============================================================
   CTA STRIP
   ============================================================ */

.cta-strip {
  background: var(--ink);
  color: #f5f0e4;
  padding: clamp(80px, 11vh, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 100%, rgba(160, 100, 44, 0.28), transparent 60%),
    radial-gradient(ellipse at 85% 0%,   rgba(200, 138, 82, 0.1),  transparent 55%);
}
.cta-strip .wrap { position: relative; z-index: 2; }
.cta-strip h2 { max-width: 20ch; margin-bottom: 28px; color: #f5f0e4; }
.cta-strip p  { color: rgba(245, 240, 228, 0.78); max-width: 62ch; font-size: 1.08rem; }
.cta-strip .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  margin-top: 38px;
}
.cta-strip .btn-primary:hover {
  background: #f5f0e4;
  color: var(--ink);
  border-color: #f5f0e4;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--ink);
  color: #cfc9bd;
  padding: 90px 0 36px;
  position: relative;
}
footer.has-cta { padding-top: 90px; }
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160, 100, 44, 0.5), transparent);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 72px;
}
.foot-grid .brand-block .logo { color: #f5f0e4; margin-bottom: 22px; }
.foot-grid .brand-block .logo small { color: rgba(245, 240, 228, 0.4); }
.foot-grid .brand-block p { color: rgba(245, 240, 228, 0.65); font-size: 0.94rem; max-width: 34ch; }

.foot-grid h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-lt);
  margin-bottom: 22px;
}
.foot-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot-grid li,
.foot-grid a {
  font-size: 0.94rem;
  color: rgba(245, 240, 228, 0.72);
  transition: color .3s;
}
.foot-grid a:hover { color: var(--accent-lt); }

.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(245, 240, 228, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(245, 240, 228, 0.4);
}
.foot-bottom a:hover { color: var(--accent-lt); }

@media (max-width: 820px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-grid .brand-block { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HEAD (inner pages)
   ============================================================ */

.page-head {
  padding: clamp(70px, 10vh, 130px) 0 clamp(60px, 8vh, 100px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(160, 100, 44, 0.06), transparent 65%);
  pointer-events: none;
}
.page-head .wrap { position: relative; }
.breadcrumb {
  font-size: 0.78rem;
  color: var(--stone);
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--stone); transition: color .3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb [aria-current="page"] { color: var(--ink-soft); }

.page-head .eyebrow { margin-bottom: 26px; }
.page-head h1 { max-width: 18ch; margin-bottom: 32px; }
.page-head .lede { max-width: 56ch; }

/* ============================================================
   CASE CARDS (Referenzen)
   ============================================================ */

.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.case {
  background: var(--cream);
  border: 1px solid var(--line);
  transition: all .5s var(--ease);
  overflow: hidden;
}
.case:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -30px rgba(26, 24, 21, 0.28);
  border-color: rgba(160, 100, 44, 0.3);
}
.case-visual {
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
}
.case-visual svg { width: 100%; height: 100%; }
.case-body { padding: 36px 36px 38px; }
.case .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone);
  padding: 5px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.tag.filled {
  background: var(--accent);
  color: #f5f0e4;
  border-color: var(--accent);
}
.case h3 { margin-bottom: 14px; }
.case .outcome {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.case .outcome div .k {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--stone);
  margin-bottom: 4px;
}
.case .outcome div .v {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent);
}
@media (max-width: 820px) { .cases { grid-template-columns: 1fr; } }

/* ============================================================
   PROSE (Datenschutz, Impressum, längere Texte)
   ============================================================ */

.prose { max-width: 760px; margin: 0 auto; }
.prose > * + * { margin-top: 1.3em; }
.prose h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-top: 2em; }
.prose h3 { font-size: 1.3rem; margin-top: 1.6em; }
.prose p { font-size: 1.02rem; line-height: 1.75; max-width: none; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin: 0.4em 0; line-height: 1.7; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.prose a:hover { color: var(--accent-dk); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.5em 0; }
.prose .meta {
  font-size: 0.84rem;
  color: var(--stone);
  margin-bottom: 40px;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
}
.contact-info { display: flex; flex-direction: column; gap: 38px; }
.contact-info .block h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-info .block p {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.55;
}
.contact-info .block a { color: var(--ink); border-bottom: 1px solid var(--accent); }
.contact-info .block a:hover { color: var(--accent); }

.form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 48px 44px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.form .field { display: flex; flex-direction: column; }
.form label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--stone);
  margin-bottom: 8px;
  font-weight: 500;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color .3s;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-bottom-color: var(--accent);
}
.form textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form .consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-top: 6px;
}
.form .consent input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--accent);
}
.form .consent label {
  font-family: var(--sans);
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.55;
  font-weight: 400;
}
.form .consent a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.form button[type="submit"] { margin-top: 8px; align-self: flex-start; }

.form-feedback {
  padding: 14px 18px;
  background: #e8f0e4;
  color: #2e4a22;
  border-left: 3px solid #6b8e4e;
  font-size: 0.92rem;
  display: none;
}
.form-feedback.visible { display: block; }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form { padding: 36px 28px; }
  .form .row { grid-template-columns: 1fr; gap: 26px; }
}

/* ============================================================
   INFO BOX (for impressum / contact)
   ============================================================ */

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.info-cell {
  background: var(--cream);
  padding: 32px 28px;
}
.info-cell .k {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--stone);
  margin-bottom: 10px;
  font-weight: 500;
}
.info-cell .v {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* .reveal: previously scroll-triggered animation, now always visible for
   reliability. Kept as a class hook in case a future subtle effect is wanted. */
.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center { text-align: center; }
.mt-sm { margin-top: 20px; }
.mt-md { margin-top: 36px; }
.mt-lg { margin-top: 60px; }
.mb-md { margin-bottom: 36px; }
.divider { height: 1px; background: var(--line); margin: 0; }
